Part Number: MSP432E401Y
When i used the MSP432P401R launchpad, i only used the P1.5 (SPI CLK), P1.7 (MISO) and P5.0 (SPI CS) to connect to the MAX31855 module. In addition my SPI configuration using driverlib functionality was:
// MAX 31855 implements a read-only Mode 1 SPI (i.e CPOL, CPHA = 0,1)
const eUSCI_SPI_MasterConfig spiMasterConfig =
{
EUSCI_B_SPI_CLOCKSOURCE_SMCLK, // SMCLK Clock Source
48000000, // SMCLK = 48MHz
4000000, // SPICLK = 4Mhz
EUSCI_B_SPI_MSB_FIRST, // MSB First
EUSCI_B_SPI_PHASE_DATA_CAPTURED_ONFIRST_CHANGED_ON_NEXT, // UCCKPH = 1 =>
EUSCI_B_SPI_CLOCKPOLARITY_INACTIVITY_LOW, // UCCKPL = 0
EUSCI_B_SPI_3PIN // 3Wire SPI Mode
};
On the MSP432E401Y launchpad, I will be using SSI3 (PQ0-PQ3) help needed for the setup and code. The driverlib master example connects a 4 wire master to a 4 wire slave. However in this case
The MAX31855 uses a single line as it's input and output.
For the MSP432E401Y, is there functionality similar to the 'EUSCI_B_SPI_3PIN // 3Wire SPI Mode' using only the SPI SCLK, MOSI and SPI SC lines?
Thanks
David Nyarko