From b0566b6cf7624d9ede77177b15fac0ca512f2a4d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=B0=8F=E5=86=AFSir?= Date: Sat, 4 May 2024 17:49:19 +0800 Subject: [PATCH] Define the parsedate function in the. h file --- Firmware/Core/apps/Inc/command.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Firmware/Core/apps/Inc/command.h b/Firmware/Core/apps/Inc/command.h index 14462c9..05c83ac 100644 --- a/Firmware/Core/apps/Inc/command.h +++ b/Firmware/Core/apps/Inc/command.h @@ -14,5 +14,5 @@ #include "string.h" void command_Process(uint8_t *str,uint16_t size); - +uint8_t parsedate(const char *date_str, int *year, int *month, int *day); #endif //FIRMWARE_CORE_APPS_INC_COMMAND_H_