0
  • 聊天消息
  • 系統(tǒng)消息
  • 評(píng)論與回復(fù)
登錄后你可以
  • 下載海量資料
  • 學(xué)習(xí)在線課程
  • 觀看技術(shù)視頻
  • 寫(xiě)文章/發(fā)帖/加入社區(qū)
會(huì)員中心
創(chuàng)作中心

完善資料讓更多小伙伴認(rèn)識(shí)你,還能領(lǐng)取20積分哦,立即完善>

3天內(nèi)不再提示

米爾Remi Pi 實(shí)時(shí)系統(tǒng)與EtherCAT移植

米爾電子 ? 2024-04-18 08:01 ? 次閱讀

Remi Pi采用瑞薩RZ/G2L作為核心處理器,該處理器搭載雙核Cortex-A55@1.2GHz+Cortex-M33@200MHz處理器,其內(nèi)部集成高性能3D加速引擎Mail-G31 GPU(500MHz)和視頻處理單元(支持H.264硬件編解碼),16位的DDR4-1600 / DDR3L-1333內(nèi)存控制器、千兆以太網(wǎng)控制器、USB、CAN、SD卡、MIPI-CSI等外設(shè)接口,在工業(yè)、醫(yī)療、電力等行業(yè)都得到廣泛的應(yīng)用。

在開(kāi)發(fā)階段,建議配合核心板配套的評(píng)估套件 MYD-YG2L23-8E1D-120-C-REMI來(lái)加速開(kāi)發(fā)。

實(shí)時(shí)內(nèi)核設(shè)計(jì)

實(shí)時(shí)補(bǔ)丁我們選擇RT-Preempt來(lái)實(shí)現(xiàn)

2.1.移植補(bǔ)丁

RT補(bǔ)丁可以從RT官網(wǎng)下載5.10.83對(duì)應(yīng)的補(bǔ)丁

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

d40d5f7e-fd16-11ee-9118-92fbcf53809c.png

把補(bǔ)丁放到自己的工作目錄下,然后解壓,如圖2-1:

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

d415fdd2-fd16-11ee-9118-92fbcf53809c.png圖2-1. 內(nèi)核源碼

進(jìn)入到內(nèi)核源碼打補(bǔ)丁,如圖2-2:

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

d41cc518-fd16-11ee-9118-92fbcf53809c.png圖2-2. 打?qū)崟r(shí)補(bǔ)丁

編譯內(nèi)核源碼

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.其他影響性能的配置

禁用CPUFreq自動(dòng)調(diào)頻,并設(shè)置主頻為最高頻率:

cd /sys/devices/system/cpu/cpufreq/policy0echo userspace > scaling_governorcat scaling_max_freq > scaling_setspeed

(如不禁用cpufreq調(diào)頻功能,系統(tǒng)會(huì)因動(dòng)態(tài)調(diào)頻產(chǎn)生極大的偶然延遲)

實(shí)時(shí)性測(cè)試

空載測(cè)試

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

d42e30be-fd16-11ee-9118-92fbcf53809c.png圖3-1.空載測(cè)試

CPU&內(nèi)存滿(mǎn)載

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

d435a65a-fd16-11ee-9118-92fbcf53809c.png圖3-2.滿(mǎn)載測(cè)試

數(shù)據(jù)對(duì)比:

板卡

MYD-YG2LX-REMI

測(cè)試時(shí)間

120min

指令

cyclictest &stress-ng

空載

平均 8us

最大 24us

滿(mǎn)載

平均 13us

最大 136us

表3-1.數(shù)據(jù)信息


EtherCAT IGH移植個(gè)標(biāo)題

4.1.下載EtherCAT IGH源碼

到官網(wǎng)下載1.5版本的EtherCAT源碼,如圖4-1:

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

d440a0be-fd16-11ee-9118-92fbcf53809c.png圖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環(huán)境變量

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 installing 'autoconf/ar-lib'configure.ac installing 'autoconf/compile'configure.ac installing 'autoconf/config.guess'configure.ac installing 'autoconf/config.sub'configure.ac installing 'autoconf/install-sh'configure.ac installing 'autoconf/missing'examples/dc_user/Makefile.am: installing 'autoconf/depcomp'

