feat: enabled ECDSA-P192 support for ESP32H2

This commit is contained in:
nilesh.kale
2025-05-13 17:01:07 +05:30
parent 452e609dcc
commit 6c290c09f3
15 changed files with 223 additions and 11 deletions

View File

@@ -428,6 +428,11 @@ static void do_core_init(void)
esp_efuse_set_rom_log_scheme(ROM_LOG_MODE);
#endif
#if CONFIG_ESP_ECDSA_ENABLE_P192_CURVE
err = esp_efuse_enable_ecdsa_p192_curve_mode();
assert(err == ESP_OK && "Failed to enable ECDSA 192-curve operations");
#endif
#if CONFIG_ESP_XT_WDT
esp_xt_wdt_config_t cfg = {
.timeout = CONFIG_ESP_XT_WDT_TIMEOUT,