Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependencies: DataStore JobScheduler NetworkServices W5500Interface nanopb protocol
source/config.h@13:0fdbc14c33e7, 2017-08-03 (annotated)
- Committer:
- sgnezdov
- Date:
- Thu Aug 03 00:07:50 2017 +0000
- Revision:
- 13:0fdbc14c33e7
- Child:
- 27:60c12f3f3430
work in progress on reporting list of jobs; Issue: At time is zero
Who changed what in which revision?
| User | Revision | Line number | New contents of line |
|---|---|---|---|
| sgnezdov | 13:0fdbc14c33e7 | 1 | #pragma once |
| sgnezdov | 13:0fdbc14c33e7 | 2 | |
| sgnezdov | 13:0fdbc14c33e7 | 3 | class Config { |
| sgnezdov | 13:0fdbc14c33e7 | 4 | public: |
| sgnezdov | 13:0fdbc14c33e7 | 5 | |
| sgnezdov | 13:0fdbc14c33e7 | 6 | Config(char* sn): _sn(sn) {} |
| sgnezdov | 13:0fdbc14c33e7 | 7 | |
| sgnezdov | 13:0fdbc14c33e7 | 8 | const char* SerialNumber() { |
| sgnezdov | 13:0fdbc14c33e7 | 9 | return _sn; |
| sgnezdov | 13:0fdbc14c33e7 | 10 | } |
| sgnezdov | 13:0fdbc14c33e7 | 11 | |
| sgnezdov | 13:0fdbc14c33e7 | 12 | private: |
| sgnezdov | 13:0fdbc14c33e7 | 13 | |
| sgnezdov | 13:0fdbc14c33e7 | 14 | char* _sn; |
| sgnezdov | 13:0fdbc14c33e7 | 15 | }; |