diff options
author | Andrew Scheller <github@loowis.durge.org> | 2014-05-03 17:34:19 +0100 |
---|---|---|
committer | Andrew Scheller <github@loowis.durge.org> | 2014-05-03 17:34:19 +0100 |
commit | b569d690f5a99fe0b85787e22cd41c049c65a017 (patch) | |
tree | ba7459356d6eff74133417c6b06380ae04c16609 | |
parent | 9c5fc83e6ab39abaf8e3c803c7f13cda33a50280 (diff) | |
download | micropython-b569d690f5a99fe0b85787e22cd41c049c65a017.tar.gz micropython-b569d690f5a99fe0b85787e22cd41c049c65a017.zip |
RTC doc fix
-rw-r--r-- | stmhal/rtc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/stmhal/rtc.c b/stmhal/rtc.c index ec3c0126b4..9dd67ee27e 100644 --- a/stmhal/rtc.c +++ b/stmhal/rtc.c @@ -260,7 +260,7 @@ MP_DEFINE_CONST_FUN_OBJ_1(pyb_rtc_info_obj, pyb_rtc_info); /// /// `weekday` is 1-7 for Monday through Sunday. /// -/// `subseconds` is 0-59. +/// `subseconds` is a free-running timer and counts down from 255 to 0, hundreds of times a second. mp_obj_t pyb_rtc_datetime(uint n_args, const mp_obj_t *args) { if (n_args == 1) { // get date and time |