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
+1 -1
View File
@@ -14,7 +14,7 @@ STM32F407VET6 (LQFP100)
<a href="workspace/ESP8266_AT_CMD_VET6/">ESP8266_AT_CMD_VET6</a>
</summary>
<img src="./images/ESP8266_AT_CMD_VET6.png" width="800">
</details>
Binary file not shown.

After

Width:  |  Height:  |  Size: 177 KiB

@@ -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;
}