Function esp_idf_sys::esp_efuse_read_field_bit
source ยท pub unsafe extern "C" fn esp_efuse_read_field_bit(
field: *mut *const esp_efuse_desc_t,
) -> bool
Expand description
@brief Read a single bit eFuse field as a boolean value.
@note The value must exist and must be a single bit wide. If there is any possibility of an error in the provided arguments, call esp_efuse_read_field_blob() and check the returned value instead.
@note If assertions are enabled and the parameter is invalid, execution will abort @note Please note that reading in the batch mode does not show uncommitted changes.
@param[in] field A pointer to the structure describing the fields of efuse. @return
- true: The field parameter is valid and the bit is set.
- false: The bit is not set, or the parameter is invalid and assertions are disabled.