File tree Expand file tree Collapse file tree 4 files changed +22
-1
lines changed
Expand file tree Collapse file tree 4 files changed +22
-1
lines changed Original file line number Diff line number Diff line change @@ -45,9 +45,9 @@ This software is for experimental purposes only and is not meant for any illegal
4545- Added: [ FindMy Flipper v1.0 (By MatthewKuKanich)] ( https://github.com/MatthewKuKanich/FindMyFlipper )
4646- Updated: [ BLE Spam v6.0 (By Willy-JL & ECTO-1A & Spooks4576 with research from xMasterX; OFW API thanks to noproto)] ( https://github.com/noproto/apple_ble_spam_ofw ) [ Added NameFlood option (By Willy-JL)] ( https://github.com/RogueMaster/flipperzero-firmware-wPlugins/commit/f2a6af257c8ce8e47181329c59a8a4e44e927c58 ) [ Bug Fixes (By Willy-JL)] ( https://github.com/RogueMaster/flipperzero-firmware-wPlugins/commit/74d69fb623378395ed8407261c95453d12e59cd5 )
4747- Updated: [ NFC Maker v1.2 (by Willy-JL)] ( https://github.com/RogueMaster/flipperzero-firmware-wPlugins/commit/343cb39d08f60b75b537e1a31100707935cf6e9d ) NfcMaker: Fix timeout on error screen (By Willy-JL)
48- - Updated: [ FindMy Flipper v1.0 (By MatthewKuKanich)] ( https://github.com/MatthewKuKanich/FindMyFlipper )
4948- Updated: [ Quac! v0.2 (By rdefeo)] ( https://github.com/rdefeo/quac )
5049- Updated: [ VGM: Custom color options (By HaxSam & Willy-JL)] ( https://github.com/RogueMaster/flipperzero-firmware-wPlugins/commit/93b532b4ebac931862369b286429b83a2c55d1bf ) Added Rainbow Mode (By Willy-JL)
50+ - Updated: [ FindMy Flipper v1.0 (By MatthewKuKanich)] ( https://github.com/MatthewKuKanich/FindMyFlipper ) Added Startup Service (By Willy-JL & MatthewKuKanich)
5151
5252<a name =" release " >
5353
Original file line number Diff line number Diff line change 1212 fap_version="1.0",
1313 fap_description="BLE FindMy Location Beacon",
1414)
15+
16+ App(
17+ appid="findmy_startup",
18+ targets=["f7"],
19+ apptype=FlipperAppType.STARTUP,
20+ entry_point="findmy_startup",
21+ sources=["findmy_startup.c", "findmy_state.c"],
22+ order=1000,
23+ )
Original file line number Diff line number Diff line change 1+ #include "findmy_state.h"
2+ #include <furi_hal.h>
3+
4+ void findmy_startup () {
5+ if (!furi_hal_is_normal_boot ()) return ;
6+
7+ FindMyState state ;
8+ if (findmy_state_load (& state )) {
9+ findmy_state_apply (& state );
10+ }
11+ }
Original file line number Diff line number Diff line change 77 "storage_move_to_sd",
88 "js_app",
99 # "archive",
10+ "findmy_startup",
1011 ],
1112)
You can’t perform that action at this time.
0 commit comments