mirror of
https://github.com/DarkFlippers/unleashed-firmware.git
synced 2025-12-13 13:09:49 +04:00
19 lines
440 B
C
19 lines
440 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* const ibutton_protocols_dallas[];
|