aboutsummaryrefslogtreecommitdiff
path: root/esp8266/Makefile
AgeCommit message (Collapse)Author
2015-05-13esp8266: Add utime and pyb.RTCJosef Gajdusek
2015-05-06esp8266: Add support for frozen modulesJosef Gajdusek
2015-05-04esp8266: Add esp.socket class, with ESP-style socket functionality.Josef Gajdusek
* UDP currently not supported * As there is no way (that I know of) the espconn_regist_connectcb() callback can recognize on which socket has the connection arrived, only one listening function at a time is supported
2015-04-05string0.c: Move from stmhal/ to lib/.Paul Sokolovsky
2015-02-13esp8266: Add basic pyb.Pin class; supports output mode only.Damien George
2015-02-13stmhal: Make pybstdio usable by other ports, and use it.Damien George
Now all ports can use pybstdio.c to provide sys.stdin/stdout/stderr, so long as they implement mp_hal_stdin_* and mp_hal_stdout_* functions.
2015-01-31esp8266: Add "reset" target to Makefile.Paul Sokolovsky
Just always keep jumper in bootloader position. After flashing, uPy automatically executed. And to get back to bootloader, do "make reset".
2015-01-25esp8266: Add "esp" module with esp8266-specific "cooperative" networking.Paul Sokolovsky
So far implements .scan(lambda x: print(x)) function to scan for WiFi access points.
2015-01-12esp8266: Update for readline module moved to lib/.Paul Sokolovsky
2015-01-01esp8266: Prefix includes with py/; remove need for -I../py.Damien George
2014-12-29py: Add include guards to mpconfig,misc,qstr,obj,runtime,parsehelper.Damien George
2014-11-28esp8266: Make default ESP_SDK variable work correctly.Damien George
When esp-open-sdk is built with STANDALONE=y (the default) then ESP_SDK is set to the correct value, so that "make" just works.
2014-11-28esp8266: Change bignum from mpz to longlong; move some rodata to iram.Damien George
Some rodata items can go in iram/irom segment, but not others. With this patch ESP now has 24256 bytes of heap ram. It passes 228 out of 248 tests from tests/basics directory.
2014-11-28esp8266: Provide sensible default ESP_SDK; deploy 2 the images together.Damien George
2014-11-28esp8266: Allow to override serial port.Paul Sokolovsky
2014-11-27esp8266: New port of Micro Python to ESP8266 wifi module.Damien George