Skip to content

Commit 9e75e65

Browse files
committed
increase timer callback task for more usage
1 parent 335cde0 commit 9e75e65

File tree

3 files changed

+8
-1
lines changed

3 files changed

+8
-1
lines changed

cores/nRF5/freertos/config/FreeRTOSConfig.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@
9191
#define configUSE_TIMERS 1
9292
#define configTIMER_TASK_PRIORITY ( 2 ) // Normal
9393
#define configTIMER_QUEUE_LENGTH 32
94-
#define configTIMER_TASK_STACK_DEPTH ( 100 )
94+
#define configTIMER_TASK_STACK_DEPTH ( 256 )
9595

9696
/* Tickless Idle configuration. */
9797
#define configEXPECTED_IDLE_TIME_BEFORE_SLEEP 2

libraries/Bluefruit52Lib/src/BLEUuid.cpp

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,12 @@ const uint8_t UUID128_CHR_ADAFRUIT_MEASUREMENT_PERIOD[16] =
4242
0xA8, 0x42, 0x32, 0xC3, 0x01, 0x00, 0xAF, 0xAD
4343
};
4444

45+
const uint8_t UUID128_CHR_ADAFRUIT_VERSION[16] =
46+
{
47+
0xB8, 0x6c, 0x75, 0x05, 0xE9, 0x25, 0xBD, 0x93,
48+
0xA8, 0x42, 0x32, 0xC3, 0x02, 0x00, 0xAF, 0xAD
49+
};
50+
4551
void BLEUuid::set(uint16_t uuid16)
4652
{
4753
_uuid.type = BLE_UUID_TYPE_BLE;

libraries/Bluefruit52Lib/src/BLEUuid.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,7 @@ class BLEUuid
7676
// Custom UUID Service
7777
//--------------------------------------------------------------------+
7878
extern const uint8_t UUID128_CHR_ADAFRUIT_MEASUREMENT_PERIOD[16];
79+
extern const uint8_t UUID128_CHR_ADAFRUIT_VERSION[16];
7980

8081
/*------------------------------------------------------------------*/
8182
/* Service UUID

0 commit comments

Comments
 (0)