 917410a0a8
			
		
	
	
		917410a0a8
		
			
		
	
	
	
	
		
			
			* fbt: reworking targets & assets handling WIP * fbt: dist fixes * fbt: moved SD card resources to owning apps * unit_tests: moved resources to app folder * github: updated unit_tests paths * github: packaging fixes * unit_tests: fixes * fbt: assets: internal cleanup * fbt: reworked assets handling * github: unit_tests: reintroducing fixes * minor cleanup * fbt: naming changes to reflect private nature of scons tools * fbt: resources: fixed dist archive paths * docs: updated paths * docs: updated more paths * docs: included "resources" parameter in app manifest docs; updated assets readme * updated gitignore for assets * github: updated action versions * unit_tests: restored timeout; scripts: assets: logging changes * gh: don't upload desktop animations for unit test run Co-authored-by: あく <alleteam@gmail.com>
		
			
				
	
	
		
			286 lines
		
	
	
		
			7.3 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			286 lines
		
	
	
		
			7.3 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),
 | |
|     FuriHalRtcFlagHandOrient = (1 << 4),
 | |
|     FuriHalRtcFlagLegacySleep = (1 << 5),
 | |
|     FuriHalRtcFlagStealthMode = (1 << 6),
 | |
|     FuriHalRtcFlagDetailedFilename = (1 << 7),
 | |
| } 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 {
 | |
|     FuriHalRtcHeapTrackModeNone = 0, /**< Disable allocation tracking */
 | |
|     FuriHalRtcHeapTrackModeMain, /**< Enable allocation tracking for main application thread */
 | |
|     FuriHalRtcHeapTrackModeTree, /**< Enable allocation tracking for main and children application threads */
 | |
|     FuriHalRtcHeapTrackModeAll, /**< Enable allocation tracking for all threads */
 | |
| } FuriHalRtcHeapTrackMode;
 | |
| 
 | |
| 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;
 | |
| 
 | |
| typedef enum {
 | |
|     FuriHalRtcLocaleUnitsMetric = 0, /**< Metric measurement units */
 | |
|     FuriHalRtcLocaleUnitsImperial = 1, /**< Imperial measurement units */
 | |
| } FuriHalRtcLocaleUnits;
 | |
| 
 | |
| typedef enum {
 | |
|     FuriHalRtcLocaleTimeFormat24h = 0, /**< 24-hour format */
 | |
|     FuriHalRtcLocaleTimeFormat12h = 1, /**< 12-hour format */
 | |
| } FuriHalRtcLocaleTimeFormat;
 | |
| 
 | |
| typedef enum {
 | |
|     FuriHalRtcLocaleDateFormatDMY = 0, /**< Day/Month/Year */
 | |
|     FuriHalRtcLocaleDateFormatMDY = 1, /**< Month/Day/Year */
 | |
|     FuriHalRtcLocaleDateFormatYMD = 2, /**< Year/Month/Day */
 | |
| } FuriHalRtcLocaleDateFormat;
 | |
| 
 | |
| /** Early initialization */
 | |
| void furi_hal_rtc_init_early();
 | |
| 
 | |
| /** Early de-initialization */
 | |
| void furi_hal_rtc_deinit_early();
 | |
| 
 | |
| /** Initialize RTC subsystem */
 | |
| void furi_hal_rtc_init();
 | |
| 
 | |
| /** Force sync shadow registers */
 | |
| void furi_hal_rtc_sync_shadow();
 | |
| 
 | |
| /** Get RTC register content
 | |
|  *
 | |
|  * @param[in]  reg   The register identifier
 | |
|  *
 | |
|  * @return     content of the register
 | |
|  */
 | |
| uint32_t furi_hal_rtc_get_register(FuriHalRtcRegister reg);
 | |
| 
 | |
| /** Set register content
 | |
|  *
 | |
|  * @param[in]  reg    The register identifier
 | |
|  * @param[in]  value  The value to store into register
 | |
|  */
 | |
| void furi_hal_rtc_set_register(FuriHalRtcRegister reg, uint32_t value);
 | |
| 
 | |
| /** Set Log Level value
 | |
|  *
 | |
|  * @param[in]  level  The level to store
 | |
|  */
 | |
| void furi_hal_rtc_set_log_level(uint8_t level);
 | |
| 
 | |
| /** Get Log Level value
 | |
|  *
 | |
|  * @return     The Log Level value
 | |
|  */
 | |
| uint8_t furi_hal_rtc_get_log_level();
 | |
| 
 | |
| /** Set RTC Flag
 | |
|  *
 | |
|  * @param[in]  flag  The flag to set
 | |
|  */
 | |
| void furi_hal_rtc_set_flag(FuriHalRtcFlag flag);
 | |
| 
 | |
| /** Reset RTC Flag
 | |
|  *
 | |
|  * @param[in]  flag  The flag to reset
 | |
|  */
 | |
| void furi_hal_rtc_reset_flag(FuriHalRtcFlag flag);
 | |
| 
 | |
| /** Check if RTC Flag is set
 | |
|  *
 | |
|  * @param[in]  flag  The flag to check
 | |
|  *
 | |
|  * @return     true if set
 | |
|  */
 | |
| bool furi_hal_rtc_is_flag_set(FuriHalRtcFlag flag);
 | |
| 
 | |
| /** Set RTC boot mode
 | |
|  *
 | |
|  * @param[in]  mode  The mode to set
 | |
|  */
 | |
| void furi_hal_rtc_set_boot_mode(FuriHalRtcBootMode mode);
 | |
| 
 | |
| /** Get RTC boot mode
 | |
|  *
 | |
|  * @return     The RTC boot mode.
 | |
|  */
 | |
