1. 完整封装并拓展了SD卡文件管理类,支持基本文件管理功能

2. 简单封装了LVGL渲染类,已经封装好了gif渲染功能
3. 修复了硬件厂商提供的驱动的Bug
4. 初步定义了宠物基类的抽象信息
This commit is contained in:
Misaki
2025-09-09 03:40:24 +08:00
parent 28ceb0caf5
commit 4985fee7c2
24 changed files with 996 additions and 22 deletions
+3 -1
View File
@@ -25,7 +25,9 @@ static void ota_start(const char *url)
.url = url,
.keep_alive_enable = true,
};
esp_https_ota_config_t ota_cfg = { .http_config = &config };
esp_https_ota_config_t ota_cfg = {
.http_config = &config
};
ESP_LOGI(TAG, "开始下载固件...");
esp_err_t ret = esp_https_ota(&ota_cfg);
if (ret == ESP_OK) {