Hi,
There does not appear to be much clarity surrounding the SPI and the interfacing. The Pinout Diagram lists the GPIO pins as
CS1 - GPIO6
SCLK - GPIO7
MOSI - GPIO8
MISO - GPIO9
The SPI default pins in both the Python and C modules are listed as
CS/SS 7
SCK 6
MOSI 18
MISO 1
The example code makes
spi.cs = 20
spi.sck = 19
and I presume leaves the MOSI and MISO as default (18 ? 1 ?)
So I am left scratching my head as to what is what? Who has managed to connect successfully with the SPI? Next, I think I am going to have to break out the datasheets and the Oscilloscope, but I'd rather not
I am also guessing that there is no native kernel SPI interface and it is all bit-banging only? Yay!!!
Cheers,
David