Fix spelling mistakes copied and pasted into a couple of RISC-V demo main.c files.

pull/8/head
Richard Barry 5 years ago
parent fccc445865
commit c0741e36ed

@ -48,7 +48,7 @@
* main_full.c. * main_full.c.
*/ */
.align( 8 ) .align( 4 )
vRegTest1Implementation: vRegTest1Implementation:
/* Fill the additional registers with known values. */ /* Fill the additional registers with known values. */
@ -193,12 +193,12 @@ reg1_error_loop:
ebreak ebreak
jal reg1_error_loop jal reg1_error_loop
.align( 16 ) .align( 4 )
ulRegTest1LoopCounterConst: .word ulRegTest1LoopCounter ulRegTest1LoopCounterConst: .word ulRegTest1LoopCounter
/*-----------------------------------------------------------*/ /*-----------------------------------------------------------*/
.align( 8 ) .align( 4 )
vRegTest2Implementation: vRegTest2Implementation:
/* Fill the additional registers with known values. */ /* Fill the additional registers with known values. */
@ -340,7 +340,7 @@ reg2_error_loop:
ebreak ebreak
jal reg2_error_loop jal reg2_error_loop
.align( 16 ) .align( 4 )
ulRegTest2LoopCounterConst: .word ulRegTest2LoopCounter ulRegTest2LoopCounterConst: .word ulRegTest2LoopCounter

@ -87,10 +87,10 @@ void vApplicationIdleHook( void );
void vApplicationStackOverflowHook( TaskHandle_t pxTask, char *pcTaskName ); void vApplicationStackOverflowHook( TaskHandle_t pxTask, char *pcTaskName );
void vApplicationTickHook( void ); void vApplicationTickHook( void );
/* Prepare haredware to run the demo. */ /* Prepare hardware to run the demo. */
static void prvSetupHardware( void ); 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 ); void vSendString( const char * const pcString );
/*-----------------------------------------------------------*/ /*-----------------------------------------------------------*/

@ -71,10 +71,10 @@ void vApplicationIdleHook( void );
void vApplicationStackOverflowHook( TaskHandle_t pxTask, char *pcTaskName ); void vApplicationStackOverflowHook( TaskHandle_t pxTask, char *pcTaskName );
void vApplicationTickHook( void ); void vApplicationTickHook( void );
/* Prepare haredware to run the demo. */ /* Prepare hardware to run the demo. */
static void prvSetupHardware( void ); 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 ); void vSendString( const char * const pcString );
/*-----------------------------------------------------------*/ /*-----------------------------------------------------------*/

Loading…
Cancel
Save