2020-06-03 04:33:18 -07:00
|
|
|
#pragma once
|
|
|
|
|
2022-03-29 02:24:25 -07:00
|
|
|
#include "stm32f0xx.h"
|
|
|
|
#include "stm32f0xx_hal.h"
|
2020-06-03 04:33:18 -07:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
|
|
|
|
|
|
|
|
#define USBD_SUPPORT_USER_STRING_DESC (1)
|
2022-03-29 02:24:25 -07:00
|
|
|
#define USBD_DEBUG_LEVEL 0
|
|
|
|
#define DEVICE_FS 0
|
2020-06-03 04:33:18 -07:00
|
|
|
|
2022-03-29 02:24:25 -07:00
|
|
|
extern PCD_HandleTypeDef hpcd_USB_FS;
|