53435579b3
* fbt, faploader: minimal app module implementation * faploader, libs: moved API hashtable core to flipper_application * example: compound api * lib: flipper_application: naming fixes, doxygen comments * fbt: changed `requires` manifest field behavior for app extensions * examples: refactored plugin apps; faploader: changed new API naming; fbt: changed PLUGIN app type meaning * loader: dropped support for debug apps & plugin menus * moved applications/plugins -> applications/external * Restored x bit on chiplist_convert.py * git: fixed free-dap submodule path * pvs: updated submodule paths * examples: example_advanced_plugins.c: removed potential memory leak on errors * examples: example_plugins: refined requires * fbt: not deploying app modules for debug/sample apps; extra validation for .PLUGIN-type apps * apps: removed cdefines for external apps * fbt: moved ext app path definition * fbt: reworked fap_dist handling; f18: synced api_symbols.csv * fbt: removed resources_paths for extapps * scripts: reworked storage * scripts: reworked runfap.py & selfupdate.py to use new api * wip: fal runner * fbt: moved file packaging into separate module * scripts: storage: fixes * scripts: storage: minor fixes for new api * fbt: changed internal artifact storage details for external apps * scripts: storage: additional fixes and better error reporting; examples: using APP_DATA_PATH() * fbt, scripts: reworked launch_app to deploy plugins; moved old runfap.py to distfap.py * fbt: extra check for plugins descriptors * fbt: additional checks in emitter * fbt: better info message on SDK rebuild * scripts: removed requirements.txt * loader: removed remnants of plugins & debug menus * post-review fixes
49 lines
1.5 KiB
C
49 lines
1.5 KiB
C
#pragma once
|
|
|
|
#include <furi_hal_nfc.h>
|
|
|
|
#define RFAL_PICOPASS_UID_LEN 8
|
|
#define RFAL_PICOPASS_MAX_BLOCK_LEN 8
|
|
|
|
enum {
|
|
RFAL_PICOPASS_CMD_ACTALL = 0x0A,
|
|
RFAL_PICOPASS_CMD_IDENTIFY = 0x0C,
|
|
RFAL_PICOPASS_CMD_SELECT = 0x81,
|
|
RFAL_PICOPASS_CMD_READCHECK = 0x88,
|
|
RFAL_PICOPASS_CMD_CHECK = 0x05,
|
|
RFAL_PICOPASS_CMD_READ = 0x0C,
|
|
RFAL_PICOPASS_CMD_WRITE = 0x87,
|
|
};
|
|
|
|
typedef struct {
|
|
uint8_t CSN[RFAL_PICOPASS_UID_LEN]; // Anti-collision CSN
|
|
uint8_t crc[2];
|
|
} rfalPicoPassIdentifyRes;
|
|
|
|
typedef struct {
|
|
uint8_t CSN[RFAL_PICOPASS_UID_LEN]; // Real CSN
|
|
uint8_t crc[2];
|
|
} rfalPicoPassSelectRes;
|
|
|
|
typedef struct {
|
|
uint8_t CCNR[8];
|
|
} rfalPicoPassReadCheckRes;
|
|
|
|
typedef struct {
|
|
uint8_t mac[4];
|
|
} rfalPicoPassCheckRes;
|
|
|
|
typedef struct {
|
|
uint8_t data[RFAL_PICOPASS_MAX_BLOCK_LEN];
|
|
uint8_t crc[2];
|
|
} rfalPicoPassReadBlockRes;
|
|
|
|
FuriHalNfcReturn rfalPicoPassPollerInitialize(void);
|
|
FuriHalNfcReturn rfalPicoPassPollerCheckPresence(void);
|
|
FuriHalNfcReturn rfalPicoPassPollerIdentify(rfalPicoPassIdentifyRes* idRes);
|
|
FuriHalNfcReturn rfalPicoPassPollerSelect(uint8_t* csn, rfalPicoPassSelectRes* selRes);
|
|
FuriHalNfcReturn rfalPicoPassPollerReadCheck(rfalPicoPassReadCheckRes* rcRes);
|
|
FuriHalNfcReturn rfalPicoPassPollerCheck(uint8_t* mac, rfalPicoPassCheckRes* chkRes);
|
|
FuriHalNfcReturn rfalPicoPassPollerReadBlock(uint8_t blockNum, rfalPicoPassReadBlockRes* readRes);
|
|
FuriHalNfcReturn rfalPicoPassPollerWriteBlock(uint8_t blockNum, uint8_t data[8], uint8_t mac[4]);
|