File tree Expand file tree Collapse file tree 5 files changed +879
-3
lines changed
src/portable/renesas/usba Expand file tree Collapse file tree 5 files changed +879
-3
lines changed Original file line number Diff line number Diff line change @@ -60,7 +60,7 @@ Supported MCUs
60
60
+--------------+---------+-------------+--------+------+-----------+-------------------+--------------+
61
61
| Raspberry Pi | RP2040 | ✔ | ✔ | ✖ | rp2040 | |
62
62
+--------------+-----------------------+--------+------+-----------+-------------------+--------------+
63
- | Renesas | RX 63N, 65N, 72N | ✔ | ✖ | ✖ | usba | |
63
+ | Renesas | RX 63N, 65N, 72N | ✔ | ✔ | ✖ | usba | |
64
64
+--------------+-----------------------+--------+------+-----------+-------------------+--------------+
65
65
| Silabs | EFM32GG12 | ✔ | | ✖ | dwc2 | |
66
66
+--------------+-----------------------+--------+------+-----------+-------------------+--------------+
Original file line number Diff line number Diff line change 1
- __USTACK_SIZE = 0x00000400 ;
2
- __ISTACK_SIZE = 0x00000400 ;
1
+ __USTACK_SIZE = 0x00000800 ;
2
+ __ISTACK_SIZE = 0x00000800 ;
3
3
4
4
MEMORY
5
5
{
Original file line number Diff line number Diff line change @@ -176,7 +176,12 @@ void INT_Excep_SCI5_RXI5(void)
176
176
//--------------------------------------------------------------------+
177
177
void INT_Excep_USB0_USBI0 (void )
178
178
{
179
+ #if TUSB_OPT_HOST_ENABLED
180
+ tuh_int_handler (0 );
181
+ #endif
182
+ #if TUSB_OPT_DEVICE_ENABLED
179
183
tud_int_handler (0 );
184
+ #endif
180
185
}
181
186
182
187
void board_init (void )
Original file line number Diff line number Diff line change @@ -15,6 +15,7 @@ CFLAGS += \
15
15
16
16
SRC_C += \
17
17
src/portable/renesas/usba/dcd_usba.c \
18
+ src/portable/renesas/usba/hcd_usba.c \
18
19
$(MCU_DIR ) /vects.c
19
20
20
21
INC += \
You can’t perform that action at this time.
0 commit comments