Added the "full" demo to the RISC-V_RV32_SiFive_HiFive1_GCC demo - backup check in only as still a work in progress.

This commit is contained in:
Richard Barry 2019-10-13 22:53:00 +00:00
parent 71d9450836
commit d4216903d9
11 changed files with 1021 additions and 126 deletions

View file

@ -191,14 +191,9 @@ extern void vToggleLED( void );
is it the expected value? If it is, toggle the LED. */
if( ulReceivedValue == ulExpectedValue )
{
write( STDOUT_FILENO, pcPassMessage, strlen( pcPassMessage ) );
vToggleLED();
ulReceivedValue = 0U;
}
else
{
write( STDOUT_FILENO, pcFailMessage, strlen( pcFailMessage ) );
}
}
}
/*-----------------------------------------------------------*/