瑞米派(RemiPi)实时系统与EtherCAT移植

strongerHuang 2024-04-20 08:20

前不久给大家分享了瑞米派(Remi Pi)移植FreeRTOS、LVGL教程,今天给大家继续分享瑞米派(Remi Pi)实时系统与EtherCAT移植.

概述

Remi Pi采用瑞萨RZ/G2L作为核心处理器,该处理器搭载双核Cortex-A55@1.2GHz+Cortex-M33@200MHz处理器,其内部集成高性能3D加速引擎Mail-G31 GPU(500MHz)和视频处理单元(支持H.264硬件编解码),16位的DDR4-1600 / DDR3L-1333内存控制器、千兆以太网控制器、USB、CAN、SD卡、MIPI-CSI等外设接口,在工业、医疗、电力等行业都得到广泛的应用。

在开发阶段,建议配合核心板配套的评估套件 MYD-YG2L23-8E1D-120-C-REMI来加速开发。评估套件的详细信息请访问:

https://www.myir.cn/shows/23/14.html


实时内核设计

  • 实时补丁我们选择RT-Preempt来实现

2.1. 移植补丁

RT补丁可以从RT官网下载5.10.83对应的补丁

https://cdn.kernel.org/pub/linux/kernel/projects/rt/5.10/older/

  • 把补丁放到自己的工作目录下,然后解压,如图2-1:

hjx@myir-server:~/renesas/04_Sources$ tar -xvf patches-5.10.83-rt58.tar.gz

图2-1. 内核源码

  • 进入到内核源码打补丁,如图2-2:

hjx@myir-server:~/renesas/04_Sources/myir-renesas-linux$ for p in `ls -1 ../patches/*.patch`; do patch -p1 < $p; done

图2-2. 打实时补丁

  • 编译内核源码

hjx@myir-server:~/renesas/04_Sources/myir-renesas-linux$ /opt/remi-sdk/environment-setup-aarch64-poky-linuxhjx@myir-server:~/renesas/04_Sources/myir-renesas-linux$ make ARCH=arm64 mys_g2lx_defconfighjx@myir-server:~/renesas/04_Sources/myir-renesas-linux$ make ARCH=arm64 Image dtbs   -j16

更新编译得到的Image即可

2.2. 其他影响性能的配置

禁用CPU Freq自动调频,并设置主频为最高频率:

cd /sys/devices/system/cpu/cpufreq/policy0echo userspace > scaling_governorcat scaling_max_freq  > scaling_setspeed
(如不禁用cpufreq调频功能,系统会因动态调频产生极大的偶然延迟)


实时性测试

  • 空载测试

cyclictest -p 99 -t 1 -d 100 -i 1000 -D 24h -m -a -n

图3-1.空载测试

  • CPU&内存满载

cyclictest -p 99 -t 1 -d 100 -i 1000 -D 24h -m -a -n
  • 增加压力

stress-ng --cpu 4 --cpu-method all --io 4 --vm 50 -d 5 --fork 4 --timeout 36000s

图3-2.满载测试

数据对比:

板卡

MYD-YG2LX-REMI

测试时间

120min

指令

cyclictest &stress-ng

空载

平均 8us

最大 24us

满载

平均 13us

最大 136us

表3-1.数据信息


EtherCAT IGH移植

4.1. 下载EtherCAT IGH源码

到官网下载1.5版本的EtherCAT源码,如图4-1

https://gitlab.com/etherlab.org/ethercat/-/tree/stable-1.5?ref_type=heads

4-1. 下载源码

  • 解压EtherCAT源码

hjx@myir-server:~/renesas/04_Sources$ tar -xvf ethercat-stable-1.5.tar.bz2hjx@myir-server:~/renesas/04_Sources$ cd ethercat-stable-1.5


  • 加载sdk环境变量

hjx@myir-server:~/renesas/04_Sources/myir-renesas-linux$ source /opt/remi-sdk/environment-setup-aarch64-poky-linux

