 359bbdfe69
			
		
	
	
		359bbdfe69
		
			
		
	
	
	
	
		
			
			* Move heap memory allocator to furi core * Newlibc: add malloc guards * Furi: add cmsis thread id getter * Core: add tracing capability to heap allocator. Add heap tracing support to furi thread. Add heap trace support to app-loader.
		
			
				
	
	
		
			30 lines
		
	
	
		
			477 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			30 lines
		
	
	
		
			477 B
		
	
	
	
		
			C
		
	
	
	
	
	
| #pragma once
 | |
| 
 | |
| #include <cmsis_os2.h>
 | |
| 
 | |
| #include <furi/common_defines.h>
 | |
| #include <furi/check.h>
 | |
| #include <furi/memmgr.h>
 | |
| #include <furi/memmgr_heap.h>
 | |
| #include <furi/pubsub.h>
 | |
| #include <furi/record.h>
 | |
| #include <furi/stdglue.h>
 | |
| #include <furi/thread.h>
 | |
| #include <furi/valuemutex.h>
 | |
| #include <furi/log.h>
 | |
| 
 | |
| #include <api-hal-gpio.h>
 | |
| #include <api-hal/api-interrupt-mgr.h>
 | |
| 
 | |
| #include <stdlib.h>
 | |
| 
 | |
| #ifdef __cplusplus
 | |
| extern "C" {
 | |
| #endif
 | |
| 
 | |
| void furi_init();
 | |
| 
 | |
| #ifdef __cplusplus
 | |
| }
 | |
| #endif
 |