mirror of
https://github.com/Next-Flip/Momentum-Firmware.git
synced 2026-05-12 09:28:37 -07:00
12 lines
220 B
C
12 lines
220 B
C
#include "findmy_state.h"
|
|
#include <furi_hal.h>
|
|
|
|
void findmy_startup() {
|
|
if(!furi_hal_is_normal_boot()) return;
|
|
|
|
FindMyState state;
|
|
if(findmy_state_load(&state)) {
|
|
findmy_state_apply(&state);
|
|
}
|
|
}
|