//! Definitions of ROM functions related to flash memory.
/// The operation succeeded
pub const ESP_ROM_SPIFLASH_RESULT_OK: i32 = 0;
/// The operation errored
pub const ESP_ROM_SPIFLASH_RESULT_ERR: i32 = 1;
/// The operation timed out
pub const ESP_ROM_SPIFLASH_RESULT_TIMEOUT: i32 = 2;
unsafe extern "C"