mirror of
https://github.com/FreeRTOS/FreeRTOS-Kernel.git
synced 2025-04-19 21:11:57 -04:00
Fix spelling mistakes copied and pasted into a couple of RISC-V demo main.c files.
This commit is contained in:
parent
fccc445865
commit
c0741e36ed
|
@ -48,7 +48,7 @@
|
|||
* main_full.c.
|
||||
*/
|
||||
|
||||
.align( 8 )
|
||||
.align( 4 )
|
||||
vRegTest1Implementation:
|
||||
|
||||
/* Fill the additional registers with known values. */
|
||||
|
@ -193,12 +193,12 @@ reg1_error_loop:
|
|||
ebreak
|
||||
jal reg1_error_loop
|
||||
|
||||
.align( 16 )
|
||||
.align( 4 )
|
||||
ulRegTest1LoopCounterConst: .word ulRegTest1LoopCounter
|
||||
|
||||
/*-----------------------------------------------------------*/
|
||||
|
||||
.align( 8 )
|
||||
.align( 4 )
|
||||
vRegTest2Implementation:
|
||||
|
||||
/* Fill the additional registers with known values. */
|
||||
|
@ -340,7 +340,7 @@ reg2_error_loop:
|
|||
ebreak
|
||||
jal reg2_error_loop
|
||||
|
||||
.align( 16 )
|
||||
.align( 4 )
|
||||
ulRegTest2LoopCounterConst: .word ulRegTest2LoopCounter
|
||||
|
||||
|
||||
|
|
|
@ -87,10 +87,10 @@ void vApplicationIdleHook( void );
|
|||
void vApplicationStackOverflowHook( TaskHandle_t pxTask, char *pcTaskName );
|
||||
void vApplicationTickHook( void );
|
||||
|
||||
/* Prepare haredware to run the demo. */
|
||||
/* Prepare hardware to run the demo. */
|
||||
static void prvSetupHardware( void );
|
||||
|
||||
/* Send a messaage to the UART initialised in prvSetupHardware. */
|
||||
/* Send a message to the UART initialised in prvSetupHardware. */
|
||||
void vSendString( const char * const pcString );
|
||||
|
||||
/*-----------------------------------------------------------*/
|
||||
|
|
|
@ -71,10 +71,10 @@ void vApplicationIdleHook( void );
|
|||
void vApplicationStackOverflowHook( TaskHandle_t pxTask, char *pcTaskName );
|
||||
void vApplicationTickHook( void );
|
||||
|
||||
/* Prepare haredware to run the demo. */
|
||||
/* Prepare hardware to run the demo. */
|
||||
static void prvSetupHardware( void );
|
||||
|
||||
/* Send a messaage to the UART initialised in prvSetupHardware. */
|
||||
/* Send a message to the UART initialised in prvSetupHardware. */
|
||||
void vSendString( const char * const pcString );
|
||||
|
||||
/*-----------------------------------------------------------*/
|
||||
|
|
Loading…
Reference in a new issue