mirror of
https://github.com/flipperdevices/flipperzero-firmware.git
synced 2025-12-12 20:59:50 +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
11 lines
327 B
C
11 lines
327 B
C
#include "protocol_group_misc_defs.h"
|
|
|
|
#include "protocol_cyfral.h"
|
|
#include "protocol_metakom.h"
|
|
|
|
const ProtocolBase* const ibutton_protocols_misc[] = {
|
|
[iButtonProtocolMiscCyfral] = &ibutton_protocol_misc_cyfral,
|
|
[iButtonProtocolMiscMetakom] = &ibutton_protocol_misc_metakom,
|
|
/* Add new misc protocols here */
|
|
};
|