 611b7e15ed
			
		
	
	
		611b7e15ed
		
			
		
	
	
	
	
		
			
			* Add permission fix (no execute bit for source files) to fbt lint|format * Remove execute bit from 59 source files using fbt format * Also list which permissions are unwanted in lint.py * Also remove exec permissions from lib/../rfal_nfc.c Co-authored-by: あく <alleteam@gmail.com>
		
			
				
	
	
		
			15 lines
		
	
	
		
			357 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			357 B
		
	
	
	
		
			C
		
	
	
	
	
	
| #pragma once
 | |
| 
 | |
| #include <gui/view.h>
 | |
| 
 | |
| typedef struct GpioTest GpioTest;
 | |
| typedef void (*GpioTestOkCallback)(InputType type, void* context);
 | |
| 
 | |
| GpioTest* gpio_test_alloc();
 | |
| 
 | |
| void gpio_test_free(GpioTest* gpio_test);
 | |
| 
 | |
| View* gpio_test_get_view(GpioTest* gpio_test);
 | |
| 
 | |
| void gpio_test_set_ok_callback(GpioTest* gpio_test, GpioTestOkCallback callback, void* context);
 |