8073992925
* RFID: pull antenna down when emulating * Rfid: fixed HID emulation by adding zero pulse every 4 bits * Rfid: HID emulation fixed with DSP based FSK oscillator. * Rfid: receive 125KHz clock for emulation timer from antenna and comparator * Rfid: commented unused variable * Firmware: rollback changes in f6. * Add F7 target based on F6. * F7/F6: update cube projects, apply changes to the targets, update linker scripts with correct RAM start values. * FuriHal: RFID init routine. * Scripts: update OTP tool for v11 board Co-authored-by: Aleksandr Kutuzov <alleteam@gmail.com>
31 lines
882 B
C
31 lines
882 B
C
#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
|
|
|
|
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");
|
|
}
|
|
|
|
void furi_hal_boot_set_mode(FuriHalBootMode mode) {
|
|
if (mode == FuriHalBootModeNormal) {
|
|
LL_RTC_BAK_SetRegister(RTC, LL_RTC_BKP_DR0, BOOT_REQUEST_CLEAN);
|
|
} else if (mode == FuriHalBootModeDFU) {
|
|
LL_RTC_BAK_SetRegister(RTC, LL_RTC_BKP_DR0, BOOT_REQUEST_DFU);
|
|
}
|
|
}
|
|
|
|
void furi_hal_boot_set_flags(FuriHalBootFlag flags) {
|
|
LL_RTC_BAK_SetRegister(RTC, LL_RTC_BKP_DR2, flags);
|
|
}
|
|
|
|
FuriHalBootFlag furi_hal_boot_get_flags() {
|
|
return LL_RTC_BAK_GetRegister(RTC, LL_RTC_BKP_DR2);
|
|
} |