<?xml version="1.0" encoding="utf-8"?><rss version="2.0"><channel>
<title>ap/xxxxx/1010</title>
<link>http://1010.co.uk</link>
<description>xxxxx projects</description>
<item><title>Trimble Lassen SQ and scrying: (2008.06.28:1)</title><link>http://1010.co.uk/scrying_tech_notes.html#54</link><description>&lt;p&gt;
&lt;a href=&quot;http:://1010.co.uk/images/skry_gps1.jpg&quot;&gt;&lt;img src=&quot;http:://1010.co.uk/images/skry_gps1.jpg&quot; alt=&quot;&quot; border=&quot;0&quot; /&gt;&lt;/a&gt;

&lt;/p&gt;

&lt;p&gt;
Sample code to switch SQ to NMEA 4800 bps 8N1:

&lt;/p&gt;

&lt;pre class=&quot;fontlock&quot;&gt;
unsigned char gps0[]={0x10,0x7A,0x00,0x01,0x00,0x00,0x00,0x01,0x10,0x03}; // last but two: GGA and GSV also = 0x09 ... just GGA=0x01 //ends 0x01,0x03

unsigned char gps1[]={0x10,0xBC,0xFF,0x06,0x06,0x03,0x00,0x00,0x00,0x02,0x04,0x00,0x10,0x03};

/* output to 2nd serial port */

&lt;/pre&gt;


and further:

&lt;/p&gt;

&lt;p&gt;
&lt;a href=&quot;http://scrying.svn.sourceforge.net/viewvc/scrying/&quot;&gt;http://scrying.svn.sourceforge.net/viewvc/scrying/&lt;/a&gt;

&lt;/p&gt;

</description><pubDate>Sat, 28 Jun 2008 21:22:00 +0100</pubDate><category domain="http://1010.co.uk">scrying_tech_notes</category></item><item><title>scrying and logging notes: (2008.06.26:1)</title><link>http://1010.co.uk/scrying_tech_notes.html#53</link><description>&lt;p&gt;
1] Latest serial/memory logging code:

&lt;/p&gt;

&lt;p&gt;
&lt;a href=&quot;http://scrying.svn.sourceforge.net/viewvc/scrying/&quot;&gt;http://scrying.svn.sourceforge.net/viewvc/scrying/&lt;/a&gt;

&lt;/p&gt;

&lt;p&gt;
Programmed with:

&lt;/p&gt;

&lt;pre class=&quot;fontlock&quot;&gt;
avrdude -c avrusb500 -p m128 -P /dev/ttyUSB0 -U lfuse:w:0xFD:m -U hfuse:w:0x99:m -U efuse:w:0xFF:m -U flash:w:serialtest.hex
&lt;/pre&gt;


2] Commands:

&lt;/p&gt;

&lt;pre class=&quot;fontlock&quot;&gt;
xxxxx:help                                                                                        
log: output log                                                                                   
lv: print one sample
nm: show counter
res: reset counter
p: pause
s: start
d1/d2/d3: delays short-&amp;gt;long
str: stream
q: quit stream
8bit: char output
10: 10 bit integer output
ant: antenna src
rssi: rssi board src
help: helps
&lt;/pre&gt;
&lt;blockquote&gt;
&lt;p&gt;
 

&lt;/p&gt;
&lt;/blockquote&gt;

3] As an aside remix of iwspy signal strength logging from: 

&lt;/p&gt;

&lt;p&gt;
&lt;a href=&quot;http://users.skynet.be/chricat/signal/signal-strength.html&quot;&gt;http://users.skynet.be/chricat/signal/signal-strength.html&lt;/a&gt;

&lt;/p&gt;

&lt;pre class=&quot;fontlock&quot;&gt;
iwspy eth0 192.168.1.1

cat iwspy.sh

#!/bin/bash
while true
do
        iwspy eth0
        sleep 1
done | grep Signal

./iwspy.sh &amp;gt; iwtest

cat iwperl.pl

#!/usr/bin/perl
while ($line = &amp;lt;STDIN&amp;gt;)
{
       
        if ($line =~ /level=(-[0-9]+).*level=(-[0-9]+)/)
                {
                print &amp;quot;$1 $2\n&amp;quot;;
                chomp($line=&amp;lt;STDIN&amp;gt;);
                }
}

cat iwtest | ./iwperl.pl &amp;gt; iwproc

## and in gnuplot-mode buffer (send buffer with C-c C-b):

