mirror of
https://github.com/hathach/tinyusb.git
synced 2025-01-17 05:32:55 +08:00
21 lines
326 B
C
21 lines
326 B
C
// See LICENSE for license details.
|
|
#ifndef _NUCLEI_SDK_HAL_H
|
|
#define _NUCLEI_SDK_HAL_H
|
|
|
|
#include "nmsis_gcc.h"
|
|
#include "gd32vf103.h"
|
|
#include "gd32vf103_libopt.h"
|
|
#include "drv_usb_hw.h"
|
|
#include "drv_usb_dev.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#define SOC_DEBUG_UART USART0
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
#endif
|