- Jan 26, 2017
-
-
Damien George authored
-
Damien George authored
They are one-line functions and having them inline in mp_init/mp_deinit eliminates the overhead of a function call, and matches how other state is initialised in mp_init.
-
- Jan 25, 2017
-
-
Damien George authored
-
Oleg Korsak authored
-
Oleg Korsak authored
-
Damien George authored
-
- Jan 24, 2017
-
-
Damien George authored
-
Damien George authored
The order now follows that in py/mpconfig.h and is a bit cleaner and easier to maintain. No options were changed/added/removed with this patch, it's just a reordering.
-
Damien George authored
-
Damien George authored
To use this feature a port should define MICROPY_HW_SPIFLASH_SIZE_BITS along with x_CS, x_SCK, x_MOSI, x_MISO (x=MICROPY_HW_SPIFLASH). This will then use external SPI flash on those pins instead of the internal flash. The SPI is done using the software implementation. There is currently only support for standard SPI (ie not dual or quad mode).
-
Damien George authored
-
- Jan 23, 2017
-
-
Pavol Rusnak authored
-
stijn authored
Fixes #2806.
-
Damien George authored
-
Damien George authored
-
Damien George authored
stmhal will now be built by default with frozen bytecode from scripts stored in the stmhal/modules/ directory. This can be disabled or changed to another directory by overridding the make variable FROZEN_MPY_DIR.
-
Damien George authored
-
Damien George authored
-
Damien George authored
-
- Jan 22, 2017
-
-
Damien George authored
-
Damien George authored
-
Damien George authored
-
Damien George authored
-
Damien George authored
This is how CPython does it, and it's very useful to help users discover the available modules for a given port, especially built-in and frozen modules. The function does not list modules that are in the filesystem because this would require a fair bit of work to do correctly, and is very port specific (depending on the filesystem).
-
Damien George authored
-
Damien George authored
-
Damien George authored
-
Damien George authored
Ports should no longer use pyhelp_print_obj but instead should define MICROPY_PY_BUILTINS_HELP to 1 and then specify their help text using MICROPY_PY_BUILTINS_HELP_TEXT.
-
Damien George authored
-
Damien George authored
-
Damien George authored
-
Damien George authored
-
Damien George authored
-
Damien George authored
This builtin is configured using MICROPY_PY_BUILTINS_HELP, and is disabled by default.
-
- Jan 21, 2017
-
-
Paul Sokolovsky authored
For a small number of bytes, it's expected to return a small int without allocation.
-
Paul Sokolovsky authored
This test works only for MICROPY_LONGINT_IMPL == MICROPY_LONGINT_IMPL_MPZ and needs a way of skipping in other cases.
-
Paul Sokolovsky authored
To be implemented later.
-
Paul Sokolovsky authored
If result guaranteedly fits in a small int, it is handled in objint.c. Otherwise, it is delegated to mp_obj_int_from_bytes_impl(), which should be implemented by individual objint_*.c, similar to mp_obj_int_to_bytes_impl().
-
Paul Sokolovsky authored
-
Paul Sokolovsky authored
This makes MicroPython app running in QEMU be pingable from the host (by following QEMU networking setup instructions, https://www.zephyrproject.org/doc/samples/net/qemu_setup.html).
-