[][src]Struct esp_idf_bindgen::esp_image_header_t

#[repr(C, packed)]pub struct esp_image_header_t {
    pub magic: u8,
    pub segment_count: u8,
    pub spi_mode: u8,
    pub _bitfield_1: __BindgenBitfieldUnit<[u8; 1], u8>,
    pub entry_addr: u32,
    pub wp_pin: u8,
    pub spi_pin_drv: [u8; 3],
    pub chip_id: esp_chip_id_t,
    pub min_chip_rev: u8,
    pub reserved: [u8; 8],
    pub hash_appended: u8,
}

@brief Main header of binary image

Fields

magic: u8

< Magic word ESP_IMAGE_HEADER_MAGIC

segment_count: u8

< Count of memory segments

spi_mode: u8

< flash read mode (esp_image_spi_mode_t as uint8_t)

_bitfield_1: __BindgenBitfieldUnit<[u8; 1], u8>entry_addr: u32

< Entry address

wp_pin: u8

< WP pin when SPI pins set via efuse (read by ROM bootloader, the IDF bootloader uses software to configure the WP pin and sets this field to 0xEE=disabled)

spi_pin_drv: [u8; 3]

< Drive settings for the SPI flash pins (read by ROM bootloader)

chip_id: esp_chip_id_t

< Chip identification number

min_chip_rev: u8

< Minimum chip revision supported by image

reserved: [u8; 8]

< Reserved bytes in additional header space, currently unused

hash_appended: u8

< If 1, a SHA256 digest "simple hash" (of the entire image) is appended after the checksum. Included in image length. This digest is separate to secure boot and only used for detecting corruption. For secure boot signed images, the signature is appended after this (and the simple hash is included in the signed data).

Implementations

impl esp_image_header_t[src]

pub fn spi_speed(&self) -> u8[src]

pub fn set_spi_speed(&mut self, val: u8)[src]

pub fn spi_size(&self) -> u8[src]

pub fn set_spi_size(&mut self, val: u8)[src]

pub fn new_bitfield_1(
    spi_speed: u8,
    spi_size: u8
) -> __BindgenBitfieldUnit<[u8; 1], u8>
[src]

Trait Implementations

impl Clone for esp_image_header_t[src]

impl Copy for esp_image_header_t[src]

impl Debug for esp_image_header_t[src]

Auto Trait Implementations

impl Send for esp_image_header_t

impl Sync for esp_image_header_t

impl Unpin for esp_image_header_t

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.