* Separate ibutton to its own module, add one_wire to f18 * Move onewire cli to a separate app Co-authored-by: Aleksandr Kutuzov <alleteam@gmail.com>
		
			
				
	
	
		
			18 lines
		
	
	
		
			407 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			407 B
		
	
	
	
		
			C
		
	
	
	
	
	
#pragma once
 | 
						|
 | 
						|
#include "protocol_dallas_base.h"
 | 
						|
 | 
						|
typedef enum {
 | 
						|
    iButtonProtocolDS1990,
 | 
						|
    iButtonProtocolDS1992,
 | 
						|
    iButtonProtocolDS1996,
 | 
						|
    iButtonProtocolDS1971,
 | 
						|
    /* Add new 1-Wire protocols here */
 | 
						|
 | 
						|
    /* Default catch-all 1-Wire protocol */
 | 
						|
    iButtonProtocolDSGeneric,
 | 
						|
    iButtonProtocolDSMax,
 | 
						|
} iButtonProtocolDallas;
 | 
						|
 | 
						|
extern const iButtonProtocolDallasBase* ibutton_protocols_dallas[];
 |