summaryrefslogtreecommitdiffstatshomepage
path: root/unix/modmachine.c
Commit message (Collapse)AuthorAge
* unix/modmachine: Add Signal class to machine module.Damien George2017-03-02
|
* unix: Use mp_raise_OSError helper function.Damien George2016-10-07
|
* all: Remove 'name' member from mp_obj_module_t struct.Damien George2016-09-22
| | | | One can instead lookup __name__ in the modules dict to get the value.
* unix/modmachine: Enable time_pulse_us() function.Paul Sokolovsky2016-06-19
|
* unix/modmachine: Include PinBase class.Paul Sokolovsky2016-06-18
|
* unix: machine_mem improvementsDave Hylands2015-12-18
| | | | | | This basically introduces the MICROPY_MACHINE_MEM_GET_READ_ADDR and MICROPY_MACHINE_MEM_GET_WRITE_ADDR macros. If one of them is not defined, then a default identity function is provided.
* ports: Rename "machine" module to "umachine".Paul Sokolovsky2015-12-18
| | | | | | | | To let unix port implement "machine" functionality on Python level, and keep consistent naming in other ports (baremetal ports will use magic module "symlinking" to still load it on "import machine"). Fixes #1701.
* unix: Move modmachine into unix directoryDave Hylands2015-12-13
This leaves behind the common functionality in extmod/machine_mem.c which can be used by all ports.