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: inc/global.h
- Revision:
- 104:ddf0a8bdaad7
- Parent:
- 99:55317f374a94
- Child:
- 106:c0ddba334e93
--- a/inc/global.h Wed Sep 21 22:12:00 2016 +0000 +++ b/inc/global.h Thu Sep 22 12:14:03 2016 +0000 @@ -121,6 +121,23 @@ LittleEndianReversWord = 3, } Byte_Order; +typedef enum event_reason_tag { + EVENT_REASON_AUTO, + EVENT_REASON_MANUAL, + EVENT_REASON_FLOW, + EVENT_REASON_FAILSAFE, +} EventReason_t; + +typedef struct event_reason_struct_t { + EventReason_t eventReason; + char inputTag[32]; + char outputTag[12]; + float inputValue; + float outputValue; +} EventReasonStruct_t; + + + extern std::map<std::string,ModbusRegister> ModbusRegisterMap; extern std::map<std::string,SimulateInput> SimulateInputMap;