Pull to refresh

Comments 2

Perhaps pretty-printing the code would convince the code-reviewers that there was a problem:

{
HSEStatus = RCC->CR & RCC_CR_HSERDY;
StartUpCounter++;
}

while((HSEStatus == 0) && (StartUpCounter != HSE_STARTUP_TIMEOUT));


When the language syntax is not too complex, this pretty-printing and indenting can be done automatically by the editor itself.
Sign up to leave a comment.