Merge branch 'bugfix/spiram_h_header_guards' into 'master'

add missing header guards to {esp32,esp32s3}/spiram.h (Github PR)

Closes IDFGH-4861

See merge request espressif/esp-idf!13435
This commit is contained in:
Ivan Grokhotkov
2021-05-06 11:49:39 +00:00
3 changed files with 16 additions and 1 deletions
@@ -21,6 +21,10 @@
#include <stdbool.h>
#include "esp_err.h"
#ifdef __cplusplus
extern "C" {
#endif
/**
* @brief Initialize spiram interface/hardware. Normally called from cpu_start.c.
*
@@ -135,4 +139,8 @@ uint32_t rodata_flash_end_page_get(void);
int rodata_flash2spiram_offset(void);
#endif
#ifdef __cplusplus
}
#endif
#endif