修复 log2file.c 创建文件夹失败的问题

更新版本号为2.61d
This commit is contained in:
CSSC-WORK\murmur 2023-10-31 10:57:04 +08:00
parent 3169b24a24
commit 375dbf5fc4
2 changed files with 2 additions and 2 deletions

View File

@ -167,4 +167,4 @@ void updateDebuglogName(void)
//MSH_CMD_EXPORT(updateDebuglogName,更新debug日志的文件名);
MSH_CMD_EXPORT(initLogFileBackend,initLogFileBackend);
INIT_COMPONENT_EXPORT(initLogFileBackend);
INIT_APP_EXPORT(initLogFileBackend);

View File

@ -86,7 +86,7 @@ void show_version(void)
char str[30];
uint8_t t[10];
size_t len=time2Byte(t);
rt_kprintf("SW Version: %s, build-%s\n","2.6d",bytes2str(t, 3, 10, "", str));
rt_kprintf("SW Version: %s, build-%s\n","2.61d",bytes2str(t, 3, 10, "", str));
}
MSH_CMD_EXPORT(show_version,);