diff options
author | Daniel Campora <daniel@wipy.io> | 2015-09-27 13:45:48 +0200 |
---|---|---|
committer | Daniel Campora <daniel@wipy.io> | 2015-09-27 16:50:27 +0200 |
commit | c92e6a45ebba4d41c2d0d891e07f94a81d2f601f (patch) | |
tree | e861f7bfb70147d7a648cefc4c47c4b8e682f52d /cc3200/mods/pybrtc.c | |
parent | 0a7e4fa5cee7dcb6ce060bef37d4eae5e6f06503 (diff) | |
download | micropython-c92e6a45ebba4d41c2d0d891e07f94a81d2f601f.tar.gz micropython-c92e6a45ebba4d41c2d0d891e07f94a81d2f601f.zip |
cc3200: Rename pyb module to machine.
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 6eb9b76515..ce5b128765 100644 --- a/cc3200/mods/pybrtc.c +++ b/cc3200/mods/pybrtc.c @@ -306,7 +306,7 @@ STATIC mp_obj_t pyb_rtc_make_new(mp_obj_t type_in, mp_uint_t n_args, mp_uint_t n pyb_rtc_datetime((mp_obj_t)&pyb_rtc_obj, args[1].u_obj); // pass it to the sleep module - pybsleep_set_rtc_obj (self); + pyb_sleep_set_rtc_obj (self); // return constant object return (mp_obj_t)&pyb_rtc_obj; |