diff options
author | Damien George <damien.p.george@gmail.com> | 2016-03-30 11:35:03 +0300 |
---|---|---|
committer | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2016-03-30 11:35:03 +0300 |
commit | 9475cc59e63c451f9d3fd4bad3290a55785b02be (patch) | |
tree | c87eed7ecdb33cfdec6a57ee1155c3d0f7416c60 /esp8266/mpconfigport.h | |
parent | 259967238423f2b11479dadbab6eae77cd038096 (diff) | |
download | micropython-9475cc59e63c451f9d3fd4bad3290a55785b02be.tar.gz micropython-9475cc59e63c451f9d3fd4bad3290a55785b02be.zip |
esp8266: Support synchronous wifi scanning.
That is: aps = if0.scan()
TODO: make sure that returned list has tuple with values in "standard"
order (whatever that standard is).
Diffstat (limited to 'esp8266/mpconfigport.h')
-rw-r--r-- | esp8266/mpconfigport.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/esp8266/mpconfigport.h b/esp8266/mpconfigport.h index 52dbc18f52..30b49d4075 100644 --- a/esp8266/mpconfigport.h +++ b/esp8266/mpconfigport.h @@ -127,10 +127,6 @@ extern const struct _mp_obj_module_t onewire_module; #define MICROPY_PORT_ROOT_POINTERS \ const char *readline_hist[8]; \ mp_obj_t mp_kbd_exception; \ - \ - /* Singleton instance of scan callback, meaning that there can - be only one concurrent AP scan. */ \ - mp_obj_t scan_cb_obj; \ // We need to provide a declaration/definition of alloca() #include <alloca.h> |