mirror of
https://github.com/DarkFlippers/unleashed-firmware
synced 2024-11-23 21:13:16 +00:00
0917494a80
* 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>
17 lines
407 B
C
17 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[];
|