Merge branch 'feature/merge_c3_caps' into 'master'

soc: merge C3 caps into a single soc_caps.h

See merge request espressif/esp-idf!13337
This commit is contained in:
Michael (XIAO Xufeng)
2021-05-06 05:56:42 +00:00
24 changed files with 220 additions and 483 deletions
+1 -1
View File
@@ -131,7 +131,7 @@ esp_err_t esp_ds_start_sign(const void *message,
// check encryption key from HMAC
int64_t start_time = esp_timer_get_time();
while (ds_ll_busy() != 0) {
if ((esp_timer_get_time() - start_time) > DS_KEY_CHECK_MAX_WAIT_US) {
if ((esp_timer_get_time() - start_time) > SOC_DS_KEY_CHECK_MAX_WAIT_US) {
ds_disable_release();
return ESP32C3_ERR_HW_CRYPTO_DS_INVALID_KEY;
}