configure設(shè)置

hjx@myir-server:~/renesas/04_Sources/ethercat-stable-1.5$mkdiroutputhjx@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指定內(nèi)核源碼目錄)

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'

編譯通過(guò)會(huì)對(duì)應(yīng)生成ethercat-stable-1.5/devices/ec_generic.ko和ethercat-stable-1.5/master/ec_master.ko

4.3.安裝EtherCAT

安裝成功后前面指定/home/hjx/renesas/04_Sources/ethercat-stable-1.5/output目錄下有編譯生成的各種用戶(hù)空間的文件。

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相關(guān)文件打包

在/home/hjx/renesas/04_Sources/ethercat-stable-1.5/output目錄下創(chuàng)建modules文件夾,并復(fù)制ec_generic.ko和ec_master.ko到modules下

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交叉編譯完成,下面是在對(duì)應(yīng)arm目標(biāo)板上的操作。

4.5.移植EtherCAT相關(guān)庫(kù)到開(kāi)發(fā)板

將上面制作好的output.tar.bz2傳到開(kāi)發(fā)板上,然后解壓出來(lái)。

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目錄下各文件目錄的內(nèi)容復(fù)制到板子根文件系統(tǒng)根目錄下相應(yīng)目錄下,例如:cp bin/ethercat /bin/(include目錄不用復(fù)制)

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.啟動(dòng)EtherCAT

4.6.1.配置主站的MAC地址

root@myir-remi-1g:~# depmodroot@myir-remi-1g:~# modprobe ec_master main_devices=1E191A:B3

4.6.2.啟動(dòng)EtherCAT

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

至此所有步驟完成。


米爾瑞米派 Remi Pi

瑞薩第一款MPU生態(tài)板卡,兼容樹(shù)莓派擴(kuò)展模塊

采用瑞薩RZ/G2L工業(yè)級(jí)處理器,便于企業(yè)客戶(hù)產(chǎn)品開(kāi)發(fā);

Remi Pi兼容樹(shù)莓派所有配件,方便產(chǎn)品原型搭建和創(chuàng)新應(yīng)用;

更多的工業(yè)接口,兼顧開(kāi)發(fā)、學(xué)習(xí)和實(shí)際應(yīng)用;

軟件系統(tǒng)豐富,支持Debian/Ubuntu/Linux等。

d45263e4-fd16-11ee-9118-92fbcf53809c.png

聲明:本文內(nèi)容及配圖由入駐作者撰寫(xiě)或者入駐合作網(wǎng)站授權(quán)轉(zhuǎn)載。文章觀點(diǎn)僅代表作者本人,不代表電子發(fā)燒友網(wǎng)立場(chǎng)。文章及其配圖僅供工程師學(xué)習(xí)之用,如有內(nèi)容侵權(quán)或者其他違規(guī)問(wèn)題,請(qǐng)聯(lián)系本站處理。 舉報(bào)投訴
  • 處理器
    +關(guān)注

    關(guān)注

    68

    文章

    18927

    瀏覽量

    227237
  • 編解碼
    +關(guān)注

    關(guān)注

    1

    文章

    140

    瀏覽量

    19524
  • ethercat
    +關(guān)注

    關(guān)注

    18

    文章

    610

    瀏覽量

    38337
  • 米爾電子
    +關(guān)注

    關(guān)注

    0

    文章

    89

    瀏覽量

    414
