mirror of
https://github.com/DarkFlippers/unleashed-firmware.git
synced 2025-12-12 12:42:30 +04:00
Prepare apps for next OFW changes
PR 2420 will change PLUGIN type meaning
This commit is contained in:
@@ -1,7 +1,7 @@
|
|||||||
App(
|
App(
|
||||||
appid="UART_Echo",
|
appid="UART_Echo",
|
||||||
name="UART Echo",
|
name="UART Echo",
|
||||||
apptype=FlipperAppType.PLUGIN,
|
apptype=FlipperAppType.EXTERNAL,
|
||||||
entry_point="uart_echo_app",
|
entry_point="uart_echo_app",
|
||||||
cdefines=["APP_UART_ECHO"],
|
cdefines=["APP_UART_ECHO"],
|
||||||
requires=["gui"],
|
requires=["gui"],
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
App(
|
App(
|
||||||
appid="dap_link",
|
appid="dap_link",
|
||||||
name="DAP Link",
|
name="DAP Link",
|
||||||
apptype=FlipperAppType.PLUGIN,
|
apptype=FlipperAppType.EXTERNAL,
|
||||||
entry_point="dap_link_app",
|
entry_point="dap_link_app",
|
||||||
requires=[
|
requires=[
|
||||||
"gui",
|
"gui",
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
App(
|
App(
|
||||||
appid="hid_usb",
|
appid="hid_usb",
|
||||||
name="USB Keyboard & Mouse",
|
name="USB Keyboard & Mouse",
|
||||||
apptype=FlipperAppType.PLUGIN,
|
apptype=FlipperAppType.EXTERNAL,
|
||||||
entry_point="hid_usb_app",
|
entry_point="hid_usb_app",
|
||||||
stack_size=1 * 1024,
|
stack_size=1 * 1024,
|
||||||
fap_category="Misc",
|
fap_category="Misc",
|
||||||
@@ -14,7 +14,7 @@ App(
|
|||||||
App(
|
App(
|
||||||
appid="hid_ble",
|
appid="hid_ble",
|
||||||
name="Bluetooth Remote",
|
name="Bluetooth Remote",
|
||||||
apptype=FlipperAppType.PLUGIN,
|
apptype=FlipperAppType.EXTERNAL,
|
||||||
entry_point="hid_ble_app",
|
entry_point="hid_ble_app",
|
||||||
stack_size=1 * 1024,
|
stack_size=1 * 1024,
|
||||||
fap_category="Misc",
|
fap_category="Misc",
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
App(
|
App(
|
||||||
appid="Music_Player",
|
appid="Music_Player",
|
||||||
name="Music Player",
|
name="Music Player",
|
||||||
apptype=FlipperAppType.PLUGIN,
|
apptype=FlipperAppType.EXTERNAL,
|
||||||
entry_point="music_player_app",
|
entry_point="music_player_app",
|
||||||
cdefines=["APP_MUSIC_PLAYER"],
|
cdefines=["APP_MUSIC_PLAYER"],
|
||||||
requires=[
|
requires=[
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
App(
|
App(
|
||||||
appid="pocsag_pager",
|
appid="pocsag_pager",
|
||||||
name="POCSAG Pager",
|
name="POCSAG Pager",
|
||||||
apptype=FlipperAppType.PLUGIN,
|
apptype=FlipperAppType.EXTERNAL,
|
||||||
entry_point="pocsag_pager_app",
|
entry_point="pocsag_pager_app",
|
||||||
cdefines=["APP_POCSAG_PAGER"],
|
cdefines=["APP_POCSAG_PAGER"],
|
||||||
requires=["gui"],
|
requires=["gui"],
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
App(
|
App(
|
||||||
appid="Signal_Generator",
|
appid="Signal_Generator",
|
||||||
name="Signal Generator",
|
name="Signal Generator",
|
||||||
apptype=FlipperAppType.PLUGIN,
|
apptype=FlipperAppType.EXTERNAL,
|
||||||
entry_point="signal_gen_app",
|
entry_point="signal_gen_app",
|
||||||
cdefines=["APP_SIGNAL_GEN"],
|
cdefines=["APP_SIGNAL_GEN"],
|
||||||
requires=["gui"],
|
requires=["gui"],
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
App(
|
App(
|
||||||
appid="Snake",
|
appid="Snake",
|
||||||
name="Snake Game",
|
name="Snake Game",
|
||||||
apptype=FlipperAppType.PLUGIN,
|
apptype=FlipperAppType.EXTERNAL,
|
||||||
entry_point="snake_game_app",
|
entry_point="snake_game_app",
|
||||||
cdefines=["APP_SNAKE_GAME"],
|
cdefines=["APP_SNAKE_GAME"],
|
||||||
requires=["gui"],
|
requires=["gui"],
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
App(
|
App(
|
||||||
appid="swd_probe",
|
appid="swd_probe",
|
||||||
name="SWD Probe",
|
name="SWD Probe",
|
||||||
apptype=FlipperAppType.PLUGIN,
|
apptype=FlipperAppType.EXTERNAL,
|
||||||
entry_point="swd_probe_app_main",
|
entry_point="swd_probe_app_main",
|
||||||
cdefines=["APP_SWD_PROBE"],
|
cdefines=["APP_SWD_PROBE"],
|
||||||
requires=["notification", "gui", "storage", "dialogs", "cli"],
|
requires=["notification", "gui", "storage", "dialogs", "cli"],
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
App(
|
App(
|
||||||
appid="weather_station",
|
appid="weather_station",
|
||||||
name="Weather Station",
|
name="Weather Station",
|
||||||
apptype=FlipperAppType.PLUGIN,
|
apptype=FlipperAppType.EXTERNAL,
|
||||||
targets=["f7"],
|
targets=["f7"],
|
||||||
entry_point="weather_station_app",
|
entry_point="weather_station_app",
|
||||||
cdefines=["APP_WEATHER_STATION"],
|
cdefines=["APP_WEATHER_STATION"],
|
||||||
|
|||||||
Reference in New Issue
Block a user