From: Melissa LeBlanc-Williams Date: Thu, 20 May 2021 21:32:29 +0000 (-0700) Subject: Merge pull request #474 from DollarStarNova/master X-Git-Tag: 6.9.2~1 X-Git-Url: https://git.ayoreis.com/Adafruit_Blinka-hackapet.git/commitdiff_plain/3f07fb409e10a07616a5719d8beac624fb176375?hp=120c7a7f4c7559ede6a7d098e4800663381fc93d Merge pull request #474 from DollarStarNova/master Add missing iterations of rp2040 SPI0 Ports (GP18, GP19, GP16) --- diff --git a/src/adafruit_blinka/microcontroller/rp2040/pin.py b/src/adafruit_blinka/microcontroller/rp2040/pin.py index e16890f..bc086c9 100755 --- a/src/adafruit_blinka/microcontroller/rp2040/pin.py +++ b/src/adafruit_blinka/microcontroller/rp2040/pin.py @@ -37,12 +37,31 @@ GP29 = Pin(29) spiPorts = ( (0, GP2, GP3, GP0), (0, GP2, GP3, GP4), + (0, GP2, GP3, GP16), (0, GP2, GP7, GP0), (0, GP2, GP7, GP4), + (0, GP2, GP7, GP16), + (0, GP2, GP19, GP0), + (0, GP2, GP19, GP4), + (0, GP2, GP19, GP16), (0, GP6, GP3, GP0), (0, GP6, GP3, GP4), + (0, GP6, GP3, GP16), (0, GP6, GP7, GP0), (0, GP6, GP7, GP4), + (0, GP6, GP7, GP16), + (0, GP6, GP19, GP0), + (0, GP6, GP19, GP4), + (0, GP6, GP19, GP16), + (0, GP18, GP3, GP0), + (0, GP18, GP3, GP4), + (0, GP18, GP3, GP16), + (0, GP18, GP7, GP0), + (0, GP18, GP7, GP4), + (0, GP18, GP7, GP16), + (0, GP18, GP19, GP0), + (0, GP18, GP19, GP4), + (0, GP18, GP19, GP16), (1, GP10, GP11, GP8), (1, GP10, GP11, GP12), (1, GP10, GP15, GP8),