Added missing #include guard.

This commit is contained in:
Piotr Esden-Tempski 2016-10-19 14:56:52 -07:00
parent 4348f0d135
commit fdeb6471a8
1 changed files with 4 additions and 0 deletions

View File

@ -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 */