4.2. 编译EtherCAT源码

  • 生成configure文件

hjx@myir-server:~/renesas/04_Sources/ethercat-stable-1.5$ ./bootstrap+ touch ChangeLog+ mkdir -p m4+ autoreconf -ilibtoolize: putting auxiliary files in AC_CONFIG_AUX_DIR, 'autoconf'.libtoolize: copying file 'autoconf/ltmain.sh'libtoolize: putting macros in AC_CONFIG_MACRO_DIRS, 'm4'.libtoolize: copying file 'm4/libtool.m4'libtoolize: copying file 'm4/ltoptions.m4'libtoolize: copying file 'm4/ltsugar.m4'libtoolize: copying file 'm4/ltversion.m4'libtoolize: copying file 'm4/lt~obsolete.m4'configure.ac:56: installing 'autoconf/ar-lib'configure.ac:55: installing 'autoconf/compile'configure.ac:58: installing 'autoconf/config.guess'configure.ac:58: installing 'autoconf/config.sub'configure.ac:42: installing 'autoconf/install-sh'configure.ac:42: installing 'autoconf/missing'examples/dc_user/Makefile.am: installing 'autoconf/depcomp'


  • configure设置

hjx@myir-server:~/renesas/04_Sources/ethercat-stable-1.5$ mkdir  outputhjx@myir-server:~/renesas/04_Sources/ethercat-stable-1.5$ ./configure --prefix=/home/hjx/renesas/04_Sources/ethercat-stable-1.5/output --with-linux-dir=/home/hjx/renesas/04_Sources/myir-renesas-linux  --enable-8139too=no  --enable-generic=yes   --host=aarch64-poky-linux

--prefix=/home/hjx/renesas/04_Sources/output 指定输出目录、--with-linux-dir=/home/hjx/renesas/04_Sources/myir-renesas-linux指定内核源码目录)

configure: loading site script /opt/remi-sdk/site-config-aarch64-poky-linuxchecking for a BSD-compatible install... /usr/bin/install -cchecking whether build environment is sane... yeschecking for aarch64-poky-linux-strip... aarch64-poky-linux-stripchecking for a thread-safe mkdir -p... /bin/mkdir -pchecking for gawk... gawkchecking whether make sets $(MAKE)... yeschecking whether make supports nested variables... yeschecking whether make supports nested variables... (cached) yeschecking for a sed that does not truncate output... (cached) sedchecking for aarch64-poky-linux-pkg-config... nochecking for pkg-config... /opt/remi-sdk/sysroots/x86_64-pokysdk-linux/usr/bin/pkg-configchecking pkg-config is at least version 0.9.0... yeschecking whether make supports the include directive... yes (GNU style).........................config.status: creating examples/xenomai/Makefileconfig.status: creating examples/xenomai_posix/Makefileconfig.status: creating include/Makefileconfig.status: creating lib/Makefileconfig.status: creating lib/libethercat.pcconfig.status: creating master/Kbuildconfig.status: creating master/Makefileconfig.status: creating script/Makefileconfig.status: creating script/init.d/Makefileconfig.status: creating script/init.d/ethercatconfig.status: creating script/sysconfig/Makefileconfig.status: creating tool/Makefileconfig.status: creating tty/Kbuildconfig.status: creating tty/Makefileconfig.status: creating config.hconfig.status: executing depfiles commandsconfig.status: executing libtool commands


  • 编译源码

