Commit message (Collapse) | Author | Age | |
---|---|---|---|
* | all: Rename mp_obj_type_t::stream_p to protocol. | Paul Sokolovsky | 2016-06-18 |
| | | | | | It's now used for more than just stream protocol (e.g. pin protocol), so don't use false names. | ||
* | extmod/virtpin: Initial implementation of open-ended C-level Pin interface. | Paul Sokolovsky | 2016-05-27 |
Using usual method of virtual method tables. Single virtual method, ioctl, is defined currently for all operations. This universal and extensible vtable-based method is also defined as a default MPHAL GPIO implementation, but a specific port may override it with its own implementation (e.g. close-ended, but very efficient, e.g. avoiding virtual method dispatch). |