mirror of
https://github.com/Next-Flip/Momentum-Firmware.git
synced 2026-04-24 03:29:57 -07:00
* 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>
24 lines
476 B
Plaintext
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"],
|
|
)
|