jks

About

Username
jks
Joined
Visits
35,074
Last Active
Roles
Member, Administrator, Moderator
Points
560
  • Is there a howto for getting a kiwi on sdr.hu.

    What's the error message? Is it from the "sdr.hu registration status" field on the sdr.hu tab of the admin page? Or the "status" field of the DUC section on the network tab?

    Since you're using DUC on no-ip.com, on the sdr.hu tab selection menu at bottom left, do you have "DUC Domain" selected? And does it show "the_host_name_you_setup.ddns.net"?

    On the network tab what yes/no answers do you get when you push the "check port open" button?

    wjniemi
  • NOAA FAX

    Yes, the v1.100 release improved the situation. Details here: https://github.com/jks-prv/Beagle_SDR_GPS/commit/ba3ec102465bfe29d8a6582cb4068ba4c8dbe700

    WA2ZKD
  • does ipv6 prevent registration? [fixed in v1.100]

    Looks like my fix in v1.100 worked. You're now listed on sdr.hu
    I added the "--inet4-only" option to the wget that sends the registration info to sdr.hu  That way it won't get an ipv6 packet and fail to match with the domain ip.

    Thanks, I didn't realize there were such things as ipv6 tunnels. I'll give it a try.

    rjschneider
  • does ipv6 prevent registration? [fixed in v1.100]

    The actual problem is with sdr.hu  If it receives a registration from an ipv6 packet, and the domain name in the packet has both ipv4 ("A") and ipv6 ("AAAA") DNS records then it always tries to match with the ipv4 and not the ipv6 like it should. The other problem I discovered is that sdr.hu doesn't seem to accept ipv6 addresses as a valid domain name as it does for ipv4. That would have been the other way to solve the problem.

    rjschneider
  • does ipv6 prevent registration? [fixed in v1.100]

    Alright, v1.100 should fix this problem. Thanks for giving me the info about the failure. That was a big help.

    rjschneider
  • does ipv6 prevent registration? [fixed in v1.100]

    Could you please restart your Kiwi? (pull and replug the power, or login and type "cdp", "ku").
    I used the wrong command to restart the server after making a change and now I can't get back in.. Thanks.

    rjschneider
  • v1.98 changes/improvements [right-click menu]

    The v1.98 release contains:

    Another round of security and memory handling fixes.
    Some fixes that should mostly eliminate the sudden shifting/tearing of the FAX display (this is different from the skew/slant correction adjustment that still needs to be added).
    A new right-click / right-button menu containing items that were only accessible on hard-to-remember keyboard shortcuts (database lookups, passband restore, etc.)
    If you're the Kiwi's admin, a new graphically-assisted way of setting the manual ADC clock calibration if you're not using GPS cal. See config tab of admin page for instructions.


    WA2ZKDf1jekLX1DQ
  • v1.98 changes/improvements [right-click menu]

    The v1.98 release contains:

    Another round of security and memory handling fixes.
    Some fixes that should mostly eliminate the sudden shifting/tearing of the FAX display (this is different from the skew/slant correction adjustment that still needs to be added).
    A new right-click / right-button menu containing items that were only accessible on hard-to-remember keyboard shortcuts (database lookups, passband restore, etc.)
    If you're the Kiwi's admin, a new graphically-assisted way of setting the manual ADC clock calibration if you're not using GPS cal. See config tab of admin page for instructions.


    WA2ZKDf1jekLX1DQ
  • v1.98 changes/improvements [right-click menu]

    The v1.98 release contains:

    Another round of security and memory handling fixes.
    Some fixes that should mostly eliminate the sudden shifting/tearing of the FAX display (this is different from the skew/slant correction adjustment that still needs to be added).
    A new right-click / right-button menu containing items that were only accessible on hard-to-remember keyboard shortcuts (database lookups, passband restore, etc.)
    If you're the Kiwi's admin, a new graphically-assisted way of setting the manual ADC clock calibration if you're not using GPS cal. See config tab of admin page for instructions.


    WA2ZKDf1jekLX1DQ
  • ADC Clock Frequency Correction via GPS Timing

    The ADC clock counting occurs before the DDS and is unaffected by any tuning compensation. You're correct, the "slightly off" sample rate derived from the division of the ADC clock is not corrected. But it doesn't matter. You just want to fix the downstream effects of the sample rate being slightly off. Namely getting the waterfall to look "on frequency" and the audio to produce the exactly correct tones. If you can determine what the exact, slightly off, constantly changing sample rate is using the GPS then this should be similar to having used a very expensive TCXO/VCTCXO with no GPS involved at all. Fixing the tuning completely compensates for the sample rate being off.

    The 48-bit counter in the FPGA, clocked by the ADC clock and sampled by the GPS, is very similar to a traditional frequency counter. If the gate time of the counter is known to be accurate then the ratio of the counter to the gate time gives you the frequency: ADC_clk (Hz) = ADC_count / GPS_gate_time, where Hz is "counts" per second and GPS_gate_time is the difference between two GPS time samples measured in seconds. Another way:

    ADC_clk (counts)   ADC_count (counts)             1
    ---------------- = ------------------- X -------------------
            (sec)                            GPS_gate_time (sec)

    The software GPS in the Kiwi doesn't even have a 1 PPS. It produces a new GPS position/time solution every 4 seconds or so and GPS_time is simply the difference between two successive solutions. Since both solutions are accurate to roughly a microsecond the "gate time" is accurately known. There is one more thing required. In the FPGA the ADC clock counter is sampled simultaneously when the GPS hardware that determines a solution is sampled. So the sampling is synchronized.

    MikeR