35 lines
421 B
C
35 lines
421 B
C
#include <stdio.h>
|
|
|
|
|
|
#include <esp_log.h>
|
|
|
|
#include "err_handle.h"
|
|
|
|
#include "drivers_test.h"
|
|
|
|
|
|
|
|
void app_main(void)
|
|
{
|
|
// imu_test(); // imu测试
|
|
|
|
// battery_test();
|
|
|
|
// wireless_test();
|
|
|
|
// sd_card_module_test();
|
|
|
|
// pcf85063_test();
|
|
|
|
// exio_text();
|
|
|
|
// audio_test();
|
|
|
|
// lcd_touch_lvgl_test();
|
|
|
|
gif_test();
|
|
ESP_GOTO(err);
|
|
err:
|
|
ESP_LOGI("app_main", "app_main error");
|
|
}
|