mirror of
https://github.com/flipperdevices/flipperzero-firmware.git
synced 2025-12-12 04:41:26 +04:00
* libs: stricter constness for saving RAM with .rodata section; fbt: sdk: fixed signature generation for nested const params * hal: additional fixes for constness in USB subsystem * debug apps: additional usb-related fixes * mjs: more consts for token parser * fatfs: const driver struct * hal: more consts for ble & nfc vars * hal: made FuriHalSpiBusHandle static * hal: made FuriHalI2cBusHandle static * usb: restored previous api * linter fixes * API fixes
19 lines
636 B
C
19 lines
636 B
C
#include "protocol_group_dallas_defs.h"
|
|
|
|
#include "protocol_ds1990.h"
|
|
#include "protocol_ds1992.h"
|
|
#include "protocol_ds1996.h"
|
|
#include "protocol_ds1971.h"
|
|
#include "protocol_ds_generic.h"
|
|
|
|
const iButtonProtocolDallasBase* const ibutton_protocols_dallas[] = {
|
|
[iButtonProtocolDS1990] = &ibutton_protocol_ds1990,
|
|
[iButtonProtocolDS1992] = &ibutton_protocol_ds1992,
|
|
[iButtonProtocolDS1996] = &ibutton_protocol_ds1996,
|
|
[iButtonProtocolDS1971] = &ibutton_protocol_ds1971,
|
|
/* Add new 1-Wire protocols here */
|
|
|
|
/* Default catch-all 1-Wire protocol */
|
|
[iButtonProtocolDSGeneric] = &ibutton_protocol_ds_generic,
|
|
};
|