1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-12-25 22:43:50 +01:00
RIOT/cpu/esp_common/include/exceptions.h
2025-09-12 11:50:26 +02:00

29 lines
418 B
C

/*
* SPDX-FileCopyrightText: 2019 Gunar Schorcht
* SPDX-License-Identifier: LGPL-2.1-only
*/
#pragma once
/**
* @ingroup cpu_esp_common
* @{
*
* @file
* @brief Exception handling for ESP SoCs
*
* @author Gunar Schorcht <gunar@schorcht.net>
* @}
*/
#ifdef __cplusplus
extern "C" {
#endif
/** Initialize exception handler */
extern void init_exceptions(void);
#ifdef __cplusplus
}
#endif