 e8211226f3
			
		
	
	
		e8211226f3
		
			
		
	
	
	
	
		
			
			* ApiHal: set frequency and path in one go. Drivers: proper frequency registers calculation for CC1101. Update subghz cli to match new api. * SubGhz: preparation for parsers porting, tim2 sharing * ApiHal: add interrupts API, move all TIM2 related things there. * SubGhz: refactor protocol lib and add keeloq. * SubGhz: proper init_set for keeloq manafacture key * SubGhz: port more protocols to lib * SubGhz: load keeloq manufacture keys from sd card (if any). * SubGhz: format output from protocols. * SubGhz: use default frequency in subghz_rx cli command. * SubGhz: keeloq key types * Fix compillation error when internal storage disabled * SubGhz: minor cleanup * SubGhz: properly handle timeout and reset signal in subghz_rx * SubGhz: Worker, Capture View. Furi: emulate thread join. * SubGhz: free strings on keeloq key load end * SubGhz: update protocols reporting API, app refactoring and capture view, update API HAL usage. * SubGhz: update dump formatting * ApiHal: backport subghz preset to F5 * ApiHal: backport subghz frequency range to F5
		
			
				
	
	
		
			31 lines
		
	
	
		
			692 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			31 lines
		
	
	
		
			692 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| #pragma once
 | |
| 
 | |
| #ifdef __cplusplus
 | |
| template <unsigned int N> struct STOP_EXTERNING_ME {};
 | |
| #endif
 | |
| 
 | |
| #include "api-hal-boot.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-version.h"
 | |
| #include "api-hal-uid.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();
 |