Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add HCD driver for Renesas RX #1265

Merged
merged 5 commits into from
Jan 19, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/reference/supported.rst
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ Supported MCUs
+--------------+---------+-------------+--------+------+-----------+-------------------+--------------+
| Raspberry Pi | RP2040 | ✔ | ✔ | ✖ | rp2040 | |
+--------------+-----------------------+--------+------+-----------+-------------------+--------------+
| Renesas | RX 63N, 65N, 72N | ✔ | | ✖ | usba | |
| Renesas | RX 63N, 65N, 72N | ✔ | | ✖ | usba | |
+--------------+-----------------------+--------+------+-----------+-------------------+--------------+
| Silabs | EFM32GG12 | ✔ | | ✖ | dwc2 | |
+--------------+-----------------------+--------+------+-----------+-------------------+--------------+
Expand Down
4 changes: 2 additions & 2 deletions hw/bsp/rx/boards/rx65n_target/r5f565ne.ld
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
__USTACK_SIZE = 0x00000400;
__ISTACK_SIZE = 0x00000400;
__USTACK_SIZE = 0x00000800;
__ISTACK_SIZE = 0x00000800;

MEMORY
{
Expand Down
5 changes: 5 additions & 0 deletions hw/bsp/rx/boards/rx65n_target/rx65n_target.c
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
1 change: 1 addition & 0 deletions hw/bsp/rx/family.mk
Original file line number Diff line number Diff line change
Expand Up @@ -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 += \
Expand Down
Loading