| FuriHalRtcBootMode furi_hal_rtc_get_boot_mode();
 | |
| 
 | |
| /** Set Heap Track mode
 | |
|  *
 | |
|  * @param[in]  mode  The mode to set
 | |
|  */
 | |
| void furi_hal_rtc_set_heap_track_mode(FuriHalRtcHeapTrackMode mode);
 | |
| 
 | |
| /** Get RTC Heap Track mode
 | |
|  *
 | |
|  * @return     The RTC heap track mode.
 | |
|  */
 | |
| FuriHalRtcHeapTrackMode furi_hal_rtc_get_heap_track_mode();
 | |
| 
 | |
| /** Set locale units
 | |
|  *
 | |
|  * @param[in]  mode  The RTC Locale Units
 | |
|  */
 | |
| void furi_hal_rtc_set_locale_units(FuriHalRtcLocaleUnits value);
 | |
| 
 | |
| /** Get RTC Locale Units
 | |
|  *
 | |
|  * @return     The RTC Locale Units.
 | |
|  */
 | |
| FuriHalRtcLocaleUnits furi_hal_rtc_get_locale_units();
 | |
| 
 | |
| /** Set RTC Locale Time Format
 | |
|  *
 | |
|  * @param[in]  value  The RTC Locale Time Format
 | |
|  */
 | |
| void furi_hal_rtc_set_locale_timeformat(FuriHalRtcLocaleTimeFormat value);
 | |
| 
 | |
| /** Get RTC Locale Time Format
 | |
|  *
 | |
|  * @return     The RTC Locale Time Format.
 | |
|  */
 | |
| FuriHalRtcLocaleTimeFormat furi_hal_rtc_get_locale_timeformat();
 | |
| 
 | |
| /** Set RTC Locale Date Format
 | |
|  *
 | |
|  * @param[in]  value  The RTC Locale Date Format
 | |
|  */
 | |
| void furi_hal_rtc_set_locale_dateformat(FuriHalRtcLocaleDateFormat value);
 | |
| 
 | |
| /** Get RTC Locale Date Format
 | |
|  *
 | |
|  * @return     The RTC Locale Date Format
 | |
|  */
 | |
| FuriHalRtcLocaleDateFormat furi_hal_rtc_get_locale_dateformat();
 | |
| 
 | |
| /** Set RTC Date Time
 | |
|  *
 | |
|  * @param      datetime  The date time to set
 | |
|  */
 | |
| void furi_hal_rtc_set_datetime(FuriHalRtcDateTime* datetime);
 | |
| 
 | |
| /** Get RTC Date Time
 | |
|  *
 | |
|  * @param      datetime  The datetime
 | |
|  */
 | |
| void furi_hal_rtc_get_datetime(FuriHalRtcDateTime* datetime);
 | |
| 
 | |
| /** Validate Date Time
 | |
|  *
 | |
|  * @param      datetime  The datetime to validate
 | |
|  *
 | |
|  * @return     { description_of_the_return_value }
 | |
|  */
 | |
| bool furi_hal_rtc_validate_datetime(FuriHalRtcDateTime* datetime);
 | |
| 
 | |
| /** Set RTC Fault Data
 | |
|  *
 | |
|  * @param[in]  value  The value
 | |
|  */
 | |
| void furi_hal_rtc_set_fault_data(uint32_t value);
 | |
| 
 | |
| /** Get RTC Fault Data
 | |
|  *
 | |
|  * @return     RTC Fault Data value
 | |
|  */
 | |
| uint32_t furi_hal_rtc_get_fault_data();
 | |
| 
 | |
| /** Set Pin Fails count
 | |
|  *
 | |
|  * @param[in]  value  The Pin Fails count
 | |
|  */
 | |
| void furi_hal_rtc_set_pin_fails(uint32_t value);
 | |
| 
 | |
| /** Get Pin Fails count
 | |
|  *
 | |
|  * @return     Pin Fails Count
 | |
|  */
 | |
| uint32_t furi_hal_rtc_get_pin_fails();
 | |
| 
 | |
| /** Get UNIX Timestamp
 | |
|  *
 | |
|  * @return     Unix Timestamp in seconds from UNIX epoch start
 | |
|  */
 | |
| uint32_t furi_hal_rtc_get_timestamp();
 | |
| 
 | |
| /** Convert DateTime to UNIX timestamp
 | |
|  *
 | |
|  * @param      datetime  The datetime
 | |
|  *
 | |
|  * @return     UNIX Timestamp in seconds from UNIX epoch start
 | |
|  */
 | |
| uint32_t furi_hal_rtc_datetime_to_timestamp(FuriHalRtcDateTime* datetime);
 | |
| 
 | |
| /** Gets the number of days in the year according to the Gregorian calendar.
 | |
|  *
 | |
|  * @param year Input year.
 | |
|  *
 | |
|  * @return number of days in `year`.
 | |
|  */
 | |
| uint16_t furi_hal_rtc_get_days_per_year(uint16_t year);
 | |
| 
 | |
| /** Check if a year a leap year in the Gregorian calendar.
 | |
|  *
 | |
|  * @param year Input year.
 | |
|  *
 | |
|  * @return true if `year` is a leap year.
 | |
|  */
 | |
| bool furi_hal_rtc_is_leap_year(uint16_t year);
 | |
| 
 | |
| /** Get the number of days in the month.
 | |
|  *
 | |
|  * @param leap_year true to calculate based on leap years
 | |
|  * @param month month to check, where 1 = January
 | |
|  * @return the number of days in the month
 | |
|  */
 | |
| uint8_t furi_hal_rtc_get_days_per_month(bool leap_year, uint8_t month);
 | |
| 
 | |
| #ifdef __cplusplus
 | |
| }
 | |
| #endif
 |