NSS pin has no effect on slave STM32F303 nucleo
Hello,
I have two STM32F303RE nucleo boards one acting as a master and the other as a slave.I have flashed the SPI examples on both of them that come with the firmware and both master/slave are working properly.
The issue is the example only uses (SCK,MOSI,MISO) and no CS for communicating. Just for testing puposes I changed the config on the slave to
SpiHandle.Init.NSS = SPI_NSS_HARD_INPUT;
After resetting both master and slave my expectation was that since I have not configured the master to send any CS , the slave should not be able to respond to the master.
But I see that I am still able to have a correct full duplex communcation.
It is like the NSS active setting on slave has no effect on it?