We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3f8b472 commit c38086fCopy full SHA for c38086f
ports/stm32f4/common-hal/microcontroller/__init__.c
@@ -64,7 +64,6 @@ void common_hal_mcu_delay_us(uint32_t delay) {
64
} else {
65
//when SysTick is disabled, approximate with busy loop
66
const uint32_t ucount = HAL_RCC_GetSysClockFreq() / 1000000 * delay / LOOP_TICKS;
67
- (void)start;
68
for (uint32_t count = 0; ++count <= ucount;) {
69
}
70
0 commit comments