diff options
author | lonkaars <loek@pipeframe.xyz> | 2024-04-25 15:10:43 +0200 |
---|---|---|
committer | lonkaars <loek@pipeframe.xyz> | 2024-04-25 15:10:43 +0200 |
commit | 42b3b8abd73d0f38efd607fc9dfcf768341549a1 (patch) | |
tree | c867039a66e90e3f740c7b6084701ac266cd1218 /main/FreeRTOSConfig.h | |
parent | 0ef1ae11846bfcbbd63e22d1dfecf579f4069c80 (diff) |
freertos works
Diffstat (limited to 'main/FreeRTOSConfig.h')
-rw-r--r-- | main/FreeRTOSConfig.h | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/main/FreeRTOSConfig.h b/main/FreeRTOSConfig.h index 305bcb4..4897d8d 100644 --- a/main/FreeRTOSConfig.h +++ b/main/FreeRTOSConfig.h @@ -1,6 +1,10 @@ #pragma once // values from pico-examples/pico_w/wifi/freertos +#ifdef __cplusplus +extern "C" { +#endif + #define configUSE_PREEMPTION 1 #define configUSE_TICKLESS_IDLE 0 #define configUSE_IDLE_HOOK 0 @@ -25,7 +29,7 @@ #define configSUPPORT_STATIC_ALLOCATION 0 #define configSUPPORT_DYNAMIC_ALLOCATION 1 #define configTOTAL_HEAP_SIZE (128 * 1024) -#define configAPPLICATION_ALLOCATED_HEAP 0 +#define configAPPLICATION_ALLOCATED_HEAP 4 #define configCHECK_FOR_STACK_OVERFLOW 0 #define configUSE_MALLOC_FAILED_HOOK 0 #define configUSE_DAEMON_TASK_STARTUP_HOOK 0 @@ -67,3 +71,7 @@ #define INCLUDE_xTaskResumeFromISR 1 #define INCLUDE_xQueueGetMutexHolder 1 +#ifdef __cplusplus +} // extern "C" +#endif + |