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
Diff: Source/main.h
- Revision:
- 47:a1e91dea282d
- Parent:
- 46:b85be1ccf179
- Child:
- 48:bb7d5118e03c
--- a/Source/main.h Fri Aug 21 14:33:15 2020 +0000 +++ b/Source/main.h Tue Aug 25 18:54:12 2020 +0000 @@ -4,7 +4,7 @@ #define FW_VERSION "V1.17" // major revisions will be 1xx, 2xx, etc. -#define SKIP_SHIP_MODE 0 // 0=normal, 1=Test mode, where SHIP_MODE is skipped +#define SKIP_SHIP_MODE 1 // 0=normal, 1=Test mode, where SHIP_MODE is skipped #define UART_DEBUGGING 0 // if =1, put out debug info on the BLE_UART #define ENABLE_LED 0 // if =1, enable the debug LED //#define TEST_ON_NRF51_DK 0 // if =1, configure for running on nRF51-DK board @@ -16,8 +16,11 @@ #define FAST_TICK_SEC 1 // update rtc and run check cap rate while in init and test mode #define EOL_TICK_SEC 10 // update rtc and run check cap rate while in EOL mode -#define CAP_THRESHOLD_HI 36 // Cap on threshold. Lower value means it triggers more easily -#define CAP_THRESHOLD_LOW 14 // Cap off threshold. Higher value means it triggers more easily +#define CAP_THRESHOLD_ON 42 // Cap on threshold. Lower value means it triggers more easily +#define CAP_THRESHOLD_OFF 12 // Cap off threshold. Higher value means it triggers more easily +#define CAP_THRESHOLD_OFF_EOL 25 // Cap off threshold for EOL to ensure bluetooth advertising - FTD 08212020 + +#define CAP_SAMPLES 2 // Number of samples used for cap sensor average - FTD 08212020 //#define CAP_THRESHOLD 25 // adjusts the sensitivity of the cap sensor. Lower value means it triggers more easily //#define CAP_MAX_OFF_READING 1024 // if the off reading exceeds this limit, then reading is invalid and we use last valid reading @@ -25,6 +28,9 @@ #define EOL_TIMEOUT_DAYS 31 // number of days after package is open before unit goes into EOL mode. #define EOL_MAX_USES 120 // number of uses after which the unit goes into EOL mode. +#define CAP_LED_OFF_DELAY 0.0035 // delay (seconds) between turning on analog power and taking a cap sensor ADC reading with the sensor LED off - FTD 08212020 +#define CAP_LED_ON_DELAY 0.000075 // delay (seconds) between turning on cap sensor LED and taking a cap sensor ADC reading - FTD 08212020 + #define LIGHT_SENSE_PWRON_DELAY 0.200 // delay (seconds) between turning on light sense circuit, and taking an ADC reading.