esp-open-rtos/core/include/user_exception.h
2017-08-29 09:51:23 +03:00

9 lines
172 B
C

/* 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