[][src]Function esp_idf_bindgen::gpio_output_set

pub unsafe extern "C" fn gpio_output_set(
    set_mask: u32,
    clear_mask: u32,
    enable_mask: u32,
    disable_mask: u32
)

@brief Change GPIO(0-31) pin output by setting, clearing, or disabling pins, GPIO0<->BIT(0). There is no particular ordering guaranteed; so if the order of writes is significant, calling code should divide a single call into multiple calls.

@param uint32_t set_mask : the gpios that need high level.

@param uint32_t clear_mask : the gpios that need low level.

@param uint32_t enable_mask : the gpios that need be changed.

@param uint32_t disable_mask : the gpios that need diable output.

@return None