- Jan 27, 2019
-
-
stijn authored
Configurable via MICROPY_PY_BUILTINS_NEXT2, disabled by default.
-
Reagan Sanders authored
Commit a0d97fe4 changed the argument index of ca_certs but missed updating one of the references to the new index.
-
Mikhail Zakharov authored
One can't use pthread calls in a signal handler because they are not async-signal-safe (see man signal-safety). Instead, sem_post can be used to post from within a signal handler and this should be more efficient than using a busy wait loop, waiting on a volatile variable.
-
Mikhail Zakharov authored
-
Mikhail Zakharov authored
Free unused memory for threads and cancel any outstanding threads on interpreter exit to avoid possible segmentaiton fault.
-
Paul Sokolovsky authored
This header is deprecated as of mbedtls 2.8.0, as shipped with Ubuntu 18.04. Leads to #warning which is promoted to error with uPy compile options. Note that the current version of mbedtls is 2.14 at the time of writing.
-
Damien George authored
-
Damien George authored
The machine.sleep() function can be misleading because it clashes with time.sleep() which has quite different semantics. So change it to machine.lightsleep() which shows that it is closer in behaviour to machine.deepsleep(). Also, add an optional argument to these two sleep functions to specify a maximum time to sleep for. This is a common operation and underlying hardware usually has a special way of performing this operation. The existing machine.sleep() function will remain for backwards compatibility purposes, and it can simply be an alias for machine.lightsleep() without arguments. The behaviour will be the same.
-
Sean Burton authored
If MICROPY_PERSISTENT_CODE_LOAD or MICROPY_ENABLE_COMPILER are enabled then code gets enabled that calls file reading functions which may be disabled if no readers have been implemented. To fix this, introduce a MICROPY_HAS_FILE_READER variable, which is automatically set if MICROPY_READER_POSIX or MICROPY_READER_VFS is set but can also be manually set if a custom reader is being implemented. Then disable the file reading calls if this is not set.
-
- Jan 26, 2019
-
-
Paul Sokolovsky authored
-
Paul Sokolovsky authored
Major changes include robust parsing of erroneous compressed streams and updated API.
-
- Jan 25, 2019
-
-
Damien George authored
-
Damien George authored
Otherwise MICROPY_VERSION_STRING includes these parentheses in the string.
-
Damien George authored
This port has been verified to work with these latest changes.
-
Damien George authored
For architectures where size_t is less than 32 bits (eg 16 bits) the args must be casted to uint32_t so the left shift will work. For architectures where size_t is greater than 32 bits (eg 64 bits) this new casting will not lose any bits because the end result must anyway fit in a uint32_t.
-
Damien George authored
-
Matt Trentini authored
With contributions from Oliver Robson (@HowManyOliversAreThere), Sean Lanigan (@seanlano) and @rprr.
-
- Jan 24, 2019
-
-
Damien George authored
-
- Jan 23, 2019
-
-
Damien George authored
This aligns more closely with the hardware, that there are two, fixed HW SPI peripherals. And it allows to recreate the HW SPI objects without error, as well as create them again after a soft reset. Fixes issue #4103.
-
Damien George authored
Otherwise only one of HSPI or VSPI can be used at a time. Fixes issue #4068.
-
Matt Trentini authored
In order to suit the more common 800KHz by default (instead of 400KHz), and also have the same behaviour as the esp8266 port. Resolves #4396. Note! This is a breaking change. Anyone that has previously used the NeoPixel class on an ESP32 board may be affected.
-
- Jan 21, 2019
-
-
Damien George authored
The original behaviour of open-drain-high was to use the open-drain mode of the GPIO pin, and this seems to make driving a DHT more reliable. See issue #4233.
-
Damien George authored
Some ports (eg esp8266) need to have specific behaviour for driving a DHT reliably.
-
- Jan 17, 2019
-
-
Damien George authored
The ESP IDF system already provides a math library, and that one is likely to be better tuned to the Xtensa architecture. The IDF components are also tested against its own math library, so best not to override it. Using the system provided library also allows to easily switch to double-precision floating point by changing MICROPY_FLOAT_IMPL to MICROPY_FLOAT_IMPL_DOUBLE.
-
- Jan 16, 2019
-
-
Damien George authored
-
Damien George authored
So that the user can explicitly deactivate UART(0) if needed. See issue #4314. This introduces some risk to "brick" the device, if the user disables the REPL without providing an alternative REPL (eg WebREPL), or any way to reenable it. In such a case the device needs to be erased and reprogrammed. This seems unavoidable, given the desire to have the option to use the UART for something other than the REPL.
-
- Jan 11, 2019
-
-
stijn authored
-
- Jan 10, 2019
-
-
Damien George authored
Without the static qualifier these objects will be kept by the linker even if they are unused. So this patch saves some RAM when these features are unused by a board.
-
Damien George authored
-
Damien George authored
-
Damien George authored
If there are many short reads to a socket in a row (eg by readline) then releasing and acquiring the GIL each time will give very poor throughput. So first poll the socket to see if it has data, and if it does then don't release the GIL.
-
Damien George authored
Otherwise, if multiple threads are active, printing data to the REPL may be very slow because in some cases only one character is output per call to mp_hal_stdout_tx_strn.
-
- Jan 04, 2019
-
-
Damien George authored
The location for a returned exception was changed to state[0] in d95947b4
-
Damien George authored
Changes to the layout of the bytecode header meant that this debug code was no longer compiling. This is now fixed and a new compile-time option is introduced, MICROPY_DEBUG_VM_STACK_OVERFLOW, to turn on this feature (which is disabled by default). This option is needed because more than one file needs to cooperate to make this check work.
-
- Dec 29, 2018
-
-
Damien George authored
-
Dave Hylands authored
Under python3 (tested with 3.6.7) bytes with a list of integers as an argument returns a different result than under python 2.7 (tested with 2.7.15rc1) which causes pydfu.py to fail when run under 2.7. Changing bytes to bytearray makes pydfu work properly under both Python 2.7 and Python 3.6.
-
roland authored
Before this fix it returned SOFT_RESET after waking from a deepsleep (standby).
-
Damien George authored
-
Damien George authored
On MCUs other than F4 the ORE (overrun error) flag needs to be cleared independently of clearing RXNE, even though both are wired to trigger the same RXNE IRQ. In the case that an overrun occurred it's necessary to explicitly clear the ORE flag or else the RXNE interrupt will keep firing.
-
Damien George authored
Otherwise IRQs may not be enabled for the user UART.irq() handler. In particular this fixes the user IRQ_RXIDLE interrupt so that it triggers even when there is no RX buffer.
-