Home
last modified time | relevance | path

Searched refs:low (Results 1 – 25 of 81) sorted by relevance

1234

/hal_espressif-latest/components/esp_phy/esp32/include/
Dphy_init_data.h13 #define LIMIT(val, low, high) ((val < low) ? low : (val > high) ? high : val) argument
/hal_espressif-latest/components/esp_phy/esp32s2/include/
Dphy_init_data.h17 #define LIMIT(val, low, high) ((val < low) ? low : (val > high) ? high : val) argument
/hal_espressif-latest/components/esp_phy/esp32s3/include/
Dphy_init_data.h17 #define LIMIT(val, low, high) ((val < low) ? low : (val > high) ? high : val) argument
/hal_espressif-latest/components/esp_phy/esp32c2/include/
Dphy_init_data.h17 #define LIMIT(val, low, high) ((val < low) ? low : (val > high) ? high : val) argument
/hal_espressif-latest/components/esp_phy/esp32c3/include/
Dphy_init_data.h17 #define LIMIT(val, low, high) ((val < low) ? low : (val > high) ? high : val) argument
/hal_espressif-latest/components/esp_phy/esp32c6/include/
Dphy_init_data.h17 #define LIMIT(val, low, high) ((val < low) ? low : (val > high) ? high : val) argument
/hal_espressif-latest/components/esp_system/port/soc/esp32/
Dreset_reason.c102 uint32_t low = reset_reason_hint & RST_REASON_MASK; in esp_reset_reason_get_hint() local
103 if ((reset_reason_hint & RST_REASON_BIT) == 0 || high != low) { in esp_reset_reason_get_hint()
106 return (esp_reset_reason_t) low; in esp_reset_reason_get_hint()
/hal_espressif-latest/components/esp_system/port/soc/esp32c2/
Dreset_reason.c91 uint32_t low = reset_reason_hint & RST_REASON_MASK; in esp_reset_reason_get_hint() local
92 if ((reset_reason_hint & RST_REASON_BIT) == 0 || high != low) { in esp_reset_reason_get_hint()
95 return (esp_reset_reason_t) low; in esp_reset_reason_get_hint()
/hal_espressif-latest/components/esp_system/port/soc/esp32c3/
Dreset_reason.c104 uint32_t low = reset_reason_hint & RST_REASON_MASK; in esp_reset_reason_get_hint() local
105 if ((reset_reason_hint & RST_REASON_BIT) == 0 || high != low) { in esp_reset_reason_get_hint()
108 return (esp_reset_reason_t) low; in esp_reset_reason_get_hint()
/hal_espressif-latest/components/esp_system/port/soc/esp32s2/
Dreset_reason.c101 uint32_t low = reset_reason_hint & RST_REASON_MASK; in esp_reset_reason_get_hint() local
102 if ((reset_reason_hint & RST_REASON_BIT) == 0 || high != low) { in esp_reset_reason_get_hint()
105 return (esp_reset_reason_t) low; in esp_reset_reason_get_hint()
/hal_espressif-latest/components/esp_system/port/soc/esp32s3/
Dreset_reason.c99 uint32_t low = reset_reason_hint & RST_REASON_MASK; in esp_reset_reason_get_hint() local
100 if ((reset_reason_hint & RST_REASON_BIT) == 0 || high != low) { in esp_reset_reason_get_hint()
103 return (esp_reset_reason_t) low; in esp_reset_reason_get_hint()
/hal_espressif-latest/components/esp_system/port/soc/esp32c6/
Dreset_reason.c114 uint32_t low = reset_reason_hint & RST_REASON_MASK; in esp_reset_reason_get_hint() local
115 if ((reset_reason_hint & RST_REASON_BIT) == 0 || high != low) { in esp_reset_reason_get_hint()
118 return (esp_reset_reason_t) low; in esp_reset_reason_get_hint()
/hal_espressif-latest/components/esp_system/port/soc/esp32h2/
Dreset_reason.c114 uint32_t low = reset_reason_hint & RST_REASON_MASK; in esp_reset_reason_get_hint() local
115 if ((reset_reason_hint & RST_REASON_BIT) == 0 || high != low) { in esp_reset_reason_get_hint()
118 return (esp_reset_reason_t) low; in esp_reset_reason_get_hint()
/hal_espressif-latest/components/esp_adc/esp32s2/
Dadc_cali_line_fitting.c76 uint32_t low,
218 uint32_t low, in characterize_using_two_point() argument
226 *coeff_a = coeff_a_scaling * (v_high[atten] - v_low) / (high - low); in characterize_using_two_point()
227 *coeff_b = coeff_b_scaling * (v_low * high - v_high[atten] * low) / (high - low); in characterize_using_two_point()
/hal_espressif-latest/tools/esptool_py/docs/en/esptool/
Dentering-bootloader.rst10 …- a reset, required pins set correctly, and a correct strapping pin pulled low. For more informati…
20 :esp8266: * The nRESET pin was low and is pulled high.
21 * The CH_PD/EN pin ("enable") pin was low and is pulled high.
/hal_espressif-latest/zephyr/esp32s2/src/esp_adc_cal/
Desp_adc_cal.c108 uint32_t low, in characterize_using_two_point() argument
116 *coeff_a = coeff_a_scaling * (v_high[atten] - v_low) / (high - low); in characterize_using_two_point()
117 *coeff_b = coeff_b_scaling * (v_low * high - v_high[atten] * low) / (high - low); in characterize_using_two_point()
/hal_espressif-latest/components/esp_adc/deprecated/esp32s2/
Desp_adc_cal_legacy.c110 uint32_t low, in characterize_using_two_point() argument
118 *coeff_a = coeff_a_scaling * (v_high[atten] - v_low) / (high - low); in characterize_using_two_point()
119 *coeff_b = coeff_b_scaling * (v_low * high - v_high[atten] * low) / (high - low); in characterize_using_two_point()
/hal_espressif-latest/tools/idf_monitor/idf_monitor_base/
Dserial_reader.py45 low = True
47 self.serial.dtr = low # Non reset state
54 self.serial.rts = low # Set rts/dtr to the reset state
Dserial_handler.py152 low = True
166 self.serial_instance.setRTS(low)
185 self.serial_instance.setRTS(low) # EN=LOW, chip in reset
188 self.serial_instance.setDTR(low) # IO0=LOW
/hal_espressif-latest/components/mbedtls/port/sha/dma/
Desp_sha1.c194 uint32_t high, low; in mbedtls_sha1_finish() local
199 low = ( ctx->total[0] << 3 ); in mbedtls_sha1_finish()
202 PUT_UINT32_BE( low, msglen, 4 ); in mbedtls_sha1_finish()
Desp_sha256.c204 uint32_t high, low; in mbedtls_sha256_finish() local
209 low = ( ctx->total[0] << 3 ); in mbedtls_sha256_finish()
212 PUT_UINT32_BE( low, msglen, 4 ); in mbedtls_sha256_finish()
Desp_sha512.c263 uint64_t high, low; in mbedtls_sha512_finish() local
268 low = ( ctx->total[0] << 3 ); in mbedtls_sha512_finish()
271 PUT_UINT64_BE( low, msglen, 8 ); in mbedtls_sha512_finish()
/hal_espressif-latest/components/mbedtls/port/sha/block/
Desp_sha1.c194 uint32_t high, low; in mbedtls_sha1_finish() local
199 low = ( ctx->total[0] << 3 ); in mbedtls_sha1_finish()
202 PUT_UINT32_BE( low, msglen, 4 ); in mbedtls_sha1_finish()
Desp_sha256.c213 uint32_t high, low; in mbedtls_sha256_finish() local
218 low = ( ctx->total[0] << 3 ); in mbedtls_sha256_finish()
221 PUT_UINT32_BE( low, msglen, 4 ); in mbedtls_sha256_finish()
Desp_sha512.c260 uint64_t high, low; in mbedtls_sha512_finish() local
265 low = ( ctx->total[0] << 3 ); in mbedtls_sha512_finish()
268 PUT_UINT64_BE( low, msglen, 8 ); in mbedtls_sha512_finish()

1234