Merge pull request #1265 from kkitayam/add_hcd_for_renesas_rx

Add HCD driver for Renesas RX
This commit is contained in:
Ha Thach
2022-01-19 19:07:21 +07:00
committed by GitHub
5 changed files with 879 additions and 3 deletions
+2 -2
View File
@@ -1,5 +1,5 @@
__USTACK_SIZE = 0x00000400;
__ISTACK_SIZE = 0x00000400;
__USTACK_SIZE = 0x00000800;
__ISTACK_SIZE = 0x00000800;
MEMORY
{
@@ -176,7 +176,12 @@ void INT_Excep_SCI5_RXI5(void)
//--------------------------------------------------------------------+
void INT_Excep_USB0_USBI0(void)
{
#if TUSB_OPT_HOST_ENABLED
tuh_int_handler(0);
#endif
#if TUSB_OPT_DEVICE_ENABLED
tud_int_handler(0);
#endif
}
void board_init(void)
+1
View File
@@ -15,6 +15,7 @@ CFLAGS += \
SRC_C += \
src/portable/renesas/usba/dcd_usba.c \
src/portable/renesas/usba/hcd_usba.c \
$(MCU_DIR)/vects.c
INC += \