RTC

    These APIs allow you to perform operations such as reading or writing system time, reading or writing alarm time, setting alarm interrupts, registering alarm callbacks, setting the external frequency, resetting the RTC driver, and customizing RTC configurations. The RTC driver provides precise real time for the operating system (OS). If the OS is powered off, the RTC driver continues to keep track of the system time using an external battery.

    Since:

    1.0

    Summary

    Files

    Data Structures

    Data Structure Name

    Description

    Defines the RTC information.

    Typedefs

    Typedef Name

    Description

    RtcAlarmCallback) (enum )

    typedef int32_t(* 

    Defines a callback that will be invoked when an alarm is generated at the specified time.

    Enumerations

    Enumeration Name

    Description

    RtcAlarmIndex { = 0, RTC_ALARM_INDEX_B = 1 }

    Enumerates alarm indexes.

    Functions

    Function Name

    Description

    (void)

    struct DevHandle  

    Opens the RTC device to obtain its handle.

    (struct DevHandle handle)

    void 

    Releases a specified handle of the RTC device.

    (struct DevHandle handle, struct time)

    int32_t 

    Reads time from the RTC driver.

    (struct DevHandle handle, const struct time)

    int32_t 

    Writes format-compliant time to the RTC driver.

    (struct DevHandle handle, enum alarmIndex, struct RtcTime )

    int32_t 

    Reads the RTC alarm time that was set last time.

    RtcWriteAlarm (struct handle, enum RtcAlarmIndex alarmIndex, const struct time)

    int32_t 

    Writes the RTC alarm time based on the alarm index.

    (struct DevHandle handle, enum alarmIndex, RtcAlarmCallback cb)

    int32_t 

    Registers that will be invoked when an alarm is generated at the specified time.

    RtcAlarmInterruptEnable (struct handle, enum RtcAlarmIndex alarmIndex, uint8_t enable)

    int32_t 

    Enables or disables alarm interrupts.

    (struct DevHandle handle, uint32_t freq)

    int32_t 

    Reads the RTC external frequency.

    (struct DevHandle handle, uint32_t freq)

    int32_t 

    Sets the frequency of the external crystal oscillator connected to the RTC driver.

    (struct DevHandle handle)

    int32_t 

    Resets the RTC driver.

    int32_t 

    Reads the configuration of a custom RTC register based on the register index.

    (struct DevHandle *handle, uint8_t usrDefIndex, uint8_t value)

    int32_t 

    Writes the configuration of a custom RTC register based on the register index.

    Details

    RtcAlarmCallback

    Description:

    Defines a callback that will be invoked when an alarm is generated at the specified time.

    Enumeration Type Documentation

    RtcAlarmIndex

    Description:

    Enumerates alarm indexes.

    The alarm indexes will be used when you perform operations related to alarms.

    Enumerator

    Description

    RTC_ALARM_INDEX_A 

    Index of alarm A

    RTC_ALARM_INDEX_B 

    Index of alarm B

    Function Documentation

    RtcAlarmInterruptEnable()

    1. int32_t RtcAlarmInterruptEnable (struct [DevHandle]($api-api-SmartVision-Devices-DevHandle.md) * handle, enum [RtcAlarmIndex]($api-api-SmartVision-Devices-RTC.md#gad7b3a575c848e2669db5e5b6f7e74330) alarmIndex, uint8_t enable )

    Description:

    Enables or disables alarm interrupts.

    Before performing alarm operations, you need to call this function to enable alarm interrupts, so that the RtcRegisterAlarmCallback will be called when the alarm is not generated upon a timeout.

    Parameters:

    Returns:

    Returns 0 if the operation is successful; returns a negative value if the operation fails. For details, see HDF_STATUS.

    RtcClose()

    1. void RtcClose (struct [DevHandle]($api-api-SmartVision-Devices-DevHandle.md) * handle)

    Description:

    Releases a specified handle of the RTC device.

    Parameters:

    Name

    Description

    handle Indicates the pointer to the RTC device handle to release, which is created via RtcGetHandle.

    RtcGetFreq()

    1. int32_t RtcGetFreq (struct [DevHandle]($api-api-SmartVision-Devices-DevHandle.md) * handle, uint32_t * freq )

    Description:

    Reads the RTC external frequency.

    This function reads the frequency of the external crystal oscillator connected to the RTC driver.

    Parameters:

    Name

    Description

    handle Indicates the pointer to the RTC device handle, which is obtained via RtcGetHandle.
    freq Indicates the pointer to the frequency of the external crystal oscillator, in Hz.

    Returns:

    Returns 0 if the operation is successful; returns a negative value if the operation fails. For details, see .

    Description:

    Opens the RTC device to obtain its handle.

    The OS supports only one RTC device.

    Returns:

    Returns DevHandle if the operation is successful; returns NULL if the operation fails.

    RtcReadAlarm()

    Description:

    Reads the RTC alarm time that was set last time.

    Parameters:

    Name

    Description

    handle Indicates the pointer to the RTC device handle, which is obtained via RtcGetHandle.
    alarmIndex Indicates the RTC alarm index. For details, see .
    time Indicates the pointer to the RTC alarm time information. For details, see RtcTime.

    Returns:

    Returns 0 if the operation is successful; returns a negative value if the operation fails. For details, see .

    RtcReadReg()

    1. int32_t RtcReadReg (struct [DevHandle]($api-api-SmartVision-Devices-DevHandle.md) * handle, uint8_t usrDefIndex, uint8_t * value )

    Description:

    Reads the configuration of a custom RTC register based on the register index.

    One index corresponds to one byte of the configuration value.

    Parameters:

    Name

    Description

    handle Indicates the pointer to the RTC device handle, which is obtained via RtcGetHandle.
    usrDefIndex Indicates the index of the custom register.
    value Indicates the pointer to the configuration value of the specified register index.

    Returns:

    RtcReadTime()

    1. int32_t RtcReadTime (struct [DevHandle]($api-api-SmartVision-Devices-DevHandle.md) * handle, struct [RtcTime]($api-api-SmartVision-Devices-RtcTime.md) * time )

    Description:

    Reads time from the RTC driver.

    The time information includes the year, month, day, day of the week, hour, minute, second, and millisecond.

    Parameters:

    Name

    Description

    handle Indicates the pointer to the RTC device handle, which is obtained via RtcGetHandle.
    time Indicates the pointer to the time information read from the RTC driver. For details, see RtcTime.

    Returns:

    Returns 0 if the operation is successful; returns a negative value if the operation fails. For details, see .

    RtcRegisterAlarmCallback()

    1. int32_t RtcRegisterAlarmCallback (struct [DevHandle]($api-api-SmartVision-Devices-DevHandle.md) * handle, enum [RtcAlarmIndex]($api-api-SmartVision-Devices-RTC.md#gad7b3a575c848e2669db5e5b6f7e74330) alarmIndex, [RtcAlarmCallback]($api-api-SmartVision-Devices-RTC.md#gaf9932b7e647bce0503f1314bbe5eef8d) cb )

    Description:

    Registers that will be invoked when an alarm is generated at the specified time.

    Parameters:

    Returns:

    Returns 0 if the operation is successful; returns a negative value if the operation fails. For details, see .

    RtcReset()

    Description:

    Resets the RTC driver.

    After the reset, the configuration registers are restored to the default values.

    Parameters:

    Name

    Description

    handle Indicates the pointer to the RTC device handle, which is obtained via RtcGetHandle.

    Returns:

    Returns 0 if the operation is successful; returns a negative value if the operation fails. For details, see HDF_STATUS.

    RtcSetFreq()

    Description:

    Sets the frequency of the external crystal oscillator connected to the RTC driver.

    Note that the frequency must be configured in accordance with the requirements specified in the product manual of the in-use component.

    Parameters:

    Name

    Description

    handle Indicates the pointer to the RTC device handle, which is obtained via RtcGetHandle.
    freq Indicates the frequency to set for the external crystal oscillator, in Hz.

    Returns:

    Returns 0 if the operation is successful; returns a negative value if the operation fails. For details, see .

    RtcWriteAlarm()

    1. int32_t RtcWriteAlarm (struct [DevHandle]($api-api-SmartVision-Devices-DevHandle.md) * handle, enum [RtcAlarmIndex]($api-api-SmartVision-Devices-RTC.md#gad7b3a575c848e2669db5e5b6f7e74330) alarmIndex, const struct [RtcTime]($api-api-SmartVision-Devices-RtcTime.md) * time )

    Description:

    Writes the RTC alarm time based on the alarm index.

    Note that the RTC start time is 1970/01/01 Thursday 00:00:00 (UTC). Set the maximum value of year based on the requirements specified in the product manual of the in-use component.

    Parameters:

    Name

    Description

    handle Indicates the pointer to the RTC device handle, which is obtained via RtcGetHandle.
    alarmIndex Indicates the RTC alarm index. For details, see RtcAlarmIndex.
    tm Indicates the pointer to the RTC alarm time information. For details, see .

    Returns:

    Returns 0 if the operation is successful; returns a negative value if the operation fails. For details, see HDF_STATUS.

    1. int32_t RtcWriteReg (struct [DevHandle]($api-api-SmartVision-Devices-DevHandle.md) * handle, uint8_t usrDefIndex, uint8_t value )

    Description:

    Writes the configuration of a custom RTC register based on the register index.

    One index corresponds to one byte of the configuration value.

    Parameters:

    Name

    Description

    handle Indicates the pointer to the RTC device handle, which is obtained via RtcGetHandle.
    usrDefIndex Indicates the index of the custom register.
    value Indicates the configuration value to write at the index of the register.

    Returns:

    Returns 0 if the operation is successful; returns a negative value if the operation fails. For details, see HDF_STATUS.

    RtcWriteTime()

    1. int32_t RtcWriteTime (struct [DevHandle]($api-api-SmartVision-Devices-DevHandle.md) * handle, const struct [RtcTime]($api-api-SmartVision-Devices-RtcTime.md) * time )

    Description:

    Writes format-compliant time to the RTC driver.

    Note that the RTC start time is 1970/01/01 Thursday 00:00:00 (UTC). Set the maximum value of year based on the requirements specified in the product manual of the in-use component.

    Parameters:

    Name

    Description

    handle Indicates the pointer to the RTC device handle, which is obtained via RtcGetHandle.
    time Indicates the pointer to the time information to write. For details, see .

    Returns 0 if the operation is successful; returns a negative value if the operation fails. For details, see HDF_STATUS.