diff options
| author | Daniel Campora <daniel@wipy.io> | 2015-09-16 14:09:51 +0200 |
|---|---|---|
| committer | Daniel Campora <daniel@wipy.io> | 2015-09-21 22:30:32 +0200 |
| commit | dffa9f6da65cd03e834b2ed3914f40428f72e49f (patch) | |
| tree | 1f2e51f17c511f884db77e47d481c0f9c1b6bed2 /cc3200/mods/modwlan.c | |
| parent | 660f8613fd8e38863998a9758d97eada0eebc47d (diff) | |
cc3200: New SD and RTC API plus os and time modules' extensions.
Diffstat (limited to 'cc3200/mods/modwlan.c')
| -rw-r--r-- | cc3200/mods/modwlan.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cc3200/mods/modwlan.c b/cc3200/mods/modwlan.c index 010cf88d4..1c3e63710 100644 --- a/cc3200/mods/modwlan.c +++ b/cc3200/mods/modwlan.c @@ -533,7 +533,7 @@ void wlan_sl_enable (int8_t mode, const char *ssid, uint8_t ssid_len, uint8_t se } // set current time and date (needed to validate certificates) - wlan_set_current_time (pybrtc_get_seconds()); + wlan_set_current_time (pyb_rtc_get_seconds()); // start the servers before returning wlan_servers_start(); @@ -993,7 +993,7 @@ STATIC mp_obj_t wlan_ifconfig (mp_uint_t n_args, const mp_obj_t *args) { } } // set current time and date (needed to validate certificates) - wlan_set_current_time (pybrtc_get_seconds()); + wlan_set_current_time (pyb_rtc_get_seconds()); return mp_const_none; } } |
