fireflyCORE-3399主板JD4--Linux开发简介

linux开发 编译类型说明(重要) mbr固件是采用旧版本sdk编译出来的mbr分区固件,已使用时间长,稳定性高
gpt固件是采用新版本sdk编译出来得gpt分区固件,兼容性好,sdk编译简单方便,功能齐全,建议使用。
注意:官方正在完善新版本sdk(gpt),在后期将全部使用新版本sdk。
创建 ubuntu 根文件系统 准备工作 安装qemu 在linux pc主机上安装模拟器:
sudoapt-getinstallqemu-user-static
下载和解压 ubuntu-core firefly-rk3399 ubuntu根文件系统是基于ubuntu base 16.04来创建的。用户可以到ubuntu cdimg 下载,选择下载ubuntu-base-16.04.1-base-arm64.tar.gz 。
下载完之后,创建临时文件夹并解压根文件系统:
mkdirtempsudotar-xpfubuntu-base-16.04.1-base-arm64.tar.gz-ctemp
修改根文件系统 准备工作 准备网络:
sudocp-b/etc/resolv.conftemp/etc/resolv.conf
准备qemu
sudocp/usr/bin/qemu-aarch64-statictemp/usr/bin/
进入根文件系统进行操作:
sudochroottemp
更新及安装 更新:
aptupdateaptupgrade
安装自己需要的功能
aptinstallvimgit....(根据自己需求添加)
安装xubuntu
aptinstallxubuntu-desktop
可能出现错误:
e:unabletolocatepackagexxxx
安装包的源没有添加到/etc/apt/source.list中,导致无法识别安装包,可以自行添加源,也可以使用下面给出的source.list覆盖原来的/etc/apt/source.list文件:
# see http://help.ubuntu.com/community/upgradenotes for how to upgrade to# newer versions of the distribution.debhttp://ports.ubuntu.com/ubuntu-ports/xenialmainrestricteddeb-srchttp://ports.ubuntu.com/ubuntu-ports/xenialmainrestricted## major bug fix updates produced after the final release of the## distribution.debhttp://ports.ubuntu.com/ubuntu-ports/xenial-updatesmainrestricteddeb-srchttp://ports.ubuntu.com/ubuntu-ports/xenial-updatesmainrestricted## uncomment the following two lines to add software from the 'universe'## repository.## n.b. software from this repository is entirely unsupported by the ubuntu## team. also, please note that software in universe will not receive any## review or updates from the ubuntu security team.debhttp://ports.ubuntu.com/ubuntu-ports/xenialuniversedeb-srchttp://ports.ubuntu.com/ubuntu-ports/xenialuniversedebhttp://ports.ubuntu.com/ubuntu-ports/xenial-updatesuniversedeb-srchttp://ports.ubuntu.com/ubuntu-ports/xenial-updatesuniverse## n.b. software from this repository may not have been tested as## extensively as that contained in the main release, although it includes## newer versions of some applications which may provide useful features.## also, please note that software in backports will not receive any review## or updates from the ubuntu security team.debhttp://ports.ubuntu.com/ubuntu-ports/xenial-backportsmainrestricteddeb-srchttp://ports.ubuntu.com/ubuntu-ports/xenial-backportsmainrestricteddebhttp://ports.ubuntu.com/ubuntu-ports/xenial-securitymainrestricteddeb-srchttp://ports.ubuntu.com/ubuntu-ports/xenial-securitymainrestricteddebhttp://ports.ubuntu.com/ubuntu-ports/xenial-securityuniversedeb-srchttp://ports.ubuntu.com/ubuntu-ports/xenial-securityuniversedebhttp://ports.ubuntu.com/ubuntu-ports/xenial-securitymultiversedeb-srchttp://ports.ubuntu.com/ubuntu-ports/xenial-securitymultiverse
添加用户及设置密码 添加用户
useradd-s'/bin/bash'-m-gadm,sudofirefly
给用户设置密码:
passwdfirefly
给root用户设置密码:
passwdroot
修改完自己的根文件系统就可以退出了。
exit
制作根文件系统 制作自己的根文件系统,大小依据自己的根文件系统而定,注意依据temp文件夹的大小来修改count值
ddif=/dev/zeroof=linuxroot.imgbs=1mcount=2048sudomkfs.ext4linuxroot.imgmkdirrootfssudomountlinuxroot.imgrootfs/sudocp-rfptemp/*rootfs/sudoumountrootfs/e2fsck-p-flinuxroot.imgresize2fs-mlinuxroot.img
这样 linuxroot.img 就是最终的根文件系统映像文件了。
faqs 根文件系统加载后,大小不正常,未占满整个分区: 在系统正确加载后执行扩展文件系统命令:
resize2fs/dev/mtd/by-name/linuxroot
编译 ubuntu 固件(gpt) 为了方便用户的使用与开发,官方提供了linux开发的整套sdk,本章详细的说明sdk的具体用法。
准备工作 下载源码 下载 linux-sdk:
方法一
初始化repo仓库:
mkdirlinux-sdkcdlinux-sdk../repo/repoinit--repo-urlhttps://github.com/fireflyteam/repo.git-uhttps://github.com/fireflyteam/manifests.git-blinux-sdk-mrk3399/rk3399_linux_release.xml
同步源码:
../repo/reposync-c
方法二(国内用户推荐使用)
因为国内用户可能git拉代码会比较慢,所以官方提供了基础得源码包linux_sdk.7z
下载linux_sdk.7z
1.把压缩包放在上一步下载repo工具的目录下7zxlinux_sdk.7z2.更新代码reposync-c
linux_sdk 目录介绍 目录:
├── linux_sdk │ ├── app │ ├── buildroot buildroot根文件系统的编译目录 │ ├── build.sh -> device/rockchip/common/build.sh 全自动编译脚本 │ ├── device 编译相关配置文件 │ ├── distro debian根文件系统生成目录 │ ├── docs 文档 │ ├── envsetup.sh -> buildroot/build/envsetup.sh │ ├── external │ ├── kernel 内核 │ ├── makefile -> buildroot/build/makefile │ ├── mkfirmware.sh -> device/rockchip/common/mkfirmware.sh rockdev链接更新脚本 │ ├── prebuilts │ ├── rkbin │ ├── rkflash.sh -> device/rockchip/common/rkflash.sh 烧写脚本 │ ├── rootfs debian根文件系统编译目录 │ ├── tools 烧写、打包工具 │ └── u-boot u-boot
搭建sdk编译环境 编译buildroot固件:
sudoapt-getinstallrepogit-coregitkgit-guigcc-arm-linux-gnueabihfu-boot-toolsdevice-tree-compiler\gcc-aarch64-linux-gnumtoolspartedlibudev-devlibusb-1.0-0-devpython-linaro-image-tools\linaro-image-toolsautoconfautotools-devlibsigsegv2m4intltoollibdrm-devcurlsedmake\binutilsbuild-essentialgccg++bashpatchgzipbzip2perltarcpiopythonunziprsyncfilebcwget\libncurses5libqt4-devlibglib2.0-devlibgtk2.0-devlibglade2-devcvsgitmercurialrsyncopenssh-client\subversionasciidocw3mdblatexgraphvizpython-matplotliblibc6:i386libssl-devtexinfo\liblz4-toolgenext2fslib32stdc++6
编译debian固件:
sudoapt-getinstallrepogit-coregitkgit-guigcc-arm-linux-gnueabihfu-boot-toolsdevice-tree-compiler\gcc-aarch64-linux-gnumtoolspartedlibudev-devlibusb-1.0-0-devpython-linaro-image-tools\linaro-image-toolsgcc-4.8-multilib-arm-linux-gnueabihfgcc-arm-linux-gnueabihflibssl-dev\gcc-aarch64-linux-gnug+confautotools-devlibsigsegv2m4intltoollibdrm-devcurlsedmake\binutilsbuild-essentialgccg++bashpatchgzipbzip2perltarcpiopythonunziprsyncfilebcwget\libncurses5libqt4-devlibglib2.0-devlibgtk2.0-devlibglade2-devcvsgitmercurialrsyncopenssh-client\subversionasciidocw3mdblatexgraphvizpython-matplotliblibc6:i386libssl-devtexinfo\liblz4-toolgenext2fslib32stdc++6
ubuntu固件:(根文件系统请使用官方提供的根文件系统镜像)
sudoapt-getinstallrepogit-coregitkgit-guigcc-arm-linux-gnueabihfu-boot-toolsdevice-tree-compiler\gcc-aarch64-linux-gnumtoolspartedlibudev-devlibusb-1.0-0-devpython-linaro-image-tools\linaro-image-toolsgcc-4.8-multilib-arm-linux-gnueabihfgcc-arm-linux-gnueabihflibssl-dev\gcc-aarch64-linux-gnug+confautotools-devlibsigsegv2m4intltoollibdrm-devcurlsedmake\binutilsbuild-essentialgccg++bashpatchgzipbzip2perltarcpiopythonunziprsyncfilebcwget\libncurses5libqt4-devlibglib2.0-devlibgtk2.0-devlibglade2-devcvsgitmercurialrsyncopenssh-client\subversionasciidocw3mdblatexgraphvizpython-matplotliblibc6:i386libssl-devtexinfo\liblz4-toolgenext2fslib32stdc++6
编译sdk 编译前配置 配置文件 aio-3399-jd4.mk:
./build.shaio-3399-jd4.mk#文件路径在`device/rockchip/rk3399/aio-3399-jd4.mk`
配置文件生效会连接到device/rockchip/.boardconfig.mk,检查该文件可以验证是否配置成功。
注意:aio-3399-jd4.mk为编译生成buildroot固件的配置文件.同时用户也可以通过参考该配置生成新的配置文件来适配自己所需要的固件。
重要配置介绍:(如果需要diy固件,可能需要修改下列配置信息)
# uboot defconfigexportrk_uboot_defconfig=firefly-rk3399编译uboot配置文件# kernel defconfigexportrk_kernel_defconfig=firefly_linux_defconfig编译kernel配置文件# kernel dtsexportrk_kernel_dts=rk3399-firefly-aiojd4编译kernel用到的dts# parameter for gpt tableexportrk_parameter=parameter-ubuntu.txt分区信息(十分重要)# packagefile for make update imageexportrk_package_file=rk3399-ubuntu-package-file打包配置文件# rootfs image pathexportrk_rootfs_img=xxxx/xxxx.img根文件系统镜像路径
注意,十分重要!!
默认配置编译buildroot固件,如果想编译其他固件(如ubuntu固件)请执行一下操作:
下载ubuntu根文件系统镜像https://pan.baidu.com/s/1ducztgardi7apxyks9nl1a#list/path=%2f
把得到的镜像放到sdk的指定目录:
#解压tar-xvfrk3399_ubuntu18.04_lxde.img.tgz#sdk根目录下mkdirubunturootfsmvrk3399_ubuntu18.04_lxde.imgubunturootfs/#修改aio-3399-jd4.mk文件vimdevice/rockchip/rk3399/aio-3399-jd4.mk#把rk_rootfs_img属性改成ubuntu文件系统镜像得路径(也就是rk3399_ubuntu18.04_lxde.img)rk_rootfs_img=ubunturootfs/rk3399_ubuntu18.04_lxde.img
注意:ubuntu根文件系统镜像存放路径不能错
全自动编译 在配置和搭建环境的工作都做好的前提下:
./build.sh
全自动编译的固件默认编译buildroot固件。生成固件目录rockdev/,同时会在image中备份。
部分编译 kernel ./build.shkernel
u-boot ./build.shuboot
recovery recovery分区可省略,若有需要: 编译recovery:
./build.shrecovery
rootfs buildroot
./build.shrootfs
debian:
cdrootfs/1:#building base debian system by ubuntu-build-service from linarosudoapt-getinstallbinfmt-supportqemu-user-staticlive-buildsudodpkg-iubuntu-build-service/packages/*sudoapt-getinstall-f2:#编译 32 位的 debian:release=stretchtarget=desktoparch=armhf./mk-base-debian.sh#或编译 64 位的 debian:release=stretchtarget=desktoparch=arm64./mk-base-debian.sh#上面编译如果遇到如下问题情况:noexecornodevissue/usr/share/debootstrap/functions:line1450:..../rootfs/ubuntu-build-service/stretch-desktop-armhf/chroot/test-dev-null:permissiondeniede:cannotinstallintotarget'/home/foxluo/work3/rockchip/rk_linux/rk3399_linux/rootfs/ubuntu-build-service/stretch-desktop-armhf/chroot' mounted with noexec or nodev# 解决办法:mount-oremount,exec,devxxx(xxxisthemountplace),thenrebuildit.3:# 编译 32 位的 debian:version=debugarch=armhf./mk-rootfs-stretch.sh# 开发阶段推荐使用后面带 debug# 编译 64 位的 debian:version=debugarch=arm64./mk-rootfs-stretch-arm64.sh4:./mk-image.shmvlinaro-rootfs.img../distro/5:#修改aio-3399-jd4.mk文件vimdevice/rockchip/rk3399/aio-3399-jd4.mk#把rk_rootfs_img属性改成ubuntu文件系统镜像得路径(也就是linaro-rootfs.img)rk_rootfs_img=distro/linaro-rootfs.img
ubuntu18.04,可以通过云盘下载:
下载链接https://pan.baidu.com/s/1ducztgardi7apxyks9nl1a#list/path=%2f
把得到的镜像放到sdk的根目录处:
#解压tar-xvfrk3399_ubuntu18.04_lxde.img.tgz#sdk根目录下mkdirubunturootfsmvrk3399_ubuntu18.04_lxde.imgubunturootfs/#修改aio-3399-jd4.mk文件vimdevice/rockchip/rk3399/aio-3399-jd4.mk#把rk_rootfs_img属性改成ubuntu文件系统镜像得路径(也就是rk3399_ubuntu18.04_lxde.img)rk_rootfs_img=ubunturootfs/rk3399_ubuntu18.04_lxde.img
注意:ubuntu根文件系统镜像存放路径不能错
运行./mkfirmware.sh会自动更新rockdev/rootfs.img的链接
固件打包 同步更新各部分镜像 每次打包固件前先确保rockdev/目录下文件链接是否正确:
ls -l ├── boot.img -> ~/project/linux_sdk/kernel/boot.img ├── idbloader.img -> ~/project/linux_sdk/u-boot/idbloader.img ├── linaro-rootfs.img ├── miniloaderall.bin -> ~/project/linux_sdk/u-boot/rk3399_loader_v1.14.115.bin ├── misc.img -> ~/project/linux_sdk/device/rockchip/rockimg/wipe_all-misc.img ├── oem.img ├── parameter.txt -> ~/project/linux_sdk/device/rockchip/rk3399/parameter-ubuntu.txt ├── recovery.img -> ~/project/linux_sdk/buildroot/output/rockchip_rk3399_recovery/images/recovery.img ├── rootfs.img -> ~/project/linux_sdk/ubunturootfs/rk3399_ubuntu18.04_lxde.img ├── trust.img -> ~/project/linux_sdk/u-boot/trust.img ├── uboot.img -> ~/project/linux_sdk/u-boot:/uboot.img └── userdata.img
可以运行./mkfirmware.sh更新链接
./mkfirmware.sh
提示:若不是编译全部的分区镜像,在运行./mkfirmware时,会遇到如下类似情况:
error: /home/ljh/proj/linux-sdk/buildroot/output/rockchip_rk3399_recovery/images/recovery.img not found! 表示recovery分区没有编译出镜像,其他的情况类似,如oem.img、userdata.img 上文提到,这些属于可省略分区镜像,可以不用理会。
打包统一固件 注意:打包前请确认tools/linux/linux_pack_firmware/rockdev/package-file是否正确。打包会根据此文件进行分区打包。此文件链接会在./build.shaio-rk3399-jd4.mk命令时更新,如果配置不对请返回[配置]这一节重新配置一次。
整合统一固件
./build.shupdateimg
分区介绍 parameter parameter.txt包含了固件的分区信息十分重要,你可以在device/rockchip/rk3399目录下找到一些parameter.txt文件,下面以parameter-debian.txt为例子做介绍:
firmware_ver:8.1machine_model:rk3399machine_id:007manufacturer:rk3399magic:0x5041524batag:0x00200800machine:3399check_mask:0x80pwr_hld:0,0,a,0,1type:gptcmdline:mtdparts=rk29xxnand:0x00002000@0x00004000(uboot),0x00002000@0x00006000(trust),0x00002000@0x00008000(misc),0x00010000@0x0000a000(boot),0x00010000@0x0001a000(recovery),0x00010000@0x0002a000(backup),0x00020000@0x0003a000(oem),0x00700000@0x0005a000(rootfs),-@0x0075a000(userdata:grow)uuid:rootfs=614e0000-0000-4b53-8000-1d28000054a9
cmdline属性是我们关注的地方。以uboot为例0x00002000@0x00004000(uboot)中0x00004000为uboot分区的起始位置0x00002000为分区的大小。后面的分区规则相同。用户可以根据自己需要增减或者修改分区信息,但是请最少保留uboot,trust,boot,rootfs分区,这是机器能正常启动的前提条件。parameter-ubuntu.txt中使用的就是这样的最简分区方案。
分区介绍:
uboot 分区: 烧写 uboot 编译出来的 uboot.img. trust 分区: 烧写 uboot 编译出来的 trust.img misc 分区: 烧写 misc.img。开机检测进入recovery模式.(可省略) boot 分区: 烧写 kernel 编译出来的 boot.img.包含kernel和设备树信息 recovery 分区: 烧写 recovery.img.(可省略) backup 分区: 预留,暂时没有用。后续跟 android 一样作为 recovery 的 backup 使用.(可省略) oem 分区: 给厂家使用,存放厂家的 app 或数据。只读。代替原来音箱的 data 分区。挂载在/oem 目录.(可省略) rootfs 分区: 存放 buildroot 或者 debian 编出来的 rootfs.img,只读. userdata 分 区 : 存 放 app 临 时 生 成 的 文 件 或 者 是 给 最 终 用 户 使 用 。 可 读 写 , 挂 载 在 /userdata 目录下.(可省略)
package-file 此文件应当与parameter保持一致,用于固件打包。可以在tools/linux/linux_pack_firmware/rockdev下找到相关文件。以rk3399-ubuntu-package-file为例介绍:
# name relative path##hwdef hwdefpackage-filepackage-filebootloaderimage/miniloaderall.binparameterimage/parameter.txttrustimage/trust.imgubootimage/uboot.imgbootimage/boot.imgrootfs:growimage/rootfs.imgbackupreserved
以上是sdk编译后生成的镜像文件。根据parameter.txt只打包自己用到的img文件。
常见问题 如何进入升级模式 操作方法见《升级固件》
ubuntu 应用层支持 视频硬件编解码支持 mpp是rockchip为rk3399提供的一套视频编解码的api, 并且基于mpp,rockchip提供了一套gstreamer的编解码插件。用户可以根据自己的需求,基于gstreamer来做视频编解码的应用,或者直接调用mpp,来实现硬件的编解码加速。
firefly 发布的ubuntu 系统, 都已经提供了完整的gstremaer 和 mpp支持,并且提供了相应的demo,供用户开发参考。
gstreamer ubuntu 16.04 下,gstreamer 1.12 已经安装在/opt/目录下。
ubuntu 18.04下, gstreamer 1.12 已经安装到系统中。
/usr/local/bin/h264dec.sh 测试硬件h264解码。
/usr/local/bin/h264enc.sh 测试硬件h264编码。
用户可以参照这两个脚本,配置自己的gstreamer应用。
mpp ubunut 系统下, mpp 相关dev包都已经安装到系统中。
/opt/mpp/下分别是mpp 编解码的相关demo 和 源文件。
opengl-es rk3399 支持 opengl es1.1/2.0/3.0/3.1。
firefly 发布的ubuntu 系统, 都已经提供了完整的opengl-es支持。运行glmark2-es2可以测试opengl-es支持。 如果要避免屏幕刷新率对测试结果的影响,可以在串口终端上使用以下命令测试。
# systemctl stop lightdm# export display=:0# xorg &# glmark2-es2 –off-screen
在chromium浏览器中, 在地址栏输入:chrome://gpu可以查看chromium下硬件加速的支持。
note:
egl 是用arm 平台上opengl针对x window system的扩展,功能等效于x86下的glx库。
由于xorg使用的driver modesettings 默认会加载libglx.so(禁用glx会导致某些通过检测glx环境的应用启动失败), libglx.so会搜索系统中的dri实现库。但是rk3399 xorg 2d加速是直接基于drm实现, 并未实现dri库,所以启动过程中,libglx.so会报告如下的错误 。
(ee)aiglxerror:dlopenof/usr/lib/aarch64-linux-gnu/dri/rockchip_dri.sofailed
这个对系统运行没有任何影响,不需要处理。
基于同样的道理,某些应用启动过程中,也会报告如下错误,不用处理,对应用的运行不会造成影响。
libglerror:unabletoloaddriver:rockchip_dri.solibglerror:driverpointermissinglibglerror:failedtoloaddriver:rockchip
firefly之前发布的某些版本的ubuntu软件,默认关闭了加载libglx.so,在某些情况下,运行某些应用程序会出现下述错误:
gdkglext-warning**:windowsystemdoesn'tsupportopengl.
修正的方法如下:
删除/etc/x11/xorg.conf.d/20-modesetting.conf中一下三行配置。
sectionmoduledisableglxendsection
opencl firefly发布的ubuntu系统,已经添加了opencl1.2支持,可以运行系统内置的clinfo获取平台opencl相关参数。
firefly@firefly:~$ clinfo platform #0 name: arm platform version: opencl 1.2 v1.r14p0-01rel0-git(966ed26).f44c85cb3d2ceb87e8be88e7592755c3 device #0 name: mali-t860 type: gpu version: opencl 1.2 v1.r14p0-01rel0-git(966ed26).f44c85cb3d2ceb87e8be88e7592755c3 global memory size: 1 gb 935 mb 460 kb local memory size: 32 kb max work group size: 256 max work item sizes: (256, 256, 256) …
tensorflow lite rk3399 支持神经网络的gpu加速方案linuxnn, firefly发布的ubuntu系统,已经添加了linuxnn的支持。
在opt/tensorflowbin/下,运行test.sh, 即可测试mobilenet 模型图像分类器的 demo和mobilenet-ssd 模型的目标检测 demo
firefly@firefly:/opt/tensorflowbin$ ./test.sh loaded model mobilenet_ssd.tflite resolved reporter nn version: 1.0.0 findavailabledevices filename:libarmnn-driver.so d_info:40432 d_reclen:40s [d][armnndriver]: register service: armnn (version: 1.0.0)! first invoked time: 1919.17 ms invoked average time: 108.4 ms validcount: 26 car @ (546, 501) (661, 586) car @ (1, 549) (51, 618) person @ (56, 501) (239, 854) person @ (332, 530) (368, 627) person @ (391, 541) (434, 652) person @ (418, 477) (538, 767) person @ (456, 487) (602, 764) car @ (589, 523) (858, 687) person @ (826, 463) (1034, 873) bicycle @ (698, 644) (1128, 925) write out.jpg succ!
屏幕旋转 firefly发布的ubuntu系统,如果需要默认对系统的显示方向做旋转,可以在
/etc/default/xrandr中修改对应的显示设备的方向即可。
firefly@firefly:~$ cat /etc/default/xrandr#!/bin/sh# rotation can be one of 'normal', 'left', 'right' or 'inverted'.# xrandr --output hdmi-1 --rotate normal# xrandr --output lvds-1 --rotate normal# xrandr --output edp-1 --rotate normal# xrandr --output mipi-1 --rotate normal# xrandr --output vga-1 --rotate normal# xrandr --output dp-1 --rotate normal
对于配有触摸屏的平台,如果需要对触摸屏的方向做旋转,可以在/etc/x11/xorg.conf.d/05-gslx680.conf中修改swapaxes / invertx / inverty三个值。
firefly@firefly:~$ cat /etc/x11/xorg.conf.d/05-gslx680.conf sectioninputclassidentifiergslx680matchistouchscreenonmatchproductgslx680driverevdevoptionswapaxesoff# invert the respective axis.optioninvertxoffoptioninvertyoffendsection

华为平板M6高能版搭载麒麟980平台和6GB+128GB运存拥有强劲的游戏性能
基于区块链技术的全球文体娱乐数字资产交易平台HOTchain热度链介绍
机器学习成为材料科学中复杂数据分析和信息挖掘的有力武器
机器学习、高速网络和大内存在这个数据时代并列称王
三星开始量产车载超低功耗UFS 3.1闪存:最大512GB
fireflyCORE-3399主板JD4--Linux开发简介
列举一些成熟软件中C语言常用的宏定义
PS 2键盘接口转普通键盘接口转接器
卫星中频开关IC MAX12005
戴森吸尘器缺失的擦地功能怎么补?来试试这款小狗擦地刷
中国集成电路正待“黑马”奔腾 珠海未来不可限量
服务器数据恢复—XFS文件系统数据恢复案例
解读数商云供应链系统的优势能力,打造医疗器械行业数字化转型新生态
高通让手机快充效率再提升30% 实现15W以上无线充电功率
知行科技为何能在资本寒冬的2018获得投资机构的亲睐
使用HyperLynx修复和解决信号完整性问题
保千里机器人发布会即将举行:2017年1月6日,深圳爆发机器人大战
选取MCU的时候应该考虑哪些因素?
Linux内核中RCU的用法
最新千元机盘点:荣耀8青春版、360N5、红米Note4X、魅蓝Note5,高性价比高颜值你买谁?