Rename vPortGenerateSimulatedInterruptFromWindowsThread

This commit is contained in:
Ching-Hsin Lee 2024-04-29 14:55:18 +08:00
parent c570ba9095
commit a04de0b569
2 changed files with 4 additions and 4 deletions

View file

@ -177,7 +177,7 @@ static DWORD WINAPI prvSimulatedPeripheralTimer( LPVOID lpParameter )
Sleep( portTICK_PERIOD_MS );
}
vPortGenerateSimulatedInterruptFromNative( portINTERRUPT_TICK );
vPortGenerateSimulatedInterruptFromWindowsThread( portINTERRUPT_TICK );
}
return 0;
@ -615,7 +615,7 @@ void vPortGenerateSimulatedInterrupt( uint32_t ulInterruptNumber )
}
/*-----------------------------------------------------------*/
void vPortGenerateSimulatedInterruptFromNative( uint32_t ulInterruptNumber )
void vPortGenerateSimulatedInterruptFromWindowsThread( uint32_t ulInterruptNumber )
{
if( xPortRunning == pdTRUE )
{