mirror of
https://github.com/FreeRTOS/FreeRTOS-Kernel.git
synced 2025-08-01 08:54:14 -04:00
Update ports that have their tick configuration in an application callback to use xTaskIncrementTick() in place of vTaskIncrementTick().
This commit is contained in:
parent
c04b074707
commit
59a834eb86
5 changed files with 17 additions and 37 deletions
|
@ -364,7 +364,7 @@ void vTickISR( void )
|
|||
necessitates. Ensure IPL is at the max syscall value first. */
|
||||
portDISABLE_INTERRUPTS_FROM_KERNEL_ISR();
|
||||
{
|
||||
if( TaskIncrementTick() != pdFALSE )
|
||||
if( xTaskIncrementTick() != pdFALSE )
|
||||
{
|
||||
taskYIELD();
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue