Skip to content

Commit 133b4a0

Browse files
committed
Latest Release RM0308-1620-0.99.1-2f8b85d on PATREON - UPD FINDMY STARTUP
1 parent d5ecfb5 commit 133b4a0

File tree

4 files changed

+22
-1
lines changed

4 files changed

+22
-1
lines changed

ReadMe.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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

applications/external/find_my_flipper/application.fam

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,3 +12,12 @@ App(
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+
)
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
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+
}

applications/system/application.fam

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,6 @@ App(
77
"storage_move_to_sd",
88
"js_app",
99
# "archive",
10+
"findmy_startup",
1011
],
1112
)

0 commit comments

Comments
 (0)