[][src]Function esp_idf_sys::gpio_output_set_high

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

@brief Change GPIO(32-39) pin output by setting, clearing, or disabling pins, GPIO32<->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