diff --git a/Pilotes/Source/MyUart.c b/Pilotes/Source/MyUart.c index 015b3e2..de08402 100644 --- a/Pilotes/Source/MyUart.c +++ b/Pilotes/Source/MyUart.c @@ -18,6 +18,7 @@ void My_USART_Config(USART_TypeDef* USARTx, uint32_t baudrate) { //QUE POUR USAR }; + void USART_Send_Char(USART_TypeDef* USARTx, char car) { while ((USARTx->SR & USART_SR_TXE)==0){} USARTx->DR = car;