hjx@myir-server:~/renesas/04_Sources/ethercat-stable-1.5$   makemake all-recursivemake[1]: Entering directory '/home/hjx/renesas/04_Sources/ethercat-stable-1.5'Making all in includemake[2]: Entering directory '/home/hjx/renesas/04_Sources/ethercat-stable-1.5/include'make[2]: Nothing to be done for 'all'.make[2]: Leaving directory '/home/hjx/renesas/04_Sources/ethercat-stable-1.5/include'Making all in scriptmake[2]: Entering directory '/home/hjx/renesas/04_Sources/ethercat-stable-1.5/script'Making all in init.dmake[3]: Entering directory '/home/hjx/renesas/04_Sources/ethercat-stable-1.5/script/init.d'make[3]: Nothing to be done for 'all'.make[3]: Leaving directory '/home/hjx/renesas/04_Sources/ethercat-stable-1.5/script/init.d'Making all in sysconfigmake[3]: Entering directory '/home/hjx/renesas/04_Sources/ethercat-stable-1.5/script/sysconfig'make[3]: Nothing to be done for 'all'.make[3]: Leaving directory '/home/hjx/renesas/04_Sources/ethercat-stable-1.5/script/sysconfig'............make[3]: Leaving directory '/home/hjx/renesas/04_Sources/ethercat-stable-1.5/examples/user'make[3]: Entering directory '/home/hjx/renesas/04_Sources/ethercat-stable-1.5/examples'make[3]: Nothing to be done for 'all-am'.make[3]: Leaving directory '/home/hjx/renesas/04_Sources/ethercat-stable-1.5/examples'make[2]: Leaving directory '/home/hjx/renesas/04_Sources/ethercat-stable-1.5/examples'make[2]: Entering directory '/home/hjx/renesas/04_Sources/ethercat-stable-1.5'make[2]: Leaving directory '/home/hjx/renesas/04_Sources/ethercat-stable-1.5'make[1]: Leaving directory '/home/hjx/renesas/04_Sources/ethercat-stable-1.5'


  • 编译modules

hjx@myir-server:~/renesas/04_Sources/ethercat-stable-1.5$  make  modulesmake[1]: Entering directory '/home/hjx/renesas/04_Sources/myir-renesas-linux'CC [M]  /home/hjx/renesas/04_Sources/ethercat-stable-1.5/examples/mini/mini.oLD [M]  /home/hjx/renesas/04_Sources/ethercat-stable-1.5/examples/mini/ec_mini.oCC [M]  /home/hjx/renesas/04_Sources/ethercat-stable-1.5/master/cdev.oCC [M]  /home/hjx/renesas/04_Sources/ethercat-stable-1.5/master/coe_emerg_ring.oCC [M]  /home/hjx/renesas/04_Sources/ethercat-stable-1.5/master/datagram.o.......................make[1]: Leaving directory '/home/hjx/renesas/04_Sources/myir-renesas-linux'

编译通过会对应生成ethercat-stable-1.5/devices/ec_generic.koethercat-stable-1.5/master/ec_master.ko

4.3. 安装EtherCAT

安装成功后前面指定/home/hjx/renesas/04_Sources/ethercat-stable-1.5/output目录下有编译生成的各种用户空间的文件。

