change(esp_rom): optimize target-specific header files layout in components/esp_rom

This commit is contained in:
Xiaoyu Liu
2024-06-19 12:09:05 +08:00
parent ca4d5afc59
commit 2cb9419b14
248 changed files with 337 additions and 630 deletions
@@ -0,0 +1,23 @@
/*
* SPDX-FileCopyrightText: 2021-2024 Espressif Systems (Shanghai) CO LTD
*
* SPDX-License-Identifier: Apache-2.0
*/
#pragma once
#ifdef __cplusplus
extern "C" {
#endif
/**
* @brief Dummy to satisfy the requirement for this type on Linux targets.
* Look at other reset_reasons.h files in IDF.
*/
typedef enum {
RESET_REASON_CHIP_POWER_ON = 0x01, // Power on reset
} soc_reset_reason_t;
#ifdef __cplusplus
}
#endif