mirror of
https://github.com/espressif/esp-idf.git
synced 2026-07-23 03:13:01 +03:00
In release/v5.x, esp_fault.h resides in the esp_hw_support (G1) component, so the G0 components (hal, esp_rom) must not depend on it. Copy its contents to esp_common as esp_fault_internal.h, keep esp_fault.h as a compatibility wrapper around it, and switch the hal and esp_rom ECDSA/ECC code to the internal header.
9 lines
168 B
C
9 lines
168 B
C
/*
|
|
* SPDX-FileCopyrightText: 2020-2026 Espressif Systems (Shanghai) CO LTD
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
#pragma once
|
|
|
|
#include "esp_fault_internal.h"
|