From: Luke Berndt Date: Thu, 11 Jun 2020 19:58:40 +0000 (-0400) Subject: Correct the spiId for the Coral Board X-Git-Tag: 5.1.0~1^2 X-Git-Url: https://git.ayoreis.com/Adafruit_Blinka-hackapet.git/commitdiff_plain/5622ff8da706a43c21c934a4433a284ade1d068a?ds=sidebyside Correct the spiId for the Coral Board The spiId used for the Coral board changed with Day release of Mendel --- diff --git a/src/adafruit_blinka/microcontroller/nxp_imx8m/pin.py b/src/adafruit_blinka/microcontroller/nxp_imx8m/pin.py index 2771a22..0d364e4 100644 --- a/src/adafruit_blinka/microcontroller/nxp_imx8m/pin.py +++ b/src/adafruit_blinka/microcontroller/nxp_imx8m/pin.py @@ -31,7 +31,7 @@ i2cPorts = ( (2, I2C3_SCL, I2C3_SDA), ) # ordered as spiId, sckId, mosiId, misoId -spiPorts = ((32766, ECSPI1_SCLK, ECSPI1_MOSI, ECSPI1_MISO),) +spiPorts = ((0, ECSPI1_SCLK, ECSPI1_MOSI, ECSPI1_MISO),) # SysFS pwm outputs, pwm channel and pin in first tuple pwmOuts = ( ((0, 0), PWM1),