SPI transmit question/issue
Hi,
I have a custom board which has an STM32F446RE with implemented SPI peripheral that should communicate with MAX22530 chip. Currently, I am trying to test the SPI interface but am running into something that looks strange.
The SPI ioc configuration is as follows:

and the code inside the main function is:

As you can see, I am just trying to send 3 bytes over the SPI where each byte should be 0x00. The issue I am having to understand is why is there a logical 1 on MOSI line the MOSI line should be in logical 0 during the transmit:

- YELLOW: CLK
- PURPLE: MOSI
So it seems like it is sending 0x08 instead of 0x00. Considering I am using HAL_SPI_Transmit (I am not using a custom function) could there be a bug in built in code for SPI?
If so, I am using 1.17 SW IDE version.
