diff options
author | Daniel Campora <daniel@wipy.io> | 2015-05-11 19:56:55 +0200 |
---|---|---|
committer | Daniel Campora <daniel@wipy.io> | 2015-05-17 12:26:40 +0200 |
commit | 9466e154b4806ace535d4493d1dd6e63379c2f68 (patch) | |
tree | 73434186b14ef84984404ca82107213b14c7c5c7 /cc3200/mods/pybrtc.c | |
parent | 2b62707051a7345f55a7471602378542d985b1a1 (diff) | |
download | micropython-9466e154b4806ace535d4493d1dd6e63379c2f68.tar.gz micropython-9466e154b4806ace535d4493d1dd6e63379c2f68.zip |
cc3200: Fix power mode param check in the UART callback constructor.
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 d57e11167c..a9cc995d57 100644 --- a/cc3200/mods/pybrtc.c +++ b/cc3200/mods/pybrtc.c @@ -210,7 +210,7 @@ STATIC mp_obj_t pyb_rtc_callback (mp_uint_t n_args, const mp_obj_t *pos_args, mp // set the match value MAP_PRCMRTCMatchSet(seconds, mseconds); - // save the match data for later + // save the power mode data for later pybrtc_data.prwmode = args[4].u_int; // create the callback |