diff options
author | lonkaars <loek@pipeframe.xyz> | 2022-10-11 18:22:32 +0200 |
---|---|---|
committer | lonkaars <loek@pipeframe.xyz> | 2022-10-11 18:22:32 +0200 |
commit | 1d385074e33f831e88499603c46e25170b770ada (patch) | |
tree | 2c3be484018110bdf652cf69f363d6d35d456838 /stm32f091/FreeRTOSConfig.h | |
parent | 5b1f94522624e18fe9fd94478ada1c8d8997b747 (diff) |
working data receive from si7021 module
Diffstat (limited to 'stm32f091/FreeRTOSConfig.h')
-rw-r--r-- | stm32f091/FreeRTOSConfig.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/stm32f091/FreeRTOSConfig.h b/stm32f091/FreeRTOSConfig.h index b1a692a..223cf8b 100644 --- a/stm32f091/FreeRTOSConfig.h +++ b/stm32f091/FreeRTOSConfig.h @@ -50,7 +50,7 @@ #if defined(__ICCARM__) || defined(__CC_ARM) || defined(__GNUC__) #include <stdint.h> extern uint32_t SystemCoreClock; - // void xPortSysTickHandler(void); + void xPortSysTickHandler(void); #endif #define configUSE_PREEMPTION 1 #define configSUPPORT_STATIC_ALLOCATION 1 @@ -119,7 +119,7 @@ standard names. */ /* IMPORTANT: This define is commented when used with STM32Cube firmware, when the timebase source is SysTick, to prevent overwriting SysTick_Handler defined within STM32Cube HAL */ -#define xPortSysTickHandler SysTick_Handler +/* #define xPortSysTickHandler SysTick_Handler */ /* USER CODE BEGIN Defines */ /* Section where parameter definitions can be added (for instance, to override default ones in FreeRTOS.h) */ |