- 02 Nov, 2015 2 commits
-
-
Henrik Sölver authored
Reported here: http://forum.micropython.org/viewtopic.php?f=2&t=845
-
Paul Sokolovsky authored
-
- 01 Nov, 2015 3 commits
-
-
Dave Curtis authored
-
danicampora authored
-
danicampora authored
-
- 31 Oct, 2015 14 commits
-
-
Paul Sokolovsky authored
-
Paul Sokolovsky authored
Ubuntu's mingw32 has gcc 4.2.1, which is rather old and has incorrect non-initialized variable analysis which produces warnings, which per MicroPython default settings get turned into errors.
-
Paul Sokolovsky authored
-
Paul Sokolovsky authored
Contains implementation of ?: (non-capturing groups), ?? (non-greedy ?), as well as much improved robustness, and edge cases and error handling by Amir Plivatsky (@ampli).
-
Paul Sokolovsky authored
-
Paul Sokolovsky authored
Otherwise for code like: while (socket->incoming == NULL) { LWIP_DELAY(100); } a compiler may cache it in a register and it will be an infinite loop.
-
Paul Sokolovsky authored
-
Damien George authored
py/mphal.h contains declarations for generic mp_hal_XXX functions, such as stdio and delay/ticks, which ports should provide definitions for. A port will also provide mphalport.h with further HAL declarations.
-
Paul Sokolovsky authored
-
Paul Sokolovsky authored
This makes format specifiers ~ fully compatible with CPython. Adds 24 bytes for stmhal port (because previosuly we had to catch and report it's unsupported to user).
-
Damien George authored
-
stijn authored
This is the case already when using just subprocess.check_output, but in the special cases (cmdline, meminfo, ...) the carriage return gets lost during output processing so restore it in the end. This fixes the micropython/meminfo.py test on Windows.
-
adminpete authored
As per ARM convention.
-
- 30 Oct, 2015 9 commits
-
-
Dave Hylands authored
-
Paul Sokolovsky authored
-
Paul Sokolovsky authored
-
Paul Sokolovsky authored
-
Peter Hinch authored
This prevents the loss of RTC time when exiting from standby mode, since the RTC is paused while it is being re-inited and this loses about 120ms. Thanks to @chuckbook for the patch.
-
Dave Hylands authored
-
Dave Hylands authored
-
omtinez authored
Since VS2015, float formatting is C standard compliant by default: https://msdn.microsoft.com/en-us/library/bb531344(v=vs.140).aspx
-
omtinez authored
This script may be called by Windows IDEs (e.g. Visual Studio) and be passed paths with backslashes.
-
- 29 Oct, 2015 10 commits
-
-
Damien George authored
-
Paul Sokolovsky authored
-
Paul Sokolovsky authored
-
Paul Sokolovsky authored
-
Paul Sokolovsky authored
-
Paul Sokolovsky authored
-
Paul Sokolovsky authored
-
Paul Sokolovsky authored
-
Paul Sokolovsky authored
This file is actually port-generic and should be moved out of stmhal/ . Other ports already use it, and thus it should use mp_hal_ticks_ms() right away.
-
Paul Sokolovsky authored
-
- 28 Oct, 2015 2 commits
-
-
Paul Sokolovsky authored
-
Paul Sokolovsky authored
-