-
Powering away at Flowgraphs
05/24/2017 at 05:41 • 0 commentsI am really glad I decided to use Jupyter notebook to code this. I have learnt quite a bit about DSP and GNURadio blocks and having a notebook to test code, produce plots and write documentation at the same place is just wonderful.
So my latest commit shows the response of a sweep using the probe Avg Mag ^2 but it is very slow at 2 seconds for 10MHz so a full 50-2400MHz sweep would take about 10 minutes.
So time to figure out how to do FFT.
Using a stream to vector I get an 'array' of complex numbers that I can put into a vector sink. This is an ever increasing collection of data that can be looked at, but it doesn't show 'instantaneous' time slice snapshot. So next I put that through an FFT. And since the output of an FFT is also complex, I used a complex to mag block. Then I found the vector probe which is similar to the earlier mag probe I used, and that meant I could get the latest values from the stream to vector or FFT output.
The plot after the FFT was different from the earlier avg-mag plot, so it seems I still need to do some DSP learning.
-
First steps with the hardware.
04/27/2017 at 13:04 • 0 commentsWednesday, I got all the parts together and hooked them up to test the bits worked together. I plugged in some whip antenna lying around at the radio club rooms.
I made a quick GNURadio app to show an 8MHz bandwidth waterfall and a slider for the frequency, so I could move the slider and watch the noise attenuate as it scrolled through frequencies the antenna wasn't tuned for. Next step is to automate that process and produce a nice plot of the results.
-
Iterations...
04/27/2017 at 12:36 • 0 commentsStarted coding my first iteration of the software today to get an idea of how GNURadio flowgraphs and blocks work. My first iteration is just going to use a power meter to sample the center frequency of the tuned SDR. The program would then change the frequency and take another sample in a series of steps and I expect it to be slow but it will also be a proof of concept.
This is because I have not learnt how to take the stream of a single window of samples, eg 1MHz bandwidth from my SDR. That will be the second iteration (don't give me the answer yet!).
I'm reading this ThinkDSP book and just up to the part about leakage and windowing and hamming windows so I think that might be relevant when I sample a section of spectrum a chunk at a time.