summaryrefslogtreecommitdiff
path: root/stmhal/modnwcc3k.c
diff options
context:
space:
mode:
authorDamien George <damien.p.george@gmail.com>2017-03-02 15:02:57 +1100
committerDamien George <damien.p.george@gmail.com>2017-03-02 15:02:57 +1100
commit6ab5512132d5b3d19a5bf029cb27829d41e76f8e (patch)
treed1dc10771b963ac3be632b2ba90e2499321d83ea /stmhal/modnwcc3k.c
parent1f549a3496ac543390a170a7eb7b242475063016 (diff)
stmhal: Use mp_hal_delay_ms instead of HAL_Delay.
Diffstat (limited to 'stmhal/modnwcc3k.c')
-rw-r--r--stmhal/modnwcc3k.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/stmhal/modnwcc3k.c b/stmhal/modnwcc3k.c
index 19aeabf5c..753ab7528 100644
--- a/stmhal/modnwcc3k.c
+++ b/stmhal/modnwcc3k.c
@@ -120,7 +120,7 @@ STATIC int cc3k_gethostbyname(mp_obj_t nic, const char *name, mp_uint_t len, uin
if (retry == 0 || CC3000_EXPORT(errno) != -95) {
return CC3000_EXPORT(errno);
}
- HAL_Delay(50);
+ mp_hal_delay_ms(50);
}
if (ip == 0) {