mirror of
https://github.com/DarkFlippers/unleashed-firmware
synced 2024-11-23 13:03:13 +00:00
9b2d80d6b7
* FBT, applications: add MENUEXTERNAL app type * FBT, uFBT: build MENUEXTERNAL as EXTERNAL app * Loader menu: show external menu apps * LFRFID: move to sd card * FBT: always build External Applications list * Archive: look for external apps path * Infrared: move to sd card * Apps: add "start" apps * iButton: move to sd card * BadUSB: move to sd card * External apps: update icons * GPIO: move to sd card * Loader: look for external apps path * U2F: move to sd * SubGHz: move to sd * Apps: "on_start" metapackage * NFC: move to sd * Sync f7 and f18 Co-authored-by: Aleksandr Kutuzov <alleteam@gmail.com>
21 lines
427 B
Text
21 lines
427 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",
|
|
order=50,
|
|
)
|