Part Number: AM6548
I am using the AM65xx IDK and EVM evaluation module.
I am using the rtos_template_app_am65xx_a53 example project.
I am trying to modify the example UART driver code so that I can utilize the Main UART 1 for testing.
So far, the only code that I have modified is in the board_lld_init.c file.
//UART_stdioInit(BOARD_UART0_INSTANCE);//Main UART 0
UART_stdioInit(BOARD_UART1_INSTANCE);//Main UART 1
I am monitoring the 4 input pins on the Multiplexer chip (U42, pins 4, 7, 9, 12) in order to see the signal coming out from the UART,
but I am not seeing any activity.
Do you know which input pin the Main UART 1 is mapped to?
Do you know what other code I need to modify to activate Main UART 1?
Thanks