Files
CherryUSB/platform/rtthread/usb_check.c

18 lines
400 B
C
Raw Normal View History

#include "rtthread.h"
#ifdef PKG_CHERRYUSB_HOST
#ifndef RT_USING_TIMER_SOFT
#error must enable RT_USING_TIMER_SOFT to support timer callback in thread
#endif
#if IDLE_THREAD_STACK_SIZE < 2048
2024-07-15 18:08:24 +08:00
#error "IDLE_THREAD_STACK_SIZE must be greater than or equal to 2048"
#endif
#if RT_TIMER_THREAD_STACK_SIZE < 2048
2024-07-15 18:08:24 +08:00
#error "RT_TIMER_THREAD_STACK_SIZE must be greater than or equal to 2048"
#endif
#endif