Add support for building esp32 demo under IDF 5.x (#292)

This commit is contained in:
Anuj Deshpande 2024-04-22 11:50:14 +05:30 committed by GitHub
parent 24305a9c76
commit 77801ce3e4
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 7 additions and 3 deletions

View File

@ -1,3 +1,3 @@
idf_component_register(SRCS "porting/fal_flash_esp32_port.c"
INCLUDE_DIRS "inc" "../../../../port/fal/inc"
REQUIRES "spi_flash")
REQUIRES "spi_flash" "esp_partition" "esp_rom")

View File

@ -11,7 +11,9 @@
#include "freertos/task.h"
#include "freertos/semphr.h"
#include "esp_system.h"
#include "esp_spi_flash.h"
#include "esp_flash_spi_init.h"
#include "spi_flash_mmap.h"
#include "esp_chip_info.h"
#include <flashdb.h>
@ -144,8 +146,10 @@ void app_main()
chip_info.cores);
printf("silicon revision %d, ", chip_info.revision);
uint32_t size_flash_chip;
esp_flash_get_size(NULL, &size_flash_chip);
printf("%dMB %s flash\n", spi_flash_get_chip_size() / (1024 * 1024),
printf("%ldMB %s flash\n", size_flash_chip / (1024 * 1024),
(chip_info.features & CHIP_FEATURE_EMB_FLASH) ? "embedded" : "external");
flashdb_demo();