
1.-What is the use of the pin 26 [SPI0 CS1]? That means that there are ADCs with two channel select signal? Any example?
2.- To use the channel 0 I have no issue, but to use the channel 1 I have:
return new SpiConnectionSettings(ChipSelect0)
{
ClockFrequency = 500000,
Mode = SpiMode.Mode0
};
Where ChipSelect == 0. simple.
Do I have to change something in the Writebuffer from:
public byte[] WriteBuffer = new byte[2] { 0x68, 0x00 };
to another writebuffer to read from the other channel?
