Update README.md

This commit is contained in:
2026-08-26 23:45:49 -07:00
parent 5f60735b48
commit 9179f5f0a4
3 changed files with 2 additions and 3 deletions
@@ -7,7 +7,6 @@
#include "stm32f407xx_esp8266.h"
#include "ringBuffer.h"
// System clock
uint32_t HCLK_freq;
uint32_t PCLK1_freq;
@@ -23,7 +22,7 @@ static void USART1_UART_Init(void);
// Override for printf function
int __io_putchar(int ch) {
HAL_UART_Transmit(&huart1, (uint8_t*) &ch, 1,
HAL_MAX_DELAY);
HAL_MAX_DELAY);
return ch;
}