收藏 人收藏

    評(píng)論

    相關(guān)推薦

    開(kāi)放式高實(shí)時(shí)高性能PLC控制器解決方案-基于米爾電子STM32MP135

    實(shí)時(shí)高性能需求尤其突出。面對(duì)以上挑戰(zhàn),合作伙伴翌控科技基于米爾STM32MP135開(kāi)發(fā)板發(fā)布開(kāi)放式高實(shí)時(shí)高性能PLC控制器解決方案,將高精準(zhǔn)數(shù)據(jù)采集、預(yù)處理、存儲(chǔ)、通信與高實(shí)時(shí)控制融為
    發(fā)表于 03-07 20:06

    米爾-瑞米派兼容樹(shù)莓派擴(kuò)展模塊-試用體驗(yàn)】基于ROS系統(tǒng)的三麥輪小車(chē)自主導(dǎo)航

    1、前言 非常感謝myir和電子發(fā)燒友舉辦的米爾Remi Pi瑞米派開(kāi)發(fā)板的試用活動(dòng)。作為一名研發(fā)工程師,我一直對(duì)新技術(shù)和產(chǎn)品充滿(mǎn)了好奇心和熱情。能夠參與這樣的活動(dòng),不僅能夠拓寬我的技術(shù)視野,也能夠
    發(fā)表于 04-16 22:51

    米爾-瑞米派兼容樹(shù)莓派擴(kuò)展模塊-試用體驗(yàn)】初始開(kāi)發(fā)板_米爾-瑞米派兼容樹(shù)莓派擴(kuò)展模塊

    收到米爾-瑞米派兼容樹(shù)莓派擴(kuò)展模塊幾天了,今天抽時(shí)間給大家介紹一下這塊生態(tài)板,讓大家有對(duì)這塊米爾-瑞米派兼容樹(shù)莓派擴(kuò)展模塊有一些初步的認(rèn)識(shí),先來(lái)簡(jiǎn)單介紹這塊生態(tài)板。 瑞米派(Remi Pi
    發(fā)表于 04-29 11:42

    米爾-瑞米派兼容樹(shù)莓派擴(kuò)展模塊-試用體驗(yàn)】米爾瑞米派Remi Pi系統(tǒng)Ethercat移植

    米爾瑞米派** Remi Pi** 瑞薩第一款MPU生態(tài)板卡,兼容樹(shù)莓派擴(kuò)展模塊 采用瑞薩RZ/G2L工業(yè)級(jí)處理器,便于企業(yè)客戶(hù)產(chǎn)品開(kāi)發(fā); Remi
    發(fā)表于 04-29 12:04

    瑞米派實(shí)時(shí)系統(tǒng)EtherCAT移植-米爾Remi Pi

    。 米爾瑞米派 Remi Pi瑞薩第一款MPU生態(tài)板卡,兼容樹(shù)莓派擴(kuò)展模塊采用瑞薩RZ/G2L工業(yè)級(jí)處理器,便于企業(yè)客戶(hù)產(chǎn)品開(kāi)發(fā);Remi Pi
    發(fā)表于 04-30 18:14

    米爾-瑞米派兼容樹(shù)莓派擴(kuò)展模塊-試用體驗(yàn)】米爾-瑞米派Remi Pi-兼容樹(shù)莓派擴(kuò)展模塊-體驗(yàn)串口編程

    的40PIN接口。 米爾-瑞米派Remi Pi-兼容樹(shù)莓派生態(tài)板收到后準(zhǔn)備做UART的數(shù)據(jù)交互。所以首先得學(xué)會(huì)如何使用UART。 1、在原理圖中找到串口的接口: 從原理圖中得知TX、RX為UART4
    發(fā)表于 05-11 16:30

    米爾-瑞米派兼容樹(shù)莓派擴(kuò)展模塊-試用體驗(yàn)】值得擁有的米爾-瑞米派兼容樹(shù)莓派生態(tài)板

    的嵌入式設(shè)備等應(yīng)用。 Remi Pi是一款基于RZ/G2L工業(yè)級(jí)處理器,以Cortex-A55內(nèi)核為核心的嵌入式板卡,主頻為1.2GHz。 Remi Pi配備了1GB高速DDR4和8G
    發(fā)表于 05-13 11:28

    米爾-瑞米派兼容樹(shù)莓派擴(kuò)展模塊-試用體驗(yàn)】 實(shí)時(shí)系統(tǒng)移植

    移植實(shí)時(shí)系統(tǒng)補(bǔ)丁 RT補(bǔ)丁可以從RT官網(wǎng)下載5.10.83對(duì)應(yīng)的補(bǔ)丁 https://cdn.kernel.org/pub/linux/kernel/projects/rt/5.10/older
    發(fā)表于 06-19 16:57

    米爾-瑞米派兼容樹(shù)莓派擴(kuò)展模塊-試用體驗(yàn)】EtherCAT移植

    output.tar.bz2 output.tar.bz2 至此IGH交叉編譯完成,下面是在對(duì)應(yīng)arm目標(biāo)板上的操作。 4.5. 移植EtherCAT相關(guān)庫(kù)到開(kāi)發(fā)板 將上面制作好的output.tar.bz2
    發(fā)表于 06-19 17:07

    米爾瑞米派集聚5種操作系統(tǒng),兼顧學(xué)習(xí)開(kāi)發(fā)和項(xiàng)目產(chǎn)品需要的派

    ,燒錄等 Remi Pi FreeRTOS應(yīng)用開(kāi)發(fā)筆記包含環(huán)境搭建,工程創(chuàng)建等 Remi Pi實(shí)時(shí)系統(tǒng)
    發(fā)表于 07-05 17:26

    領(lǐng)萬(wàn)元大獎(jiǎng)!米爾電子Remi Pi 瑞米派創(chuàng)意秀

    創(chuàng)意秀、瑞米派、Remi Pi、米爾電子、樹(shù)莓派 2024年,米爾電子和瑞薩電子共同定義和開(kāi)發(fā)了瑞薩第一款MPU生態(tài)開(kāi)發(fā)板——瑞米派(Remi
    發(fā)表于 09-02 14:58

    米爾推出基于全志T507-H的MYC-YT507H核心板

    總線,專(zhuān)用于運(yùn)動(dòng)控制領(lǐng)域。相比傳統(tǒng)的工業(yè)現(xiàn)場(chǎng)總線,EtherCAT具有高穩(wěn)定性、高實(shí)時(shí)性、高集成度、擴(kuò)展性強(qiáng)、便于安裝等諸多優(yōu)點(diǎn),突破了傳統(tǒng)以太網(wǎng)方案的系統(tǒng)限制被廣泛應(yīng)用于工業(yè)控制領(lǐng)域
    發(fā)表于 02-14 15:19

    米爾電子和瑞薩電子推出首款MPU生態(tài)開(kāi)發(fā)板瑞米派

    近日,米爾電子和瑞薩電子共同定義和開(kāi)發(fā)了瑞薩第一款MPU生態(tài)開(kāi)發(fā)板——瑞米派(Remi Pi)正式上市了!在各種Pi板卡琳瑯滿(mǎn)目的當(dāng)下,Remi
    的頭像 發(fā)表于 01-25 09:21 ?874次閱讀

    米爾更新面向工業(yè)產(chǎn)品的軟件系統(tǒng)-基于瑞米派(Remi Pi

    米爾電子發(fā)布的瑞薩第一款MPU生態(tài)板卡——瑞米派(Remi Pi)自上市 當(dāng)天200套售罄 ,獲得不少新老用戶(hù)的青睞。為感謝大家的支持,米爾 加推300套 瑞米派活動(dòng),以 補(bǔ)貼價(jià) 回饋
    的頭像 發(fā)表于 03-15 18:25 ?768次閱讀
    <b class='flag-5'>米爾</b>更新面向工業(yè)產(chǎn)品的軟件<b class='flag-5'>系統(tǒng)</b>-基于瑞米派(<b class='flag-5'>Remi</b> <b class='flag-5'>Pi</b>)

    米爾瑞米派Remi Pi Ubuntu系統(tǒng)移植指南

    的傳統(tǒng)的桌面系統(tǒng)也加入到嵌入式環(huán)境體系中,如Ubuntu,debian等,為嵌入式提供更方便實(shí)用的系統(tǒng)。本文主要介紹基于ubuntu22.04core和米爾核心板定制
    的頭像 發(fā)表于 04-29 08:01 ?744次閱讀
    <b class='flag-5'>米爾</b>瑞米派<b class='flag-5'>Remi</b> <b class='flag-5'>Pi</b> Ubuntu<b class='flag-5'>系統(tǒng)</b><b class='flag-5'>移植</b>指南