hjx@myir-server:~/renesas/04_Sources/ethercat-stable-1.5$ make installMaking install in includemake[1]: Entering directory '/home/hjx/renesas/04_Sources/ethercat-stable-1.5/include'make[2]: Entering directory '/home/hjx/renesas/04_Sources/ethercat-stable-1.5/include'make[2]: Nothing to be done for 'install-exec-am'./bin/mkdir -p '/home/hjx/renesas/04_Sources/ethercat-stable-1.5/output/include'/usr/bin/install -c -m 644 ecrt.h ectty.h '/home/hjx/renesas/04_Sources/ethercat-stable-1.5/output/include'make[2]: Leaving directory '/home/hjx/renesas/04_Sources/ethercat-stable-1.5/include'make[1]: Leaving directory '/home/hjx/renesas/04_Sources/ethercat-stable-1.5/include'Making install in scriptmake[1]: Entering directory '/home/hjx/renesas/04_Sources/ethercat-stable-1.5/script'Making install in init.dmake[2]: Entering directory '/home/hjx/renesas/04_Sources/ethercat-stable-1.5/script/init.d'make[3]: Entering directory '/home/hjx/renesas/04_Sources/ethercat-stable-1.5/script/init.d'make[3]: Nothing to be done for 'install-exec-am'......................make[3]: Leaving directory '/home/hjx/renesas/04_Sources/ethercat-stable-1.5/examples'make[2]: Leaving directory '/home/hjx/renesas/04_Sources/ethercat-stable-1.5/examples'make[1]: Leaving directory '/home/hjx/renesas/04_Sources/ethercat-stable-1.5/examples'make[1]: Entering directory '/home/hjx/renesas/04_Sources/ethercat-stable-1.5'make[2]: Entering directory '/home/hjx/renesas/04_Sources/ethercat-stable-1.5'make[2]: Nothing to be done for 'install-exec-am'.make[2]: Nothing to be done for 'install-data-am'.make[2]: Leaving directory '/home/hjx/renesas/04_Sources/ethercat-stable-1.5'make[1]: Leaving directory '/home/hjx/renesas/04_Sources/ethercat-stable-1.5'


4.4. 将EtharCAT相关文件打包

/home/hjx/renesas/04_Sources/ethercat-stable-1.5/output目录下创建modules文件夹,并复制ec_generic.koec_master.komodules

hjx@myir-server:~/renesas/04_Sources/ethercat-stable-1.5$  mkdir -p output/moduleshjx@myir-server:~/renesas/04_Sources/ethercat-stable-1.5$  cp devices/ec_generic.ko  output/modules/hjx@myir-server:~/renesas/04_Sources/ethercat-stable-1.5$  cp master/ec_master.ko   output/modules/hjx@myir-server:~/renesas/04_Sources/ethercat-stable-1.5$ ls outputbin etc  include  lib  modules  sbin share

  • 压缩output输出文件

hjx@myir-server:~/renesas/04_Sources/ethercat-stable-1.5$ tar -jcvf output.tar.bz2 output/  output/output/etc/output/etc/ethercat.confoutput/etc/init.d/output/etc/init.d/ethercatoutput/etc/sysconfig/output/etc/sysconfig/ethercatoutput/sbin/output/sbin/ethercatctloutput/include/output/include/ectty.houtput/include/ecrt.houtput/modules/output/modules/ec_master.kooutput/modules/ec_generic.kooutput/share/output/share/bash-completion/output/share/bash-completion/completions/output/share/bash-completion/completions/ethercatoutput/bin/output/bin/ethercatoutput/lib/output/lib/libethercat.sooutput/lib/pkgconfig/output/lib/pkgconfig/libethercat.pcoutput/lib/libethercat.so.1.2.0output/lib/cmake/output/lib/cmake/ethercat/output/lib/cmake/ethercat/ethercat-config.cmakeoutput/lib/libethercat.aoutput/lib/libethercat.laoutput/lib/libethercat.so.1hjx@myir-server:~/renesas/04_Sources/ethercat-stable-1.5$ ls output.tar.bz2output.tar.bz2

至此IGH交叉编译完成,下面是在对应arm目标板上的操作

4.5. 移植EtherCAT相关库到开发板

将上面制作好的output.tar.bz2传到开发板上,然后解压出来。

root@myir-remi-1g:~# tar -xvf output.tar.bz2output/output/etc/output/etc/ethercat.confoutput/etc/init.d/output/etc/init.d/ethercatoutput/etc/sysconfig/output/etc/sysconfig/ethercatoutput/sbin/output/sbin/ethercatctloutput/include/output/include/ectty.houtput/include/ecrt.houtput/modules/output/modules/ec_master.kooutput/modules/ec_generic.kooutput/share/output/share/bash-completion/output/share/bash-completion/completions/output/share/bash-completion/completions/ethercatoutput/bin/output/bin/ethercatoutput/lib/output/lib/libethercat.sooutput/lib/pkgconfig/output/lib/pkgconfig/libethercat.pcoutput/lib/libethercat.so.1.2.0output/lib/cmake/output/lib/cmake/ethercat/output/lib/cmake/ethercat/ethercat-config.cmakeoutput/lib/libethercat.aoutput/lib/libethercat.laoutput/lib/libethercat.so.1

