diff options
| author | hathach <[email protected]> | 2022-12-05 12:09:41 +0700 |
|---|---|---|
| committer | hathach <[email protected]> | 2022-12-05 12:09:41 +0700 |
| commit | de5a67bf3b8737a580539c5fbc6a054c90e4a084 (patch) | |
| tree | 42ecb08765999aa78d2dfd8a9b862650233b88e7 /examples/device/hid_composite_freertos/src/FreeRTOSConfig/FreeRTOSConfig.h | |
| parent | 52261ac02dfbe58f35f959be852f0949cc0744cd (diff) | |
clean osal_freertos, update freertos examples to work with configSUPPORT_DYNAMIC_ALLOCATION only
note: for example to build with configSUPPORT_STATIC_ALLOCATION = 0, one
of heap_n.c must be included in makefile/cmake
Diffstat (limited to 'examples/device/hid_composite_freertos/src/FreeRTOSConfig/FreeRTOSConfig.h')
| -rw-r--r-- | examples/device/hid_composite_freertos/src/FreeRTOSConfig/FreeRTOSConfig.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/examples/device/hid_composite_freertos/src/FreeRTOSConfig/FreeRTOSConfig.h b/examples/device/hid_composite_freertos/src/FreeRTOSConfig/FreeRTOSConfig.h index bfdf1e926..968c59749 100644 --- a/examples/device/hid_composite_freertos/src/FreeRTOSConfig/FreeRTOSConfig.h +++ b/examples/device/hid_composite_freertos/src/FreeRTOSConfig/FreeRTOSConfig.h @@ -46,13 +46,14 @@ #include "bsp/board_mcu.h" #if CFG_TUSB_MCU == OPT_MCU_ESP32S2 || CFG_TUSB_MCU == OPT_MCU_ESP32S3 -#error "ESP32-Sx should use IDF's FreeRTOSConfig.h" + #error "ESP32-Sx should use IDF's FreeRTOSConfig.h" #endif +// TODO fix later #if CFG_TUSB_MCU == OPT_MCU_MM32F327X - // TODO fix/remove later extern u32 SystemCoreClock; #else + // FIXME cause redundant-decls warnings extern uint32_t SystemCoreClock; #endif @@ -68,7 +69,7 @@ #define configTICK_RATE_HZ ( 1000 ) #define configMAX_PRIORITIES ( 5 ) #define configMINIMAL_STACK_SIZE ( 128 ) -#define configTOTAL_HEAP_SIZE ( 0*1024 ) // dynamic is not used +#define configTOTAL_HEAP_SIZE ( configSUPPORT_DYNAMIC_ALLOCATION*4*1024 ) #define configMAX_TASK_NAME_LEN 16 #define configUSE_16_BIT_TICKS 0 #define configIDLE_SHOULD_YIELD 1 |
