summaryrefslogtreecommitdiffstatshomepage
path: root/extmod/moduselect.c
Commit message (Collapse)AuthorAge
* all: Use the name MicroPython consistently in commentsAlexander Steffen2017-07-31
| | | | | There were several different spellings of MicroPython present in comments, when there should be only one.
* extmod: Use MP_ROM_INT for int values in an mp_rom_map_elem_t.Damien George2017-07-31
|
* extmod/moduselect: Implement ipoll() method for alloc-free polling.Paul Sokolovsky2017-04-29
| | | | Similar to the implementation added to unix port module previously.
* extmod/moduselect: Refactor towards introduction of poll.ipoll().Paul Sokolovsky2017-04-29
| | | | This follows previous refactor made to unix/moduselect.
* extmod/moduselect: Convert to MP_ROM_QSTR and friends.Paul Sokolovsky2017-04-29
|
* extmod/moduselect: Update to use size_t for array accessor.Damien George2017-03-29
|
* extmod/moduselect: Use configurable EVENT_POLL_HOOK instead of WFI.Damien George2016-12-02
| | | | To make moduselect be usable by any port.
* extmod/moduselect: Use stream helper function instead of ad-hoc code.Damien George2016-12-02
|
* py/stream: Move ad-hoc ioctl constants to stream.h and rename them.Damien George2016-12-02
| | | | | | | | The constants MP_IOCTL_POLL_xxx, which were stmhal-specific, are moved from stmhal/pybioctl.h (now deleted) to py/stream.h. And they are renamed to MP_STREAM_POLL_xxx to be consistent with other such constants. All uses of these constants have been updated.
* extmod/moduselect: Fix comment describing endif.Damien George2016-11-21
|
* stmhal/moduselect: Move to extmod/ for reuse by other ports.Paul Sokolovsky2016-11-21