Archive

Posts Tagged ‘linux’

Ham Radio Hits Linux Journal

December 4th, 2009 NT7S No comments

cover189The January 2010 issue of Linux Journal is hitting the newsstands, and this one has the theme of Amateur Radio and Linux. One of the featured articles was written by none other than the local Linux guru, KK7DS. I haven’t purchased the issue yet, but I got a sneak peak at this particular article, and I know that Dan does a nice overview of the ways in which you can integrate Linux into your ham radio activities. There’s also a podcast that the magazine has launched with this issue. The hosts talk about the ham radio stuff, although they are not hams, so they have a bit of a difficult time doing a good job of describing what’s going on with the ham radio stuff. It would have been nice if they would have brought Dan or another ham on as a guest. But it’s worth a listen if you are curious about what’s in the magazine, and it’s only about 20 minutes of program. Check it out if you currently use Linux in your shack or might be interested in doing so.

Categories: Ham Culture, Operating Tags: ,

My First Impression of Karmic Koala

October 16th, 2009 NT7S No comments

funny pictures of cats with captions

I just updated the shack PC to Ubuntu Karmic beta and I’m impressed. Nothing earth-shattering, but lots more polish compared to Jaunty, and seems quite a bit snappier. I think it’s worth the upgrade if you’re already an Ubuntu user. If you are not, then download the ISO and try it in live CD mode. I think you’ll be pleasantly surprised.

Categories: Cool Stuff Tags: , ,

You Got Your Linux in My Ham Shack!

October 7th, 2008 NT7S No comments

No, you got your ham shack in my Linux!

I’ve been grumbling to myself about the lack of active ham radio podcasts (sorry but the usual generic ham radio news shows don’t count as podcasts in my book). Lo and behold, I see that KB5JBV and K5TUX have just launched a new podcast, Linux in the HAM Shack. This is right up my alley! The first episode just dropped tonight and I’m exicted to see where the podcast goes in future episodes. This first one is mostly an introduction, so there’s not a lot of meat in it, but I’m sure that will be remedied by episode 2. If you run a Linux box in the shack, or even use open source software like Firefox, I recommend that you subscribe to the podcast feed. Let’s support these guys in a worthwhile effort!

Categories: Cool Stuff Tags: ,

Configuring the Avnet Spartan-3A Eval Board on Linux (Alpha)

September 25th, 2008 NT7S 2 comments

As I mentioned on the Avnet Spartan-3A Eval Kit Google Group, I’ve created a C program that will allow you to configure the FPGA via your Linux box. I don’t have a lot of time to elaborate on how to use this program, but the basic steps are listed below. These instructions assume that you are at least moderately familiar with using the shell in your distribution and building a program from source code. This code is in an alpha state and I have only tested this on my Ubuntu Hardy Heron box, so your mileage may vary. I’m sure there’s much I can do to improve it (clean up, refactor, etc.), but it seems to do what it needs to for now.

Right now, the program is controlled by three command line switches. I’ve created these options with a mind for expansion in the future (at least the serial flash part). Here’s the help printout from the program:

Usage: avs3a [options]
Options:
  -b, --bitstream=BITSTREAM	Bitstream used to configure FPGA
  -p, --port=SERIAL-PORT	Serial port connected to eval board
  -s, --slaveser		Configure FPGA in Slave Serial mode
  1. Download the source code here.
  2. Unpack the archive in the location where you intend to use the program.
    tar xzvf avs3a.tar.gz
  3. Change to the avs3a directory.
    cd avs3a
  4. Build the program from source.
    make all
  5. Make sure that your eval board is plugged into a USB port.
  6. If you don’t know the serial port of the eval board, then find it. I’m not sure what you will see, but on my Ubuntu Hardy box, my board enumerates as /dev/ttyACM0 or /dev/ttyACM1
    dmesg | grep tty
  7. Make sure you have a bitstream file to use.
  8. Issue the command to program the board
    ./avs3a -s -p /dev/ttyACM0 -b sample_bitstream.bit

If you try this and find it useful, or find a problem with the program then please, please, let me know in the comments below (or e-mail me). Thank you for testing this!

Categories: Coding, FPGA Tags: , , ,

Learning DSP Concepts with BasicDSP

August 13th, 2008 NT7S No comments

Completely by accident, I happened to stumble upon a program that gives you an easy way to learn DSP techniques by focusing on the underlying algorithms and not the hardware details. The program is called BasicDSP and is available as a Linux source tarball or Windows executable. BasicDSP was created by PA3FWM and PE1OIT as a tool to allow you to experiment with signal processing algorithms from basic building blocks such as filters and mixers, up to complete receiver systems in code. The program can take its input from a variety of sources, such as the soundcard, a file, or an internally generated signal. A simple scripting language is then used to manipulate the input data using a variety of DSP techniques (including some built-in functions). The resulting audio is them piped back out to the soundcard, as well as optional spectrum and oscilloscope displays.

BasicDSP running on my Ubuntu Hardy notebook

The source tarball didn’t want to compile on my Ubuntu Hardy machine on the first try. It threw some cryptic errors about some of the wxWidget objects in the code. A bit of Googling and some lucky guessing enabled me to figure out that the code wanted to compile with wxWidgets 2.6, not the version 2.8 that is standard on Hardy. I forced the linker to use 2.6 and managed to get the code to compile (although it was still complaining about a few warnings). Once I got over that speed bump, the program seemed to work as advertised, with one exception. As you can see in the attached screenshot, something is seriously wrong with the spectrum display. For some reason, the program is drawing vertical lines across the entire spectrum where there should be nothing. Since I had access to the code, I thought that maybe I would give a shot a locating any glaring problems that might be causing this. I know a bit of C++, but have very little experience in coding for *nix machines, and know virtually nothing about wxWidgets. However, the code to draw the spectrum display seemed fairly obvious and I couldn’t find anything wrong with it. You can still see a signal on the display if you look hard enough, but its very difficult to tell with all of the offending vertical lines. My best guess is that something is wrong in the array which holds the FFT data plotted by the spectrum display, but that’s only a guess. I just don’t have the expertise or the proper tools to properly debug this type of problem.

Ignoring that flaw, this is otherwise a really neat program. The syntax is very simple and allows you to easily try different processing concepts in just a few lines of code. There are two special variables that get used in every script: in and out. The in variable represents the data flowing into BasicDSP from the chosen source, while out is the variable that you send your processed data to in order to output it to the speaker. The simplest script that you can write for BasicDSP is a passthrough function, where no processing of the data is performed:

out = in

In the above example, each sample is directly passed to the output. If you could not hear the output very well, you can amplify the signal by performing multiplication with a constant.

out = in * 100

By multiplying the sample by 100, you are increasing the signal level by 40 dB.

20\ \log\ 100 = 40\ \text{dB}

There are four slider controls which are accessible via variable (slider1slider4). These allow you to dynamically alter variables in the script. For example, if you wanted to be able to change the signal level with a slider, it’s a simple as:

out = in * slider1

There are other special variables and functions included in the scripting language that help to enable common DSP tasks. These can all be put together to create simple circuit blocks like low-pass filters, up to more complex tasks like quadrature receivers. A basic direct conversion receiver can be put together quite simply using these functions. The following code (taken from a reprint of a SPRAT tutorial) implements the DC receiver in code by creating a sawtooth oscillator (in lines 2 & 3), mixing the input signal to baseband (just a simple multiplication at line 4), then sending the signal through two stages of low-pass filtering (lines 5 & 6).

1
2
3
4
5
6
7
samplerate = 48000
sawtooth = mod1(sawtooth+slider1)
osc = sin1(sawtooth)
mix = osc * in
lpfa = lpfa + slider2*(mix-lpfa)
lpfb = lpfb + slider2*(lpfa-lpfb)
out = lpfb

There’s some more information on the program and some good example code on the website of PE1OIT. If you have even a small bit of interest in the inner workings of a SDR receiver, you owe it to yourself to download this software and try it out.

Categories: Coding Tags: ,