Skip to content

Commit c38086f

Browse files
committed
fix typo
1 parent 3f8b472 commit c38086f

File tree

1 file changed

+0
-1
lines changed
  • ports/stm32f4/common-hal/microcontroller

1 file changed

+0
-1
lines changed

ports/stm32f4/common-hal/microcontroller/__init__.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,6 @@ void common_hal_mcu_delay_us(uint32_t delay) {
6464
} else {
6565
//when SysTick is disabled, approximate with busy loop
6666
const uint32_t ucount = HAL_RCC_GetSysClockFreq() / 1000000 * delay / LOOP_TICKS;
67-
(void)start;
6867
for (uint32_t count = 0; ++count <= ucount;) {
6968
}
7069
}

0 commit comments

Comments
 (0)