Question
Single stepping doesn't run in order
I am single stepping through simple code. I have two similar similar lines in a loop. Single stepping only goes to the last of those lines. This is STM32F746 Discovery and Keil IDE.
while(9)
{
if(HAL_UART_Transmit(&UartHandle, (uint8_t*)"\0", 1, 5000)!= HAL_OK)
{
Error_Handler();
}
HAL_Delay(100);
if(HAL_UART_Transmit(&UartHandle, (uint8_t*)'\n', 1, 5000)!= HAL_OK)
{
Error_Handler();
}
HAL_Delay(100);
}