2018-04-07 09:00:13 -04:00
|
|
|
/*
|
|
|
|
* This file is part of the Micro Python project, http://micropython.org/
|
|
|
|
*
|
|
|
|
* The MIT License (MIT)
|
|
|
|
*
|
|
|
|
* Copyright (c) 2018 Noralf Trønnes
|
2020-06-03 18:40:05 -04:00
|
|
|
* SPDX-FileCopyrightText: Copyright (c) 2013, 2014 Damien P. George
|
2018-04-07 09:00:13 -04:00
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "py/obj.h"
|
|
|
|
#include "py/runtime.h"
|
|
|
|
#include "shared-bindings/rtc/__init__.h"
|
|
|
|
#include "shared-bindings/rtc/RTC.h"
|
|
|
|
#include "shared-bindings/time/__init__.h"
|
|
|
|
|
2020-05-12 20:15:28 -04:00
|
|
|
//| """Real Time Clock
|
2018-04-07 09:00:13 -04:00
|
|
|
//|
|
2019-10-23 18:46:14 -04:00
|
|
|
//| The `rtc` module provides support for a Real Time Clock. You can access and manage the
|
|
|
|
//| RTC using :class:`rtc.RTC`. It also backs the :func:`time.time` and :func:`time.localtime`
|
2020-05-12 20:15:28 -04:00
|
|
|
//| functions using the onboard RTC if present."""
|
2023-02-01 03:08:41 -05:00
|
|
|
//|
|
2018-04-07 09:00:13 -04:00
|
|
|
|
|
|
|
void rtc_reset(void) {
|
|
|
|
MP_STATE_VM(rtc_time_source) = (mp_obj_t)&rtc_rtc_obj;
|
|
|
|
}
|
|
|
|
|
|
|
|
mp_obj_t rtc_get_time_source_time(void) {
|
|
|
|
mp_obj_t datetime = mp_load_attr(MP_STATE_VM(rtc_time_source), MP_QSTR_datetime);
|
|
|
|
timeutils_struct_time_t tm;
|
|
|
|
struct_time_to_tm(datetime, &tm);
|
|
|
|
// This sets tm_wday and tm_yday
|
|
|
|
return struct_time_from_tm(&tm);
|
|
|
|
}
|
|
|
|
|
2020-07-03 15:27:11 -04:00
|
|
|
//| def set_time_source(rtc: RTC) -> None:
|
2020-05-11 13:00:19 -04:00
|
|
|
//| """Sets the RTC time source used by :func:`time.localtime`.
|
|
|
|
//| The default is :class:`rtc.RTC`, but it's useful to use this to override the
|
|
|
|
//| time source for testing purposes. For example::
|
2018-04-07 09:00:13 -04:00
|
|
|
//|
|
2020-05-11 13:00:19 -04:00
|
|
|
//| import rtc
|
|
|
|
//| import time
|
2018-04-07 09:00:13 -04:00
|
|
|
//|
|
2020-05-11 13:00:19 -04:00
|
|
|
//| class RTC(object):
|
|
|
|
//| @property
|
|
|
|
//| def datetime(self):
|
|
|
|
//| return time.struct_time((2018, 3, 17, 21, 1, 47, 0, 0, 0))
|
2018-04-07 09:00:13 -04:00
|
|
|
//|
|
2020-05-11 13:00:19 -04:00
|
|
|
//| r = RTC()
|
|
|
|
//| rtc.set_time_source(r)"""
|
|
|
|
//| ...
|
2022-09-29 20:22:32 -04:00
|
|
|
//|
|
2018-04-07 09:00:13 -04:00
|
|
|
STATIC mp_obj_t rtc_set_time_source(mp_obj_t time_source) {
|
|
|
|
MP_STATE_VM(rtc_time_source) = time_source;
|
|
|
|
|
|
|
|
return mp_const_none;
|
|
|
|
}
|
|
|
|
MP_DEFINE_CONST_FUN_OBJ_1(rtc_set_time_source_obj, rtc_set_time_source);
|
|
|
|
|
|
|
|
STATIC const mp_rom_map_elem_t rtc_module_globals_table[] = {
|
|
|
|
{ MP_ROM_QSTR(MP_QSTR___name__), MP_ROM_QSTR(MP_QSTR_rtc) },
|
|
|
|
{ MP_ROM_QSTR(MP_QSTR_set_time_source), MP_ROM_PTR(&rtc_set_time_source_obj) },
|
|
|
|
{ MP_ROM_QSTR(MP_QSTR_RTC), MP_ROM_PTR(&rtc_rtc_type) },
|
|
|
|
};
|
|
|
|
|
|
|
|
STATIC MP_DEFINE_CONST_DICT(rtc_module_globals, rtc_module_globals_table);
|
|
|
|
|
|
|
|
const mp_obj_module_t rtc_module = {
|
|
|
|
.base = { &mp_type_module },
|
2021-03-15 09:57:36 -04:00
|
|
|
.globals = (mp_obj_dict_t *)&rtc_module_globals,
|
2018-04-07 09:00:13 -04:00
|
|
|
};
|
Convert more modules to use MP_REGISTER_MODULE
Convert neopixel_write, onewireio, ps2io, pulseio, pwmio, rainbowio, random, rgbmatrix, rotaryio, rtc, sdcardio, sharpdisplay, _stage, storage, struct, supervisor, synthio, touchio, traceback, usb_cdc, usb_hid, usb_midi, and vectorio modules to use MP_REGISTER_MODULE.
Related to #5183.
2021-08-30 22:29:51 -04:00
|
|
|
|
2023-09-28 16:22:10 -04:00
|
|
|
MP_REGISTER_ROOT_POINTER(mp_obj_t rtc_time_source);
|
|
|
|
|
2023-08-07 20:45:57 -04:00
|
|
|
MP_REGISTER_MODULE(MP_QSTR_rtc, rtc_module);
|