* Added support for running applications from SD card (FAPs - Flipper Application Packages) * Added plugin_dist target for fbt to build FAPs * All apps of type FlipperAppType.EXTERNAL and FlipperAppType.PLUGIN are built as FAPs by default * Updated VSCode configuration for new fbt features - re-deploy stock configuration to use them * Added debugging support for FAPs with fbt debug & VSCode * Added public firmware API with automated versioning Co-authored-by: hedger <hedger@users.noreply.github.com> Co-authored-by: SG <who.just.the.doctor@gmail.com> Co-authored-by: あく <alleteam@gmail.com>
		
			
				
	
	
		
			40 lines
		
	
	
		
			859 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			40 lines
		
	
	
		
			859 B
		
	
	
	
		
			C
		
	
	
	
	
	
| #pragma once
 | |
| 
 | |
| #include <stdint.h>
 | |
| #include <stdlib.h>
 | |
| #include <stdbool.h>
 | |
| 
 | |
| #include <furi_hal_gpio.h>
 | |
| 
 | |
| #ifdef __cplusplus
 | |
| extern "C" {
 | |
| #endif
 | |
| 
 | |
| typedef struct {
 | |
|     bool start_level;
 | |
|     uint32_t edge_cnt;
 | |
|     uint32_t edges_max_cnt;
 | |
|     uint32_t* edge_timings;
 | |
|     uint32_t* reload_reg_buff;
 | |
| } DigitalSignal;
 | |
| 
 | |
| DigitalSignal* digital_signal_alloc(uint32_t max_edges_cnt);
 | |
| 
 | |
| void digital_signal_free(DigitalSignal* signal);
 | |
| 
 | |
| bool digital_signal_append(DigitalSignal* signal_a, DigitalSignal* signal_b);
 | |
| 
 | |
| void digital_signal_prepare_arr(DigitalSignal* signal);
 | |
| 
 | |
| bool digital_signal_get_start_level(DigitalSignal* signal);
 | |
| 
 | |
| uint32_t digital_signal_get_edges_cnt(DigitalSignal* signal);
 | |
| 
 | |
| uint32_t digital_signal_get_edge(DigitalSignal* signal, uint32_t edge_num);
 | |
| 
 | |
| void digital_signal_send(DigitalSignal* signal, const GpioPin* gpio);
 | |
| 
 | |
| #ifdef __cplusplus
 | |
| }
 | |
| #endif
 |