And isn't this code in boot_config.c (Lines 80-83): . interfacePins . UART_RXD_pad_num = DEF_UART_RXD_PAD, . interfacePins . UART_RXD_PF_mux_sel = DEF_UART_RXD_MUX, . interfacePins . UART_TXD_pad_num = DEF_UART_TXD_PAD, . interfacePins . UART_TXD_PF_mux_sel = DEF_UART_TXD_MUX, the same configuration like the one that I make in ti_msp_dl_config.h (Lines 49 - 56) #define BSL_GPIO_UART_TX_PIN (22U) // PB6 // PINCM23 Übergangs-Config #define BSL_GPIO_UART_RX_PIN (23U) // PB7 // PINCM24 #define BSL_GPIO_UART_TX (2U) #define BSL_GPIO_UART_RX (2U) /* Definitions for UART */ #define BSL_UART ( UART1 ) #define BSL_UART_INTERRUPT_NUM ( UART1_INT_IRQn ) For me it looks like I make the same configs in two files...
↧