X-Git-Url: https://git.ayoreis.com/Adafruit_Blinka-hackapet.git/blobdiff_plain/6245fc91a42d1833ab9351e2764805cf09fe1b19..06f3dea48645ab3963bb400c6057a1049bb2c75e:/src/adafruit_blinka/microcontroller/rp2040/pin.py diff --git a/src/adafruit_blinka/microcontroller/rp2040/pin.py b/src/adafruit_blinka/microcontroller/rp2040/pin.py index 6febdc4..e16890f 100755 --- a/src/adafruit_blinka/microcontroller/rp2040/pin.py +++ b/src/adafruit_blinka/microcontroller/rp2040/pin.py @@ -34,7 +34,7 @@ GP28 = Pin(28) GP29 = Pin(29) # ordered as spiId, sckId, mosiId (tx), misoId (rx) -SPI_PORTS = ( +spiPorts = ( (0, GP2, GP3, GP0), (0, GP2, GP3, GP4), (0, GP2, GP7, GP0), @@ -54,7 +54,7 @@ SPI_PORTS = ( ) # ordered as uartId, txId, rxId -UART_PORTS = ( +uartPorts = ( (0, GP0, GP1), (0, GP0, GP13), (0, GP12, GP1), @@ -66,7 +66,7 @@ UART_PORTS = ( ) # ordered as scl, sda -I2C_PORTS = ( +i2cPorts = ( (0, GP1, GP0), (0, GP1, GP4), (0, GP1, GP8),