A27系列优化I2C/RTC处理,新增版本A270Y

This commit is contained in:
2025-06-07 10:24:51 +08:00
parent 413dd88f3b
commit 73e1c7dafa
372 changed files with 60642 additions and 60661 deletions

View File

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