When I receive the SPI variable I save this as an int like this:uint8_t spiRxBuf;uint32_t highByte;uint32_t lowByte;HAL_SPI_Receive(&hspi2, &spiRxBuf, 1, 10); highByte = spiRxBuf; HAL_SPI_Receive(&hspi2, &spiRxBuf, 1, 10); lowByte = spiRxBuf;int resu...