- 03 Mar, 2016 1 commit
-
-
Paul Sokolovsky authored
-
- 02 Mar, 2016 3 commits
-
-
Damien George authored
-
Damien George authored
-
Damien George authored
No complex numbers though.
-
- 07 Jan, 2016 1 commit
-
-
Paul Sokolovsky authored
-
- 10 Nov, 2015 1 commit
-
-
Paul Sokolovsky authored
This file contains various MicroPython-specific helper functions, so isn't good fit for lib/libc/.
-
- 31 Oct, 2015 1 commit
-
-
Paul Sokolovsky authored
-
- 24 Oct, 2015 1 commit
-
-
Paul Sokolovsky authored
Scenario: module1 depends on some common file from lib/, so specifies it in its SRC_MOD, and the same situation with module2, then common file from lib/ eventually ends up listed twice in $(OBJ), which leads to link errors. Make is equipped to deal with such situation easily, quoting the manual: "The value of $^ omits duplicate prerequisites, while $+ retains them and preserves their order." So, just use $^ consistently in all link targets.
-
- 19 Oct, 2015 1 commit
-
-
Paul Sokolovsky authored
Generally, ports should inherit INC from py.mk, append to it, not overwrite it. TODO: Likely should do the same for other vars too.
-
- 12 Sep, 2015 1 commit
-
-
Damien George authored
-
- 03 Jul, 2015 1 commit
-
-
Paul Sokolovsky authored
-
- 12 Jun, 2015 1 commit
-
-
Paul Sokolovsky authored
MicroPython "network" module interface requires it to contains classes to instantiate. But as we have a static network interace, make WLAN() "constructor" just return module itself, and just make all methods module-global functions.
-
- 28 May, 2015 1 commit
-
-
Josef Gajdusek authored
-
- 26 May, 2015 1 commit
-
-
Josef Gajdusek authored
Currently implements only .uname()
-
- 13 May, 2015 1 commit
-
-
Josef Gajdusek authored
-
- 12 May, 2015 1 commit
-
-
Josef Gajdusek authored
-
- 06 May, 2015 1 commit
-
-
Josef Gajdusek authored
-
- 04 May, 2015 1 commit
-
-
Josef Gajdusek authored
* 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
-
- 05 Apr, 2015 1 commit
-
-
Paul Sokolovsky authored
-
- 13 Feb, 2015 2 commits
-
-
Damien George authored
-
Damien George authored
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.
-
- 30 Jan, 2015 1 commit
-
-
Paul Sokolovsky authored
Just always keep jumper in bootloader position. After flashing, uPy automatically executed. And to get back to bootloader, do "make reset".
-
- 25 Jan, 2015 1 commit
-
-
Paul Sokolovsky authored
So far implements .scan(lambda x: print(x)) function to scan for WiFi access points.
-
- 12 Jan, 2015 1 commit
-
-
Paul Sokolovsky authored
-
- 01 Jan, 2015 1 commit
-
-
Damien George authored
-
- 29 Dec, 2014 1 commit
-
-
Damien George authored
-
- 28 Nov, 2014 3 commits
-
-
Damien George authored
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.
-
Damien George authored
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.
-
Damien George authored
-
- 27 Nov, 2014 2 commits
-
-
Paul Sokolovsky authored
-
Damien George authored
-