Part Number: MSP432P401R
I am working on getting an SD card to interface with the MSP432. I looked at the example code in TI Resource Explorer about using fatsd. On the Board.html file it indicates that one option to configure the PINS are as follows:
P1.5 - CLK, P1.6 - MOSI, P1.7 - MISO, P1.4 - STE
I am trying to connect to an Arduino Micro SD Card Breakout Board. The pins on the SD breakout board are as follows:
CLK, DataOut, DataIn, and a Chip Select.
I was able to match most of the pins from the example as follows:
P1.5(CLK) -> CLK
P1.6(MOSI) -> DataOut
P1.7(MISO) -> DataIN
I am confused on where to hook up the CS from the breakout board to the MSP432. The example says to connect the STE(which I am guessing is just another word for chip select) to pin 1.4. However pin 1.4 is one of the 3 buttons on the MSP432. What pin are they using in the example to connect the Chip Select from the SD board to the STE on the MSP432? Also is there another GPIO pin that I could use to function as the chip select?
Any help would be much appreciated!