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