ab cd
Senior Member
Dump1090-mut's frequent, sudden & silent deaths (heart strokes? ) have spoiled the whole experiment of bazooka dipole.Extensive test needed. Thanks for the moment.
PS. I'm also waiting for abcd bazooka dipole lol
Dump1090-mut's frequent, sudden & silent deaths (heart strokes? ) have spoiled the whole experiment of bazooka dipole.Extensive test needed. Thanks for the moment.
PS. I'm also waiting for abcd bazooka dipole lol
Oh no! I have used the same raspbian wheezy image for both Pi B+ and Pi 2Are you using a system image built for rpi2? It is different from the b+
Is there one? I haven't seen it.Are you using a system image built for rpi2? It is different from the b+
I checked Rasberry Pi official site. There is only one image of Raspbian Wheezy,and there is no mention of separate lmages for model B+ & model 2. From where to download wheezy image for model 2?Are you using a system image built for rpi2? It is different from the b+
Oh no! I have used the same raspbian wheezy image for both Pi B+ and Pi 2![]()
microSD Card #1:Did you upgrade the OS.? New kernel drivers for the ARM7 / hardware ect..ect...
http://thepihut.com/blogs/raspberry...spbian-on-your-microsd-for-the-raspberry-pi-2
Option 3..?
sudo apt-get update
sudo apt-get upgrade
I cant make the graph yet, I'll be going home for the weekend and need my pc running for the range graph, but next week il l reset the range graph andlet it run. I did notice my yagi is somewhat directional buy also receives from other sides.@xforce I'd be interested to see a plot from your Yagi. I've built one which points East and is a bit directional . It is indoors with no amp.
View attachment 1382
Have you checked the logs?microSD Card #1:
I formatted the microSD Card#1, then downloaded the new version (raspbian-wheezy-2015-02-16) from the RaspberryPi web site, and wrote the image to the microSD Card #1. Then inserted the microSD Card #1 in RPi Model 2, and configured Wheezy, installed dump1090-mutability, Piaware data feeder, FR24 data feeder, node.js & Planefinder data feeder.
microSD Card #2:
I inserted the microSD Card #2 in RPi Model 2 and gave following commands:
Code:sudo apt-get update sudo apt-get upgrade
And after all this, the dump1090-mutability keeps on dying regularly & silently![]()
I'm having nothing but troubles today. I'm in the process of rebuilding my primary feeder Pi. OS got corrupted somehow. I'm beginning to think these microSD cards don't last very long.Here I'm running 24/7 without a single issueI hope you have solved
Good that you found the instructions.@ab cd: Can you post the link to your instructions for installing fr24feed? I searched here on PlaneFinder and I can't find it.
Edit: Thanks, but never mind. I found the instructions.
Thanks. It's not been a great week here. My primary feeder Pi (with the "magic" spider) has seen its numbers go way down. The second Pi with the new spider and new coax is doing better than the primary, but the numbers are still not up to where the primary was before the changes.Good that you found the instructions.
I have posted it in Flightradar24 forum, not in Planefinder forum, as it is more relevant there.
Anyway for future reference to anyone else requiring the instructions, here is the link to my post in FR24 forum:
http://forum.flightradar24.com/thre...-Install-Raspian-OS-Dump1090-FR24-Data-Feeder
.
I too have had crashes numerous from both FA version of dump1090 and mut version.
Back now to Malcom Robb fork but a question ,
If dump1090 is run using ssh from command line :
cd dump1090
./dump1090 --interactive
There is a column "Signal" which is very handy for testing antenna installations.
I know that some wise users have customised their dump1090 :8080 web page display with the addition of range rings and other items.
Is it possible to omit an existing column such as "seen" and replace with "signal". Or just add the signal column to the display grid.
Just a thought and a request/wishlist for you clever chaps out there.
Thanks in advance.
( ... snip ... )
<td id="msgs" onclick="sortByMsgs();" align="right">Msgs</td>
<td id="seen" onclick="sortBySeen();" align="right">Age</td>
<td id="msgs" onclick="sortByMsgs();" align="right">Msgs</td>
<td id="signal" onclick="sortBySignal();" align="right">RSSI</td>
<td id="seen" onclick="sortBySeen();" align="right">Age</td>
<td align="right">MSGS</td>
<td align="right">SEEN</td>
<td align="right">MSGS</td>
<td align="right">RSSI</td>
<td align="right">SEEN</td>
function sortByRSSI() { sortBy('signal', compareNumeric, function(x) { return x.rssi; }); }
tableplane.tr.cells[7].textContent = tableplane.messages;
tableplane.tr.cells[8].textContent = tableplane.seen.toFixed(0);
tableplane.tr.cells[7].textContent = tableplane.messages;
tableplane.tr.cells[8].textContent = tableplane.rssi;
tableplane.tr.cells[9].textContent = tableplane.seen.toFixed(0);
Something like this?
View attachment 1383
I'm currently working on both an php-based more configurable user interface as I just now came up with an idea for a more configurable interface based on the local dump1090 files too. If it is releasable I'll make the code available. If you are sure enough, you can add this yourself by editing the following files:
In the file gmap.html:
Change:
To:Code:<td id="msgs" onclick="sortByMsgs();" align="right">Msgs</td> <td id="seen" onclick="sortBySeen();" align="right">Age</td>
Change:Code:<td id="msgs" onclick="sortByMsgs();" align="right">Msgs</td> <td id="signal" onclick="sortBySignal();" align="right">RSSI</td> <td id="seen" onclick="sortBySeen();" align="right">Age</td>
To:Code:<td align="right">MSGS</td> <td align="right">SEEN</td>
Code:<td align="right">MSGS</td> <td align="right">RSSI</td> <td align="right">SEEN</td>
In the file script.js:
Add:
above/below the other sorting functions.Code:function sortByRSSI() { sortBy('signal', compareNumeric, function(x) { return x.rssi; }); }
Change:
To:Code:tableplane.tr.cells[7].textContent = tableplane.messages; tableplane.tr.cells[8].textContent = tableplane.seen.toFixed(0);
Code:tableplane.tr.cells[7].textContent = tableplane.messages; tableplane.tr.cells[8].textContent = tableplane.rssi; tableplane.tr.cells[9].textContent = tableplane.seen.toFixed(0);