From 3878acbf08e3dee98b0e76c37ef590a38b73f3e4 Mon Sep 17 00:00:00 2001 From: RogueMaster Date: Sun, 18 Sep 2022 19:57:30 -0400 Subject: [PATCH] fix back to external --- ReadMe.md | 1 + applications/plugins/bt_hid_app/application.fam | 2 +- applications/plugins/snake_game/application.fam | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/ReadMe.md b/ReadMe.md index f0f61273e..e2933c1b7 100644 --- a/ReadMe.md +++ b/ReadMe.md @@ -14,6 +14,7 @@ - New frequencies added provided by [Unleashed/xMasterX](https://github.com/Eng1n33r/flipperzero-firmware) - Added [Metronome (By panki27)](https://github.com/panki27/Metronome) - Added [BPM Tapper (By panki27)](https://github.com/panki27/bpm-tapper) +- Added latest changes to [faploader: more subsystem headers in API table #1742 (By hedger)](https://github.com/flipperdevices/flipperzero-firmware/pull/1742)
TO DO
diff --git a/applications/plugins/bt_hid_app/application.fam b/applications/plugins/bt_hid_app/application.fam index 4aa8493c7..cc888e861 100644 --- a/applications/plugins/bt_hid_app/application.fam +++ b/applications/plugins/bt_hid_app/application.fam @@ -1,7 +1,7 @@ App( appid="APPS_BluetoothRemote", name="Bluetooth Remote", - apptype=FlipperAppType.PLUGIN, + apptype=FlipperAppType.EXTERNAL, entry_point="bt_hid_app", stack_size=1 * 1024, cdefines=["APP_BLE_HID"], diff --git a/applications/plugins/snake_game/application.fam b/applications/plugins/snake_game/application.fam index 4844abff0..25b699101 100644 --- a/applications/plugins/snake_game/application.fam +++ b/applications/plugins/snake_game/application.fam @@ -1,7 +1,7 @@ App( appid="GAME_Snake", name="Snake Game", - apptype=FlipperAppType.PLUGIN, + apptype=FlipperAppType.EXTERNAL, entry_point="snake_game_app", cdefines=["APP_SNAKE_GAME"], requires=["gui"],