mirror of
https://github.com/DarkFlippers/unleashed-firmware
synced 2024-11-23 13:03:13 +00:00
7bd3bd7ea4
* fbt: reduced amount of redundant compilation units * fbt: added GatherSources() method which can reject source paths starting with "!" in sources list; optimized apps' source lists * docs: updated on path exclusion for `sources` * apps: examples: fixed example_advanced_plugins source list * docs: more details on `sources`; apps: narrower sources lists
22 lines
457 B
Text
22 lines
457 B
Text
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,
|
|
fap_libs=["assets"],
|
|
fap_icon="icon.png",
|
|
fap_category="RFID",
|
|
)
|
|
|
|
App(
|
|
appid="lfrfid_start",
|
|
targets=["f7"],
|
|
apptype=FlipperAppType.STARTUP,
|
|
entry_point="lfrfid_on_system_start",
|
|
sources=["lfrfid_cli.c"],
|
|
order=50,
|
|
)
|