- Apr 12, 2017
-
-
Damien George authored
If a finaliser raises an exception then it must not propagate through the GC sweep function. This patch protects against such a thing by running finaliser code via the mp_call_function_1_protected call. This patch also adds scheduler lock/unlock calls around the finaliser execution to further protect against any possible reentrancy issues: the memory manager is already locked when doing a collection, but we also don't want to allow any scheduled code to run, KeyboardInterrupts to interupt the code, nor threads to switch.
-
Damien George authored
Also optimise the function so it only needs to call the MP_STATE_THREAD macro once (following how other nlr code is written).
-
Damien George authored
-
Damien George authored
Disabled by default.
-
Damien George authored
The common cases for inheritance are 0 or 1 parent types, for both built-in types (eg built-in exceptions) as well as user defined types. So it makes sense to optimise the case of 1 parent type by storing just the type and not a tuple of 1 value (that value being the single parent type). This patch makes such an optimisation. Even though there is a bit more code to handle the two cases (either a single type or a tuple with 2 or more values) it helps reduce overall code size because it eliminates the need to create a static tuple to hold single parents (eg for the built-in exceptions). It also helps reduce RAM usage for user defined types that only derive from a single parent. Changes in code size (in bytes) due to this patch: bare-arm: -16 minimal (x86): -176 unix (x86-64): -320 unix nanbox: -384 stmhal: -64 cc3200: -32 esp8266: -108
-
Damien George authored
-
- Apr 11, 2017
-
-
Paul Sokolovsky authored
-
Damien George authored
Otherwise the edge case of the most negative integer value will not convert correctly.
-
Damien George authored
-
Damien George authored
-
Damien George authored
-
- Apr 10, 2017
-
-
Paul Sokolovsky authored
This implements the orginal idea is that Signal is a subclass of Pin, and thus can accept all the same argument as Pin, and additionally, "inverted" param. On the practical side, it allows to avoid many enclosed parenses for a typical declararion, e.g. for Zephyr: Signal(Pin(("GPIO_0", 1))). Of course, passing a Pin to Signal constructor is still supported and is the most generic form (e.g. Unix port will only support such form, as it doesn't have "builtin" Pins), what's introduces here is just practical readability optimization. "value" kwarg is treated as applying to a Signal (i.e. accounts for possible inversion).
-
Damien George authored
-
Damien George authored
This buffer is used to allocate objects temporarily, and such objects require that their underlying memory be correctly aligned for their data type. Aligning for mp_obj_t should be sufficient for emergency exceptions, but in general the memory buffer should aligned to the maximum alignment of the machine (eg on a 32-bit machine with mp_obj_t being 4 bytes, a double may not be correctly aligned). This patch fixes a bug for certain nan-boxing builds, where mp_obj_t is 8 bytes and must be aligned to 8 bytes (even though the machine is 32 bit).
-
- Apr 08, 2017
-
-
Paul Sokolovsky authored
Notes on WiPy incompatibilities with the standard module API are moved under "Known issues" to its documentation.
-
Paul Sokolovsky authored
Notes on WiPy incompatibilities with the standard socket module API are moved under "Known issues" to its documentation.
-
Paul Sokolovsky authored
-
Paul Sokolovsky authored
-
Paul Sokolovsky authored
parity=0 means even parity, parity=1 - odd.
-
Paul Sokolovsky authored
-
Paul Sokolovsky authored
-
- Apr 07, 2017
-
-
Paul Sokolovsky authored
-
Paul Sokolovsky authored
-
Paul Sokolovsky authored
-
Paul Sokolovsky authored
For stream sockets, next exected operation is listen().
-
Paul Sokolovsky authored
-
Paul Sokolovsky authored
-
Damien George authored
Changes made are: - Use the time module in place of the pyb module for delays. - Use spi.read/spi.write instead of spi.send/spi.receive. - Drop some non-portable parameters to spi and pin initialization. Thanks to @deshipu for the original patch.
-
- Apr 06, 2017
-
-
Paul Sokolovsky authored
When trying to execute a command via raw REPL and expected "OK" reply not received, show what was received instead.
-
Paul Sokolovsky authored
In this case, we can mark socket as closed directly.
-
- Apr 05, 2017
-
-
Paul Sokolovsky authored
Internal structure of k_fifo changed between 1.7 and 1.8, so we need to abstract it away. This adds more functions than currently used, for future work.
-
Paul Sokolovsky authored
-
Paul Sokolovsky authored
When working with a "virtual" port, like PTY. The issue described in http://stackoverflow.com/questions/34831131/pyserial-does-not-play-well-with-virtual-port
-
Paul Sokolovsky authored
-
Paul Sokolovsky authored
-
Paul Sokolovsky authored
-
Paul Sokolovsky authored
It's a standard function, and it's already described (in the library intro) that for any given port, any function may be missing.
-
Paul Sokolovsky authored
These are basic MicroPython API, and all ports should implement them.
-
Damien George authored
-
Damien George authored
-