Merge branch 'bugfix/freertos_port_miss_header_v5.0' into 'release/v5.0'

freertos: add missing header include for esp_chip_info.h to port.c (v5.0)

See merge request espressif/esp-idf!21458
This commit is contained in:
Marius Vikhammer
2022-12-06 23:00:03 +08:00
2 changed files with 2 additions and 0 deletions

View File

@ -31,6 +31,7 @@
#include "esp_freertos_hooks.h" #include "esp_freertos_hooks.h"
#include "esp_intr_alloc.h" #include "esp_intr_alloc.h"
#include "esp_memory_utils.h" #include "esp_memory_utils.h"
#include "esp_chip_info.h"
#if CONFIG_SPIRAM #if CONFIG_SPIRAM
/* Required by esp_psram_extram_reserve_dma_pool() */ /* Required by esp_psram_extram_reserve_dma_pool() */
#include "esp_psram.h" #include "esp_psram.h"

View File

@ -76,6 +76,7 @@
#include "port_systick.h" #include "port_systick.h"
#include "esp_cpu.h" #include "esp_cpu.h"
#include "esp_memory_utils.h" #include "esp_memory_utils.h"
#include "esp_chip_info.h"
_Static_assert(portBYTE_ALIGNMENT == 16, "portBYTE_ALIGNMENT must be set to 16"); _Static_assert(portBYTE_ALIGNMENT == 16, "portBYTE_ALIGNMENT must be set to 16");