1. 测试了屏幕驱动,lvgl,触摸,驱动文件在Lib/Display当中。全部通过(修改了sdkconfig,以适配lvgl)
2. 新增了优雅的C语言错误处理
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
//
|
||||
// Created by misaki on 2025/8/25.
|
||||
//
|
||||
|
||||
#ifndef BIONIC_SPHERE_ERR_HANDLE_H
|
||||
#define BIONIC_SPHERE_ERR_HANDLE_H
|
||||
|
||||
#define ESP_GOTO(goto_tag) do { \
|
||||
goto goto_tag; \
|
||||
} while (0)
|
||||
|
||||
#endif //BIONIC_SPHERE_ERR_HANDLE_H
|
||||
Reference in New Issue
Block a user