no-OS
|
Implementation of RTC driver. More...
#include <stdlib.h>
#include <errno.h>
#include "no_os_irq.h"
#include "no_os_rtc.h"
#include "no_os_util.h"
#include "no_os_alloc.h"
#include "rtc.h"
#include "maxim_rtc.h"
#include "rtc_reva_regs.h"
#include "mxc_errors.h"
Macros | |
#define | MS_TO_RSSA(x) (0 - ((x * 256) / 1000)) |
Functions | |
int32_t | no_os_rtc_init (struct no_os_rtc_desc **device, struct no_os_rtc_init_param *init_param) |
Initialize the RTC peripheral. More... | |
int32_t | no_os_rtc_remove (struct no_os_rtc_desc *dev) |
Free the resources allocated by no_os_rtc_init(). More... | |
int32_t | no_os_rtc_start (struct no_os_rtc_desc *dev) |
Start the real time clock. More... | |
int32_t | no_os_rtc_stop (struct no_os_rtc_desc *dev) |
Stop the real time clock. More... | |
int32_t | no_os_rtc_get_cnt (struct no_os_rtc_desc *dev, uint32_t *tmr_cnt) |
Get the current count for the real time clock. More... | |
int32_t | no_os_rtc_set_cnt (struct no_os_rtc_desc *dev, uint32_t tmr_cnt) |
Set the current count for the real time clock. More... | |
int32_t | no_os_rtc_set_irq_time (struct no_os_rtc_desc *dev, uint32_t irq_time) |
Set the current count for the real time clock. More... | |
Implementation of RTC driver.
Copyright 2022(c) Analog Devices, Inc.
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
THIS SOFTWARE IS PROVIDED BY ANALOG DEVICES, INC. “AS IS” AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL ANALOG DEVICES, INC. BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#define MS_TO_RSSA | ( | x | ) | (0 - ((x * 256) / 1000)) |
int32_t no_os_rtc_get_cnt | ( | struct no_os_rtc_desc * | dev, |
uint32_t * | tmr_cnt | ||
) |
Get the current count for the real time clock.
dev | - The RTC descriptor. |
tmr_cnt | - Pointer where the read counter will be stored. |
int32_t no_os_rtc_init | ( | struct no_os_rtc_desc ** | device, |
struct no_os_rtc_init_param * | init_param | ||
) |
Initialize the RTC peripheral.
device | - The RTC descriptor. |
init_param | - The structure that contains the RTC initialization. |
int32_t no_os_rtc_remove | ( | struct no_os_rtc_desc * | dev | ) |
Free the resources allocated by no_os_rtc_init().
dev | - The RTC descriptor. |
int32_t no_os_rtc_set_cnt | ( | struct no_os_rtc_desc * | dev, |
uint32_t | tmr_cnt | ||
) |
Set the current count for the real time clock.
dev | - The RTC descriptor. |
tmr_cnt | - New value of the timer counter. |
int32_t no_os_rtc_set_irq_time | ( | struct no_os_rtc_desc * | dev, |
uint32_t | irq_time | ||
) |
Set the current count for the real time clock.
dev | - The RTC descriptor. |
irq_time | - The number of seconds at which the interrupt must occur. |
int32_t no_os_rtc_start | ( | struct no_os_rtc_desc * | dev | ) |
Start the real time clock.
dev | - The RTC descriptor. |
int32_t no_os_rtc_stop | ( | struct no_os_rtc_desc * | dev | ) |
Stop the real time clock.
dev | - The RTC descriptor. |