Resolved! Generating a delay using "wasted" instructions
Hi All,Using an STM32F429 and reading online documentation I have come frequently to this code used for generating delays in Ms if the SYSCLK is 16Mhzvoid delayMs(uint32_t n) { int i; for (; n > 0; n--) for (i = 0; i < 3195; i++) ; }I...