Bits sent out from SPI MOSI pin are received inversed by analyzer
Hi!
I am learning to read the stm32f103c8t6 manual in order to be able to control the MCU without the HAL libraries. It seems that I have set up everything as it should be, but the result seems weird. If I write 0x00 to the SPI DR, I see 0x00 by the analyzer. If I write 0xFF to the DR, I see 0xFF by the analyzer. So far everything looks ok, but as soon as I send a value between these two, analyzer receives a value with all the bits inversed:
Sending 0xF0 - receiving 0x0F;
Sending 0x0F - receiving 0xF0;
Sending 0xAA - receiving 0x55;
Sending 0x55 - receiving 0xAA;
Which of the control register parameters could lead to such a result?

