 6ec9c6cc49
			
		
	
	
		6ec9c6cc49
		
			
		
	
	
	
	
		
			
			* ibutton: long names partial fix\ * ibutton: limit max filename length to 22 chars * elwrapping long names to a new line * Proper m-string size usage Co-authored-by: Aleksandr Kutuzov <alleteam@gmail.com>
		
			
				
	
	
		
			11 lines
		
	
	
		
			218 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			218 B
		
	
	
	
		
			C
		
	
	
	
	
	
| #pragma once
 | |
| #include <stdint.h>
 | |
| 
 | |
| static const uint8_t IBUTTON_KEY_DATA_SIZE = 8;
 | |
| static const uint8_t IBUTTON_KEY_NAME_SIZE = 22;
 | |
| 
 | |
| enum class iButtonKeyType : uint8_t {
 | |
|     KeyDallas,
 | |
|     KeyCyfral,
 | |
|     KeyMetakom,
 | |
| }; |