fix: re-enabled ecdsa support for esp32c5-eco2

This commit is contained in:
nilesh.kale
2025-04-28 17:41:05 +05:30
committed by Mahavir Jain
parent 8c67e3e998
commit f19e8e6970
20 changed files with 117 additions and 833 deletions

View File

@@ -11,6 +11,7 @@
#include "soc/efuse_periph.h"
#include "hal/assert.h"
#include "rom/efuse.h"
#include "hal/ecdsa_types.h"
//TODO: [ESP32H4] IDF-12322 inherited from verification branch, need check
@@ -96,9 +97,10 @@ __attribute__((always_inline)) static inline uint32_t efuse_ll_get_ecdsa_key_blk
return 0;
}
__attribute__((always_inline)) static inline void efuse_ll_set_ecdsa_key_blk(int efuse_blk)
__attribute__((always_inline)) static inline void efuse_ll_set_ecdsa_key_blk(ecdsa_curve_t curve, int efuse_blk)
{
//ESP32H4 TODO
(void)curve;
(void)efuse_blk;
}