Skip to content

Commit 66610ce

Browse files
quytranpzzKhiemNguyenT
authored andcommitted
hal: renesas: rx: Add support for I2C driver on RX130
Add support for I2C driver with r_iic_rx RDP for RX130 target Signed-off-by: Quy Tran <[email protected]>
1 parent 9b99067 commit 66610ce

File tree

9 files changed

+7461
-2
lines changed

9 files changed

+7461
-2
lines changed

drivers/rx/CMakeLists.txt

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -91,3 +91,15 @@ if(CONFIG_USE_RX_RDP_RSPI)
9191
rdp/src/r_rspi_rx/src
9292
rdp/src/r_rspi_rx)
9393
endif()
94+
95+
if(CONFIG_USE_RX_RDP_I2C)
96+
zephyr_include_directories(
97+
rdp/src/r_riic_rx
98+
rdp/src/r_riic_rx/src
99+
rdp/src/r_riic_rx/src/targets/${CONFIG_SOC_SERIES}
100+
)
101+
zephyr_library_sources(
102+
rdp/src/r_riic_rx/src/r_riic_rx.c
103+
rdp/src/r_riic_rx/src/targets/${CONFIG_SOC_SERIES}/r_riic_${CONFIG_SOC_SERIES}.c
104+
)
105+
endif()

drivers/rx/README

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Origin:
66
https://www.renesas.com/us/en/software-tool/fit
77

88
Status:
9-
version v1.46
9+
version v1.47
1010

1111
Purpose:
1212
Firmware Integration Technology (FIT) for Renesas RX MCU Family.
@@ -22,7 +22,7 @@ URL:
2222
https://github.com/renesas/rx-driver-package
2323

2424
Commit:
25-
aa05cf00f4caade21cc6697c9f24c70d41f2a3b4
25+
2fdeaa013e81e2288de4d92b8ef05a0a89edb964
2626

2727
Maintained-by:
2828
Renesas Electronics Corporation

drivers/rx/rdp/src/r_riic_rx/r_riic_rx_if.h

Lines changed: 273 additions & 0 deletions
Large diffs are not rendered by default.

drivers/rx/rdp/src/r_riic_rx/src/r_riic_rx.c

Lines changed: 5052 additions & 0 deletions
Large diffs are not rendered by default.

drivers/rx/rdp/src/r_riic_rx/src/r_riic_rx_private.h

Lines changed: 808 additions & 0 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)