mirror of
https://github.com/DarkFlippers/unleashed-firmware
synced 2024-12-18 16:53:45 +00:00
18 lines
434 B
C
18 lines
434 B
C
#pragma once
|
|
|
|
#include "protocol_dallas_base.h"
|
|
|
|
typedef enum {
|
|
iButtonProtocolDS1990,
|
|
iButtonProtocolDS1992,
|
|
iButtonProtocolDS1996,
|
|
iButtonProtocolDS1971,
|
|
iButtonProtocolDS1420,
|
|
/* Add new 1-Wire protocols here */
|
|
|
|
/* Default catch-all 1-Wire protocol */
|
|
iButtonProtocolDSGeneric,
|
|
iButtonProtocolDSMax,
|
|
} iButtonProtocolDallas;
|
|
|
|
extern const iButtonProtocolDallasBase* ibutton_protocols_dallas[];
|