From b9cd006f8f798a97a3eb161b5b8b50bbe2413b65 Mon Sep 17 00:00:00 2001 From: xj Date: Mon, 3 Jun 2024 01:19:34 -0700 Subject: [PATCH] Add USB source tree --- Ubiquitous/XiZi_AIoT/services/drivers/usb/usb_host.c | 1 + Ubiquitous/XiZi_AIoT/services/drivers/usb/usb_host.h | 9 +++++++++ 2 files changed, 10 insertions(+) create mode 100644 Ubiquitous/XiZi_AIoT/services/drivers/usb/usb_host.c create mode 100644 Ubiquitous/XiZi_AIoT/services/drivers/usb/usb_host.h diff --git a/Ubiquitous/XiZi_AIoT/services/drivers/usb/usb_host.c b/Ubiquitous/XiZi_AIoT/services/drivers/usb/usb_host.c new file mode 100644 index 000000000..75435d4c2 --- /dev/null +++ b/Ubiquitous/XiZi_AIoT/services/drivers/usb/usb_host.c @@ -0,0 +1 @@ +#include "usb_host.h" diff --git a/Ubiquitous/XiZi_AIoT/services/drivers/usb/usb_host.h b/Ubiquitous/XiZi_AIoT/services/drivers/usb/usb_host.h new file mode 100644 index 000000000..e6e9f9efb --- /dev/null +++ b/Ubiquitous/XiZi_AIoT/services/drivers/usb/usb_host.h @@ -0,0 +1,9 @@ +#ifndef USB_HOST_H_ +#define USB_HOST_H_ + + + + + + +#endif