Merge branch 'change/ecdsa_does_not_use_mpi_esp32h2_eco5' into 'master'

The ECDSA module of ESP32-H2 ECO5 does not use the MPI module

See merge request espressif/esp-idf!41156
This commit is contained in:
Aditya Patwardhan
2025-08-13 23:22:51 +05:30
5 changed files with 37 additions and 6 deletions

View File

@@ -443,6 +443,14 @@ static inline bool ecdsa_ll_is_deterministic_mode_supported(void)
return true;
}
/**
* @brief Check if the ECDSA peripheral uses MPI module's memory
*/
static inline bool ecdsa_ll_is_mpi_required(void)
{
return true; // TODO: IDF-13523
}
#ifdef __cplusplus
}
#endif