kopia lustrzana https://github.com/micropython/micropython
70 wiersze
2.2 KiB
C
70 wiersze
2.2 KiB
C
/*
|
|
* This file is part of the MicroPython project, http://micropython.org/
|
|
*
|
|
* The MIT License (MIT)
|
|
*
|
|
* Copyright (c) 2013, 2014 Damien P. George
|
|
* Copyright (c) 2021 Renesas Electronics Corporation
|
|
*
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
* of this software and associated documentation files (the "Software"), to deal
|
|
* in the Software without restriction, including without limitation the rights
|
|
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
* copies of the Software, and to permit persons to whom the Software is
|
|
* furnished to do so, subject to the following conditions:
|
|
*
|
|
* The above copyright notice and this permission notice shall be included in
|
|
* all copies or substantial portions of the Software.
|
|
*
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
* THE SOFTWARE.
|
|
*/
|
|
#ifndef MICROPY_INCLUDED_RA_RTC_H
|
|
#define MICROPY_INCLUDED_RA_RTC_H
|
|
|
|
#include "py/obj.h"
|
|
extern const mp_obj_type_t machine_rtc_type;
|
|
|
|
typedef struct
|
|
{
|
|
uint8_t Hours;
|
|
uint8_t Minutes;
|
|
uint8_t Seconds;
|
|
uint8_t TimeFormat;
|
|
uint32_t SubSeconds;
|
|
uint32_t SecondFraction;
|
|
uint32_t DayLightSaving;
|
|
uint32_t StoreOperation;
|
|
} RTC_TimeTypeDef;
|
|
|
|
/**
|
|
* @brief RTC Date structure definition
|
|
*/
|
|
typedef struct
|
|
{
|
|
uint8_t WeekDay;
|
|
uint8_t Month;
|
|
uint8_t Date;
|
|
uint8_t Year;
|
|
} RTC_DateTypeDef;
|
|
|
|
#define RTC_FORMAT_BIN 0x000000000U
|
|
#define RTC_FORMAT_BCD 0x000000001U
|
|
|
|
#define DUMMY_DATE {0, 11, 4, 18}
|
|
#define DUMMY_TIME {12, 0, 0, 0, 0, 0, 0, 0}
|
|
|
|
void rtc_get_time(RTC_TimeTypeDef *time);
|
|
void rtc_get_date(RTC_DateTypeDef *date);
|
|
void rtc_init_start(bool force_init);
|
|
void rtc_init_finalise(void);
|
|
|
|
mp_obj_t machine_rtc_wakeup(size_t n_args, const mp_obj_t *args);
|
|
|
|
#endif // MICROPY_INCLUDED_RA_RTC_H
|