18#ifndef __VSF_TEMPLATE_RTC_H__
19#define __VSF_TEMPLATE_RTC_H__
33#ifndef VSF_RTC_CFG_MULTI_CLASS
34# define VSF_RTC_CFG_MULTI_CLASS ENABLED
37#if defined(VSF_HW_RTC_COUNT) && !defined(VSF_HW_RTC_MASK)
38# define VSF_HW_RTC_MASK VSF_HAL_COUNT_TO_MASK(VSF_HW_RTC_COUNT)
41#if defined(VSF_HW_RTC_MASK) && !defined(VSF_HW_RTC_COUNT)
42# define VSF_HW_RTC_COUNT VSF_HAL_MASK_TO_COUNT(VSF_HW_RTC_MASK)
46#ifndef VSF_RTC_CFG_PREFIX
47# if VSF_RTC_CFG_MULTI_CLASS == ENABLED
48# define VSF_RTC_CFG_PREFIX vsf
49# elif defined(VSF_HW_RTC_COUNT) && (VSF_HW_RTC_COUNT != 0)
50# define VSF_RTC_CFG_PREFIX vsf_hw
52# define VSF_RTC_CFG_PREFIX vsf
56#ifndef VSF_RTC_CFG_FUNCTION_RENAME
57# define VSF_RTC_CFG_FUNCTION_RENAME ENABLED
60#ifndef VSF_RTC_CFG_REIMPLEMENT_TYPE_IRQ_MASK
61# define VSF_RTC_CFG_REIMPLEMENT_TYPE_IRQ_MASK DISABLED
64#ifndef VSF_RTC_CFG_TIME_TYPE
65# define VSF_RTC_CFG_TIME_TYPE uint64_t
71#if VSF_RTC_CFG_REIMPLEMENT_TYPE_CFG == DISABLED
72# define VSF_RTC_CFG_REIMPLEMENT_TYPE_CFG DISABLED
78#if VSF_RTC_CFG_REIMPLEMENT_TYPE_CAPABILITY == DISABLED
79# define VSF_RTC_CFG_REIMPLEMENT_TYPE_CAPABILITY DISABLED
82#ifndef VSF_RTC_CFG_INHERT_HAL_CAPABILITY
83# define VSF_RTC_CFG_INHERT_HAL_CAPABILITY ENABLED
88#define VSF_RTC_APIS(__prefix_name) \
89 __VSF_HAL_TEMPLATE_API(__prefix_name, vsf_err_t, rtc, init, VSF_MCONNECT(__prefix_name, _rtc_t) *rtc_ptr, vsf_rtc_cfg_t *cfg_ptr) \
90 __VSF_HAL_TEMPLATE_API(__prefix_name, void, rtc, fini, VSF_MCONNECT(__prefix_name, _rtc_t) *rtc_ptr) \
91 __VSF_HAL_TEMPLATE_API(__prefix_name, fsm_rt_t, rtc, enable, VSF_MCONNECT(__prefix_name, _rtc_t) *rtc_ptr) \
92 __VSF_HAL_TEMPLATE_API(__prefix_name, fsm_rt_t, rtc, disable, VSF_MCONNECT(__prefix_name, _rtc_t) *rtc_ptr) \
93 __VSF_HAL_TEMPLATE_API(__prefix_name, vsf_rtc_capability_t, rtc, capability, VSF_MCONNECT(__prefix_name, _rtc_t) *rtc_ptr) \
94 __VSF_HAL_TEMPLATE_API(__prefix_name, vsf_err_t, rtc, get, VSF_MCONNECT(__prefix_name, _rtc_t) *rtc_ptr, vsf_rtc_tm_t *rtc_tm) \
95 __VSF_HAL_TEMPLATE_API(__prefix_name, vsf_err_t, rtc, set, VSF_MCONNECT(__prefix_name, _rtc_t) *rtc_ptr, const vsf_rtc_tm_t *rtc_tm) \
96 __VSF_HAL_TEMPLATE_API(__prefix_name, vsf_err_t, rtc, get_time, VSF_MCONNECT(__prefix_name, _rtc_t) *rtc_ptr, vsf_rtc_time_t *second_ptr, vsf_rtc_time_t *millisecond_ptr) \
97 __VSF_HAL_TEMPLATE_API(__prefix_name, vsf_err_t, rtc, set_time, VSF_MCONNECT(__prefix_name, _rtc_t) *rtc_ptr, vsf_rtc_time_t second, vsf_rtc_time_t millisecond)
101#if VSF_RTC_CFG_REIMPLEMENT_TYPE_IRQ_MASK == DISABLED
126#if VSF_RTC_CFG_REIMPLEMENT_TYPE_CFG == DISABLED
142#if VSF_RTC_CFG_REIMPLEMENT_TYPE_CAPABILITY == DISABLED
144#if VSF_RTC_CFG_INHERT_HAL_CAPABILITY == ENABLED
153#undef __VSF_HAL_TEMPLATE_API
154#define __VSF_HAL_TEMPLATE_API VSF_HAL_TEMPLATE_API_FP
159#if VSF_RTC_CFG_MULTI_CLASS == ENABLED
313#if VSF_RTC_CFG_FUNCTION_RENAME == ENABLED
314# define __vsf_rtc_t VSF_MCONNECT(VSF_RTC_CFG_PREFIX, _rtc_t)
315# define vsf_rtc_init(__RTC, ...) VSF_MCONNECT(VSF_RTC_CFG_PREFIX, _rtc_init) ((__vsf_rtc_t *)(__RTC), ##__VA_ARGS__)
316# define vsf_rtc_enable(__RTC) VSF_MCONNECT(VSF_RTC_CFG_PREFIX, _rtc_enable) ((__vsf_rtc_t *)(__RTC))
317# define vsf_rtc_disable(__RTC) VSF_MCONNECT(VSF_RTC_CFG_PREFIX, _rtc_disable) ((__vsf_rtc_t *)(__RTC))
318# define vsf_rtc_capability(__RTC) VSF_MCONNECT(VSF_RTC_CFG_PREFIX, _rtc_capability) ((__vsf_rtc_t *)(__RTC))
319# define vsf_rtc_get(__RTC, ...) VSF_MCONNECT(VSF_RTC_CFG_PREFIX, _rtc_get) ((__vsf_rtc_t *)(__RTC), ##__VA_ARGS__)
320# define vsf_rtc_set(__RTC, ...) VSF_MCONNECT(VSF_RTC_CFG_PREFIX, _rtc_set) ((__vsf_rtc_t *)(__RTC), ##__VA_ARGS__)
321# define vsf_rtc_get_time(__RTC, ...) VSF_MCONNECT(VSF_RTC_CFG_PREFIX, _rtc_get_time) ((__vsf_rtc_t *)(__RTC), ##__VA_ARGS__)
322# define vsf_rtc_set_time(__RTC, ...) VSF_MCONNECT(VSF_RTC_CFG_PREFIX, _rtc_set_time) ((__vsf_rtc_t *)(__RTC), ##__VA_ARGS__)
vsf_err_t
Definition __type.h:42
vsf_arch_prio_t
Definition cortex_a_generic.h:88
unsigned short uint16_t
Definition lvgl.h:41
unsigned char uint8_t
Definition lvgl.h:40
const i_spi_t vsf_spi_irq_mask_t irq_mask
Definition spi_interface.h:38
Definition vsf_template_hal_driver.h:203
Definition vsf_template_rtc.h:143
inherit(vsf_peripheral_capability_t) vsf_rtc_irq_mask_t irq_mask
rtc configuration
Definition vsf_template_rtc.h:137
vsf_rtc_isr_t isr
Definition vsf_template_rtc.h:138
Definition vsf_template_rtc.h:130
vsf_arch_prio_t prio
Definition vsf_template_rtc.h:133
vsf_rtc_isr_handler_t * handler_fn
Definition vsf_template_rtc.h:131
void * target_ptr
Definition vsf_template_rtc.h:132
Definition vsf_template_rtc.h:152
Definition vsf_template_rtc.h:160
const vsf_rtc_op_t * op
Definition vsf_template_rtc.h:161
Definition vsf_template_rtc.h:114
uint16_t tm_ms
Definition vsf_template_rtc.h:122
uint8_t tm_sec
Definition vsf_template_rtc.h:115
uint16_t tm_year
Definition vsf_template_rtc.h:121
uint8_t tm_mon
Definition vsf_template_rtc.h:120
uint8_t tm_wday
Definition vsf_template_rtc.h:119
uint8_t tm_mday
Definition vsf_template_rtc.h:118
uint8_t tm_hour
Definition vsf_template_rtc.h:117
uint8_t tm_min
Definition vsf_template_rtc.h:116
fsm_rt_t
Definition vsf_fsm.h:315
@ VSF_RTC_IRQ_COUNT
Definition vsf_template_rtc.h:108
@ VSF_RTC_IRQ_ALL_BITS_MASK
Definition vsf_template_rtc.h:109
#define VSF_RTC_CFG_TIME_TYPE
Definition vsf_template_rtc.h:65
#define vsf_rtc_get_time(__RTC,...)
Definition vsf_template_rtc.h:321
#define VSF_RTC_APIS(__prefix_name)
Definition vsf_template_rtc.h:88
#define vsf_rtc_set_time(__RTC,...)
Definition vsf_template_rtc.h:322
#define vsf_rtc_get(__RTC,...)
Definition vsf_template_rtc.h:319
#define vsf_rtc_disable(__RTC)
Definition vsf_template_rtc.h:317
void vsf_rtc_fini(vsf_rtc_t *rtc_ptr)
finalize a rtc instance.
Definition rtc_common.c:48
VSF_RTC_CFG_TIME_TYPE vsf_rtc_time_t
Definition vsf_template_rtc.h:112
vsf_rtc_irq_mask_t
Definition vsf_template_rtc.h:102
@ VSF_RTC_IRQ_MASK_ALARM
Definition vsf_template_rtc.h:103
void vsf_rtc_isr_handler_t(void *target_ptr, vsf_rtc_t *rtc_ptr, vsf_rtc_irq_mask_t irq_mask)
Definition vsf_template_rtc.h:128
#define vsf_rtc_set(__RTC,...)
Definition vsf_template_rtc.h:320
#define vsf_rtc_init(__RTC,...)
Definition vsf_template_rtc.h:315
#define vsf_rtc_capability(__RTC)
Definition vsf_template_rtc.h:318
#define vsf_rtc_enable(__RTC)
Definition vsf_template_rtc.h:316