output目录下各文件目录的内容复制到板子根文件系统根目录下相应目录下,例如:cp bin/ethercat /bin/(include目录不用复制)

root@myir-remi-1g:~/output# lsbin etc  include  lib  modules  sbin  shareroot@myir-remi-1g:~/output# cp bin/ethercat /bin/root@myir-remi-1g:~/output# cp etc/ethercat.conf /etc/root@myir-remi-1g:~/output# cp etc/init.d/*  /etc/init.droot@myir-remi-1g:~/output# cp -r etc/sysconfig/ /etc/root@myir-remi-1g:~/output# cp  lib/libethercat.* /lib64/root@myir-remi-1g:~/output# cp -r lib/pkgconfig /lib64/root@myir-remi-1g:~/output# cp modules/ec_master.ko /lib/modules/5.10.83-cip1-yocto-standard/root@myir-remi-1g:~/output# cp sbin/ethercatctl  /sbin/


4.6. 启动EtherCAT

4.6.1. 配置主站的MAC地址

root@myir-remi-1g:~# depmodroot@myir-remi-1g:~# modprobe ec_master main_devices=1E:ED:19:27:1A:B3

4.6.2. 启动EtherCAT

root@myir-remi-1g:~# /etc/init.d/ethercat startStarting EtherCAT master 1.5.2 done

至此所有步骤完成。


米尔瑞米派 Remi Pi

瑞萨第一款MPU生态板卡,兼容树莓派扩展模块

采用瑞萨RZ/G2L工业级处理器,便于企业客户产品开发;

Remi Pi兼容树莓派所有配件,方便产品原型搭建和创新应用;

更多的工业接口,兼顾开发、学习和实际应用;

软件系统丰富,支持Debian/Ubuntu/Linux等。

如需了解板卡,您可以通过访问以下米尔电子官网链接:

https://www.myir.cn/shows/23/14.html

更多关于Remi Pi技术问题讨论请登录米尔官方论坛:
https://bbs.myir-tech.com/forum-66-1.html

购买链接:
https://detail.tmall.com/item.htm?id=763219500729&skuId=5425000934998

(提示:公号不支持外链接,请复制链接到浏览器打开)


------------ END ------------

MCU创意项目:基于NBIOT的云端语音报警系统


用Keil开发Cortext-M85单片机是一种什么体验?


瑞米派(Remi Pi)移植FreeRTOS、LVGL教程


