style(freertos/linux): improved docs and coding style

This commit is contained in:
Jakob Hasse
2022-12-29 12:03:08 +08:00
parent 8a095a74d4
commit 83afda922b
3 changed files with 29 additions and 29 deletions

View File

@@ -81,7 +81,7 @@ extern void vPortYield( void );
#define portYIELD() vPortYield()
#define portEND_SWITCHING_ISR( xSwitchRequired ) if( xSwitchRequired != pdFALSE ) vPortYield()
#define portEND_SWITCHING_ISR( xSwitchRequired ) if( (xSwitchRequired) != pdFALSE ) vPortYield()
#define portYIELD_FROM_ISR( x ) portEND_SWITCHING_ISR( x )
/*-----------------------------------------------------------*/