Solution
The root cause is the way LabVIEW renders Slider controls. On embedded targets with limited processing power and no GPU acceleration, the antialiasing computations for Slider drawing consume a disproportionate share of the rendering budget. This causes frame drops and delayed visual updates on the Image control.
There are two solutions. Use whichever fits your situation.
Option A: Upgrade LabVIEW (Recommended)
- Upgrade your LabVIEW installation and NI Linux RT drivers to LabVIEW 2026 Q1 or later. This version includes a fix for the Slider rendering performance issue on RT targets.
- Redeploy your application to the CompactRIO target after upgrading.
Option B: Disable Antialiasing on the RT Target
Use this approach if you cannot upgrade to LabVIEW 2026 Q1.
- Open a terminal on your host machine and connect to the CompactRIO target through SSH:
ssh admin@<target-ip-address> - Install a text editor if one is not already present. For nano, run:
opkg update opkg install nano - Open the lvrt.conf file in the text editor:
sudo nano /etc/natinst/shared/lvrt.conf Alternatively, use vi: sudo vi /etc/natinst/shared/lvrt.conf - Add the following line on an empty line in the file:
SmoothLineDrawing=False - Save the file and exit the text editor.
- Reboot the CompactRIO target to apply the change:
sudo reboot
After upgrading (Option A) or disabling antialiasing (Option B), the Slider controls render without the excessive frame rate drop. Tab Page switching with multiple Sliders becomes responsive.