Skip to content
Snippets Groups Projects
Commit 34e7b67d authored by mux's avatar mux
Browse files

Add __assert_func

* issue #692
parent 8340c483
No related branches found
No related tags found
No related merge requests found
......@@ -115,6 +115,12 @@ void nlr_jump_fail(void *val) {
__fatal_error("");
}
void __assert_func(const char *file, int line, const char *func, const char *expr) {
(void)func;
printf("Assertion '%s' failed, at file %s:%d\n", expr, file, line);
__fatal_error("");
}
STATIC mp_obj_t pyb_config_source_dir = MP_OBJ_NULL;
STATIC mp_obj_t pyb_config_main = MP_OBJ_NULL;
STATIC mp_obj_t pyb_config_usb_mode = MP_OBJ_NULL;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment