element14 Community
element14 Community
    Register Log In
  • Site
  • Search
  • Log In Register
  • Community Hub
    Community Hub
    • What's New on element14
    • Feedback and Support
    • Benefits of Membership
    • Personal Blogs
    • Members Area
    • Achievement Levels
  • Learn
    Learn
    • Ask an Expert
    • eBooks
    • element14 presents
    • Learning Center
    • Tech Spotlight
    • STEM Academy
    • Webinars, Training and Events
    • Learning Groups
  • Technologies
    Technologies
    • 3D Printing
    • FPGA
    • Industrial Automation
    • Internet of Things
    • Power & Energy
    • Sensors
    • Technology Groups
  • Challenges & Projects
    Challenges & Projects
    • Design Challenges
    • element14 presents Projects
    • Project14
    • Arduino Projects
    • Raspberry Pi Projects
    • Project Groups
  • Products
    Products
    • Arduino
    • Avnet Boards Community
    • Dev Tools
    • Manufacturers
    • Multicomp Pro
    • Product Groups
    • Raspberry Pi
    • RoadTests & Reviews
  • About Us
  • Store
    Store
    • Visit Your Store
    • Choose another store...
      • Europe
      •  Austria (German)
      •  Belgium (Dutch, French)
      •  Bulgaria (Bulgarian)
      •  Czech Republic (Czech)
      •  Denmark (Danish)
      •  Estonia (Estonian)
      •  Finland (Finnish)
      •  France (French)
      •  Germany (German)
      •  Hungary (Hungarian)
      •  Ireland
      •  Israel
      •  Italy (Italian)
      •  Latvia (Latvian)
      •  
      •  Lithuania (Lithuanian)
      •  Netherlands (Dutch)
      •  Norway (Norwegian)
      •  Poland (Polish)
      •  Portugal (Portuguese)
      •  Romania (Romanian)
      •  Russia (Russian)
      •  Slovakia (Slovak)
      •  Slovenia (Slovenian)
      •  Spain (Spanish)
      •  Sweden (Swedish)
      •  Switzerland(German, French)
      •  Turkey (Turkish)
      •  United Kingdom
      • Asia Pacific
      •  Australia
      •  China
      •  Hong Kong
      •  India
      •  Korea (Korean)
      •  Malaysia
      •  New Zealand
      •  Philippines
      •  Singapore
      •  Taiwan
      •  Thailand (Thai)
      • Americas
      •  Brazil (Portuguese)
      •  Canada
      •  Mexico (Spanish)
      •  United States
      Can't find the country/region you're looking for? Visit our export site or find a local distributor.
  • Translate
  • Profile
  • Settings
Personal Blogs
  • Community Hub
  • More
Personal Blogs
Clem Martins's Blog Projects using Pi 3
  • Blog
  • Documents
  • Mentions
  • Sub-Groups
  • Tags
  • More
  • Cancel
  • New
  • Share
  • More
  • Cancel
Group Actions
  • Group RSS
  • More
  • Cancel
Engagement
  • Author Author: clem57
  • Date Created: 11 Mar 2016 2:24 AM Date Created
  • Views 666 views
  • Likes 3 likes
  • Comments 5 comments
  • pi 3
  • ads-b
  • flight aware
Related
Recommended

Projects using Pi 3

clem57
clem57
11 Mar 2016

First usage of Pi 3

 

I installed the Piaware software to feed ADS-B into FlightAware. At first I had problem with Dongle in use:

 

Found 1 device(s):

0: Generic RTL2832U

  Using device 0: Generic RTL2832U

  Kernel driver is active, or device is claimed by second instance of librtlsdr.
In the first case, please either detach or blacklist the kernel module
(dvb_usb_rtl28xxu), or enable automatic detaching at compile time.

  usb_claim_interface error -6
Failed to open rtlsdr device #0.

 

Luckily a solution is pretty straightforward. In /etc/modprobe.d create a file called blacklist.conf with the following:

 

blacklist dvb_usb_rtl28xxu
blacklist rtl2832
blacklist rtl2830

 

Apparently the upgrade incorporates a new Linux kernel which includes a DVB driver for the dongle as a TV receiver.  Since the device is already in use by this driver, usage fails by anything else. Next:

 

sudo reboot

 

Problem gone. Software works great on Pi 3.

 

Cheers,

Clem

  • Sign in to reply

Top Comments

  • clem57
    clem57 over 9 years ago +1
    I have been up for over 1 week and have published data for http://flightaware.com with the following statistics: Date joined Days Tot flights Ave/day Tot pos Ave/day Tot flights Ave/day Tot pos Ave/day…
  • Problemchild
    Problemchild over 9 years ago +1
    The default driver for the DVB dongle is obviously the DVB one in almost all the distros both for the RPI and for other devices so the possible/probable requirement to Blacklist or remove the DVB driver…
  • Problemchild
    Problemchild over 9 years ago

    The default driver for the DVB dongle is obviously the DVB one in almost all  the distros both for the RPI and for other devices so the possible/probable requirement to Blacklist or remove the DVB driver is a common one.

     

    You can have say one DVB dongle and another for SDR use by having both drivers but either forcing them to the correct devices via comman line options or UDev configurations based on say the device S/N rather than just the USB  ID

    • Cancel
    • Vote Up +1 Vote Down
    • Sign in to reply
    • More
    • Cancel
  • mcb1
    mcb1 over 9 years ago in reply to clem57

    Maybe I might need to try the FlightRadar24 software and see if it has any issues.

    I think I have a compatible dongle sitting around, but not sure if it has an external aerial.

     

    Cheers

    Mark

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • More
    • Cancel
  • clem57
    clem57 over 9 years ago

    The fun never ends. Last night the power goes out and stops PiAware on the Pi 3 of course. When power comes up, The pi 3 beat my router and the time was set by NTP 41 minutes late. So need to do either:

    sudo service ntp restart

    sudo reboot

     

    Next I change my password and needed:

    sudo piaware-config -user username -password

    The password will be prompted for.

    Weird thing was a sudo /etc/init.d/piaware start did not work. Finally a sudo reboot did.

    Lastly a look at the log in /tmp/piaware.out shows connection or enter:

    sudo piaware-status

     

    Clem

     

     

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • More
    • Cancel
  • clem57
    clem57 over 9 years ago

    I have been up for over 1 week and have published data for http://flightaware.com with the following statistics:

     

    image

         Date joined                    Days          Tot flights    Ave/day   Tot pos     Ave/day        Tot flights     Ave/day     Tot pos     Ave/day 

                                                           ADS-B =============================>     MLAT==============================>

     

    ADS-B     is planes sending information

    MLAT     is signals triangulated for position information

     

    Clem

     

    • Cancel
    • Vote Up +1 Vote Down
    • Sign in to reply
    • More
    • Cancel
  • clem57
    clem57 over 9 years ago

    A check on Piaware:

    pi@raspberrypi:~ $ sudo piaware-status

    dump1090 is running.

    faup1090 is running.

    piaware is running.

    dump1090 is listening for connections on port 30005.

    faup1090 is connected to port 30005.

    piaware is connected to FlightAware.

    dump1090 is producing data on port 30005.

    Computer is working! Processor is running at around 6-10%

     

    Clem

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • More
    • Cancel
element14 Community

element14 is the first online community specifically for engineers. Connect with your peers and get expert answers to your questions.

  • Members
  • Learn
  • Technologies
  • Challenges & Projects
  • Products
  • Store
  • About Us
  • Feedback & Support
  • FAQs
  • Terms of Use
  • Privacy Policy
  • Legal and Copyright Notices
  • Sitemap
  • Cookies

An Avnet Company © 2025 Premier Farnell Limited. All Rights Reserved.

Premier Farnell Ltd, registered in England and Wales (no 00876412), registered office: Farnell House, Forge Lane, Leeds LS12 2NE.

ICP 备案号 10220084.

Follow element14

  • X
  • Facebook
  • linkedin
  • YouTube