Hi Kojito,
I have one more question on ISR:
I have installed my own isr like this:
_int_install_isr(INT_UART3_RX_TX, uart_rx_tx_isr, NULL);
_cortex_int_init(INT_UART3_RX_TX, 2, TRUE);
_cortex_int_enable(INT_UART3_RX_TX);
ISR:
void
uart_rx_tx_isr( pointer user_isr_ptr )
{
volatile int_32 value;
if (sci_ptr->S1 & UART_S1_RDRF_MASK)
{
value = sci_ptr->D;
}
By doing this i am unable to get the exact data in varilabe "value". Is there any way to read the exact data from UART? I am testing this on tower module k40.