Skip to content

Commit 09bd6fd

Browse files
JF002Gitea
authored andcommitted
Merge branch 'develop' of JF/PineTime into master
2 parents 3f7360c + ee430fe commit 09bd6fd

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

src/FreeRTOSConfig.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@
6363
#define configTICK_RATE_HZ 1024
6464
#define configMAX_PRIORITIES ( 3 )
6565
#define configMINIMAL_STACK_SIZE ( 120 )
66-
#define configTOTAL_HEAP_SIZE ( 1024*14 )
66+
#define configTOTAL_HEAP_SIZE ( 1024*15 )
6767
#define configMAX_TASK_NAME_LEN ( 4 )
6868
#define configUSE_16_BIT_TICKS 0
6969
#define configIDLE_SHOULD_YIELD 1

src/heartratetask/HeartRateTask.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ HeartRateTask::HeartRateTask(Drivers::Hrs3300 &heartRateSensor, Controllers::Hea
1414
}
1515

1616
void HeartRateTask::Start() {
17-
//if (pdPASS != xTaskCreate(HeartRateTask::Process, "Heartrate", 500, this, 0, &taskHandle))
18-
// APP_ERROR_HANDLER(NRF_ERROR_NO_MEM);
17+
if (pdPASS != xTaskCreate(HeartRateTask::Process, "Heartrate", 500, this, 0, &taskHandle))
18+
APP_ERROR_HANDLER(NRF_ERROR_NO_MEM);
1919
}
2020

2121
void HeartRateTask::Process(void *instance) {

0 commit comments

Comments
 (0)