set title &amp;quot;iwspy&amp;quot;
set yrange [-120:-50]
set ylabel &amp;quot;dBm&amp;quot;
set xlabel &amp;quot;Sample&amp;quot;
set term png
#
set output 'xxxxx-strength.png'
plot 'iwproc' using :1 title &amp;quot;Signal&amp;quot;, 'iwproc' using :2 title &amp;quot;Noise&amp;quot;

&lt;/pre&gt;


&lt;a href=&quot;http://1010.co.uk/images/xxxxx-strength.png&quot;&gt;&lt;img src=&quot;http://1010.co.uk/images/xxxxx-strength.png&quot; alt=&quot;&quot; border=&quot;0&quot; /&gt;&lt;/a&gt;

&lt;/p&gt;

</description><pubDate>Thu, 26 Jun 2008 11:20:00 +0100</pubDate><category domain="http://1010.co.uk">scrying_tech_notes</category></item><item><title>Logging code for scrying: (2008.06.20:2)</title><link>http://1010.co.uk/scrying_tech_notes.html#52</link><description>&lt;p&gt;
&lt;a href=&quot;http://1010.co.uk/serialtest.c&quot;&gt;http://1010.co.uk/serialtest.c&lt;/a&gt;

&lt;/p&gt;

&lt;p&gt;
1] Logs 10 bit value from adc0 to SRAM 

&lt;/p&gt;

&lt;p&gt;
2] Prompt for the following commands on usart0 (ATmega128):

&lt;/p&gt;

&lt;p&gt;
log: dump log to serial port

&lt;/p&gt;

&lt;p&gt;
live: show live reading of ADC

&lt;/p&gt;

&lt;p&gt;
num: show log counter

&lt;/p&gt;

&lt;p&gt;
reset: reset log counter

&lt;/p&gt;

&lt;p&gt;
3] Data dumped to file by way of minicom and graphed with Octave:

&lt;/p&gt;

&lt;p&gt;
&lt;a href=&quot;http://1010.co.uk/images/octave_scry_log1.png&quot;&gt;&lt;img src=&quot;http://1010.co.uk/images/octave_scry_log1.png&quot; alt=&quot;&quot; border=&quot;0&quot; /&gt;&lt;/a&gt;

&lt;/p&gt;

</description><pubDate>Fri, 20 Jun 2008 12:25:00 +0100</pubDate><category domain="http://1010.co.uk">scrying_tech_notes</category></item><item><title>Software defined radio/ITC/Baudline notes and references: (2008.06.20:1)</title><link>http://1010.co.uk/2008.06.20.html#1</link><description>&lt;p&gt;
&lt;strong&gt;1] Building and testing GNU Radio (Debian testing):&lt;/strong&gt;

&lt;/p&gt;

&lt;pre class=&quot;fontlock&quot;&gt;
svn co http://gnuradio.org/svn/gnuradio/trunk gnuradio

apt-get install libtool portaudio19-dev alsa-dev alsa-source python-wxgtk2.6 python-numpy

export PYTHONPATH=/usr/local/lib/python2.4/site-packages/

./bootstrap

./configure

make install

ldconfig

cd ~/gnuradio/gnuradio-examples/python/audio

./audio_fft.py -I hw:0,0 -S

&lt;/pre&gt;


&lt;strong&gt;References:&lt;/strong&gt;

&lt;/p&gt;

&lt;p&gt;
GNU Radio tutorials: &lt;a href=&quot;http://www.nd.edu/%7ejnl/sdr/docs/tutorials/1.pdf&quot;&gt;http://www.nd.edu/~jnl/sdr/docs/tutorials/1.pdf&lt;/a&gt;

&lt;/p&gt;

&lt;p&gt;
&lt;a href=&quot;http://www.spectrum.ieee.org/oct06/4654/toolsb1&quot;&gt;http://www.spectrum.ieee.org/oct06/4654/toolsb1&lt;/a&gt;

&lt;/p&gt;

&lt;p&gt;
&lt;a href=&quot;http://www.kd7lmo.net/ground_gnuradio.html&quot;&gt;http://www.kd7lmo.net/ground_gnuradio.html&lt;/a&gt;

&lt;/p&gt;

&lt;p&gt;
SDR: &lt;a href=&quot;http://f4dan.free.fr/sdr_eng.html&quot;&gt;http://f4dan.free.fr/sdr_eng.html&lt;/a&gt;

&lt;/p&gt;

&lt;p&gt;
&lt;strong&gt;2] Demodulation using Baudline:&lt;/strong&gt;

&lt;/p&gt;

&lt;p&gt;
Ref: &lt;a href=&quot;http://www.domenech.org/homebrew-sdr/receiver-3.htm&quot;&gt;http://www.domenech.org/homebrew-sdr/receiver-3.htm&lt;/a&gt;

