* C2OTA: wip * Update Cube to 1.13.3 * Fixed prio * Functional Core2 updater * Removed hardware CRC usage; code cleanup & linter fixes * Moved hardcoded stack params to copro.mk * Fixing CI bundling of core2 fw * Removed last traces of hardcoded radio stack * OB processing draft * Python scripts cleanup * Support for comments in ob data * Sacrificed SD card icon in favor of faster update. Waiting for Storage fix * Additional handling for OB mismatched values * Description for new furi_hal apis; spelling fixes * Rework of OB write, WIP * Properly restarting OB verification loop * Split update_task_workers.c * Checking OBs after enabling post-update mode * Moved OB verification before flashing * Removed ob.data for custom stacks * Fixed progress calculation for OB * Removed unnecessary OB mask cast Co-authored-by: Aleksandr Kutuzov <alleteam@gmail.com>
		
			
				
	
	
		
			99 lines
		
	
	
		
			2.7 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			99 lines
		
	
	
		
			2.7 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
/**
 | 
						|
 * @file furi_hal_rtc.h
 | 
						|
 * Furi Hal RTC API
 | 
						|
 */
 | 
						|
 | 
						|
#pragma once
 | 
						|
 | 
						|
#include <stdint.h>
 | 
						|
#include <stdbool.h>
 | 
						|
 | 
						|
#ifdef __cplusplus
 | 
						|
extern "C" {
 | 
						|
#endif
 | 
						|
 | 
						|
typedef struct {
 | 
						|
    // Time
 | 
						|
    uint8_t hour; /**< Hour in 24H format: 0-23 */
 | 
						|
    uint8_t minute; /**< Minute: 0-59 */
 | 
						|
    uint8_t second; /**< Second: 0-59 */
 | 
						|
    // Date
 | 
						|
    uint8_t day; /**< Current day: 1-31 */
 | 
						|
    uint8_t month; /**< Current month: 1-12 */
 | 
						|
    uint16_t year; /**< Current year: 2000-2099 */
 | 
						|
    uint8_t weekday; /**< Current weekday: 1-7 */
 | 
						|
} FuriHalRtcDateTime;
 | 
						|
 | 
						|
typedef enum {
 | 
						|
    FuriHalRtcFlagDebug = (1 << 0),
 | 
						|
    FuriHalRtcFlagFactoryReset = (1 << 1),
 | 
						|
    FuriHalRtcFlagLock = (1 << 2),
 | 
						|
    FuriHalRtcFlagC2Update = (1 << 3),
 | 
						|
} FuriHalRtcFlag;
 | 
						|
 | 
						|
typedef enum {
 | 
						|
    FuriHalRtcBootModeNormal = 0, /**< Normal boot mode, default value */
 | 
						|
    FuriHalRtcBootModeDfu, /**< Boot to DFU (MCU bootloader by ST) */
 | 
						|
    FuriHalRtcBootModePreUpdate, /**< Boot to Update, pre update */
 | 
						|
    FuriHalRtcBootModeUpdate, /**< Boot to Update, main */
 | 
						|
    FuriHalRtcBootModePostUpdate, /**< Boot to Update, post update */
 | 
						|
} FuriHalRtcBootMode;
 | 
						|
 | 
						|
typedef enum {
 | 
						|
    FuriHalRtcRegisterHeader, /**< RTC structure header */
 | 
						|
    FuriHalRtcRegisterSystem, /**< Various system bits */
 | 
						|
    FuriHalRtcRegisterVersion, /**< Pointer to Version */
 | 
						|
    FuriHalRtcRegisterLfsFingerprint, /**< LFS geometry fingerprint */
 | 
						|
    FuriHalRtcRegisterFaultData, /**< Pointer to last fault message */
 | 
						|
    FuriHalRtcRegisterPinFails, /**< Failed pins count */
 | 
						|
    /* Index of FS directory entry corresponding to FW update to be applied */
 | 
						|
    FuriHalRtcRegisterUpdateFolderFSIndex,
 | 
						|
 | 
						|
    FuriHalRtcRegisterMAX, /**< Service value, do not use */
 | 
						|
} FuriHalRtcRegister;
 | 
						|
 | 
						|
/** Early initialization */
 | 
						|
void furi_hal_rtc_init_early();
 | 
						|
 | 
						|
/** Early deinitialization */
 | 
						|
void furi_hal_rtc_deinit_early();
 | 
						|
 | 
						|
/** Initialize RTC subsystem */
 | 
						|
void furi_hal_rtc_init();
 | 
						|
 | 
						|
uint32_t furi_hal_rtc_get_register(FuriHalRtcRegister reg);
 | 
						|
 | 
						|
void furi_hal_rtc_set_register(FuriHalRtcRegister reg, uint32_t value);
 | 
						|
 | 
						|
void furi_hal_rtc_set_log_level(uint8_t level);
 | 
						|
 | 
						|
uint8_t furi_hal_rtc_get_log_level();
 | 
						|
 | 
						|
void furi_hal_rtc_set_flag(FuriHalRtcFlag flag);
 | 
						|
 | 
						|
void furi_hal_rtc_reset_flag(FuriHalRtcFlag flag);
 | 
						|
 | 
						|
bool furi_hal_rtc_is_flag_set(FuriHalRtcFlag flag);
 | 
						|
 | 
						|
void furi_hal_rtc_set_boot_mode(FuriHalRtcBootMode mode);
 | 
						|
 | 
						|
FuriHalRtcBootMode furi_hal_rtc_get_boot_mode();
 | 
						|
 | 
						|
void furi_hal_rtc_set_datetime(FuriHalRtcDateTime* datetime);
 | 
						|
 | 
						|
void furi_hal_rtc_get_datetime(FuriHalRtcDateTime* datetime);
 | 
						|
 | 
						|
bool furi_hal_rtc_validate_datetime(FuriHalRtcDateTime* datetime);
 | 
						|
 | 
						|
void furi_hal_rtc_set_fault_data(uint32_t value);
 | 
						|
 | 
						|
uint32_t furi_hal_rtc_get_fault_data();
 | 
						|
 | 
						|
void furi_hal_rtc_set_pin_fails(uint32_t value);
 | 
						|
 | 
						|
uint32_t furi_hal_rtc_get_pin_fails();
 | 
						|
 | 
						|
#ifdef __cplusplus
 | 
						|
}
 | 
						|
#endif
 |