修改上传所有文件

This commit is contained in:
2025-10-21 19:40:27 +08:00
parent 5a84d13ae4
commit 391f81f8fc
8417 changed files with 2995282 additions and 0 deletions

View File

@@ -0,0 +1,34 @@
/*
* segger_rtl.c
*
* Copyright (c) 2022 Semidrive Semiconductor.
* All rights reserved.
*
* Description: SEGGER RunTime Library port
*
* Revision History:
* -----------------
*/
#include <types.h>
#include <param.h>
#include <debug.h>
#include <compiler.h>
#if __SES_ARM
void __aeabi_assert(const char *expr, const char *file, int line)
{
ssdk_printf(SSDK_ERR, "assert in file:%s expr:%s line:%d\n", file, expr, line);
PANIC();
}
int __SEGGER_RTL_X_set_time_of_day(const struct timeval *__tp)
{
return -1;
}
int __SEGGER_RTL_X_get_time_of_day (struct timeval *__tp)
{
return -1;
}
#endif