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: mbed
Diff: inc/globals.h
- Revision:
- 15:aed8f326c949
- Parent:
- 12:fd1fd1857628
- Child:
- 16:5791665200cb
--- a/inc/globals.h Sat Dec 08 16:57:27 2018 +0000 +++ b/inc/globals.h Tue Dec 11 16:59:21 2018 +0000 @@ -51,7 +51,8 @@ #define UPDATE_REFRESH_DELAY_US 500000.0 const unsigned int LOOP_COUNTER = 500000.0/500; -#define DATA_ROW 1 +#define STATUS_ROW 3 +#define DATA_ROW STATUS_ROW+1 #define BOARD_ENABLE_DELAY_MS 50 @@ -81,6 +82,15 @@ unsigned short i12; }; +struct statusValues{ + bool V48_IS_HI; + bool V48_IS_LO; + bool V24_IS_HI; + bool V24_IS_LO; + bool V12_IS_HI; + bool V12_IS_LO; +}; + struct displayValues{ double v48f; double v24f;