HAL_Delay function does not return
I have a bare metal board with an STM32H723ZGT6.
I can connect and program the device.
Initially I tried to use the HAL_Delay function but I found it hung the program never returning.
This I determined by illuminating an LED on each side of the function, the first lights the second stays off.
I then switched the HAL_Delay function for a delay in code so I can create the blinky LED in a coded delay.
I then tried to implement a separate simple timer and that does not seem to function either trying to toggle an LED in the handler - no joy.
I have ensured interrupts are enabled using __enable_irq and I also changed the timerbase priority from 15 to 0 in the NVIC setting.
I am puzzled as to why interrupts do not seem to be occuring.
Open to any suggestions on this as I really need a simple timer I can use.
