File tree Expand file tree Collapse file tree 4 files changed +4
-4
lines changed
Expand file tree Collapse file tree 4 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -63,7 +63,7 @@ static void vTask2Code(void * pvParameters)
6363int event_group_dynamic (void )
6464{
6565 xEventGroup = xEventGroupCreate ();
66- xEventGroupDelete (xEventGroup );
66+ vEventGroupDelete (xEventGroup );
6767 xEventGroup = xEventGroupCreate ();
6868 if (xEventGroup == NULL )
6969 {
Original file line number Diff line number Diff line change @@ -63,7 +63,7 @@ static void vTask2Code(void * pvParameters)
6363int event_group_static (void )
6464{
6565 xEventGroup = xEventGroupCreateStatic ( & xEventGroupBuffer );
66- xEventGroupDelete (xEventGroup );
66+ vEventGroupDelete (xEventGroup );
6767 xEventGroup = xEventGroupCreateStatic ( & xEventGroupBuffer );
6868 if (xEventGroup == NULL )
6969 {
Original file line number Diff line number Diff line change 2727static QueueHandle_t xQueue = NULL ;
2828static rt_timer_t timer1 ;
2929
30- ALIGN (RT_ALIGN_SIZE )
30+ rt_align (RT_ALIGN_SIZE )
3131static char thread1_stack [1024 ];
3232static struct rt_thread thread1 ;
3333static void rt_thread1_entry (void * parameter )
Original file line number Diff line number Diff line change 2626static SemaphoreHandle_t dynamic_sem = RT_NULL ;
2727static rt_timer_t timer1 ;
2828
29- ALIGN (RT_ALIGN_SIZE )
29+ rt_align (RT_ALIGN_SIZE )
3030static char thread1_stack [1024 ];
3131static struct rt_thread thread1 ;
3232static void rt_thread1_entry (void * parameter )
You can’t perform that action at this time.
0 commit comments