Home
last modified time | relevance | path

Searched refs:term (Results 1 – 4 of 4) sorted by relevance

/hal_espressif-latest/components/esp_adc/deprecated/
Desp_adc_cal_common_legacy.c65 uint64_t *term = (uint64_t *)malloc(term_num * sizeof(uint64_t)); in esp_adc_cal_get_reading_error() local
67 if (variable == NULL || term == NULL) { in esp_adc_cal_get_reading_error()
72 memset(term, 0, term_num * sizeof(uint64_t)); in esp_adc_cal_get_reading_error()
83 term[0] = variable[0] * coeff / (*param->coeff)[atten][0][1]; in esp_adc_cal_get_reading_error()
84 error = (int32_t)term[0] * (*param->sign)[atten][0]; in esp_adc_cal_get_reading_error()
89 term[i] = variable[i] * coeff; in esp_adc_cal_get_reading_error()
90 ESP_LOGV(TAG, "big coef is %llu, big term%d is %llu, coef_id is %d", coeff, i, term[i], i); in esp_adc_cal_get_reading_error()
92 term[i] = term[i] / (*param->coeff)[atten][i][1]; in esp_adc_cal_get_reading_error()
93 error += (int32_t)term[i] * (*param->sign)[atten][i]; in esp_adc_cal_get_reading_error()
94 ESP_LOGV(TAG, "term%d is %llu, error is %"PRId32, i, term[i], error); in esp_adc_cal_get_reading_error()
/hal_espressif-latest/components/esp_adc/
Dadc_cali_curve_fitting.c191 …uint64_t *term = (uint64_t *)heap_caps_calloc(term_num, sizeof(uint64_t), MALLOC_CAP_INTERNAL | MA… in get_reading_error() local
192 if (term == NULL) { in get_reading_error()
197 memset(term, 0, term_num * sizeof(uint64_t)); in get_reading_error()
201 term[0] = variable_prev * coeff / (*param->coeff)[atten][0][1]; in get_reading_error()
202 error = (int32_t)(term[0] * (*param->sign)[atten][0]); in get_reading_error()
207 term[i] = variable_current * coeff; in get_reading_error()
208 ESP_LOGV(TAG, "big coef is %llu, big term%d is %llu, coef_id is %d", coeff, i, term[i], i); in get_reading_error()
209 term[i] = term[i] / (*param->coeff)[atten][i][1]; in get_reading_error()
210 error += (int32_t)(term[i] * (*param->sign)[atten][i]); in get_reading_error()
212 ESP_LOGV(TAG, "term%d is %llu, error is %"PRId32, i, term[i], error); in get_reading_error()
[all …]
/hal_espressif-latest/tools/esptool_py/
DLICENSE70 the term "modification".) Each licensee is addressed as "you".
/hal_espressif-latest/components/mbedtls/
DKconfig625 may result in a compromise of the long-term signing key.