We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3b611a5 commit 8367493Copy full SHA for 8367493
test/test_queue_isr.c
@@ -27,7 +27,11 @@
27
static QueueHandle_t xQueue = NULL;
28
static rt_timer_t timer1;
29
30
+#ifdef rt_align
31
rt_align(RT_ALIGN_SIZE)
32
+#else
33
+ALIGN(RT_ALIGN_SIZE)
34
+#endif
35
static char thread1_stack[1024];
36
static struct rt_thread thread1;
37
static void rt_thread1_entry(void *parameter)
test/test_semaphore_isr.c
@@ -26,7 +26,11 @@
26
static SemaphoreHandle_t dynamic_sem = RT_NULL;
0 commit comments