Skip to content

Latest commit

 

History

History
38 lines (30 loc) · 1.11 KB

File metadata and controls

38 lines (30 loc) · 1.11 KB

SCPI SERVER

Contents

paths contents
scpi-server/src/
scpi-server/scpi-parser
scpi-server/Makefile

How to build Red Pitaya scpi-server

Before proceeding follow the instructions on how to set up working environment. Then proceed by simply running the following command.

make clean all

Starting Red Pitaya SCPI server

Before starting SCPI service, make sure Nginx and Wyliodrin services is not running. Running them at the same time will cause conflicts, since they access the same hardware.

systemctl stop redpitaya_nginx
systemctl stop redpitaya_wyliodrin

Now we can try and start Red Pitaya SCPI server.

systemctl start redpitaya_scpi

Starting Red Pitaya SCPI server at boot time

The next commands will enable running SCPI service at boot time and disable Nginx and Wyliodrin services.

systemctl disable redpitaya_nginx
systemctl disable redpitaya_wyliodrin
systemctl enable  redpitaya_scpi