From 3fecbb246238148f83500fb0853ceaa2c3d49fa2 Mon Sep 17 00:00:00 2001 From: Paul Sokolovsky Date: Sat, 18 Jun 2016 23:35:04 +0300 Subject: extmod/machine_pinbase: Implementation of PinBase class. Allows to translate C-level pin API to Python-level pin API. In other words, allows to implement a pin class and Python which will be usable for efficient C-coded algorithms, like bitbanging SPI/I2C, time_pulse, etc. --- py/py.mk | 1 + 1 file changed, 1 insertion(+) (limited to 'py') diff --git a/py/py.mk b/py/py.mk index 79b876b994..984519baa3 100644 --- a/py/py.mk +++ b/py/py.mk @@ -201,6 +201,7 @@ PY_O_BASENAME = \ ../extmod/modubinascii.o \ ../extmod/virtpin.o \ ../extmod/machine_mem.o \ + ../extmod/machine_pinbase.o \ ../extmod/machine_pulse.o \ ../extmod/machine_i2c.o \ ../extmod/modussl.o \ -- cgit v1.2.3