This commit is contained in:
刘可亮
2024-01-27 08:47:24 +08:00
parent d3bd993b5f
commit 9f7ba67007
2345 changed files with 74421 additions and 76616 deletions

View File

@@ -1,41 +0,0 @@
#include "rtthread.h"
#include <time.h>
void rt_kprintf(const char *fmt, ...)
{
va_list argptr;
va_start(argptr,fmt);
vprintf(fmt,argptr);
va_end(argptr);
return ;
}
rt_tick_t rt_tick_get(void)
{
return 0;
}
void *rt_malloc(rt_size_t nbytes)
{
void* ret = malloc(nbytes);
return ret;
}
void rt_free(void *ptr)
{
free(ptr);
}
int rt_hw_interrupt_disable(void)
{
return 0;
}
void rt_hw_interrupt_enable(int level)
{
return ;
}