diff options
| author | Scott Shawcroft <scott@tannewt.org> | 2020-05-28 15:51:33 -0700 |
|---|---|---|
| committer | Scott Shawcroft <scott@tannewt.org> | 2020-06-24 12:47:58 -0700 |
| commit | d0401f02a947a468d3019e70b5b0f5f633429c5d (patch) | |
| tree | 342ab387ffb9f512255478c24d9566156a52ec40 /ports/esp32s2/mpconfigport.mk | |
| parent | 9b8d6489869a5283efb35cd6632fa198f8b5493b (diff) | |
Add initial I2C support, not quite working fully though
Diffstat (limited to 'ports/esp32s2/mpconfigport.mk')
| -rw-r--r-- | ports/esp32s2/mpconfigport.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ports/esp32s2/mpconfigport.mk b/ports/esp32s2/mpconfigport.mk index c9df81db0..9f59c1b46 100644 --- a/ports/esp32s2/mpconfigport.mk +++ b/ports/esp32s2/mpconfigport.mk @@ -16,10 +16,10 @@ CIRCUITPY_FULL_BUILD = 0 CIRCUITPY_ANALOGIO = 0 CIRCUITPY_AUDIOBUSIO = 0 CIRCUITPY_AUDIOIO = 0 -CIRCUITPY_BITBANGIO = 0 +CIRCUITPY_BITBANGIO = 1 CIRCUITPY_BOARD = 1 CIRCUITPY_DIGITALIO = 1 -CIRCUITPY_BUSIO = 0 +CIRCUITPY_BUSIO = 1 CIRCUITPY_DISPLAYIO = 0 CIRCUITPY_FREQUENCYIO = 0 CIRCUITPY_I2CSLAVE = 0 |
