Scadao 发表于 2019-5-20 01:26:33

Raspberry Pi 3B+目前LabVIEW嵌入开发不支持

当前折腾着是可以下载进去Run-time,费了历经一个钟头,却在点击LINX附带的例子过程中找不到Raspberry Pi设备,从而导致编程出错。

另外Raspberry Pi 2B版本在Windows10 x64位系统下,能安装LINX,但不能或说准确点没有创建额外器件设备的工程!


阿豪博士 发表于 2019-10-28 16:43:45

支持的!只不过你没有装好!

Scadao 发表于 2019-10-28 17:23:49

阿豪博士 发表于 2019-10-28 16:43
支持的!只不过你没有装好!

你的Raspberry Pi 3B+支持?!请祥述请截图——

阿豪博士 发表于 2019-10-29 16:34:49

在 linx 工具里面 当然不可以了。
但是手动安装是支持的。

最新的树莓派4 也支持。

另外,我在使用labview 开发串口的时候,发现扩展口 串口0为什么一直不可以调试通过呢?

有这方面的例程吗?

Scadao 发表于 2019-10-29 17:53:20

阿豪博士 发表于 2019-10-29 16:34
在 linx 工具里面 当然不可以了。
但是手动安装是支持的。



感谢阿豪博士!

我把你在NI官网发起的链接找到:
https://forums.ni.com/t5/LabVIEW/LINX-3-0-on-the-Raspberry-Pi-2-3-and-4-running-Raspbian-Buster/td-p/3967891?profile.language=zh-CN

目前我还没验证,因我有Raspberry Pi 3板子,测试完再回来发文——

阿豪博士 发表于 2019-10-29 20:09:45

Scadao 发表于 2019-10-29 17:53
感谢阿豪博士!

我把你在NI官网发起的链接找到:


你买了 树莓派4 了吗?如果你有的话,或者将要搞的话,我们一起研究如何?例如,你做何种应用?能不能透过NIMAX添加 NI的一些软件组建?

还是做什么应用?

我的期望是,通过40PIN IO扩展,连接STM32 或者FPGA单片机,做一些其他方面的应用。

Scadao 发表于 2019-10-30 09:54:08

阿豪博士 发表于 2019-10-29 20:09
你买了 树莓派4 了吗?如果你有的话,或者将要搞的话,我们一起研究如何?例如,你做何种应用?能不能透 ...

阿豪博士,我没买树莓派4,只是这一块领域教学使用,真正我是想用FPGA做生产线测控仪器,尤其目前网分一部分功能

阿豪博士 发表于 2019-11-8 11:25:31

# Enable i2c and spi
sudo raspi-config nonint do_i2c 0
sudo raspi-config nonint do_spi 0
# Update Raspbian
sudo apt-get update
sudo apt-get dist-upgrade -y
# Add the LINX repository
sudo sh -c 'echo "deb http://feeds.labviewmakerhub.com/debian/ binary/" >> /etc/apt/sources.list'
sudo apt-get update
# Install the LINX package. Error messages will be displayed for the
# nisysserver.service and labview.service
sudo apt-get install -y lvrt-schroot
# Move the nisysserver.service and labview.service files to the systemctl folder
sudo mv /etc/systemd/system/multi-user.target.wants/nisysserver.service /lib/systemd/system
sudo mv /etc/systemd/system/multi-user.target.wants/labview.service /lib/systemd/system
# link liblinxdevice.so to the Raspberry PI device driver file liblinxdevice_rpi2.so
sudo schroot -c labview -d /usr/lib -- ln -s liblinxdevice_rpi2.so liblinxdevice.so
# Enable the nisysserver.service and labview.service to start on boot
sudo systemctl enable nisysserver.service
sudo systemctl enable labview.service
# Start the nisysserver.service and labview.service
sudo systemctl start nisysserver.service
sudo systemctl start labview.service
页: [1]
查看完整版本: Raspberry Pi 3B+目前LabVIEW嵌入开发不支持