Forum Discussion
Altera_Forum
Honored Contributor
12 years agoThe altera UART component should de-assert the transmit ready signal (7th bit in the status register) if the FIFO is full, but the signal never turns off.
I originally had it set where I created a pointer to the UART: while(!pUART->Status.sBits.trrdy); //wait for transmit ready pUART->TxDATA = myChar; //then transmit data maybe this is why Altera recommends to use the HAL library functions instead of direct access.