 b9a766d909
			
		
	
	
		b9a766d909
		
	
	
	
	
		
			
			* 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>
		
			
				
	
	
		
			52 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			52 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
| #include "gpio_item.h"
 | |
| 
 | |
| #include <furi_hal_resources.h>
 | |
| 
 | |
| typedef struct {
 | |
|     const char* name;
 | |
|     const GpioPin* pin;
 | |
| } GpioItem;
 | |
| 
 | |
| static const GpioItem gpio_item[GPIO_ITEM_COUNT] = {
 | |
|     {"1.2: PA7", &gpio_ext_pa7},
 | |
|     {"1.3: PA6", &gpio_ext_pa6},
 | |
|     {"1.4: PA4", &gpio_ext_pa4},
 | |
|     {"1.5: PB3", &gpio_ext_pb3},
 | |
|     {"1.6: PB2", &gpio_ext_pb2},
 | |
|     {"1.7: PC3", &gpio_ext_pc3},
 | |
|     {"2.7: PC1", &gpio_ext_pc1},
 | |
|     {"2.8: PC0", &gpio_ext_pc0},
 | |
| };
 | |
| 
 | |
| void gpio_item_configure_pin(uint8_t index, GpioMode mode) {
 | |
|     furi_assert(index < GPIO_ITEM_COUNT);
 | |
|     furi_hal_gpio_write(gpio_item[index].pin, false);
 | |
|     furi_hal_gpio_init(gpio_item[index].pin, mode, GpioPullNo, GpioSpeedVeryHigh);
 | |
| }
 | |
| 
 | |
| void gpio_item_configure_all_pins(GpioMode mode) {
 | |
|     for(uint8_t i = 0; i < GPIO_ITEM_COUNT; i++) {
 | |
|         gpio_item_configure_pin(i, mode);
 | |
|     }
 | |
| }
 | |
| 
 | |
| void gpio_item_set_pin(uint8_t index, bool level) {
 | |
|     furi_assert(index < GPIO_ITEM_COUNT);
 | |
|     furi_hal_gpio_write(gpio_item[index].pin, level);
 | |
| }
 | |
| 
 | |
| void gpio_item_set_all_pins(bool level) {
 | |
|     for(uint8_t i = 0; i < GPIO_ITEM_COUNT; i++) {
 | |
|         gpio_item_set_pin(i, level);
 | |
|     }
 | |
| }
 | |
| 
 | |
| const char* gpio_item_get_pin_name(uint8_t index) {
 | |
|     furi_assert(index < GPIO_ITEM_COUNT + 1);
 | |
|     if(index == GPIO_ITEM_COUNT) {
 | |
|         return "ALL";
 | |
|     } else {
 | |
|         return gpio_item[index].name;
 | |
|     }
 | |
| }
 |