- 03 May, 2016 18 commits
-
-
Paul Sokolovsky authored
At http://micropython.org/webrepl .
-
Paul Sokolovsky authored
-
Damien George authored
-
Paul Sokolovsky authored
.time() returns seconds since MicroPython epoch (2000-01-01 00:00UTC), .settime() sends current system time, assuming UTC timezone.
-
Damien George authored
-
Damien George authored
-
Damien George authored
-
Damien George authored
-
Damien George authored
-
Damien George authored
-
Damien George authored
Fixes issue #2023.
-
Damien George authored
-
Paul Sokolovsky authored
-
Paul Sokolovsky authored
-
Paul Sokolovsky authored
-
Paul Sokolovsky authored
-
Paul Sokolovsky authored
-
Damien George authored
-
- 02 May, 2016 22 commits
-
-
Paul Sokolovsky authored
-
Paul Sokolovsky authored
-
Paul Sokolovsky authored
Querying/setting MAC address is pretty adhoc operation to belong to .config() instead of taking a whole method on its own.
-
Paul Sokolovsky authored
Instead of extracting 4th element, extact last. Much easier to remember!
-
Paul Sokolovsky authored
Instead of extracting 4th element, extact last. Much easier to remember!
-
Paul Sokolovsky authored
-
Paul Sokolovsky authored
Useful for testing fragmentation issues in OS heap. E.g. freemem() may report large amount, but is it possible to actually allocate block of a given size? Issue malloc() (followed by free()) to find out.
-
Paul Sokolovsky authored
Return number of free inernal WiFi buffers.
-
Paul Sokolovsky authored
Returning free number of various WiFi driver packet buffers.
-
Paul Sokolovsky authored
Network interfaces are now controlled individually using .active() method.
-
Damien George authored
The port name is lowercase, and this change is made for consistency with the docs and other ports.
-
Paul Sokolovsky authored
-
Paul Sokolovsky authored
ANSI C doesn't require that strncpy() produced null-terminated string, so it's basicly useless for string manipulation.
-
Paul Sokolovsky authored
-
Paul Sokolovsky authored
-
Paul Sokolovsky authored
-
Paul Sokolovsky authored
-
Paul Sokolovsky authored
Link to vendor forum with datasheets, etc. is provided, as well as inline TTX.
-
Paul Sokolovsky authored
-
Paul Sokolovsky authored
-
Paul Sokolovsky authored
-
Paul Sokolovsky authored
Previously, "import _io" worked on both CPython and MicroPython (essentially by a chance on CPython, as there's not guarantee that its contents will stay the same across versions), but as the module was renamed to uio, need to use more robust import sequence for compatibility.
-