strongerHuang 作者黄工,高级嵌入式软件工程师,分享嵌入式软硬件、物联网、单片机、开发工具、电子等内容。
评论
  • 最近几年,新能源汽车愈发受到消费者的青睐,其销量也是一路走高。据中汽协公布的数据显示,2024年10月,新能源汽车产销分别完成146.3万辆和143万辆,同比分别增长48%和49.6%。而结合各家新能源车企所公布的销量数据来看,比亚迪再度夺得了销冠宝座,其10月新能源汽车销量达到了502657辆,同比增长66.53%。众所周知,比亚迪是新能源汽车领域的重要参与者,其一举一动向来为外界所关注。日前,比亚迪汽车旗下品牌方程豹汽车推出了新车方程豹豹8,该款车型一上市就迅速吸引了消费者的目光,成为SUV
    刘旷 2024-12-02 09:32 59浏览
  • 艾迈斯欧司朗全新“样片申请”小程序,逾160种LED、传感器、多芯片组合等产品样片一触即达。轻松3步完成申请,境内免费包邮到家!本期热荐性能显著提升的OSLON® Optimal,GF CSSRML.24ams OSRAM 基于最新芯片技术推出全新LED产品OSLON® Optimal系列,实现了显著的性能升级。该系列提供五种不同颜色的光源选项,包括Hyper Red(660 nm,PDN)、Red(640 nm)、Deep Blue(450 nm,PDN)、Far Red(730 nm)及Ho
    艾迈斯欧司朗 2024-11-29 16:55 155浏览
  • 戴上XR眼镜去“追龙”是种什么体验?2024年11月30日,由上海自然博物馆(上海科技馆分馆)与三湘印象联合出品、三湘印象旗下观印象艺术发展有限公司(下简称“观印象”)承制的《又见恐龙》XR嘉年华在上海自然博物馆重磅开幕。该体验项目将于12月1日正式对公众开放,持续至2025年3月30日。双向奔赴,恐龙IP撞上元宇宙不久前,上海市经济和信息化委员会等部门联合印发了《上海市超高清视听产业发展行动方案》,特别提到“支持博物馆、主题乐园等场所推动超高清视听技术应用,丰富线下文旅消费体验”。作为上海自然
    电子与消费 2024-11-30 22:03 70浏览
  • RDDI-DAP错误通常与调试接口相关,特别是在使用CMSIS-DAP协议进行嵌入式系统开发时。以下是一些可能的原因和解决方法: 1. 硬件连接问题:     检查调试器(如ST-Link)与目标板之间的连接是否牢固。     确保所有必要的引脚都已正确连接,没有松动或短路。 2. 电源问题:     确保目标板和调试器都有足够的电源供应。     检查电源电压是否符合目标板的规格要求。 3. 固件问题: &n
    丙丁先生 2024-12-01 17:37 57浏览
  • 国产光耦合器正以其创新性和多样性引领行业发展。凭借强大的研发能力,国内制造商推出了适应汽车、电信等领域独特需求的专业化光耦合器,为各行业的技术进步提供了重要支持。本文将重点探讨国产光耦合器的技术创新与产品多样性,以及它们在推动产业升级中的重要作用。国产光耦合器创新的作用满足现代需求的创新模式新设计正在满足不断变化的市场需求。例如,高速光耦合器满足了电信和数据处理系统中快速信号传输的需求。同时,栅极驱动光耦合器支持电动汽车(EV)和工业电机驱动器等大功率应用中的精确高效控制。先进材料和设计将碳化硅
    克里雅半导体科技 2024-11-29 16:18 157浏览
  • 《高速PCB设计经验规则应用实践》+PCB绘制学习与验证读书首先看目录,我感兴趣的是这一节;作者在书中列举了一条经典规则,然后进行详细分析,通过公式推导图表列举说明了传统的这一规则是受到电容加工特点影响的,在使用了MLCC陶瓷电容后这一条规则已经不再实用了。图书还列举了高速PCB设计需要的专业工具和仿真软件,当然由于篇幅所限,只是介绍了一点点设计步骤;我最感兴趣的部分还是元件布局的经验规则,在这里列举如下:在这里,演示一下,我根据书本知识进行电机驱动的布局:这也算知行合一吧。对于布局书中有一句:
    wuyu2009 2024-11-30 20:30 86浏览
  • 光伏逆变器是一种高效的能量转换设备,它能够将光伏太阳能板(PV)产生的不稳定的直流电压转换成与市电频率同步的交流电。这种转换后的电能不仅可以回馈至商用输电网络,还能供独立电网系统使用。光伏逆变器在商业光伏储能电站和家庭独立储能系统等应用领域中得到了广泛的应用。光耦合器,以其高速信号传输、出色的共模抑制比以及单向信号传输和光电隔离的特性,在光伏逆变器中扮演着至关重要的角色。它确保了系统的安全隔离、干扰的有效隔离以及通信信号的精准传输。光耦合器的使用不仅提高了系统的稳定性和安全性,而且由于其低功耗的
    晶台光耦 2024-12-02 10:40 54浏览
  • 光耦合器作为关键技术组件,在确保安全性、可靠性和效率方面发挥着不可或缺的作用。无论是混合动力和电动汽车(HEV),还是军事和航空航天系统,它们都以卓越的性能支持高要求的应用环境,成为现代复杂系统中的隐形功臣。在迈向更环保技术和先进系统的过程中,光耦合器的重要性愈加凸显。1.混合动力和电动汽车中的光耦合器电池管理:保护动力源在电动汽车中,电池管理系统(BMS)是最佳充电、放电和性能监控背后的大脑。光耦合器在这里充当守门人,将高压电池组与敏感的低压电路隔离开来。这不仅可以防止潜在的损坏,还可以提高乘
    腾恩科技-彭工 2024-11-29 16:12 117浏览
  • By Toradex胡珊逢简介嵌入式领域的部分应用对安全、可靠、实时性有切实的需求,在诸多实现该需求的方案中,QNX 是经行业验证的选择。在 QNX SDP 8.0 上 BlackBerry 推出了 QNX Everywhere 项目,个人用户可以出于非商业目的免费使用 QNX 操作系统。得益于 Toradex 和 QNX 的良好合作伙伴关系,用户能够在 Apalis iMX8QM 和 Verdin iMX8MP 模块上轻松测试和评估 QNX 8 系统。下面将基于 Apalis iMX8QM 介
    hai.qin_651820742 2024-11-29 15:29 150浏览
  • 国产光耦合器因其在电子系统中的重要作用而受到认可,可提供可靠的电气隔离并保护敏感电路免受高压干扰。然而,随着行业向5G和高频数据传输等高速应用迈进,对其性能和寿命的担忧已成为焦点。本文深入探讨了国产光耦合器在高频环境中面临的挑战,并探索了克服这些限制的创新方法。高频性能:一个持续关注的问题信号传输中的挑战国产光耦合器传统上利用LED和光电晶体管进行信号隔离。虽然这些组件对于标准应用有效,但在高频下面临挑战。随着工作频率的增加,信号延迟和数据保真度降低很常见,限制了它们在电信和高速计算等领域的有效
    腾恩科技-彭工 2024-11-29 16:11 106浏览
  • 学习学习笔记&记录学习学习笔记&记录学习学习笔记&记录学习学习笔记&记录学习学习笔记&记录学习笔记&记录学习习笔记&记学习学习笔记&记录学习学习笔记&记录学习习笔记&记录学习学习笔记&记录学习学习笔记记录学习学习笔记&记录学习学习笔记&记录学习学习笔记&记录学习学习笔记&记录学习学习笔记&记录学习习笔记&记录学习学习笔记&记录学习学习笔记&记录学习学习笔记&记录学习学习笔记&记录学习学习笔记&记录学习学习笔记&记录学习学习笔记&学习学习笔记&记录学习学习笔记&记录学习学习笔记&记录学习学习笔记&
    youyeye 2024-11-30 14:30 63浏览
  • 在电子技术快速发展的今天,KLV15002光耦固态继电器以高性能和强可靠性完美解决行业需求。该光继电器旨在提供无与伦比的电气隔离和无缝切换,是现代系统的终极选择。无论是在电信、工业自动化还是测试环境中,KLV15002光耦合器固态继电器都完美融合了效率和耐用性,可满足当今苛刻的应用需求。为什么选择KLV15002光耦合器固态继电器?不妥协的电压隔离从本质上讲,KLV15002优先考虑安全性。输入到输出隔离达到3750Vrms(后缀为V的型号为5000Vrms),确保即使在高压情况下,敏感的低功耗
    克里雅半导体科技 2024-11-29 16:15 119浏览
我要评论
0
点击右上角,分享到朋友圈 我知道啦
请使用浏览器分享功能 我知道啦