diff options
author | danicampora <danicampora@gmail.com> | 2015-03-16 00:40:02 +0100 |
---|---|---|
committer | danicampora <danicampora@gmail.com> | 2015-03-16 00:42:15 +0100 |
commit | ed20ac56f77f5d2200f12fe38e73f89b56c1c44f (patch) | |
tree | 889277b4ac305688f66323dee2d95c4795d97aba /cc3200/mods/pybrtc.c | |
parent | 5dd8ae6b9cb52c59531b0fbe4114935d20b4c232 (diff) | |
download | micropython-ed20ac56f77f5d2200f12fe38e73f89b56c1c44f.tar.gz micropython-ed20ac56f77f5d2200f12fe38e73f89b56c1c44f.zip |
cc3200: Fix bug in RTC msec register access functions.
Diffstat (limited to 'cc3200/mods/pybrtc.c')
-rw-r--r-- | cc3200/mods/pybrtc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cc3200/mods/pybrtc.c b/cc3200/mods/pybrtc.c index 548d4bf4ee..686bfcc1a9 100644 --- a/cc3200/mods/pybrtc.c +++ b/cc3200/mods/pybrtc.c @@ -113,7 +113,7 @@ STATIC void pyb_rtc_callback_disable (mp_obj_t self_in) { /// /// (year, month, day, weekday, hours, minutes, seconds, milliseconds) /// -/// `weekday` is 1-7 for Monday through Sunday. +/// `weekday` is 0-6 for Monday through Sunday. /// mp_obj_t pyb_rtc_datetime(mp_uint_t n_args, const mp_obj_t *args) { mod_struct_time tm; |