Tool/software:
I am using the bootloader example of TIVA and working correctly on UART1. Now same i want to modify for the UART3 what changes have to do in blconfig.h .
void Uart3_Boot_init(uint32_t ui32SysClock) {
MAP_GPIOPinTypeUART(GPIO_PORTA_BASE, GPIO_PIN_4 | GPIO_PIN_5); // Set GPIO A6 and as UART pins.
MAP_UARTConfigSetExpClk(UART3_BASE, ui32SysClock, 115200,
(UART_CONFIG_WLEN_8 | UART_CONFIG_STOP_ONE | UART_CONFIG_PAR_NONE));
MAP_IntEnable(INT_UART3);
MAP_UARTIntEnable(UART3_BASE, UART_INT_RX | UART_INT_RT);
write_ptr_uart3 = cir_buffer_uart3;
read_ptr_uart3 = cir_buffer_uart3;
rcv_buff_end_uart3 = &cir_buffer_uart3[UART3_SIZE];
}
what changes to be do in blconfi