1.将A27新UI文件夹重命名为CANUI 2.A272O新版本发布

This commit is contained in:
2025-03-26 18:43:18 +08:00
parent 497f8eb1e1
commit 5bc7ee438c
13399 changed files with 58500 additions and 59183 deletions

View File

@ -0,0 +1,16 @@
#include "os_adapt.h"
void *malloc(size_t size)
{
return pvPortMalloc(size);
}
void free(void *ptr)
{
vPortFree(ptr);
}
void *realloc(void *ptr, size_t size)
{
return pvPortRealloc(ptr, size);
}