&lt;/p&gt;

&lt;p&gt;
&lt;a href=&quot;http://www.baudline.com/manual/glossary.html&quot;&gt;http://www.baudline.com/manual/glossary.html&lt;/a&gt;

&lt;/p&gt;

&lt;p&gt;
&lt;a href=&quot;http://www.burtonmackenzie.com/2007/05/poor-mans-spectrum-analyzer.html&quot;&gt;http://www.burtonmackenzie.com/2007/05/poor-mans-spectrum-analyzer.html&lt;/a&gt;

&lt;/p&gt;

&lt;p&gt;
&lt;a href=&quot;http://www.febo.com/pages/baudline/&quot;&gt;http://www.febo.com/pages/baudline/&lt;/a&gt;

&lt;/p&gt;

&lt;p&gt;
Use of decimate and down-mixer:

&lt;/p&gt;

&lt;p&gt;
Down-mixer allows us to move across frequency range down-sampling.

&lt;/p&gt;

&lt;p&gt;
What is decimation?

&lt;/p&gt;

&lt;p&gt;
&quot;a technique for reducing the number of samples in a discrete-time signal.&quot;

&lt;/p&gt;

&lt;p&gt;
Play deck window - advanced features: high pass and low pass filters,
use of shift for demodulation.

&lt;/p&gt;

&lt;p&gt;
&lt;strong&gt;3] ITC/EVP ref:&lt;/strong&gt;

&lt;/p&gt;

&lt;p&gt;
EM related: &lt;a href=&quot;http://members.tripod.com/GhostHuntersSociety/Article1.htm&quot;&gt;http://members.tripod.com/:/Article1.htm&lt;/a&gt;

&lt;/p&gt;

</description><pubDate>Fri, 20 Jun 2008 12:14:00 +0100</pubDate><category domain="http://1010.co.uk">2008.06.20</category>
<category domain="http://1010.co.uk">tech_notes2</category>
<category domain="http://1010.co.uk">scrying_tech_notes</category></item><item><title>commandline EVP: (2008.06.14:1)</title><link>http://1010.co.uk/evp.html#1</link><description>&lt;p&gt;
rough port of some features from EVPmaker:

&lt;/p&gt;

&lt;p&gt;
&lt;a href=&quot;http://www.stefanbion.de/evpmaker/index_e.htm&quot;&gt;http://www.stefanbion.de/evpmaker/index_e.htm&lt;/a&gt;

&lt;/p&gt;

&lt;p&gt;
for cutups of audio recordings, text usw.

&lt;/p&gt;

&lt;pre class=&quot;fontlock&quot;&gt;
gcc evp.c -o evp

cat crying | ./evp 40 10 1000 0

arguments: to, from, window size, overlap (1 or 0)
&lt;/pre&gt;
&lt;blockquote&gt;
&lt;p&gt;
 

&lt;/p&gt;
&lt;/blockquote&gt;
</description><pubDate>Sat, 14 Jun 2008 20:17:00 +0100</pubDate><category domain="http://1010.co.uk">evp</category></item><item><title>latest scrying collection: (2008.06.06:1)</title><link>http://1010.co.uk/scrying_tech_notes.html#50</link><description>&lt;p&gt;
&lt;a href=&quot;http://1010.co.uk/images/skry_coll.jpg&quot;&gt;&lt;img src=&quot;http://1010.co.uk/images/skry_coll.jpg&quot; alt=&quot;&quot; border=&quot;0&quot; /&gt;&lt;/a&gt;

&lt;/p&gt;

</description><pubDate>Fri, 06 Jun 2008 16:44:00 +0100</pubDate><category domain="http://1010.co.uk">scrying_tech_notes</category></item><item><title>RF signal strength meter 100 MHz-2.5GHz (2008.05.22:1)</title><link>http://1010.co.uk/2008.05.22.html#1</link><description>&lt;p&gt;
&lt;a href=&quot;http://1010.co.uk/images/ad8313_level.jpg&quot;&gt;&lt;img src=&quot;http://1010.co.uk/images/ad8313_level.jpg&quot; alt=&quot;&quot; border=&quot;0&quot; /&gt;&lt;/a&gt;

&lt;/p&gt;

&lt;p&gt;
Simple design based on Analog Device's AD8313 chip, providing visual
display of broadband signal strength and audio level output of
demodulated signal.

&lt;/p&gt;

&lt;p&gt;
The circuit detects, demodulates the amplitude and amplifies high
frequency electromagnetic emissions (100 MHz to 2.5 GHz approx) for
audio frequency output. The main component is the Analog Devices
AD8313 IC: RF logarithmic detector and controller, whose output is
further amplified by the TL082 op-amp.

