Merge branch 'bugfix/efuse_stdbool' into 'master'

efuse: Add missing stdbool.h include file

See merge request espressif/esp-idf!15917
pull/7903/head
Gustavo Henrique Nihei 2021-11-12 16:18:07 +00:00
commit 4a011f3183
1 zmienionych plików z 6 dodań i 4 usunięć

Wyświetl plik

@ -6,11 +6,9 @@
#pragma once
#ifdef __cplusplus
extern "C" {
#endif
#include <stdbool.h>
#include <stdint.h>
#include "esp_err.h"
#include "esp_log.h"
#include "soc/soc_caps.h"
@ -31,6 +29,10 @@ extern "C" {
#include "esp8684/rom/secure_boot.h"
#endif
#ifdef __cplusplus
extern "C" {
#endif
#define ESP_ERR_EFUSE 0x1600 /*!< Base error code for efuse api. */
#define ESP_OK_EFUSE_CNT (ESP_ERR_EFUSE + 0x01) /*!< OK the required number of bits is set. */
#define ESP_ERR_EFUSE_CNT_IS_FULL (ESP_ERR_EFUSE + 0x02) /*!< Error field is full. */