Forum Discussion
Altera_Forum
Honored Contributor
12 years agoAdding a vectored interrupt controller has caused the UART module to stop responding
First, I have a system that is made up of a Nios II/e CPU, JTAG debugger UART, interval timer (sys_clk_timer) and a separate UART module that is used for RS232 serial communication, ect. The system w...
Altera_Forum
Honored Contributor
12 years agoafter two days of debugging...I have solved the problem by using a function usleep(delay_us_number); before writing to the transmit data register and changing from direct register access in firmware to instead use HAL library functions like IOWR_ALTERA_AVALON_UART_TXDATA(UART_BASE,myChar); etc...