Added missing #include guard.
This commit is contained in:
parent
4348f0d135
commit
fdeb6471a8
|
@ -17,6 +17,9 @@
|
|||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
#ifndef __USBDFU_H
|
||||
#define __USBDFU_H
|
||||
|
||||
#include <libopencm3/usb/usbd.h>
|
||||
|
||||
/* Commands sent with wBlockNum == 0 as per ST implementation. */
|
||||
|
@ -44,3 +47,4 @@ void dfu_event(void);
|
|||
/* Platform specific function */
|
||||
void dfu_detach(void);
|
||||
|
||||
#endif /* __USBDFU_H */
|
||||
|
|
Loading…
Reference in New Issue