Skip to content

Commit 65ab9ea

Browse files
committed
[bsp][renesas][ra4m1-ek] make it mini support for GPIO && USART
1 parent 20191b7 commit 65ab9ea

File tree

25 files changed

+396
-5334
lines changed

25 files changed

+396
-5334
lines changed

bsp/renesas/libraries/HAL_Drivers/drivers/drv_can.c

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -224,15 +224,8 @@ rt_ssize_t ra_can_recvmsg(struct rt_can_device *can_dev, void *buf, rt_uint32_t
224224
RT_ASSERT(boxno < can->config->num_of_mailboxs);
225225
if (can->callback_args->mailbox != boxno)
226226
return 0;
227-
#if defined(BSP_USING_CANFD)
227+
228228
msg_ra = &can->callback_args->frame;
229-
#else
230-
#if defined(SOC_SERIES_R7FA4M1)
231-
msg_ra = &can->callback_args->frame;
232-
#else
233-
msg_ra = can->callback_args->p_frame;
234-
#endif
235-
#endif
236229

237230
msg_rt->id = msg_ra->id;
238231
msg_rt->ide = msg_ra->id_mode;

bsp/renesas/ra4m1-ek/.config

Lines changed: 21 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
CONFIG_SOC_R7FA4M1AB=y
12

23
#
34
# RT-Thread Kernel
@@ -224,10 +225,7 @@ CONFIG_FINSH_USING_OPTION_COMPLETION=y
224225
# CONFIG_RT_USING_DFS is not set
225226
# end of DFS: device virtual file system
226227

227-
CONFIG_RT_USING_FAL=y
228-
CONFIG_FAL_USING_DEBUG=y
229-
CONFIG_FAL_PART_HAS_TABLE_CFG=y
230-
# CONFIG_FAL_USING_SFUD_PORT is not set
228+
# CONFIG_RT_USING_FAL is not set
231229

232230
#
233231
# Device Drivers
@@ -270,7 +268,11 @@ CONFIG_RT_USING_PWM=y
270268
# CONFIG_RT_USING_MTD_NAND is not set
271269
# CONFIG_RT_USING_PM is not set
272270
CONFIG_RT_USING_RTC=y
273-
# CONFIG_RT_USING_ALARM is not set
271+
CONFIG_RT_USING_ALARM=y
272+
CONFIG_RT_ALARM_STACK_SIZE=2048
273+
CONFIG_RT_ALARM_TIMESLICE=5
274+
CONFIG_RT_ALARM_PRIORITY=10
275+
CONFIG_RT_ALARM_USING_LOCAL_TIME=y
274276
# CONFIG_RT_USING_SOFT_RTC is not set
275277
# CONFIG_RT_USING_SDIO is not set
276278
CONFIG_RT_USING_SPI=y
@@ -337,7 +339,10 @@ CONFIG_RT_LIBC_TZ_DEFAULT_SEC=0
337339
# end of Interprocess Communication (IPC)
338340
# end of POSIX (Portable Operating System Interface) layer
339341

340-
# CONFIG_RT_USING_CPLUSPLUS is not set
342+
CONFIG_RT_USING_CPLUSPLUS=y
343+
# CONFIG_RT_USING_CPLUSPLUS11 is not set
344+
# CONFIG_RT_USING_CPP_WRAPPER is not set
345+
# CONFIG_RT_USING_CPP_EXCEPTIONS is not set
341346
# end of C/C++ and POSIX layer
342347

343348
#
@@ -1284,7 +1289,6 @@ CONFIG_SOC_SERIES_R7FA4M1=y
12841289
#
12851290
# Hardware Drivers Config
12861291
#
1287-
CONFIG_SOC_R7FA4M1AB=y
12881292

12891293
#
12901294
# Onboard Peripheral Drivers
@@ -1296,34 +1300,23 @@ CONFIG_SOC_R7FA4M1AB=y
12961300
# On-chip Peripheral Drivers
12971301
#
12981302
CONFIG_BSP_USING_GPIO=y
1299-
CONFIG_BSP_USING_ONCHIP_FLASH=y
1300-
CONFIG_BSP_USING_WDT=y
1301-
CONFIG_BSP_USING_ONCHIP_RTC=y
1303+
# CONFIG_BSP_USING_ONCHIP_FLASH is not set
1304+
# CONFIG_BSP_USING_WDT is not set
1305+
# CONFIG_BSP_USING_ONCHIP_RTC is not set
13021306
CONFIG_BSP_USING_UART=y
13031307
CONFIG_BSP_USING_UART0=y
13041308
# CONFIG_BSP_UART0_RX_USING_DMA is not set
13051309
# CONFIG_BSP_UART0_TX_USING_DMA is not set
13061310
CONFIG_BSP_UART0_RX_BUFSIZE=256
13071311
CONFIG_BSP_UART0_TX_BUFSIZE=0
1308-
CONFIG_BSP_USING_UART1=y
1309-
# CONFIG_BSP_UART1_RX_USING_DMA is not set
1310-
# CONFIG_BSP_UART1_TX_USING_DMA is not set
1311-
CONFIG_BSP_UART1_RX_BUFSIZE=256
1312-
CONFIG_BSP_UART1_TX_BUFSIZE=0
1313-
CONFIG_BSP_USING_SPI=y
1314-
CONFIG_BSP_USING_SPI0=y
1315-
# CONFIG_BSP_USING_SPI1 is not set
1316-
CONFIG_BSP_USING_HW_I2C=y
1317-
CONFIG_BSP_USING_HW_I2C0=y
1318-
CONFIG_BSP_USING_ADC=y
1319-
CONFIG_BSP_USING_ADC0=y
1312+
# CONFIG_BSP_USING_UART1 is not set
1313+
# CONFIG_BSP_USING_SPI is not set
1314+
# CONFIG_BSP_USING_HW_I2C is not set
1315+
# CONFIG_BSP_USING_ADC is not set
13201316
# CONFIG_BSP_USING_TIM is not set
1321-
CONFIG_BSP_USING_DAC=y
1322-
CONFIG_BSP_USING_DAC0=y
1323-
CONFIG_BSP_USING_PWM=y
1324-
CONFIG_BSP_USING_PWM0=y
1325-
CONFIG_BSP_USING_CAN=y
1326-
CONFIG_BSP_USING_CAN0=y
1317+
# CONFIG_BSP_USING_DAC is not set
1318+
# CONFIG_BSP_USING_PWM is not set
1319+
# CONFIG_BSP_USING_CAN is not set
13271320
# end of On-chip Peripheral Drivers
13281321

13291322
#

bsp/renesas/ra4m1-ek/.secure_azone

Lines changed: 3 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<slot name="P100.CM4" secure="false"/>
1313
<slot name="P101.CM4" secure="false"/>
1414
<slot name="P102.CM4" secure="false"/>
15-
<slot name="P103.CM4" secure="false"/>
15+
<slot name="P104.CM4" secure="false"/>
1616
<slot name="P105.CM4" secure="false"/>
1717
<slot name="P106.CM4" secure="false"/>
1818
<slot name="P108.CM4" secure="false"/>
@@ -29,13 +29,10 @@
2929
<peripheral name="PORT4.CM4" group="PORT">
3030
<slot name="P400.CM4" secure="false"/>
3131
<slot name="P401.CM4" secure="false"/>
32-
<slot name="P402.CM4" secure="false"/>
3332
<slot name="P403.CM4" secure="false"/>
3433
<slot name="P407.CM4" secure="false"/>
3534
<slot name="P410.CM4" secure="false"/>
3635
<slot name="P411.CM4" secure="false"/>
37-
<slot name="P414.CM4" secure="false"/>
38-
<slot name="P415.CM4" secure="false"/>
3936
</peripheral>
4037
<peripheral name="PORT5.CM4" group="PORT">
4138
<slot name="P501.CM4" secure="false"/>
@@ -49,15 +46,12 @@
4946
<peripheral name="ICU_EXT_IRQ.CM4">
5047
<slot name="ICU_EXT_IRQ0.CM4" secure="false"/>
5148
</peripheral>
52-
<peripheral name="SCI1.CM4" group="SCI" security=""/>
5349
<peripheral name="IIC0.CM4" group="IIC" security=""/>
54-
<peripheral name="SPI0.CM4" group="SPI" security=""/>
5550
<peripheral name="ADC0.CM4" group="ADC" security=""/>
56-
<peripheral name="DAC0.CM4" group="DAC" security=""/>
57-
<peripheral name="DAC120.CM4" group="DAC12" security=""/>
5851
<peripheral name="RTC.CM4" security=""/>
5952
<peripheral name="GPT0.CM4" group="GPT" security=""/>
60-
<peripheral name="CAN0.CM4" group="CAN" security=""/>
53+
<peripheral name="DAC0.CM4" group="DAC" security=""/>
54+
<peripheral name="DAC120.CM4" group="DAC12" security=""/>
6155
<peripheral name="ICU.CM4">
6256
<slot name="IRQ0.CM4" secure="false"/>
6357
<slot name="IRQ1.CM4" secure="false"/>
@@ -69,19 +63,6 @@
6963
<slot name="IRQ7.CM4" secure="false"/>
7064
<slot name="IRQ8.CM4" secure="false"/>
7165
<slot name="IRQ9.CM4" secure="false"/>
72-
<slot name="IRQ10.CM4" secure="false"/>
73-
<slot name="IRQ11.CM4" secure="false"/>
74-
<slot name="IRQ12.CM4" secure="false"/>
75-
<slot name="IRQ13.CM4" secure="false"/>
76-
<slot name="IRQ14.CM4" secure="false"/>
77-
<slot name="IRQ15.CM4" secure="false"/>
78-
<slot name="IRQ16.CM4" secure="false"/>
79-
<slot name="IRQ17.CM4" secure="false"/>
80-
<slot name="IRQ18.CM4" secure="false"/>
81-
<slot name="IRQ19.CM4" secure="false"/>
82-
<slot name="IRQ20.CM4" secure="false"/>
83-
<slot name="IRQ21.CM4" secure="false"/>
84-
<slot name="IRQ22.CM4" secure="false"/>
8566
</peripheral>
8667
</partition>
8768
</azone>

bsp/renesas/ra4m1-ek/.secure_xml

Lines changed: 8 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -48,29 +48,26 @@
4848
<configSetting altId="adc0.an04.p004" configurationId="adc0.an04" isUsedByDriver="true" peripheral="ADC0"/>
4949
<configSetting altId="adc0.an05.p010" configurationId="adc0.an05" isUsedByDriver="true" peripheral="ADC0"/>
5050
<configSetting altId="adc0.an06.p011" configurationId="adc0.an06" isUsedByDriver="true" peripheral="ADC0"/>
51-
<configSetting altId="can0.crx.p402" configurationId="can0.crx" isUsedByDriver="true" peripheral="CAN0"/>
52-
<configSetting altId="can0.ctx.p103" configurationId="can0.ctx" isUsedByDriver="true" peripheral="CAN0"/>
5351
<configSetting altId="ctsu0.ts35.p115" configurationId="ctsu0.ts35" peripheral="CTSU0"/>
5452
<configSetting altId="ctsu0.tscap.p205" configurationId="ctsu0.tscap" peripheral="CTSU0"/>
5553
<configSetting altId="dac0.da.p014" configurationId="dac0.da" isUsedByDriver="true" peripheral="DAC120"/>
5654
<configSetting altId="debug0.tck.p300" configurationId="debug0.tck" isUsedByDriver="true" peripheral="DEBUG0"/>
5755
<configSetting altId="debug0.tdi.p110" configurationId="debug0.tdi" isUsedByDriver="true" peripheral="DEBUG0"/>
5856
<configSetting altId="debug0.tdo.p109" configurationId="debug0.tdo" isUsedByDriver="true" peripheral="DEBUG0"/>
5957
<configSetting altId="debug0.tms.p108" configurationId="debug0.tms" isUsedByDriver="true" peripheral="DEBUG0"/>
60-
<configSetting altId="gpt0.gtioca.p415" configurationId="gpt0.gtioca" isUsedByDriver="true" peripheral="GPT0"/>
61-
<configSetting altId="gpt0.gtiocb.p414" configurationId="gpt0.gtiocb" isUsedByDriver="true" peripheral="GPT0"/>
58+
<configSetting altId="gpt0.gtiocb.p106" configurationId="gpt0.gtiocb" isUsedByDriver="true" peripheral="GPT0"/>
59+
<configSetting altId="gpt1.gtioca.p105" configurationId="gpt1.gtioca" peripheral="GPT1"/>
6260
<configSetting altId="iic0.scl.p400" configurationId="iic0.scl" isUsedByDriver="true" peripheral="IIC0"/>
6361
<configSetting altId="iic0.sda.p401" configurationId="iic0.sda" isUsedByDriver="true" peripheral="IIC0"/>
64-
<configSetting altId="irq0.irq00.p105" configurationId="irq0.irq00" isUsedByDriver="true" peripheral="IRQ0"/>
65-
<configSetting altId="p106.output.low" configurationId="p106"/>
62+
<configSetting altId="p104.input" configurationId="p104"/>
6663
<configSetting altId="p403.output.low" configurationId="p403"/>
6764
<configSetting altId="sci0.rxd.p410" configurationId="sci0.rxd" isUsedByDriver="true" peripheral="SCI0"/>
6865
<configSetting altId="sci0.txd.p411" configurationId="sci0.txd" isUsedByDriver="true" peripheral="SCI0"/>
69-
<configSetting altId="sci1.rxd.p502" configurationId="sci1.rxd" isUsedByDriver="true" peripheral="SCI1"/>
70-
<configSetting altId="sci1.txd.p501" configurationId="sci1.txd" isUsedByDriver="true" peripheral="SCI1"/>
71-
<configSetting altId="spi0.miso.p100" configurationId="spi0.miso" isUsedByDriver="true" peripheral="SPI0"/>
72-
<configSetting altId="spi0.mosi.p101" configurationId="spi0.mosi" isUsedByDriver="true" peripheral="SPI0"/>
73-
<configSetting altId="spi0.rspck.p102" configurationId="spi0.rspck" isUsedByDriver="true" peripheral="SPI0"/>
66+
<configSetting altId="sci1.rxd.p502" configurationId="sci1.rxd" peripheral="SCI1"/>
67+
<configSetting altId="sci1.txd.p501" configurationId="sci1.txd" peripheral="SCI1"/>
68+
<configSetting altId="spi0.miso.p100" configurationId="spi0.miso" peripheral="SPI0"/>
69+
<configSetting altId="spi0.mosi.p101" configurationId="spi0.mosi" peripheral="SPI0"/>
70+
<configSetting altId="spi0.rspck.p102" configurationId="spi0.rspck" peripheral="SPI0"/>
7471
<configSetting altId="usbfs0.usbdm.p915" configurationId="usbfs0.usbdm" peripheral="USBFS0"/>
7572
<configSetting altId="usbfs0.usbdp.p914" configurationId="usbfs0.usbdp" peripheral="USBFS0"/>
7673
<configSetting altId="usbfs0.vbus.p407" configurationId="usbfs0.vbus" peripheral="USBFS0"/>

bsp/renesas/ra4m1-ek/.settings/standalone.prefs

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#Wed Sep 24 17:54:16 CST 2025
1+
#Thu Oct 09 14:38:27 CST 2025
22
com.renesas.cdt.ddsc.content/com.renesas.cdt.ddsc.content.defaultlinkerscript=script/fsp.scat
33
com.renesas.cdt.ddsc.contentgen.options/options/suppresswarningspaths=ra/arm
44
com.renesas.cdt.ddsc.packs.componentfiles/Arm\#\#CMSIS\#\#Main\#\#CoreM\#\#\#\#6.1.0+fsp.6.0.0/all=1441545198,ra/arm/CMSIS_6/LICENSE|409404162,ra/arm/CMSIS_6/CMSIS/Core/Include/cmsis_armclang.h|3070162158,ra/arm/CMSIS_6/CMSIS/Core/Include/cmsis_clang.h|2642675438,ra/arm/CMSIS_6/CMSIS/Core/Include/cmsis_compiler.h|432601292,ra/arm/CMSIS_6/CMSIS/Core/Include/cmsis_gcc.h|1219721305,ra/arm/CMSIS_6/CMSIS/Core/Include/cmsis_version.h|1716662092,ra/arm/CMSIS_6/CMSIS/Core/Include/core_ca.h|3033126542,ra/arm/CMSIS_6/CMSIS/Core/Include/core_cm0.h|3716711724,ra/arm/CMSIS_6/CMSIS/Core/Include/core_cm0plus.h|1573341164,ra/arm/CMSIS_6/CMSIS/Core/Include/core_cm1.h|1528066797,ra/arm/CMSIS_6/CMSIS/Core/Include/core_cm23.h|956077447,ra/arm/CMSIS_6/CMSIS/Core/Include/core_cm3.h|3181146757,ra/arm/CMSIS_6/CMSIS/Core/Include/core_cm33.h|3422691989,ra/arm/CMSIS_6/CMSIS/Core/Include/core_cm35p.h|3011809468,ra/arm/CMSIS_6/CMSIS/Core/Include/core_cm4.h|862174236,ra/arm/CMSIS_6/CMSIS/Core/Include/core_cm52.h|3557548549,ra/arm/CMSIS_6/CMSIS/Core/Include/core_cm55.h|2145813412,ra/arm/CMSIS_6/CMSIS/Core/Include/core_cm7.h|215226313,ra/arm/CMSIS_6/CMSIS/Core/Include/core_cm85.h|3759822293,ra/arm/CMSIS_6/CMSIS/Core/Include/core_sc000.h|3285488134,ra/arm/CMSIS_6/CMSIS/Core/Include/core_sc300.h|3342995321,ra/arm/CMSIS_6/CMSIS/Core/Include/core_starmc1.h|440777068,ra/arm/CMSIS_6/CMSIS/Core/Include/tz_context.h|987654843,ra/arm/CMSIS_6/CMSIS/Core/Include/a-profile/cmsis_armclang_a.h|1790528804,ra/arm/CMSIS_6/CMSIS/Core/Include/a-profile/cmsis_clang_a.h|117658130,ra/arm/CMSIS_6/CMSIS/Core/Include/a-profile/cmsis_cp15.h|3644000269,ra/arm/CMSIS_6/CMSIS/Core/Include/a-profile/cmsis_gcc_a.h|947683335,ra/arm/CMSIS_6/CMSIS/Core/Include/a-profile/cmsis_iccarm_a.h|3200474466,ra/arm/CMSIS_6/CMSIS/Core/Include/a-profile/irq_ctrl.h|2703360002,ra/arm/CMSIS_6/CMSIS/Core/Include/m-profile/armv7m_cachel1.h|271089146,ra/arm/CMSIS_6/CMSIS/Core/Include/m-profile/armv7m_mpu.h|3180041419,ra/arm/CMSIS_6/CMSIS/Core/Include/m-profile/armv81m_pac.h|1572899130,ra/arm/CMSIS_6/CMSIS/Core/Include/m-profile/armv8m_mpu.h|1964429271,ra/arm/CMSIS_6/CMSIS/Core/Include/m-profile/armv8m_pmu.h|2095512231,ra/arm/CMSIS_6/CMSIS/Core/Include/m-profile/cmsis_armclang_m.h|2951442685,ra/arm/CMSIS_6/CMSIS/Core/Include/m-profile/cmsis_clang_m.h|1179088122,ra/arm/CMSIS_6/CMSIS/Core/Include/m-profile/cmsis_gcc_m.h|1753083115,ra/arm/CMSIS_6/CMSIS/Core/Include/m-profile/cmsis_iccarm_m.h|163659099,ra/arm/CMSIS_6/CMSIS/Core/Include/m-profile/cmsis_tiarmclang_m.h|718227869,ra/arm/CMSIS_6/CMSIS/Core/Include/r-profile/cmsis_armclang_r.h|681720804,ra/arm/CMSIS_6/CMSIS/Core/Include/r-profile/cmsis_clang_r.h|154254372,ra/arm/CMSIS_6/CMSIS/Core/Include/r-profile/cmsis_gcc_r.h
@@ -19,8 +19,6 @@ com.renesas.cdt.ddsc.packs.componentfiles/Renesas\#\#Common\#\#all\#\#fsp_common
1919
com.renesas.cdt.ddsc.packs.componentfiles/Renesas\#\#Common\#\#all\#\#fsp_common\#\#\#\#6.0.0/libraries=
2020
com.renesas.cdt.ddsc.packs.componentfiles/Renesas\#\#HAL\ Drivers\#\#all\#\#r_adc\#\#\#\#6.0.0/all=638822209,ra/fsp/inc/api/r_adc_api.h|1589066529,ra/fsp/inc/api/r_elc_api.h|429738396,ra/fsp/inc/api/r_transfer_api.h|2090364987,ra/fsp/inc/instances/r_adc.h|2143963949,ra/fsp/src/r_adc/r_adc.c
2121
com.renesas.cdt.ddsc.packs.componentfiles/Renesas\#\#HAL\ Drivers\#\#all\#\#r_adc\#\#\#\#6.0.0/libraries=
22-
com.renesas.cdt.ddsc.packs.componentfiles/Renesas\#\#HAL\ Drivers\#\#all\#\#r_can\#\#\#\#6.0.0/all=932261006,ra/fsp/inc/api/r_can_api.h|3972696928,ra/fsp/inc/instances/r_can.h|2956150906,ra/fsp/src/r_can/r_can.c
23-
com.renesas.cdt.ddsc.packs.componentfiles/Renesas\#\#HAL\ Drivers\#\#all\#\#r_can\#\#\#\#6.0.0/libraries=
2422
com.renesas.cdt.ddsc.packs.componentfiles/Renesas\#\#HAL\ Drivers\#\#all\#\#r_dac\#\#\#\#6.0.0/all=682251274,ra/fsp/inc/api/r_dac_api.h|483637747,ra/fsp/inc/instances/r_dac.h|1677794508,ra/fsp/src/r_dac/r_dac.c
2523
com.renesas.cdt.ddsc.packs.componentfiles/Renesas\#\#HAL\ Drivers\#\#all\#\#r_dac\#\#\#\#6.0.0/libraries=
2624
com.renesas.cdt.ddsc.packs.componentfiles/Renesas\#\#HAL\ Drivers\#\#all\#\#r_flash_lp\#\#\#\#6.0.0/all=1038926405,ra/fsp/inc/api/r_cgc_api.h|4193435994,ra/fsp/inc/api/r_flash_api.h|2334277369,ra/fsp/inc/instances/r_flash_lp.h|3961147715,ra/fsp/src/r_flash_lp/r_flash_lp.c
@@ -37,8 +35,6 @@ com.renesas.cdt.ddsc.packs.componentfiles/Renesas\#\#HAL\ Drivers\#\#all\#\#r_rt
3735
com.renesas.cdt.ddsc.packs.componentfiles/Renesas\#\#HAL\ Drivers\#\#all\#\#r_rtc\#\#\#\#6.0.0/libraries=
3836
com.renesas.cdt.ddsc.packs.componentfiles/Renesas\#\#HAL\ Drivers\#\#all\#\#r_sci_uart\#\#\#\#6.0.0/all=429738396,ra/fsp/inc/api/r_transfer_api.h|2894177435,ra/fsp/inc/api/r_uart_api.h|3371921742,ra/fsp/inc/instances/r_sci_uart.h|4212520575,ra/fsp/src/r_sci_uart/r_sci_uart.c
3937
com.renesas.cdt.ddsc.packs.componentfiles/Renesas\#\#HAL\ Drivers\#\#all\#\#r_sci_uart\#\#\#\#6.0.0/libraries=
40-
com.renesas.cdt.ddsc.packs.componentfiles/Renesas\#\#HAL\ Drivers\#\#all\#\#r_spi\#\#\#\#6.0.0/all=429738396,ra/fsp/inc/api/r_transfer_api.h|3536837577,ra/fsp/inc/api/r_spi_api.h|2476190472,ra/fsp/inc/instances/r_spi.h|3792445563,ra/fsp/src/r_spi/r_spi.c
41-
com.renesas.cdt.ddsc.packs.componentfiles/Renesas\#\#HAL\ Drivers\#\#all\#\#r_spi\#\#\#\#6.0.0/libraries=
4238
com.renesas.cdt.ddsc.packs.componentfiles/Renesas\#\#HAL\ Drivers\#\#all\#\#r_wdt\#\#\#\#6.0.0/all=1376515812,ra/fsp/inc/api/r_wdt_api.h|9612029,ra/fsp/inc/instances/r_wdt.h|616620536,ra/fsp/src/r_wdt/r_wdt.c
4339
com.renesas.cdt.ddsc.packs.componentfiles/Renesas\#\#HAL\ Drivers\#\#all\#\#r_wdt\#\#\#\#6.0.0/libraries=
4440
com.renesas.cdt.ddsc.project.standalone.projectgenerationoptions/isCpp=false

bsp/renesas/ra4m1-ek/README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,6 @@
4141
| SPI | 支持 | |
4242
| FLASH | 支持 | |
4343
| PWM | 支持 | |
44-
| CAN | 支持 | |
4544

4645
## 快速上手
4746

0 commit comments

Comments
 (0)