esp-open-rtos/core/include/user_exception.h

10 lines
172 B
C
Raw Normal View History

/* Allows the user to set their own exception handler. */
#ifndef _USER_EXCEPTION_H
#define _USER_EXCEPTION_H
void set_user_exception_handler(void (*fn)(void));
#endif