No data on MOSI spi STM32H7
Hi i am struggling to make SPI work on my nucleo-h723z board. I am using Cubemx to configure and i press when asked to used the default setup for the nucleo board when creating the project.
CubeIDE is v. 1.15.1
CubeMX is v. 1.11.1
my code is very basic:
while (1)
{
/* USER CODE END WHILE */
/* USER CODE BEGIN 3 */
uint8_t address = 0x80;
HAL_SPI_Transmit(&hspi4, &address, 1, 100);
HAL_Delay(1000);
}I have put a logic analyzer on the clock, MOSI and MISO, but no matter what, I can only see the clock signal.

SPI in cubeMX is:

Any suggestions?
Friendly Regards, David
