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: nRF51822
Source/main.h@37:0cb0a0b22b99, 2019-12-13 (annotated)
- Committer:
- fdelahan
- Date:
- Fri Dec 13 18:43:55 2019 +0000
- Revision:
- 37:0cb0a0b22b99
- Parent:
- 36:f76a7b956f52
- Child:
- 38:4b06a103c044
wait after analog turn on = 3.5 ms; In-Use mode timer = 1 s; EOL max uses = 120; CAP OFF threshold = 100
Who changed what in which revision?
| User | Revision | Line number | New contents of line |
|---|---|---|---|
| sgetz7908 | 0:cec02cf6df66 | 1 | |
| sgetz7908 | 0:cec02cf6df66 | 2 | #ifndef MAIN_H |
| sgetz7908 | 0:cec02cf6df66 | 3 | #define MAIN_H |
| sgetz7908 | 0:cec02cf6df66 | 4 | |
| fdelahan | 37:0cb0a0b22b99 | 5 | #define FW_VERSION "V1.09" // major revisions will be 1xx, 2xx, etc. |
| sgetz7908 | 0:cec02cf6df66 | 6 | |
| sgetz7908 | 34:c122d842ad9a | 7 | #define SKIP_SHIP_MODE 0 // 0=normal, 1=Test mode, where SHIP_MODE is skipped |
| sgetz7908 | 23:7ca590427f0e | 8 | #define UART_DEBUGGING 0 // if =1, put out debug info on the BLE_UART |
| sgetz7908 | 33:787d30671783 | 9 | #define ENABLE_LED 0 // if =1, enable the debug LED |
| sgetz7908 | 24:761c30334cf4 | 10 | #define TEST_ON_NRF51_DK 0 // if =1, configure for running on nRF51-DK board |
| sgetz7908 | 9:0b017e956142 | 11 | |
| sgetz7908 | 23:7ca590427f0e | 12 | //#define DARK_SAMPLE_PERIOD 15 // During manufacturing, this determines how many seconds between light_sensor samples |
| sgetz7908 | 23:7ca590427f0e | 13 | //#define MIN_DARK_TIME_MIN 15 // Number of minutes the unit needs to be in the dark to go into SHIP_MODE |
| sgetz7908 | 9:0b017e956142 | 14 | |
| fdelahan | 37:0cb0a0b22b99 | 15 | #define PERIODIC_TICK_SEC 1 // update rtc and run check cap rate |
| sgetz7908 | 24:761c30334cf4 | 16 | #define FAST_TICK_SEC 3 // update rtc and run check cap rate while in init and test mode |
| sgetz7908 | 26:a577c4b69fe0 | 17 | #define EOL_TICK_SEC 10 // update rtc and run check cap rate while in EOL mode |
| sgetz7908 | 9:0b017e956142 | 18 | |
| fdelahan | 37:0cb0a0b22b99 | 19 | #define CAP_THRESHOLD 100 // ajusts the sensitivity of the cap sensor. Lower value means it triggers more easily |
| sgetz7908 | 23:7ca590427f0e | 20 | |
| sgetz7908 | 35:e8fa201fe147 | 21 | #define EOL_TIMEOUT_DAYS 31 // number of days after package is open before unit goes into EOL mode. |
| fdelahan | 37:0cb0a0b22b99 | 22 | #define EOL_MAX_USES 120 // number of uses after which the unit goes into EOL mode. |
| sgetz7908 | 26:a577c4b69fe0 | 23 | |
| sgetz7908 | 23:7ca590427f0e | 24 | extern void process_cmd(char * cmd); |
| sgetz7908 | 27:bb7247a1704e | 25 | extern void dataWasRead(void); |
| sgetz7908 | 2:def2c045c43a | 26 | |
| sgetz7908 | 2:def2c045c43a | 27 | //****************************************************************************** |
| sgetz7908 | 0:cec02cf6df66 | 28 | |
| sgetz7908 | 0:cec02cf6df66 | 29 | #endif // #ifndef MAIN_H |