mirror of
https://github.com/FreeRTOS/FreeRTOS-Kernel.git
synced 2025-08-27 21:48:34 -04:00
Remove driver files that generate compiler warnings from the RISC-V_Renode_Emulator_SoftConsole project.
Update RISC-V ports so the interrupt stack is set to a known value before the scheduler is started if the interrupt stack is statically defined rather than re-using the main.c() stack.
This commit is contained in:
parent
16639d2d63
commit
07622ed3ee
17 changed files with 76 additions and 1913 deletions
|
@ -121,7 +121,7 @@ static uint32_t ulLEDState = 0;
|
|||
|
||||
void vSendString( const char * const pcString )
|
||||
{
|
||||
UART_polled_tx_string( &g_uart, pcString );
|
||||
UART_polled_tx_string( &g_uart, ( const uint8_t * ) pcString );
|
||||
}
|
||||
/*-----------------------------------------------------------*/
|
||||
|
||||
|
@ -181,5 +181,13 @@ void vApplicationTickHook( void )
|
|||
}
|
||||
#endif
|
||||
}
|
||||
/*-----------------------------------------------------------*/
|
||||
|
||||
void *_sbrk( ptrdiff_t incr )
|
||||
{
|
||||
/* Required to link, but force an assert to ensure it is never actually
|
||||
called. */
|
||||
configASSERT( ( void * ) incr == NULL );
|
||||
return NULL;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue