Browse Source

HAL_ChibiOS: fixed build error with some compilers

mission-4.1.18
Andrew Tridgell 7 years ago
parent
commit
f2d602690e
  1. 3
      libraries/AP_HAL_ChibiOS/hwdef/common/stm32_util.c

3
libraries/AP_HAL_ChibiOS/hwdef/common/stm32_util.c

@ -263,7 +263,8 @@ void peripheral_power_enable(void) @@ -263,7 +263,8 @@ void peripheral_power_enable(void)
// we don't know what state the bootloader had the CTS pin in, so
// wait here with it pulled up from the PAL table for enough time
// for the radio to be definately powered down
for (uint8_t i=0; i<100; i++) {
uint8_t i;
for (i=0; i<100; i++) {
// use a loop as this may be a 16 bit timer
chThdSleep(MS2ST(1));
}

Loading…
Cancel
Save