- Dec 04, 2014
-
-
Damien George authored
Behaviour of array initialisation is subtly different for bytes, bytearray and array.array when argument has buffer protocol. This patch gets us CPython conformant (except we allow initialisation of array.array by buffer with length not a multiple of typecode).
-
- Dec 03, 2014
-
-
Paul Sokolovsky authored
-
- Dec 02, 2014
-
-
Damien George authored
This makes no change to the generated code, but it's now easier to understand since unum is not a "global" variable anymore.
-
Damien George authored
So can remove unnecessary stm32f4xx_hal_msp.c file.
-
Damien George authored
-
- Dec 01, 2014
-
-
Paul Sokolovsky authored
-
Paul Sokolovsky authored
-
Paul Sokolovsky authored
-
Paul Sokolovsky authored
TODO: Merge useful functionality from modpyb too.
-
- Nov 30, 2014
-
-
Damien George authored
This makes pyboard.py much more useful for long running scripts. When running a script via pyboard.py, it now waits until the script finishes, with no timeout. CTRL-C can be used to break out of the waiting if needed.
-
Damien George authored
pyb.delay and pyb.udelay now use systick if IRQs are enabled, otherwise they use a busy loop. Thus they work correctly when IRQs are disabled. The busy loop is computed from the current CPU frequency, so works no matter the CPU frequency.
-
Damien George authored
By using the buffer protocol for these array operations, we now allow addition of memoryview objects, and objects with "incompatible" typecodes (in this case it just adds bytes naively). This is an extension to CPython which seems sensible. It also reduces the code size.
-
Henrik Sölver authored
-
Damien George authored
Addresses issue #994.
-
- Nov 29, 2014
-
-
Damien George authored
-
Damien George authored
-
Damien George authored
-
Damien George authored
This is just a clean-up of the code. Generated code is exactly the same.
-
Damien George authored
rodata can only go in iram/irom if it's accessed only using word loads (ie no byte or half-word access).
-
Paul Sokolovsky authored
-
- Nov 28, 2014
-
-
Damien George authored
When esp-open-sdk is built with STANDALONE=y (the default) then ESP_SDK is set to the correct value, so that "make" just works.
-
Damien George authored
-
inaugurator authored
Erratum in froh.
-
Damien George authored
Some rodata items can go in iram/irom segment, but not others. With this patch ESP now has 24256 bytes of heap ram. It passes 228 out of 248 tests from tests/basics directory.
-
Damien George authored
-
- Nov 27, 2014
-
-
Paul Sokolovsky authored
-
Damien George authored
-
Damien George authored
-
Damien George authored
hashlib test passes on pyboard.
-
Paul Sokolovsky authored
Previously, it truncated pointer value to 32 bits on 64-bit systems.
-
Paul Sokolovsky authored
Before, __repl_print__() used libc printf(), while print() used uPy streams and own printf() implementation. This led to subtle, but confusing differences in output when just doing "foo" vs "print(foo)" on interactive prompt.
-
Paul Sokolovsky authored
Useful when need to call kw-receiving functions without any keywords from C, etc.
-
Damien George authored
The reason for having this delay is to reduce power consumption at the REPL (HAL_Delay calls __WFI to idle the CPU). But stdin_rx_chr has a __WFI in it anyway, so this delay call is not needed. By removing this call, the readline input can consume characters much more quickly (before was limited to 1000 chrs/s), and has much reduced dependency on the specific port.
-
Damien George authored
This makes it easier to re-use readline.c and pyexec.c from stmhal in other ports.
-
Damien George authored
-
- Nov 26, 2014
-
-
Henrik Sölver authored
-
- Nov 25, 2014
-
-
Damien George authored
Addresses issue #987.
-
- Nov 22, 2014
-
-
Paul Sokolovsky authored
-
Paul Sokolovsky authored
-
Paul Sokolovsky authored
https://github.com/B-Con/crypto-algorithms revision 100f4ff
-