Test using the base BLE_HeartRate example to see the effect of increasing the "ticker" rate on stability (intending to do AnalogIn around 1ms rate)
Dependencies: BLE_API mbed nRF51822
Diff: main.cpp
- Revision:
- 10:c9a78ca03515
- Parent:
- 9:1cfd6c7055b5
- Child:
- 11:0e738f47ecd2
--- a/main.cpp Wed Oct 01 07:40:55 2014 +0000
+++ b/main.cpp Wed Oct 01 07:42:28 2014 +0000
@@ -35,7 +35,7 @@
#endif /* #if NEED_CONSOLE_OUTPUT */
// Sample interval (uS)
-volatile uint32_t sampleIntervalUs = 2000;
+volatile uint32_t sampleIntervalUs = 1000;
// Timer to do the sampling etc
Timer intervalTimer;
@@ -58,7 +58,7 @@
void periodicCallback(void)
{
callbackCount++;
- if (callbackCount == 500)
+ if (callbackCount == 1000)
{
callbackCount = 0;
indicatorLed1 = !indicatorLed1;
@@ -109,7 +109,7 @@
{
triggerSensorPolling = false;
bleUpdateCount++;
- if (bleUpdateCount >= 500)
+ if (bleUpdateCount >= 1000)
{
bleUpdateCount = 0;
indicatorLed2 = !indicatorLed2;