- 11 Apr, 2019 1 commit
-
-
Damien George authored
-
- 09 Apr, 2019 1 commit
-
-
Damien George authored
To save space, since this board only hase 256k of flash.
-
- 08 Apr, 2019 6 commits
-
-
Damien George authored
The qstr window size is not log-2 encoded, it's just the actual number (but in mpy-tool.py this didn't lead to an error because the size is just used to truncate the window so it doesn't grow arbitrarily large in memory). Addresses issue #4635.
-
Damien George authored
-
Damien George authored
-
Damien George authored
-
Damien George authored
-
Damien George authored
Fixes the regression introduced in ea3c80a5
-
- 05 Apr, 2019 4 commits
-
-
Damien George authored
-
Damien George authored
-
Damien George authored
Via: nic.config(trace=2|4)
-
Damien George authored
With dual-core enabled it's possible that the uPy task has full utilisation of CPU1. Fixes issue #4673.
-
- 04 Apr, 2019 1 commit
-
-
stijn authored
When running Linux on WSL, Popen.kill() can raise a ProcessLookupError if the process does not exist anymore, which can happen here since the previous statement already tries to close the process by sending Ctrl-D to the running repl. This doesn't seem to be a problem on other OSes, so just swallow the exception silently since it indicates the process has been closed already, which after all is what we want.
-
- 03 Apr, 2019 1 commit
-
-
Damien George authored
Since commit da938a83 the tcp_arg() that is set for the new connection is the new connection itself, and the parent listening socket is found in the pcb->connected entry.
-
- 01 Apr, 2019 12 commits
-
-
Glenn Ruben Bakke authored
See corresponding commit b5f33ac2
-
Damien George authored
-
Damien George authored
-
Damien George authored
Enable it via MICROPY_HW_ENABLE_MMCARD.
-
Damien George authored
For consistency with the majority of other MICROPY_HW_ENABLE_xxx macros.
-
Damien George authored
Fixes issue #3375.
-
Damien George authored
-
Damien George authored
This is needed now that the accept queue can have pending connections removed asynchronously.
-
Damien George authored
-
Damien George authored
In such a case the connection is aborted by lwIP and so must be removed from the pending accept queue.
-
roland van straten authored
The break mode is configurable via the 'brk' keyword to the Timer constructor and init method. It's disabled by default.
-
Andrew Leech authored
Use uos.dupterm for REPL configuration of the main USB_VCP(0) stream on dupterm slot 1, if USB is enabled. This means dupterm can also be used to disable the boot REPL port if desired, via uos.dupterm(None, 1). For efficiency this adds a simple hook to the global uos.dupterm code to work with streams that are known to be native streams.
-
- 29 Mar, 2019 2 commits
-
-
Damien George authored
-
Boris Vinogradov authored
-
- 28 Mar, 2019 2 commits
-
-
Boris Vinogradov authored
-
spacemanspiff2007 authored
-
- 27 Mar, 2019 2 commits
-
-
Damien George authored
Single core is still supported, just by adding CONFIG_FREERTOS_UNICORE=y to a custom sdkconfig file.
-
Damien George authored
-
- 26 Mar, 2019 8 commits
-
-
Damiano Mazzella authored
Unnamed semaphores (via sem_init) are not supported on this OS. See #4465.
-
Damien George authored
-
Damien George authored
These macros are unused, and they can conflict with other entities by the same name. If needed they can be provided as static inline functions, or just functions. Fixes issue #4559.
-
Damien George authored
-
Andrew Leech authored
This allows formatting SD cards, larger flash etc which do not support the default FAT16/SFD format mode.
-
roland van straten authored
If HSI is used the calibration value must be valid. Fixes #4596.
-
rhubarbdog authored
-
Romain Goyet authored
-