 f25d000d53
			
		
	
	
		f25d000d53
		
			
		
	
	
	
	
		
			
			* ApiHal: console abstraction, change uart baud rate to 230400. Bootloader: drop F5. Furi: prevent thread local output to serial console in stdglue. * ApiHal: take control over system initialization, reorder some subsystems in a hope of fixing USB issues. * Main: cleanup dead code. ISR: take care of HSECSS by our self. USB: leave clock configuration alone. * F6 cube: switch RCC to LL. * Cli: rollback return behavior.
		
			
				
	
	
		
			33 lines
		
	
	
		
			754 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			33 lines
		
	
	
		
			754 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| #pragma once
 | |
| 
 | |
| #ifdef __cplusplus
 | |
| template <unsigned int N> struct STOP_EXTERNING_ME {};
 | |
| #endif
 | |
| 
 | |
| #include "api-hal-boot.h"
 | |
| #include "api-hal-clock.h"
 | |
| #include "api-hal-console.h"
 | |
| #include "api-hal-os.h"
 | |
| #include "api-hal-i2c.h"
 | |
| #include "api-hal-resources.h"
 | |
| #include "api-hal-gpio.h"
 | |
| #include "api-hal-light.h"
 | |
| #include "api-hal-delay.h"
 | |
| #include "api-hal-pwm.h"
 | |
| #include "api-hal-task.h"
 | |
| #include "api-hal-power.h"
 | |
| #include "api-hal-vcp.h"
 | |
| #include "api-hal-interrupt.h"
 | |
| #include "api-hal-version.h"
 | |
| #include "api-hal-bt.h"
 | |
| #include "api-hal-spi.h"
 | |
| #include "api-hal-flash.h"
 | |
| #include "api-hal-subghz.h"
 | |
| #include "api-hal-vibro.h"
 | |
| #include "api-hal-ibutton.h"
 | |
| #include "api-hal-rfid.h"
 | |
| #include "api-hal-nfc.h"
 | |
| 
 | |
| /** Init api-hal */
 | |
| void api_hal_init();
 |