stm32f1/lib/usb_dfu.h

15 lines
353 B
C

/** library for USB DFU to write on internal flash
* @file
* @author King Kévin <kingkevin@cuvoodoo.info>
* @copyright SPDX-License-Identifier: GPL-3.0-or-later
* @date 2017-2020
* @note peripherals used: USB
*/
#pragma once
/** setup USB DFU peripheral */
void usb_dfu_setup(void);
/** start USB DFU handling */
void usb_dfu_start(void);