ARM Cortex-M33 内核,其频率高达 200MHz,
主控芯片型号为:R7FA6E2BB3CNE
详见:【立创·地奇星RA6E2】开发板 文档中心。
https://wiki.lckfb.com/zh-hans/a6e2/
资料下载:ramcu.cn
gitee: https://gitee.com/ramcu
瑞萨官网介绍
https://www.renesas.cn/zh/products/ra6e2
购买入口:
https://oshwhub.com/li-chuang-kai-fa-ban/di-qi-xing-ra6e20-kai-fa-ban
RA生态工作室:





https://www.renesas.cn/zh/software-tool/e2studio-information-ra-family
https://www.renesas.cn/zh/software-tool/renesas-flash-programmer-programming-gui#overview
USB转串口Windows驱动
https://www.wch.cn/downloads/CH341SER_ZIP.html


#include "Apply\\app.h"
void Run(void)
{
while(1)
{
// 低电平,灯不亮
R_IOPORT_PinWrite(&g_ioport_ctrl, BSP_IO_PORT_04_PIN_02, BSP_IO_LEVEL_LOW);
R_BSP_SoftwareDelay (1, BSP_DELAY_UNITS_SECONDS);
// 高电平,灯亮
R_IOPORT_PinWrite(&g_ioport_ctrl, BSP_IO_PORT_04_PIN_02, BSP_IO_LEVEL_HIGH);
R_BSP_SoftwareDelay (1, BSP_DELAY_UNITS_SECONDS);
}
}
402引脚驱动led闪烁。
更多回帖