The spi_master.c program for the TM4C example uses the following pins.
//! - GPIO Port A peripheral (for SSI0 pins)
//! - SSI0Clk - PA2
//! - SSI0Fss - PA3
//! - SSI0Rx - PA4
//! - SSI0Tx - PA5
In the program, the chip select is controlled by the spi port rather than the user.
The launchpad pinlist for the EK-TM4C123GXL has the spi port as follows:
PB7 TX
PB6 RX
PB4 clk
For chip selects there are
PE0,PA4,PA3
This does not fit the spi model where the chip select is integrated in the spi module. Does this model work for the TM4C. If so are there any code examples.
Thanks
Glenn