fix(systimer): fixed ETM not working with systimer on C61 ECO3

This commit is contained in:
Marius Vikhammer
2025-07-11 13:55:24 +08:00
parent 138a0941ca
commit 36834844b2
16 changed files with 43 additions and 4 deletions

View File

@@ -43,6 +43,10 @@ config ESP_ROM_HAS_HAL_SYSTIMER
bool
default y
config ESP_ROM_SYSTIMER_INIT_PATCH
bool
default y
config ESP_ROM_HAS_HEAP_TLSF
bool
default y

View File

@@ -16,6 +16,7 @@
#define ESP_ROM_HAS_RVFPLIB (1) // ROM has the rvfplib
#define ESP_ROM_HAS_HAL_WDT (1) // ROM has the implementation of Watchdog HAL driver
#define ESP_ROM_HAS_HAL_SYSTIMER (1) // ROM has the implementation of Systimer HAL driver
#define ESP_ROM_SYSTIMER_INIT_PATCH (1) // ROM version initializes SYSTIMER without ETM
#define ESP_ROM_HAS_HEAP_TLSF (1) // ROM has the implementation of the tlsf and multi-heap library
#define ESP_ROM_TLSF_CHECK_PATCH (1) // ROM does not contain the patch of tlsf_check_pool()
#define ESP_ROM_MULTI_HEAP_WALK_PATCH (1) // ROM does not contain the patch of multi_heap_walk()