native/usbdfu: clang-format for part of the DFU bootloader
This commit is contained in:
parent
54bcbf95fa
commit
999ac27172
|
@ -39,7 +39,7 @@ int main(void)
|
||||||
{
|
{
|
||||||
/* Check the force bootloader pin*/
|
/* Check the force bootloader pin*/
|
||||||
rcc_periph_clock_enable(RCC_GPIOB);
|
rcc_periph_clock_enable(RCC_GPIOB);
|
||||||
if(gpio_get(GPIOB, GPIO12))
|
if (gpio_get(GPIOB, GPIO12))
|
||||||
dfu_jump_app_if_valid();
|
dfu_jump_app_if_valid();
|
||||||
|
|
||||||
dfu_protect(false);
|
dfu_protect(false);
|
||||||
|
@ -57,15 +57,13 @@ int main(void)
|
||||||
systick_counter_enable();
|
systick_counter_enable();
|
||||||
|
|
||||||
/* Configure the LED pins. */
|
/* Configure the LED pins. */
|
||||||
gpio_set_mode(LED_PORT, GPIO_MODE_OUTPUT_2_MHZ,
|
gpio_set_mode(LED_PORT, GPIO_MODE_OUTPUT_2_MHZ, GPIO_CNF_OUTPUT_PUSHPULL, LED_0 | LED_1 | LED_2);
|
||||||
GPIO_CNF_OUTPUT_PUSHPULL, LED_0 | LED_1 | LED_2);
|
|
||||||
|
|
||||||
dfu_init(&st_usbfs_v1_usb_driver);
|
dfu_init(&st_usbfs_v1_usb_driver);
|
||||||
|
|
||||||
/* Configure the USB pull up pin. */
|
/* Configure the USB pull up pin. */
|
||||||
gpio_set(GPIOA, GPIO8);
|
gpio_set(GPIOA, GPIO8);
|
||||||
gpio_set_mode(GPIOA, GPIO_MODE_OUTPUT_2_MHZ,
|
gpio_set_mode(GPIOA, GPIO_MODE_OUTPUT_2_MHZ, GPIO_CNF_OUTPUT_PUSHPULL, GPIO8);
|
||||||
GPIO_CNF_OUTPUT_PUSHPULL, GPIO8);
|
|
||||||
|
|
||||||
dfu_main();
|
dfu_main();
|
||||||
}
|
}
|
||||||
|
@ -116,4 +114,3 @@ void sys_tick_handler(void)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue