element14 Community
element14 Community
    Register Log In
  • Site
  • Search
  • Log In Register
  • Members
    Members
    • Benefits of Membership
    • Achievement Levels
    • Members Area
    • Personal Blogs
    • Feedback and Support
    • What's New on element14
  • Learn
    Learn
    • Learning Center
    • eBooks
    • STEM Academy
    • Webinars, Training and Events
    • More
  • Technologies
    Technologies
    • 3D Printing
    • FPGA
    • Industrial Automation
    • Internet of Things
    • Power & Energy
    • Sensors
    • More
  • Challenges & Projects
    Challenges & Projects
    • Design Challenges
    • element14 presents
    • Project14
    • Arduino Projects
    • Raspberry Pi Projects
    • More
  • Products
    Products
    • Arduino
    • Dev Tools
    • Manufacturers
    • Raspberry Pi
    • RoadTests & Reviews
    • Avnet Boards Community
    • More
  • Store
    Store
    • Visit Your Store
    • Choose Another Store
      • Europe
      •  Austria (German)
      •  Belgium (Dutch, French)
      •  Bulgaria (Bulgarian)
      •  Czech Republic (Czech)
      •  Denmark (Danish)
      •  Estonia (Estonian)
      •  Finland (Finnish)
      •  France (French)
      •  Germany (German)
      •  Hungary (Hungarian)
      •  Ireland
      •  Israel
      •  Italy (Italian)
      •  Latvia (Latvian)
      •  
      •  Lithuania (Lithuanian)
      •  Netherlands (Dutch)
      •  Norway (Norwegian)
      •  Poland (Polish)
      •  Portugal (Portuguese)
      •  Romania (Romanian)
      •  Russia (Russian)
      •  Slovakia (Slovak)
      •  Slovenia (Slovenian)
      •  Spain (Spanish)
      •  Sweden (Swedish)
      •  Switzerland(German, French)
      •  Turkey (Turkish)
      •  United Kingdom
      • Asia Pacific
      •  Australia
      •  China
      •  Hong Kong
      •  India
      •  Korea (Korean)
      •  Malaysia
      •  New Zealand
      •  Philippines
      •  Singapore
      •  Taiwan
      •  Thailand (Thai)
      • Americas
      •  Brazil (Portuguese)
      •  Canada
      •  Mexico (Spanish)
      •  United States
      Can't find the country/region you're looking for? Visit our export site or find a local distributor.
  • Translate
  • Profile
Raspberry Pi
  • Products
  • More
Raspberry Pi
Blog SCPI on a Linux Board - Part 4c: TCP/IP SCPI and Instrument Service - Run as a Daemon
  • Blog
  • Forum
  • Documents
  • Events
  • Members
  • Mentions
  • Sub-Groups
  • Tags
  • More
  • Cancel
  • New
Raspberry Pi requires membership for participation - click to join
Blog Post Actions
  • Subscribe by email
  • More
  • Cancel
  • Share
  • Subscribe by email
  • More
  • Cancel
Group Actions
  • Group RSS
  • More
  • Cancel
Engagement
  • Author Author: Jan Cumps
  • Date Created: 15 Apr 2020 1:55 PM Date Created
  • Views 242 views
  • Likes 3 likes
  • Comments 1 comment
  • piface_digital
  • raspberry_pi
  • labview
  • scpi
  • systemd
  • raspbian
  • diytestinstruch
  • piface
Related
Recommended

SCPI on a Linux Board - Part 4c: TCP/IP SCPI and Instrument Service - Run as a Daemon

Jan Cumps
Jan Cumps
15 Apr 2020

I'm building a SCPI electronics lab instrument for Linux.

In this post I'm creating a service wrapper and install the Linux service.

It will start at Pi startup, and can be stopped / started as you'd expect from a service.

 

Prerequisites

 

You should have built the two binaries for this project, as documented in post 4a and 4b. If you didn't, the binaries are available as archive attached to post 4b.

linux_scpi_socket

linux_piface_digital_service_cpp

These binaries should be placed in /home/pi/bin, and made executable (chmod +x <binary_name>).

If you're using a recent raspbian (I use buster lite) there are no other dependencies.

 

Start and Stop Shell Scripts

 

I've created a startup and a shutdown shell script in that same /home/pi/bin directory, and made them executable (again using chmod +x <shell_script_name>).

 

