 ebc2b66372
			
		
	
	
		ebc2b66372
		
			
		
	
	
	
	
		
			
			* fbt: split sdk management code * scripts: fixed import handling * fbt: sdk: reformatted paths * scrips: dist: bundling libs as a build artifact * fbt: sdk: better path management * typo fix * fbt: sdk: minor path handling fixes * toolchain: fixed windows toolchain download * fbt: minor refactorin * fbt: moved sdk management code to extapps.scons * fbt: fixed sdk symbols header path; disabled -fstack-usage * fbt: changed pathing for .py scripts * fbt: changed SDK_HEADERS pathing; added libusb to SDK; added icon_i.h to SDK; added hw target to SDK meta * fbt: added libusb headers to SDK * picopass: include cleanup; api: added subghz/registry.h; api: added mbedtls to exported headers * picopass: fixed formatting * fbt: fixed COPRO_ASSETS_SCRIPT * sdk: added basic infrared apis * toolchain: added ufbt to list of legal fbtenv callers; updated error messages * fbt: changed manifest collection & icon processing code * fbt: simpler srcdir lookup * toolchain: path management fixes; fbt: fixes for fap private libs paths * scripts: toolchain: reworked download on Windows * toolchain: v17 * scripts: added colorlog for logging * Github: fix unit tests Co-authored-by: あく <alleteam@gmail.com>
		
			
				
	
	
		
			34 lines
		
	
	
		
			706 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			34 lines
		
	
	
		
			706 B
		
	
	
	
		
			C
		
	
	
	
	
	
| #pragma once
 | |
| 
 | |
| #include "picopass_worker.h"
 | |
| #include "picopass_i.h"
 | |
| 
 | |
| #include <furi.h>
 | |
| #include <lib/toolbox/stream/file_stream.h>
 | |
| 
 | |
| #include <furi_hal.h>
 | |
| 
 | |
| #include <stdlib.h>
 | |
| #include <rfal_rf.h>
 | |
| 
 | |
| #include <platform.h>
 | |
| 
 | |
| struct PicopassWorker {
 | |
|     FuriThread* thread;
 | |
|     Storage* storage;
 | |
|     Stream* dict_stream;
 | |
| 
 | |
|     PicopassDeviceData* dev_data;
 | |
|     PicopassWorkerCallback callback;
 | |
|     void* context;
 | |
| 
 | |
|     PicopassWorkerState state;
 | |
| };
 | |
| 
 | |
| void picopass_worker_change_state(PicopassWorker* picopass_worker, PicopassWorkerState state);
 | |
| 
 | |
| int32_t picopass_worker_task(void* context);
 | |
| 
 | |
| void picopass_worker_detect(PicopassWorker* picopass_worker);
 | |
| void picopass_worker_write(PicopassWorker* picopass_worker);
 |