* Interrupt manager: add memory barriers. * ISRs: remove TIM17 dead code. * API HAL Delay: rename initialization routine and move to API-HAL * Main: move FURI initialization to the start. * API HAL GPIO: drop CC1101 shenanigans, COMP inversion for new boards. * IButton: migrate Cyfral and Metakom to RFID comp routine, make it compatible with new boards. * RFID: Better keyboard handling and shutdown routines
		
			
				
	
	
		
			13 lines
		
	
	
		
			271 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			271 B
		
	
	
	
		
			C
		
	
	
	
	
	
#include <api-hal.h>
 | 
						|
 | 
						|
void api_hal_init() {
 | 
						|
    api_hal_delay_init();
 | 
						|
    api_hal_os_init();
 | 
						|
    api_hal_vcp_init();
 | 
						|
    api_hal_spi_init();
 | 
						|
    api_hal_i2c_init();
 | 
						|
    api_hal_power_init();
 | 
						|
    api_hal_light_init();
 | 
						|
    api_hal_vibro_init();
 | 
						|
    api_hal_subghz_init();
 | 
						|
} |