WHY MISO ECHO BACK WHAT MOSI SENT, EVEN THE MISO PIN IS ALREADY DISABLED.
I make a code that is just send SPI data, and the MISO should not return anything. Here is my code:int main(void){ char user_data[] = "Hello World!"; GPIO_ButtonInit(); SPI2_GPIOInits(); SPI2_Inits(); SPI_SSOEConfig(SPI2,ENABLE); while(1) { whil...