&lt;/p&gt;

&lt;p&gt;
&lt;strong&gt;Circuit diagram:&lt;/strong&gt; 

&lt;/p&gt;

&lt;p&gt;
&lt;a href=&quot;http://1010.co.uk/images/rssi_strength_diag.png&quot;&gt;&lt;img src=&quot;http://1010.co.uk/images/rssi_strength_diag.png&quot; alt=&quot;&quot; border=&quot;0&quot; /&gt;&lt;/a&gt;

&lt;/p&gt;

&lt;p&gt;
Or: &lt;a href=&quot;http://1010.co.uk/images/rssi_strength.pdf&quot;&gt;http://1010.co.uk/images/rssi_strength.pdf&lt;/a&gt;

&lt;/p&gt;

&lt;p&gt;
&lt;strong&gt;PCB and all Kicad/GERBER files:&lt;/strong&gt; 

&lt;/p&gt;

&lt;p&gt;
&lt;a href=&quot;http://1010.co.uk/rssi_strength.tar.gz&quot;&gt;http://1010.co.uk/rssi_strength.tar.gz&lt;/a&gt;

&lt;/p&gt;

&lt;p&gt;
&lt;strong&gt;References:&lt;/strong&gt;

&lt;/p&gt;

&lt;p&gt;
&lt;a href=&quot;http://f6bon.albert.free.fr/Milliwattmetre.html&quot;&gt;http://f6bon.albert.free.fr/Milliwattmetre.html&lt;/a&gt;

&lt;/p&gt;

&lt;p&gt;
&lt;a href=&quot;http://www.analog.com/en/prod/0%252c%252c770_847_AD8313%252c00.html&quot;&gt;http://www.analog.com/en/prod/0&amp;#37;2c&amp;#37;2c770_847_AD8313&amp;#37;2c00.html&lt;/a&gt;

&lt;/p&gt;

&lt;p&gt;
&lt;a href=&quot;http://www.turnpoint.net/wireless/cantennahowto.html&quot;&gt;http://www.turnpoint.net/wireless/cantennahowto.html&lt;/a&gt;

&lt;/p&gt;

&lt;p&gt;
&lt;a href=&quot;http://www.engadget.com/2005/11/15/how-to-build-a-wifi-biquad-dish-antenna/&quot;&gt;http://www.engadget.com/2005/11/15/how-to-build-a-wifi-biquad-dish-antenna/&lt;/a&gt;
&lt;/p&gt;</description><pubDate>Thu, 22 May 2008 12:02:00 +0100</pubDate><category domain="http://1010.co.uk">2008.05.22</category>
<category domain="http://1010.co.uk">tech_notes2</category>
<category domain="http://1010.co.uk">ad8313</category></item><item><title>Latest skrying design PCB: (2008.05.21:2)</title><link>http://1010.co.uk/scrying_tech_notes.html#49</link><description>&lt;p&gt;
../images/skry002.jpg

&lt;/p&gt;

</description><pubDate>Wed, 21 May 2008 21:02:00 +0100</pubDate><category domain="http://1010.co.uk">scrying_tech_notes</category></item><item><title>New AVR-HID sensor (6x 10 bit resolution) - tiny surface mount version: (2008.05.21:1)</title><link>http://1010.co.uk/avrhid_dev.html#1</link><description>&lt;p&gt;
&lt;a href=&quot;http://1010.co.uk/images/avr_hid_tiny.jpg&quot;&gt;&lt;img src=&quot;http://1010.co.uk/images/avr_hid_tiny.jpg&quot; alt=&quot;&quot; border=&quot;0&quot; /&gt;&lt;/a&gt;

&lt;/p&gt;

&lt;p&gt;
see also: &lt;a href=&quot;avrhid.html&quot;&gt;avrhid&lt;/a&gt; and &lt;a href=&quot;avrprog.html&quot;&gt;avrprog&lt;/a&gt;
&lt;/p&gt;</description><pubDate>Wed, 21 May 2008 15:15:00 +0100</pubDate><category domain="http://1010.co.uk">avrhid_dev</category></item><item><title>Demons in the aether presentation: (2008.05.08:1)</title><link>http://1010.co.uk/demons.html#1</link><description>&lt;p&gt;
&lt;a href=&quot;http://1010.co.uk/demons.html&quot;&gt;http://1010.co.uk/demons.html&lt;/a&gt;
&lt;/p&gt;</description><pubDate>Thu, 08 May 2008 13:17:00 +0100</pubDate><category domain="http://1010.co.uk">demons</category></item></channel></rss>
