summaryrefslogtreecommitdiff
path: root/shared-bindings/rtc/RTC.c
diff options
context:
space:
mode:
Diffstat (limited to 'shared-bindings/rtc/RTC.c')
-rw-r--r--shared-bindings/rtc/RTC.c13
1 files changed, 3 insertions, 10 deletions
diff --git a/shared-bindings/rtc/RTC.c b/shared-bindings/rtc/RTC.c
index 663f5be6c..58fe308f5 100644
--- a/shared-bindings/rtc/RTC.c
+++ b/shared-bindings/rtc/RTC.c
@@ -38,15 +38,8 @@
const rtc_rtc_obj_t rtc_rtc_obj = {{&rtc_rtc_type}};
-
-
-
-
//| class RTC:
-//| """.. currentmodule:: rtc
-//|
-//| :class:`RTC` --- Real Time Clock
-//| --------------------------------"""
+//| """Real Time Clock"""
//|
//| def __init__(self, ):
//| """This class represents the onboard Real Time Clock. It is a singleton and will always return the same instance."""
@@ -60,7 +53,7 @@ STATIC mp_obj_t rtc_rtc_make_new(const mp_obj_type_t *type, size_t n_args, const
return (mp_obj_t)&rtc_rtc_obj;
}
-//| datetime: Any = ...
+//| datetime: time.struct_time = ...
//| """The current date and time of the RTC as a `time.struct_time`.
//|
//| This must be set to the current date and time whenever the board loses power::
@@ -101,7 +94,7 @@ const mp_obj_property_t rtc_rtc_datetime_obj = {
(mp_obj_t)&mp_const_none_obj},
};
-//| calibration: Any = ...
+//| calibration: int = ...
//| """The RTC calibration value as an `int`.
//|
//| A positive value speeds up the clock and a negative value slows it down.