修改名称

This commit is contained in:
RB 2025-04-28 15:44:14 +08:00
parent 2dc317f5ce
commit b9b0053baa
3 changed files with 5 additions and 3 deletions

View File

@ -1,5 +1,7 @@
{ {
"files.associations": { "files.associations": {
"uart.h": "c" "uart.h": "c",
"device.h": "c",
"pc_uart.h": "c"
} }
} }

View File

@ -1,5 +1,5 @@
/* Includes ----------------------------------------------------------------- */ /* Includes ----------------------------------------------------------------- */
#include "uart.h" #include "pc_uart.h"
#include <string.h> #include <string.h>
@ -50,5 +50,5 @@ int8_t UART_StartSend(UART_t *huart)
{ {
return DEVICE_OK return DEVICE_OK
} }
return DEVICE_ERROR; return DEVICE_ERR;
} }