Usart1_Send_Byte(0x00)此代码是 invalid in C99
时间: 2024-01-24 11:17:46 浏览: 120
usart.zip_stm32f1 usart_stm32串口代码
这个问题可能是因为您的编译器不支持旧版的函数声明语法。在 C99 中,函数声明需要指定参数类型。因此,您需要将函数声明改为以下形式:
```
void Usart1_Send_Byte(uint8_t data);
```
其中 `uint8_t` 是参数 `data` 的类型。这样修改后,您应该能够成功编译代码了。
阅读全文