1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-12-24 22:13:52 +01:00

cpu/esp_common: make Xtensa ISR_STACKSIZE conditional

This commit is contained in:
crasbe 2025-10-30 13:43:06 +01:00
parent 49b01c4284
commit f7628d8f9a

View File

@ -23,7 +23,9 @@ extern "C" {
* @brief Xtensa ASM code specific default stack sizes
* @{
*/
#define ISR_STACKSIZE (2048)
#ifndef ISR_STACKSIZE
# define ISR_STACKSIZE (2048)
#endif
/** @} */
#ifdef __cplusplus