diff options
| author | Hierophect <hierophect@gmail.com> | 2019-11-11 15:04:22 -0500 |
|---|---|---|
| committer | Hierophect <hierophect@gmail.com> | 2019-11-11 15:04:22 -0500 |
| commit | c38086fc4a14bc4d93d63ffe35451efdf95a0ed2 (patch) | |
| tree | bf5f084b1f0e0f4b6cdd88222eff12b2b0783cd9 | |
| parent | 3f8b4727f5492cd5d4c18dd10a033f19de92d643 (diff) | |
fix typo
| -rw-r--r-- | ports/stm32f4/common-hal/microcontroller/__init__.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/ports/stm32f4/common-hal/microcontroller/__init__.c b/ports/stm32f4/common-hal/microcontroller/__init__.c index 1ac8f474c..c7493a4d6 100644 --- a/ports/stm32f4/common-hal/microcontroller/__init__.c +++ b/ports/stm32f4/common-hal/microcontroller/__init__.c @@ -64,7 +64,6 @@ void common_hal_mcu_delay_us(uint32_t delay) { } else { //when SysTick is disabled, approximate with busy loop const uint32_t ucount = HAL_RCC_GetSysClockFreq() / 1000000 * delay / LOOP_TICKS; - (void)start; for (uint32_t count = 0; ++count <= ucount;) { } } |
