130 lines
3.2 KiB
C
130 lines
3.2 KiB
C
/*
|
|
* SPDX-FileCopyrightText: 2010-2022 Espressif Systems (Shanghai) CO LTD
|
|
*
|
|
* SPDX-License-Identifier: CC0-1.0
|
|
*/
|
|
#define LV_LVGL_H_INCLUDE_SIMPLE
|
|
#include "lv_conf.h"
|
|
|
|
/* 然后包含 lvgl.h */
|
|
#include "lvgl.h"
|
|
|
|
#include <stdio.h>
|
|
#include <inttypes.h>
|
|
#include "sdkconfig.h"
|
|
#include "freertos/FreeRTOS.h"
|
|
#include "freertos/task.h"
|
|
#include "freertos/timers.h"
|
|
#include "esp_chip_info.h"
|
|
#include "esp_flash.h"
|
|
#include "esp_system.h"
|
|
#include "esp_spiffs.h"
|
|
#include "esp_log.h"
|
|
|
|
#include <string.h>
|
|
#include <sys/unistd.h>
|
|
#include <sys/stat.h>
|
|
#include <dirent.h> // 关键:包含 DIR 相关定义
|
|
#include <errno.h> // 错误码定义
|
|
#include <time.h> // 时间相关函数
|
|
|
|
#include "spiffs.h"
|
|
|
|
#include "spi.h"
|
|
|
|
#include "lcd.h"
|
|
|
|
#include "esp_timer.h"
|
|
|
|
#include "lv_port_disp.h"
|
|
#include "lv_port_fs.h"
|
|
|
|
#include "lv_apps/helloworld/lv_helloworld.h"
|
|
|
|
static const char *TAG = "SYS";
|
|
|
|
// 自定义 tick 获取函数
|
|
static uint32_t custom_tick_get(void)
|
|
{
|
|
// 返回从启动到现在的毫秒数
|
|
return (uint32_t)(esp_timer_get_time() / 1000);
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void app_main(void)
|
|
{
|
|
ESP_LOGI(TAG, "Hello world!");
|
|
|
|
/* Print chip information */
|
|
esp_chip_info_t chip_info;
|
|
uint32_t flash_size;
|
|
esp_chip_info(&chip_info);
|
|
ESP_LOGI(TAG, "This is %s chip with %d CPU core(s), %s%s%s%s, ",
|
|
CONFIG_IDF_TARGET,
|
|
chip_info.cores,
|
|
(chip_info.features & CHIP_FEATURE_WIFI_BGN) ? "WiFi/" : "",
|
|
(chip_info.features & CHIP_FEATURE_BT) ? "BT" : "",
|
|
(chip_info.features & CHIP_FEATURE_BLE) ? "BLE" : "",
|
|
(chip_info.features & CHIP_FEATURE_IEEE802154) ? ", 802.15.4 (Zigbee/Thread)" : "");
|
|
|
|
unsigned major_rev = chip_info.revision / 100;
|
|
unsigned minor_rev = chip_info.revision % 100;
|
|
ESP_LOGI(TAG, "silicon revision v%d.%d, ", major_rev, minor_rev);
|
|
if (esp_flash_get_size(NULL, &flash_size) != ESP_OK)
|
|
{
|
|
ESP_LOGI(TAG, "Get flash size failed");
|
|
return;
|
|
}
|
|
|
|
ESP_LOGI(TAG, "%" PRIu32 "MB %s flash", flash_size / (uint32_t)(1024 * 1024),
|
|
(chip_info.features & CHIP_FEATURE_EMB_FLASH) ? "embedded" : "external");
|
|
|
|
ESP_LOGI(TAG, "Minimum free heap size: %" PRIu32 " bytes", esp_get_minimum_free_heap_size());
|
|
|
|
ESP_LOGI(TAG, "sizeof(int) ==%d", sizeof(int));
|
|
ESP_LOGI(TAG, "LVGL version: %s", lv_version_info());
|
|
ESP_LOGI(TAG, "LVGL memory size: %u bytes", LV_MEM_SIZE);
|
|
ESP_LOGI(TAG, "LVGL color depth: %d bits", LV_COLOR_DEPTH);
|
|
|
|
// 1. 初始化 SPIFFS
|
|
const char *spiffs_base_path = "/spiffs";
|
|
esp_err_t ret = spiffs_init(spiffs_base_path);
|
|
|
|
if (ret != ESP_OK)
|
|
{
|
|
ESP_LOGE(TAG, "SPIFFS 初始化失败");
|
|
}
|
|
else
|
|
{
|
|
ESP_LOGI(TAG, "SPIFFS 初始化OK");
|
|
|
|
list_spiffs_files_safe(spiffs_base_path);
|
|
}
|
|
|
|
spi_init();
|
|
lcd_init();
|
|
|
|
lv_init();
|
|
lv_tick_set_cb(custom_tick_get);
|
|
lv_port_disp_init();
|
|
lv_port_fs_init();
|
|
|
|
lv_example_get_started_1();
|
|
|
|
while (1)
|
|
{
|
|
|
|
// lcd_clear_buf(rand());
|
|
// lcd_send_full_buf();
|
|
// t = custom_tick_get();
|
|
// ESP_LOGI(TAG, "NOW is%lu", t);
|
|
|
|
lv_task_handler();
|
|
vTaskDelay(1); // 必须让出CPU
|
|
}
|
|
}
|