mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
efuse: Reduce the size of esp_efuse_desc_t to 4 bytes
This commit is contained in:
parent
1d7b901aeb
commit
c9cd06c886
@ -52,8 +52,8 @@ typedef enum {
|
||||
* @brief Structure eFuse field
|
||||
*/
|
||||
typedef struct {
|
||||
esp_efuse_block_t efuse_block; /**< Block of eFuse */
|
||||
uint16_t bit_start; /**< Start bit [0..255] */
|
||||
esp_efuse_block_t efuse_block: 8; /**< Block of eFuse */
|
||||
uint8_t bit_start; /**< Start bit [0..255] */
|
||||
uint16_t bit_count; /**< Length of bit field [1..-]*/
|
||||
} esp_efuse_desc_t;
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user