소스 검색

change: rtos_timer在freertos下的适配器,定时器数量从32增加到64

Wendal Chen 1 년 전
부모
커밋
8d5dfc7fef
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      luat/freertos/luat_timer_freertos.c

+ 1 - 1
luat/freertos/luat_timer_freertos.c

@@ -17,7 +17,7 @@
 #define LUAT_LOG_TAG "timer"
 #include "luat_log.h"
 
-#define FREERTOS_TIMER_COUNT 32
+#define FREERTOS_TIMER_COUNT 64
 static luat_timer_t* timers[FREERTOS_TIMER_COUNT] = {0};
 
 static inline int MS2T(int ms) {