summaryrefslogtreecommitdiff
path: root/platform/rtthread/usb_check.c
blob: adec2c510fd50b769bf0e42ecb172d6fa4be6475 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include "rtthread.h"

#if defined(PKG_CHERRYUSB_HOST) || defined(RT_CHERRYUSB_HOST)

#ifndef RT_USING_TIMER_SOFT
#error must enable RT_USING_TIMER_SOFT to support timer callback in thread
#endif

#if RT_TIMER_THREAD_STACK_SIZE < 2048
#error "RT_TIMER_THREAD_STACK_SIZE must be >= 2048"
#endif

#endif