diff options
| author | sakumisu <[email protected]> | 2024-07-15 18:08:24 +0800 |
|---|---|---|
| committer | sakumisu <[email protected]> | 2024-07-15 18:09:55 +0800 |
| commit | 390e24fbe57c3b7c0afc1e39206272d2f9d956bc (patch) | |
| tree | eae1137f535f0f608be481ab12cdfca6d7b7f517 /platform | |
| parent | ba02a48873a2bf922e03a922d2ef0f6902d25909 (diff) | |
fix typo
Diffstat (limited to 'platform')
| -rw-r--r-- | platform/rtthread/usb_check.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/platform/rtthread/usb_check.c b/platform/rtthread/usb_check.c index d4baf03e..de0d4802 100644 --- a/platform/rtthread/usb_check.c +++ b/platform/rtthread/usb_check.c @@ -7,11 +7,11 @@ #endif #if IDLE_THREAD_STACK_SIZE < 2048 -#error "IDLE_THREAD_STACK_SIZE must be greater than 2048" +#error "IDLE_THREAD_STACK_SIZE must be greater than or equal to 2048" #endif #if RT_TIMER_THREAD_STACK_SIZE < 2048 -#error "RT_TIMER_THREAD_STACK_SIZE must be greater than 2048" +#error "RT_TIMER_THREAD_STACK_SIZE must be greater than or equal to 2048" #endif #endif |
