enable uart echo and usb mouse apps

This commit is contained in:
MX
2022-09-15 08:17:58 +03:00
parent 83e036da14
commit 9c95562fad
2 changed files with 7 additions and 5 deletions

View File

@@ -1,11 +1,12 @@
App(
appid="uart_echo",
name="UART Echo",
apptype=FlipperAppType.DEBUG,
apptype=FlipperAppType.PLUGIN,
entry_point="uart_echo_app",
cdefines=["APP_UART_ECHO"],
requires=["gui"],
stack_size=2 * 1024,
order=70,
fap_category="Debug",
fap_icon="../../../assets/icons/Archive/keyboard_10px.png",
fap_category="Misc",
)

View File

@@ -1,11 +1,12 @@
App(
appid="usb_mouse",
name="USB Mouse Demo",
apptype=FlipperAppType.DEBUG,
name="USB Mouse",
apptype=FlipperAppType.PLUGIN,
entry_point="usb_mouse_app",
cdefines=["APP_USB_MOUSE"],
requires=["gui"],
stack_size=1 * 1024,
order=60,
fap_category="Debug",
fap_icon="../../plugins/mousejacker/mouse_10px.png",
fap_category="Misc",
)