43 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			43 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
#include "check.h"
 | 
						|
#include "furi-hal-task.h"
 | 
						|
#include <stdio.h>
 | 
						|
 | 
						|
void __furi_abort(void);
 | 
						|
 | 
						|
// TODO printf doesnt work in ISR context
 | 
						|
void __furi_check(void) {
 | 
						|
    printf("assertion failed in release mode, switch to debug mode to see full assert info");
 | 
						|
    __furi_abort();
 | 
						|
}
 | 
						|
 | 
						|
// TODO printf doesnt work in ISR context
 | 
						|
void __furi_check_debug(const char* file, int line, const char* function, const char* condition) {
 | 
						|
    printf(
 | 
						|
        "assertion \"%s\" failed: file \"%s\", line %d%s%s",
 | 
						|
        condition,
 | 
						|
        file,
 | 
						|
        line,
 | 
						|
        function ? ", function: " : "",
 | 
						|
        function ? function : "");
 | 
						|
 | 
						|
    if(task_is_isr_context()) {
 | 
						|
        printf(" in [ISR] context");
 | 
						|
    } else {
 | 
						|
        // FuriApp* app = find_task(xTaskGetCurrentTaskHandle());
 | 
						|
 | 
						|
        // if(app == NULL) {
 | 
						|
        //     printf(", in [main] context");
 | 
						|
        // } else {
 | 
						|
        //     printf(", in [%s] app context", app->name);
 | 
						|
        // }
 | 
						|
    }
 | 
						|
 | 
						|
    __furi_abort();
 | 
						|
}
 | 
						|
 | 
						|
void __furi_abort(void) {
 | 
						|
    __disable_irq();
 | 
						|
    asm("bkpt 1");
 | 
						|
    while(1) {
 | 
						|
    }
 | 
						|
} |