Estoy intentando conectar la comunicación UART con STM32L053C8-Discovery. Pero el problema está en la terminal, obtengo símbolos desconocidos.
Mi configuración en CubeMX
/*USERCODEBEGINIncludes*/uint8_ttx_buff[]={1};uint8_trx_buff[10];while(1){HAL_GPIO_TogglePin(GPIOA,GPIO_PIN_5);HAL_UART_Transmit_DMA(&huart1,tx_buff,sizeof(tx_buff));//SendinginDMAmodeHAL_Delay(1000);}
ARX,TXpinesconectéFT232RLmóduloFTDI.
ConArduinofunciona,peroconSTM32enlaterminalsoloobtengosímbolos.Talvezalguienmepuedaexplicarcómoconfigurarcorrectamenteelformato?
Tambiénhayuncódigocompletodemain.c: