Hello
I'm trying to use the instruction: IntEnable(INT_UART3); but when I build the project it makes a mistake.
That seems right when the argument is: IntEnable(UART3_BASE); but I'm not sure if that is correct.
Regards
This thread has been locked.
If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.
Hello
I'm trying to use the instruction: IntEnable(INT_UART3); but when I build the project it makes a mistake.
That seems right when the argument is: IntEnable(UART3_BASE); but I'm not sure if that is correct.
Regards
Hi,
UARTEnable() function silently enables the FIFO, so if someone needs to play with only one character at the time, then after enabling the UART, mandatory use UARTFIFODisable().
Amit, most/many eight bit micros did not have FIFO, still the communication can be done...
Regards,
Petrei
case 0x61:
UARTCharPut(UART1_BASE,0x61);
UARTCharPut(UART0_BASE,0x0A);
UARTCharPut(UART0_BASE,0x0D);
SysCtlDelay(2000000);
cont = 0;
while(cont < TotDato31A){
Z = UARTCharGetNonBlocking(UART1_BASE);
if (Z != -1){
UARTCharPut(UART0_BASE, Z);
cont++;
}
else{
cont++;
}
}
break;
while(1)
{
//Adquisicion de la imagen
SendCommandToSoC(0x61);
SysCtlDelay(1000000);
}