Browse Source

platfoms: chibios: wait: only define the frequency (#21115)

pull/21124/head
dexter93 11 months ago
committed by GitHub
parent
commit
27120f2fb6
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      platforms/chibios/wait.c

+ 1
- 1
platforms/chibios/wait.c View File

@ -21,7 +21,7 @@
#ifdef WAIT_US_TIMER
void wait_us(uint16_t duration) {
static const GPTConfig gpt_cfg = {1000000, NULL, 0, 0}; /* 1MHz timer, no callback */
static const GPTConfig gpt_cfg = {.frequency = 1000000}; /* 1MHz timer, no callback */
if (duration == 0) {
duration = 1;


Loading…
Cancel
Save