439a379945
2. 修改wifi与蓝牙的驱动代码,并且进行了测试,测试通过 3. 新增分区表,为板载16M的flash作分区规划,预留ota分区 4. 测试了SD卡的驱动,正常读出数据,测试通过 5. 新增了CMake配置,just_monitor(monitor_only.sh),只监视,无编译,无烧录
18 lines
207 B
C
18 lines
207 B
C
#include <stdio.h>
|
|
|
|
|
|
#include <esp_log.h>
|
|
|
|
#include <drivers_test.h>
|
|
|
|
|
|
void app_main(void)
|
|
{
|
|
// imu_test(); // imu测试
|
|
// battery_test();
|
|
|
|
// wireless_test();
|
|
|
|
sd_card_module_test();
|
|
}
|