diff options
| author | Scott Shawcroft <scott@adafruit.com> | 2021-01-25 14:41:53 -0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-01-25 14:41:53 -0800 |
| commit | a2ac2da7ccd3ffe60cfa56efd321cd967a8bc4a5 (patch) | |
| tree | 12550df2f05d22ffd053478212d6d7d04e7fbb76 /py | |
| parent | c075e89258059487aa63a3f15048e6bebc3862b6 (diff) | |
| parent | 41b9196167576c9a593d51e601edd51cba5b72c4 (diff) | |
Merge pull request #3936 from gamblor21/busdevice_fixes
Changing adafruit_bus_device to duck typing
Diffstat (limited to 'py')
| -rw-r--r-- | py/circuitpy_mpconfig.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/py/circuitpy_mpconfig.mk b/py/circuitpy_mpconfig.mk index 9c9b17f4b..5bc44fa21 100644 --- a/py/circuitpy_mpconfig.mk +++ b/py/circuitpy_mpconfig.mk @@ -100,7 +100,7 @@ CFLAGS += -DCIRCUITPY_BLEIO=$(CIRCUITPY_BLEIO) CIRCUITPY_BOARD ?= 1 CFLAGS += -DCIRCUITPY_BOARD=$(CIRCUITPY_BOARD) -CIRCUITPY_BUSDEVICE = 0 +CIRCUITPY_BUSDEVICE ?= $(CIRCUITPY_FULL_BUILD) CFLAGS += -DCIRCUITPY_BUSDEVICE=$(CIRCUITPY_BUSDEVICE) CIRCUITPY_BUILTINS_POW3 ?= $(CIRCUITPY_FULL_BUILD) |
