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: NaturalTinyShell_ice libmDot-12Sept mbed-rtos mbed
Fork of ICE by
Diff: src/ConfigurationHandler/Controls/TimerControl.h
- Revision:
- 35:6235ef67faa1
- Parent:
- 28:c410a61238bb
- Child:
- 111:d31b3a347e6a
- Child:
- 122:4db48b933115
--- a/src/ConfigurationHandler/Controls/TimerControl.h Thu Sep 08 22:01:00 2016 +0000 +++ b/src/ConfigurationHandler/Controls/TimerControl.h Fri Sep 09 13:33:54 2016 +0000 @@ -18,13 +18,15 @@ string id; // identifier string name; // friendly name unsigned int priority; // control priority + string output; unsigned int dayOfWeek; // days of the week unsigned int startWeek; // starting week unsigned int freq; - struct tod { + typedef struct tod_tag { unsigned int start; unsigned int interval; - }; + } Tod_t; + Tod_t tod; public: TimerControl() {};