Merge branch 'feature/c5_rom_bootloader' into 'master'

feat(c5): update bootloader component for C5

Closes IDF-8653

See merge request espressif/esp-idf!29458
This commit is contained in:
Marius Vikhammer
2024-03-12 16:11:24 +08:00
4 changed files with 2 additions and 35 deletions

View File

@@ -23,15 +23,6 @@
#include "bootloader_memory_utils.h"
#include "soc/soc_caps.h"
#include "hal/cache_ll.h"
#if CONFIG_IDF_TARGET_ESP32C2
#include "esp32c2/rom/rtc.h"
#elif CONFIG_IDF_TARGET_ESP32C6
#include "esp32c6/rom/rtc.h"
#elif CONFIG_IDF_TARGET_ESP32H2
#include "esp32h2/rom/rtc.h"
#elif CONFIG_IDF_TARGET_ESP32P4
#include "esp32p4/rom/rtc.h"
#endif
#define ALIGN_UP(num, align) (((num) + ((align) - 1)) & ~((align) - 1))