I'm trying to simply send a string to the serial port on another computer.
If I send:
UARTprintf( "%s", "ccccc");
I get 5 "NNNNN" on the other screen.
If I sent:
UARTprintf( "%s", "aaaaa");
I get 5 "OOOOO" on the other screen.
The port is set to:
UARTConfigSetExpClk( UART0_BASE, g_ui32SysClock, 4800,
( UART_CONFIG_WLEN_8 | UART_CONFIG_STOP_ONE |
UART_CONFIG_PAR_NONE));
Something basic is set wrong?
Thank you for any help,
Byron
As a note: I've tried using RealTerm to monitor the output. Same result...