File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -448,7 +448,7 @@ void OSTimeTickHook (void)
448
448
*********************************************************************************************************
449
449
* SYS TICK HANDLER
450
450
*
451
- * Description: Handle the system tick (SysTick) interrupt, which is used to generate the uC/OS-II tick
451
+ * Description: Handle the system tick (SysTick) interrupt, which is used to generate the uC/OS-III tick
452
452
* interrupt.
453
453
*
454
454
* Arguments : None.
@@ -464,12 +464,12 @@ void SysTick_Handler (void)
464
464
465
465
466
466
CPU_CRITICAL_ENTER ();
467
- OSIntEnter (); /* Tell uC/OS-II that we are starting an ISR */
467
+ OSIntEnter (); /* Tell uC/OS-III that we are starting an ISR */
468
468
CPU_CRITICAL_EXIT ();
469
469
470
- OSTimeTick (); /* Call uC/OS-II 's OSTimeTick() */
470
+ OSTimeTick (); /* Call uC/OS-III 's OSTimeTick() */
471
471
472
- OSIntExit (); /* Tell uC/OS-II that we are leaving the ISR */
472
+ OSIntExit (); /* Tell uC/OS-III that we are leaving the ISR */
473
473
}
474
474
475
475
You can’t perform that action at this time.
0 commit comments