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:
- 82:f3e495a98877
- Parent:
- 81:d45bfa16953a
- Child:
- 99:55317f374a94
--- a/inc/global.h Tue Sep 20 13:41:31 2016 +0000 +++ b/inc/global.h Tue Sep 20 15:35:13 2016 +0000 @@ -110,6 +110,14 @@ float float_value; uint32_t uint32_value; uint16_t uint16_value; + bool simulated; +}; + +struct SimulateInput { + float start_value; + float min; + float max; + float step; }; typedef enum byte_order { @@ -120,6 +128,7 @@ } Byte_Order; extern std::map<std::string,ModbusRegister> ModbusRegisterMap; +extern std::map<std::string,SimulateInput> SimulateInputMap; extern I2C* i2c;