flipperzero-firmware/firmware/targets/f6/furi-hal/furi-hal-boot.c

31 lines
882 B
C
Raw Normal View History

2021-08-08 18:03:25 +00:00
#include <furi-hal-boot.h>
#include <stm32wbxx_ll_rtc.h>
#include <furi.h>
// Boot request enum
#define BOOT_REQUEST_TAINTED 0x00000000
#define BOOT_REQUEST_CLEAN 0xDADEDADE
#define BOOT_REQUEST_DFU 0xDF00B000
2021-08-08 18:03:25 +00:00
void furi_hal_boot_init() {
#ifndef DEBUG
LL_RTC_BAK_SetRegister(RTC, LL_RTC_BKP_DR0, BOOT_REQUEST_TAINTED);
#endif
FURI_LOG_I("FuriHalBoot", "Init OK");
}
2021-08-08 18:03:25 +00:00
void furi_hal_boot_set_mode(FuriHalBootMode mode) {
if (mode == FuriHalBootModeNormal) {
LL_RTC_BAK_SetRegister(RTC, LL_RTC_BKP_DR0, BOOT_REQUEST_CLEAN);
2021-08-08 18:03:25 +00:00
} else if (mode == FuriHalBootModeDFU) {
LL_RTC_BAK_SetRegister(RTC, LL_RTC_BKP_DR0, BOOT_REQUEST_DFU);
}
}
2021-08-08 18:03:25 +00:00
void furi_hal_boot_set_flags(FuriHalBootFlag flags) {
LL_RTC_BAK_SetRegister(RTC, LL_RTC_BKP_DR2, flags);
}
2021-08-08 18:03:25 +00:00
FuriHalBootFlag furi_hal_boot_get_flags() {
return LL_RTC_BAK_GetRegister(RTC, LL_RTC_BKP_DR2);
}