njc

About

Username
njc
Joined
Visits
572
Last Active
Roles
Member
Points
4
  • Seeed Metal case and GPIO connector

    I was able to use DowKey RF switches/relays without a driver circuit. The logic input pins just needed a pulldown to GND (I used 10k).

    Nick W1NJC
    KA7U
  • My KiwiSDR has Died [power supply problem]

    If the resistance on the barrel connector (kiwi board by itself) looks good, try to apply power (5V, 2A or more) and check the voltage rails. You can also check if anything is getting hot.

    See this thread/comment: http://forum.kiwisdr.com/index.php?p=/discussion/comment/11016#Comment_11016

    ZL1KFM
  • broken rx?

    I 2nd the idea of reducing antenna gain or maybe try an attenuator. See what effect a 10 or 20 dB pad has. I run mine with 3dB (or is it 6dB?) on it all the time because I get overload from AM BCB and SW BCB (the 6MHz stuff I think).

    Keep us posted.

    johnk5mo
  • Two deaths in the family

    Did you try measuring DC resistance (with no power applied) on the kiwi's main voltage rails? 5V, 3.3[this comes from the BB], 3.3G, 3.3A, 1.8V, 1V? Measure these with the kiwi board disconnected from the BB.
    There are some pins on P9, filter caps and some test points that make these measurements pretty easy:

    P9-1: GND
    P9-4: 3.3 (from beagle)
    P9-6: 5VE
    P9-8: 5V
    C5: 1.8V
    C20/C703: 1.0V
    TP near GPS can: 3.3G
    R406 near RF can: 3.3A

    See if you have relatively high-impedance on all of these rails. If you have a short (< 100 ohms or so), then we need to track that down. If all looks good, try applying 5V (with a supply capable of 2A or more) to the barrel connector and measure DC voltage at all of the above points. Only P9-4 should show no voltage. Conversely you could try a current-limited supply and look for hot spots, but I would expect your DC resistance measurements to indicate an area of concern. If the BB boots fine on its own but dies when the kiwi is attached, either your supply is incapable of sourcing the current or something on the kiwi is pulling down the rails on the BB. You need to find it.

    The schematic is available here: http://www.kiwisdr.com/docs/KiwiSDR/kiwi.schematic.pdf
    A high-res picture of the board here: http://kiwisdr.com/ks/Seeed.sample.1.jpg

    Good luck,
    Nick W1NJC
    johnk5mo
  • Replace FPGA? [success!]

    Success!

    The BGA operation worked and the kiwi is functional again using a BBB that I had.

    Now, I've been trying very hard to get the MT7601 USB wifi dongle working and it's proving just as difficult as last time. I have managed to finally get it working but via connman this time. It seems like it takes a while for the kiwi service to respond on the wifi address. The address displayed in the kiwi admin page always shows the eth0 address. This thread is not really the place to talk about this but I wanted to give you an update.

    Nick
    cathalferrisHB9TMCChrisSmolinskiPowernumptydl7awl
  • Replace FPGA? [success!]

    Success!

    The BGA operation worked and the kiwi is functional again using a BBB that I had.

    Now, I've been trying very hard to get the MT7601 USB wifi dongle working and it's proving just as difficult as last time. I have managed to finally get it working but via connman this time. It seems like it takes a while for the kiwi service to respond on the wifi address. The address displayed in the kiwi admin page always shows the eth0 address. This thread is not really the place to talk about this but I wanted to give you an update.

    Nick
    cathalferrisHB9TMCChrisSmolinskiPowernumptydl7awl
  • Replace FPGA? [success!]

    Success!

    The BGA operation worked and the kiwi is functional again using a BBB that I had.

    Now, I've been trying very hard to get the MT7601 USB wifi dongle working and it's proving just as difficult as last time. I have managed to finally get it working but via connman this time. It seems like it takes a while for the kiwi service to respond on the wifi address. The address displayed in the kiwi admin page always shows the eth0 address. This thread is not really the place to talk about this but I wanted to give you an update.

    Nick
    cathalferrisHB9TMCChrisSmolinskiPowernumptydl7awl
  • Replace FPGA? [success!]

    Success!

    The BGA operation worked and the kiwi is functional again using a BBB that I had.

    Now, I've been trying very hard to get the MT7601 USB wifi dongle working and it's proving just as difficult as last time. I have managed to finally get it working but via connman this time. It seems like it takes a while for the kiwi service to respond on the wifi address. The address displayed in the kiwi admin page always shows the eth0 address. This thread is not really the place to talk about this but I wanted to give you an update.

    Nick
    cathalferrisHB9TMCChrisSmolinskiPowernumptydl7awl
  • Replace FPGA? [success!]

    Success!

    The BGA operation worked and the kiwi is functional again using a BBB that I had.

    Now, I've been trying very hard to get the MT7601 USB wifi dongle working and it's proving just as difficult as last time. I have managed to finally get it working but via connman this time. It seems like it takes a while for the kiwi service to respond on the wifi address. The address displayed in the kiwi admin page always shows the eth0 address. This thread is not really the place to talk about this but I wanted to give you an update.

    Nick
    cathalferrisHB9TMCChrisSmolinskiPowernumptydl7awl
  • web file modifications (CSS/JS)

    This CSS seems to help most mobile browsers and makes the UI usable.


    @media only screen
    and (max-device-width: 600px)
    {
    #id-readme {
    display: none;
    }

    #id-control {
    transform: scale(.8);
    transform-origin: bottom right;
    right:0 !important
    }

    div#id-top-bar * {
    font-size: 0.9em;
    }

    #id-band-container {

    display: none;
    }
    }


    In order to implement this you have to manually edit your ~/Beagle_SDR_GPS/web/openwebrx/openwebrx.css file, and then per the instructions above:

    cdp;mst #stops running service

    then either:
    ./k #runs application in foreground mode

    OR
    make install #recompiles
    ./ku #runs application in background mode
    Powernumpty