feat add third_party_driver/usb for hc32f4a0 board, compile OK

This commit is contained in:
Liu_Weichao
2022-11-08 14:15:23 +08:00
parent 636f803b7b
commit 9a818b1ef4
42 changed files with 6765 additions and 1 deletions
@@ -42,6 +42,10 @@ Modification:
#include <connect_spi.h>
#endif
#ifdef BSP_USING_USB
#include <connect_usb.h>
#endif
extern void entry(void);
extern int HwUsartInit();
@@ -132,6 +136,9 @@ struct InitSequenceDesc _board_init[] =
#endif
#ifdef BSP_USING_SPI
{ "spi", HwSpiInit },
#endif
#ifdef BSP_USING_USB
{ "usb", HwUsbHostInit },
#endif
{ " NONE ", NONE },
};