mirror of
https://github.com/FreeRTOS/FreeRTOS-Kernel.git
synced 2025-04-19 21:11:57 -04:00
Fix formatting
This commit is contained in:
parent
77dead25cd
commit
2385f941f1
|
@ -740,17 +740,17 @@ TaskHandle_t xTimerGetTimerDaemonTaskHandle( void ) PRIVILEGED_FUNCTION;
|
|||
* // Reset the timer that is responsible for turning the back-light off after
|
||||
* // 5 seconds of key inactivity. Wait 10 ticks for the command to be
|
||||
* // successfully sent if it cannot be sent immediately.
|
||||
* if( xTimerReset( xBacklightTimer, 10 ) == pdPASS )
|
||||
* {
|
||||
* if( xTimerReset( xBacklightTimer, 10 ) == pdPASS )
|
||||
* {
|
||||
* // Turn on the LCD back-light. It will be turned off in the
|
||||
* // vBacklightTimerCallback after 5 seconds of key inactivity.
|
||||
* vSetBacklightState( BACKLIGHT_ON );
|
||||
* vSetBacklightState( BACKLIGHT_ON );
|
||||
* }
|
||||
* else
|
||||
* {
|
||||
* // The reset command was not executed successfully. Take appropriate
|
||||
* // action here.
|
||||
* }
|
||||
* else
|
||||
* {
|
||||
* // The reset command was not executed successfully. Take appropriate
|
||||
* // action here.
|
||||
* }
|
||||
*
|
||||
* // Perform the rest of the key processing here.
|
||||
* }
|
||||
|
|
Loading…
Reference in a new issue