添加了编译参数提示,完成了bmi088阻塞周期访问版本的实现,添加了zeromalloc

This commit is contained in:
NeoZng
2023-02-04 22:48:53 +08:00
parent 429aa17fa4
commit 144596687c
8 changed files with 274 additions and 53 deletions

View File

@@ -25,6 +25,13 @@
uint8_t GlobalDebugMode = 7;
void* zero_malloc(size_t size)
{
void* ptr=malloc(size);
memset(ptr,0,size);
return ptr;
}
// 快速开方
float Sqrt(float x)
{