 f9745b4141
			
		
	
	
		f9745b4141
		
			
		
	
	
	
	
		
			
			* Rpc: remove callback timer * Rpc: simplify rpc event callback * Rpc: migrate to new confirmation schema * Rpc: migrate to new confirmation schema part2: finalize ibutton and rfid * Rpc: migrate to new confirmation schema part3: finallize nfc and fix id in load * Rpc: hardened sequencing check * Rpc: migrate to new confirmation schema part4: finalize subghz * iButton: properly handle exit * Nfc: correct sequence for rpc exit send * Rpc: fix review issues and nfc exit message * Rpc: more logging and condition race fix in confirmation * Rpc: migrate to new confirmation schema part5: finalize infrared * Rpc: more logging
		
			
				
	
	
		
			17 lines
		
	
	
		
			438 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			438 B
		
	
	
	
		
			C
		
	
	
	
	
	
| #pragma once
 | |
| 
 | |
| enum iButtonCustomEvent {
 | |
|     // Reserve first 100 events for button types and indexes, starting from 0
 | |
|     iButtonCustomEventReserved = 100,
 | |
| 
 | |
|     iButtonCustomEventBack,
 | |
|     iButtonCustomEventTextEditResult,
 | |
|     iButtonCustomEventByteEditResult,
 | |
|     iButtonCustomEventWorkerEmulated,
 | |
|     iButtonCustomEventWorkerRead,
 | |
| 
 | |
|     iButtonCustomEventRpcLoad,
 | |
|     iButtonCustomEventRpcExit,
 | |
|     iButtonCustomEventRpcSessionClose,
 | |
| };
 |