tutorial-packet-on-pi
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
tutorial-packet-on-pi [2024/11/15 14:00] – [Choice of PC or Raspberry Pi?] kc2ihx | tutorial-packet-on-pi [2025/01/12 18:56] (current) – kc2ihx | ||
---|---|---|---|
Line 24: | Line 24: | ||
Reasons to choose a Raspberry Pi for N6CTA' | Reasons to choose a Raspberry Pi for N6CTA' | ||
- | * Already have a bunch for prototyping work from before the pandemic chip shortage | + | |
- | * Were relatively inexpensive when I bought them | + | * Already have a bunch for prototyping work from before the pandemic chip shortage |
- | * Raspberry Pi OS is fairly stable now with a vast repository of working software | + | * Were relatively inexpensive when I bought them |
- | * Other SBC's have varying level of update support for their OS, Raspberry Pi is consistently good about theirs | + | * Raspberry Pi OS is fairly stable now with a vast repository of working software |
- | * The SBC can easily be powered by my portable radio battery | + | * Other SBC's have varying level of update support for their OS, Raspberry Pi is consistently good about theirs |
- | * Eventually solar power the whole shebang so managing power consumption is important to me | + | * The SBC can easily be powered by my portable radio battery |
+ | * Eventually solar power the whole shebang so managing power consumption is important to me | ||
====== Setting up the OS ====== | ====== Setting up the OS ====== | ||
+ | |||
+ | ===== On a Pi... ===== | ||
+ | |||
+ | If you’re following along with a Pi, we wholeheartedly recommend using the Pi Imager tool to flash your memory card with. | ||
+ | |||
+ | In Pi Imager you’ll want to click on the gear icon and set: | ||
+ | |||
+ | * Set hostname | ||
+ | * Enable SSH | ||
+ | * Set user and password | ||
+ | * Set locale | ||
+ | * Configure Wireless LAN if necessary | ||
+ | |||
+ | We’ll be using 32-bit software and OS as John doesn’t have stable 64-bit software out for all of the tools and the 64-bit release of Raspberry Pi OS isn’t stable yet. You can use a “lite” or “netinst” OS version if you’d like to but you won’t have the advantage of using QtTermTCP unless you install a window manager or desktop environment of some sort. The server daemon parts can be set up headless if you want to run the client side software over a network instead of via VNC. You can split the installation into client/ | ||
+ | |||
+ | ===== Other hardware? ===== | ||
+ | |||
+ | If you’re undecided about what linux disto to use and you’re on some other hardware, //We recommend plain old Debian.// It’ll run smoothly on just about everything that isn’t in a museum. Just slap it on a USB stick using your OS’s disk imager of choice and let ‘er rip. It’s the DOOM of OS’s. | ||
+ | |||
+ | //But really we should say a bit more?// | ||
+ | |||
+ | ===== Directories ===== | ||
+ | We recommend setting up the software with these directories: | ||
+ | < | ||
+ | cd ~/.local && mkdir bin log src | ||
+ | cd ~/ | ||
+ | cd ~/.config && mkdir autostart linbpq direwolf qttermtcp hamlib | ||
+ | </ | ||
+ | |||
+ | We'll use the '' | ||
+ | |||
+ | You may have your own preference for these, but we'll follow this for the rest of the tutorials. | ||
+ | |||
+ | ===== Installing dependencies ===== | ||
+ | We recommend updating your system before we proceed and retrieving an up-to-date package list. | ||
+ | < | ||
+ | sudo apt update -y && sudo apt upgrade -y && sudo apt dist-upgrade -y && sudo apt autoremove -y && sudo apt clean -y && sudo reboot | ||
+ | </ | ||
+ | |||
+ | When the machine reboots, the following is what you need to install to compile everything we’re going to use from source. | ||
+ | < | ||
+ | sudo apt install -y qtbase5-dev qtchooser qt5-qmake qtbase5-dev-tools libqt5serialport5 libqt5serialport5-dev libfftw3-dev libasound2-dev libpcap-dev libminiupnpc-dev libconfig-dev autoconf libtool git gcc g++ make cmake libudev-dev qtmultimedia5-dev libreadline-dev libusb-1.0-0-dev libavahi-common-dev libavahi-client-dev libgps-dev | ||
+ | </ | ||
+ | |||
+ | ===== Configuring for a " | ||
+ | if you're going to run this on a " | ||
+ | |||
+ | If you're on a Raspberry Pi, run: | ||
+ | < | ||
+ | sudo raspi-config | ||
+ | </ | ||
+ | |||
+ | If you're on another system, you'll need to follow tutorials found elsewhere online. | ||
+ | |||
+ | And then configure the following: | ||
+ | * System Options> | ||
+ | * System Options> | ||
+ | * Interface Options> | ||
+ | * Display Options> | ||
+ | |||
+ | If you want RealVNC instead of WayVNC you’ll need to go back to Openbox WM with X11: | ||
+ | |||
+ | * Advanced Options> | ||
+ | * Install RealVNC from the RealVNC website | ||
====== Compiling the pieces ====== | ====== Compiling the pieces ====== | ||
+ | The various components we need to use are all open source, and we recommend grabbing the latest source code to build yourself. | ||
+ | |||
+ | < | ||
+ | cd ~/ | ||
+ | git clone https:// | ||
+ | git clone git:// | ||
+ | git clone https:// | ||
+ | git clone git:// | ||
+ | git clone https:// | ||
+ | </ | ||
+ | |||
+ | It doesn' | ||
+ | |||
+ | * '' | ||
+ | * '' | ||
+ | * '' | ||
+ | * '' | ||
+ | |||
+ | Next we'll compile these pieces. | ||
+ | |||
+ | //If you’re compiling on a pi ‘make -j4’ will allow you compile using all four cores which significantly speeds things up.// | ||
+ | |||
+ | We recommend building in this order. | ||
+ | |||
+ | ===== Hamlib ===== | ||
+ | |||
+ | < | ||
+ | cd ~/ | ||
+ | ./bootstrap | ||
+ | ./configure | ||
+ | make | ||
+ | export | ||
+ | sudo make install | ||
+ | </ | ||
+ | |||
+ | ===== linbpq ===== | ||
+ | |||
+ | < | ||
+ | cd ~/ | ||
+ | make | ||
+ | cp linbpq ~/ | ||
+ | cp *.ico ~/ | ||
+ | </ | ||
+ | |||
+ | ===== QtTermTCP ===== | ||
+ | |||
+ | < | ||
+ | cd ~/ | ||
+ | qmake | ||
+ | make | ||
+ | cp QtTermTCP ~/ | ||
+ | cp QtTermTCP.ico ~/ | ||
+ | </ | ||
+ | |||
+ | ===== direwolf ===== | ||
+ | |||
+ | < | ||
+ | cd ~/ | ||
+ | mkdir build && cd build | ||
+ | cmake .. | ||
+ | make | ||
+ | sudo make install | ||
+ | sudo make install-conf | ||
+ | </ | ||
+ | |||
+ | ===== sunwait ===== | ||
+ | |||
+ | < | ||
+ | cd ~/ | ||
+ | make | ||
+ | cp sunwait ~/ | ||
+ | </ | ||
+ | |||
+ | When you're done, or anytime after you install libraries via your package manager (e.g. ``apt install``) you should run '' | ||
+ | |||
+ | ===== QtTermTCP Desktop/ | ||
+ | Here are some suggestions for basic .desktop file entries for QtTermTCP. You’ll need to replace USER with your username. This will give you a nice shortcut in the applications menu. This file to create this is located at '' | ||
+ | |||
+ | < | ||
+ | [Desktop Entry] | ||
+ | Name=QTTermTCP | ||
+ | Path=/ | ||
+ | Exec=QtTermTCP | ||
+ | Icon=/ | ||
+ | Terminal=false | ||
+ | Type=Application | ||
+ | </ | ||
====== Audio - ALSA, not Pulse ====== | ====== Audio - ALSA, not Pulse ====== | ||
- | ====== rigctld | + | If you’re on anything but a Pi you may be able to disregard this but be sure to check first. It’s best to remove PulseAudio on Pi’s currently, and we'll configure '' |
+ | |||
+ | < | ||
+ | sudo apt purge pulseaudio -y && sudo apt autoremove -y && sudo rm -rf ~/.pulse | ||
+ | </ | ||
+ | |||
+ | Next we'll configure ALSA -- despite the jokes on the Internet, Linux audio isn't //that bad// for a simple case like ours. That said, you’ll need to do some experimenting here but it shouldn’t be all that different from what we have below. You’ll need to know the sample rates supported by your device though. If you poke around in ''/ | ||
+ | |||
+ | For example, run '' | ||
+ | < | ||
+ | Burr-Brown from TI USB Audio CODEC at usb-0000: | ||
+ | |||
+ | Playback: | ||
+ | Status: Running | ||
+ | Interface = 1 | ||
+ | Altset = 1 | ||
+ | Packet Size = 192 | ||
+ | Momentary freq = 48000 Hz (0x30.0000) | ||
+ | Interface 1 | ||
+ | Altset 1 | ||
+ | Format: S16_LE | ||
+ | Channels: 2 | ||
+ | Endpoint: 0x02 (2 OUT) (ADAPTIVE) | ||
+ | Rates: 32000, 44100, 48000 | ||
+ | Bits: 16 | ||
+ | Channel map: FL FR | ||
+ | </ | ||
+ | |||
+ | This is how you can set the default index for your USB audio card to force it to a consistent reboot safe value for the ALSA configuration. With only one USB audio device (the rig audio interface) this works well. | ||
+ | |||
+ | Edit ''/ | ||
+ | < | ||
+ | options snd_usb_audio index=3 | ||
+ | </ | ||
+ | |||
+ | Edit your ''/ | ||
+ | < | ||
+ | pcm.scu { | ||
+ | type hw | ||
+ | card 3 | ||
+ | device 0 | ||
+ | rate 44100 | ||
+ | } | ||
+ | </ | ||
+ | |||
+ | ====== rigctld | ||
+ | |||
+ | Configuring rigctld is a crucial step to getting the rest of this setup running smoothly. The exact commands may be a little different depending on your gear. What we need is '' | ||
+ | |||
+ | You’ll need to change: | ||
+ | * '' | ||
+ | * '' | ||
+ | * '' | ||
+ | |||
+ | First we'll setup a '' | ||
+ | |||
+ | < | ||
+ | [Unit] | ||
+ | Description=rigctld Start Script | ||
+ | After=network.target | ||
+ | |||
+ | [Service] | ||
+ | Restart=always | ||
+ | RestartSec=20 | ||
+ | StartLimitInterval=60 | ||
+ | StartLimitBurst=3 | ||
+ | User=USER | ||
+ | Group=USER | ||
+ | ExecStart=rigctld -m YOUR_RIG -r CAT_DEVICE | ||
+ | SyslogIdentifier=rigctld-Debug | ||
+ | |||
+ | [Install] | ||
+ | WantedBy=multi-user.target | ||
+ | </ | ||
+ | |||
+ | Then enable and start the service with: | ||
+ | < | ||
+ | sudo systemctl enable rigctld.service | ||
+ | sudo systemctl start rigctld.service | ||
+ | </ | ||
+ | |||
+ | If for whatever reason you need to make an edit to a systemd service entry you’ll need to reload systemd and start the service again. | ||
+ | |||
+ | < | ||
+ | sudo systemctl daemon-reload | ||
+ | sudo systemctl restart rigctld.service | ||
+ | </ | ||
+ | |||
+ | To check on the status of a service we use the ‘status’ command. At the bottom of the output we’ll get essentially a tail of '' | ||
+ | |||
+ | < | ||
+ | sudo systemctl status rigctld.service | ||
+ | </ | ||
+ | |||
+ | If we want to get really fancy we can get a running live log of the service using journalctl. The -u option gives a ‘tail -f’ like output. I use this so much I have a short alias for watching the output of my BBS services. I much prefer this to using screen because we get logging for troubleshooting and many of these daemons cannot take terminal input once run anyway. | ||
+ | |||
+ | < | ||
+ | journalctl -u rigctld.service | ||
+ | </ | ||
+ | ====== udev rules for your transceiver ====== | ||
+ | To make it reboot safe I would make a udev rule. Here is an example of mine. I use / | ||
+ | Start by running '' | ||
+ | < | ||
+ | DEVPATH=/ | ||
+ | DEVNAME=/ | ||
+ | MAJOR=188 | ||
+ | MINOR=0 | ||
+ | SUBSYSTEM=tty | ||
+ | USEC_INITIALIZED=9023171 | ||
+ | ID_BUS=pci | ||
+ | ID_VENDOR_ID=0x1106 | ||
+ | ID_MODEL_ID=0x3483 | ||
+ | ID_PCI_CLASS_FROM_DATABASE=Serial bus controller | ||
+ | ID_PCI_SUBCLASS_FROM_DATABASE=USB controller | ||
+ | ID_PCI_INTERFACE_FROM_DATABASE=XHCI | ||
+ | ID_VENDOR_FROM_DATABASE=VIA Technologies, | ||
+ | ID_MODEL_FROM_DATABASE=VL805 USB 3.0 Host Controller | ||
+ | ID_PATH=platform-fd500000.pcie-pci-0000: | ||
+ | ID_PATH_TAG=platform-fd500000_pcie-pci-0000_01_00_0-usb-0_1_3_1_1_0 | ||
+ | ID_USB_MODEL=CP2105_Dual_USB_to_UART_Bridge_Controller | ||
+ | ID_USB_MODEL_ENC=CP2105\x20Dual\x20USB\x20to\x20UART\x20Bridge\x20Controller | ||
+ | ID_USB_MODEL_ID=ea70 | ||
+ | ID_USB_SERIAL=Silicon_Labs_CP2105_Dual_USB_to_UART_Bridge_Controller_011F3FE4 | ||
+ | ID_USB_SERIAL_SHORT=011F3FE4 | ||
+ | ID_USB_VENDOR=Silicon_Labs | ||
+ | ID_USB_VENDOR_ENC=Silicon\x20Labs | ||
+ | ID_USB_VENDOR_ID=10c4 | ||
+ | ID_USB_REVISION=0100 | ||
+ | ID_USB_TYPE=generic | ||
+ | ID_USB_INTERFACES=: | ||
+ | ID_USB_INTERFACE_NUM=00 | ||
+ | ID_USB_DRIVER=cp210x | ||
+ | ID_MM_CANDIDATE=1 | ||
+ | DEVLINKS=/ | ||
+ | TAGS=: | ||
+ | CURRENT_TAGS=: | ||
+ | </ | ||
+ | From there we want to grab some unique information to help identify this device as our transceiver and create a '' | ||
+ | Add some variation of the following to a file in ''/ | ||
+ | < | ||
+ | ENV{MAJOR}!="? | ||
+ | SUBSYSTEMS==" | ||
+ | GOTO=" | ||
+ | LABEL=" | ||
+ | # YAESU SCU-17 | ||
+ | ENV{ID_USB_INTERFACE_NUM} == " | ||
+ | LABEL=" | ||
+ | </ | ||
+ | After creating the file, run '' | ||
+ | ====== What's Next? ====== | ||
+ | After following this tutorial you should have a ' | ||
+ | From here, you should configure QtTermTCP or another packet client and try connecting to a node! |
tutorial-packet-on-pi.1731679256.txt.gz · Last modified: 2024/11/15 14:00 by kc2ihx