Other Parts Discussed in Thread: UNIFLASH
Tool/software: Code Composer Studio
hello ,
please could anyone check my bootloader project,i successfully received the updating results which shown in figure 3,but i have problem with keyboard inputs the code got stuck at the function UART_getKey
the return key is always 0 .
char UART_getKey(sciBASE_t *sci)
{
char key = 0;
/* Waiting for user input */
while(1)
{
//if ((sci->FLR & SCI_RX_INT) != 0)
if ((sci->FLR & (uint32)SCI_RX_INT) != 0)
{
key = (char)sci->RD;
break;
}
}
return key;
}
so i couldn't download the .bin file of my application . or execute it .
( i followed SafetyMCU_Bootloader ---------> ls12_uart_boot) with the .bin file of my application project