Files
Momentum-Firmware/applications/main/lfrfid/application.fam
Zinong Li 8c0c7f1bb9 LFRFID: Show ISO-3166 Country Names For Pet Chips (#4091)
* Country list header and printf

* off load country list to asset

* lint

* Field specific getters

* check string length before cutting

* lfrfid: minor iso3166 cleanup

---------

Co-authored-by: hedger <hedger@users.noreply.github.com>
Co-authored-by: hedger <hedger@nanode.su>
2025-09-25 21:22:56 +04:00

24 lines
476 B
Plaintext

App(
appid="lfrfid",
name="125 kHz RFID",
apptype=FlipperAppType.MENUEXTERNAL,
targets=["f7"],
entry_point="lfrfid_app",
icon="A_125khz_14",
stack_size=2 * 1024,
order=20,
resources="resources",
fap_libs=["assets"],
fap_icon="icon.png",
fap_category="RFID",
)
App(
appid="cli_rfid",
targets=["f7"],
apptype=FlipperAppType.PLUGIN,
entry_point="cli_rfid_ep",
requires=["cli"],
sources=["lfrfid_cli.c"],
)