scpi_face_start.sh

 

#!/bin/bash
echo "start piface. Wait 5 seconds to complete ..."
/home/pi/bin/linux_piface_digital_service_cpp 2223 &
sleep 5
echo "start scpi."
/home/pi/bin/linux_scpi_socket 2222 2223 &
echo "start sequence completed"

 

scpi_face_stop.sh

 

#!/bin/bash
killall -9 "/home/pi/bin/linux_scpi_socket"
killall -9 "/home/pi/bin/linux_piface_digital_service_cpp"

 

These scripts take care that the right order is used to start and terminate both executables.

There's a 5 second sleep to allow the piface binary to start its socket listening thread.

 

Both scripts will be invoked by the service handler to start and stop the daemon.

 

Service Script

 

Now the core of this post: creating that Linux service that starts up at boot, and can be restarted by the user.

I've used the raspbian networking.service as inspiration, and this website for the instructions: https://www.dexterindustries.com/howto/run-a-program-on-your-raspberry-pi-at-startup/

 

Create a new service wrapper in /lib/systemd/system, called scpi_piface.service.

 

sudo nano /lib/systemd/system/scpi_piface.service

 

Then enter this content:

 

[Unit]
Description=PiFace SCPI Service
DefaultDependencies=no
Requires=ifupdown-pre.service
Wants=network.target
After=local-fs.target network-pre.target apparmor.service systemd-sysctl.service systemd-modules-load.service ifupdown-pre.service network.target
Before=shutdown.target
Conflicts=shutdown.target
[Install]
WantedBy=multi-user.target
WantedBy=network-online.target
[Service]
Type=oneshot
#EnvironmentFile=-/etc/default/networking
ExecStart=/home/pi/bin/scpi_face_start.sh
ExecStop=/home/pi/bin/scpi_face_stop.sh
RemainAfterExit=true
TimeoutStartSec=5min
#User=pi

 

I've chosen to wait for the full network stack being up.

You have to mod the file attributes:

 

sudo chmod  644 /lib/systemd/system/scpi_piface.service

 

Then, tell systemd that there's a new configuration and tell it to enable the service:

 

sudo systemctl daemon-reload
sudo systemctl enable scpi_piface.service

 

If you reboot, the raspberry will start with the PiFace SCPI Service running.

 

Check:

 

 

Managing the Service

 

You can use the usual systemd commands to verify, stop and start the daemon.

 

sudo systemctl status scpi_piface.service
sudo systemctl stop scpi_piface.service
sudo systemctl start scpi_piface.service
sudo systemctl restart scpi_piface.service

 

 

related blog
SCPI on a Linux Board - Letter of Intent

SCPI on a Linux Board - Part 1: Proof of Concept

SCPI on a Linux Board - Part 2a: PiFace Digital C programming

SCPI on a Linux Board - Part 2b: PiFace Digital C++ programming
SCPI on a Linux Board - Part 3: TCP/IP Socket C++ programming
SCPI on a Linux Board - Part 4: TCP/IP SCPI and Instrument Service
SCPI on a Linux Board - Part 4b: TCP/IP SCPI and Instrument Service 100% Working
SCPI on a Linux Board - Part 4c: TCP/IP SCPI and Instrument Service - Run as a Daemon
SCPI on a Linux Board - Part 5a: LabVIEW Driver for LAB Switch: Open, Close and Switch functions
Anonymous
  • clem57
    clem57 over 2 years ago

    Wonderful ditty about creating a service under linux.  Thanks Jan Cumps for the write up.

    • Cancel
    • Up 0 Down
    • Reply
    • More
    • Cancel
Element14

element14 is the first online community specifically for engineers. Connect with your peers and get expert answers to your questions.

  • Members
  • Learn
  • Technologies
  • Challenges & Projects
  • Products
  • Store
  • About Us
  • Feedback & Support
  • FAQs
  • Terms of Use
  • Privacy Policy
  • Legal and Copyright Notices
  • Sitemap
  • Cookies

An Avnet Company © 2022 Premier Farnell Limited. All Rights Reserved.

Premier Farnell Ltd, registered in England and Wales (no 00876412), registered office: Farnell House, Forge Lane, Leeds LS12 2NE.

ICP 备案号 10220084.

Follow element14

  • Facebook
  • Twitter
  • linkedin
  • YouTube