mirror of
https://github.com/f4exb/sdrangel.git
synced 2026-06-02 06:04:39 -04:00
HackRF: generalize hardware LO correction to output plugin
This commit is contained in:
@@ -17,6 +17,8 @@
|
||||
|
||||
#include <stdio.h>
|
||||
#include <QtGlobal>
|
||||
#include <QDebug>
|
||||
|
||||
#include "devicehackrf.h"
|
||||
|
||||
DeviceHackRF::DeviceHackRF()
|
||||
@@ -153,3 +155,92 @@ void DeviceHackRF::enumOriginDevices(const QString& hardwareId, PluginInterface:
|
||||
hackrf_device_list_free(hackrf_devices);
|
||||
}
|
||||
|
||||
void DeviceHackRF::setDevicePPMCorrection(hackrf_device *dev, qint32 loPPMTenths)
|
||||
{
|
||||
if (!dev) {
|
||||
return;
|
||||
}
|
||||
|
||||
hackrf_error rc = HACKRF_SUCCESS;
|
||||
const uint32_t msnaRegBase = 26; // Multisynth NA config register base
|
||||
const int32_t msnaFreq = 800000000; // Multisynth NA target frequency
|
||||
int32_t xo = 25000000; //Crystal frequency
|
||||
int32_t a; // Multisynth NA XTAL multiplier integer 32 * 25mhz = 800mhz
|
||||
int32_t b; // Multisynth NA XTAL multiplier fractional numerator 0 to 1048575
|
||||
int32_t c; // Multisynth NA XTAL multiplier fractional denominator 1048575 max resolution
|
||||
int64_t rem;
|
||||
int32_t p1, p2, p3; // raw register values
|
||||
|
||||
xo = xo - xo/1000000*loPPMTenths/10; //adjust crystal freq by ppm error
|
||||
a = msnaFreq / xo; //multiplier integer
|
||||
rem = msnaFreq % xo; // multiplier remainder
|
||||
|
||||
if (rem)
|
||||
{ //fraction mode
|
||||
b = ((rem * 10485750)/xo +5) /10; //multiplier fractional numerator with rounding
|
||||
c = 1048575; //multiplier fractional divisor
|
||||
rc = (hackrf_error) hackrf_si5351c_write(dev, 22, 128); // MSNA set fractional mode
|
||||
qDebug() << "DeviceHackRF::setDevicePPMCorrection: si5351c MSNA set to fraction mode.";
|
||||
}
|
||||
else
|
||||
{ //integer mode
|
||||
b = 0;
|
||||
c = 1;
|
||||
rc = (hackrf_error) hackrf_si5351c_write(dev, 22, 0); // MSNA set integer mode
|
||||
qDebug() << "DeviceHackRF::setDevicePPMCorrection: si5351c MSNA set to integer mode.";
|
||||
}
|
||||
|
||||
qDebug() << "DeviceHackRF::setDevicePPMCorrection: si5351c MSNA rem" << rem;
|
||||
qDebug() << "DeviceHackRF::setDevicePPMCorrection: si5351c MSNA xoppm" << loPPMTenths / 10.0f;
|
||||
qDebug() << "DeviceHackRF::setDevicePPMCorrection: si5351c MSNA xo" << xo;
|
||||
qDebug() << "DeviceHackRF::setDevicePPMCorrection: si5351c MSNA a" << a;
|
||||
qDebug() << "DeviceHackRF::setDevicePPMCorrection: si5351c MSNA b" << b;
|
||||
qDebug() << "DeviceHackRF::setDevicePPMCorrection: si5351c MSNA c" << c;
|
||||
|
||||
p1 = 128*a + (128 * b/c) - 512;
|
||||
p2 = (128*b) % c;
|
||||
p3 = c;
|
||||
|
||||
if (rc == HACKRF_SUCCESS) {
|
||||
rc = (hackrf_error) hackrf_si5351c_write(dev,msnaRegBase, (p3 >> 8) & 0xFF); // reg 26 MSNA_P3[15:8]
|
||||
}
|
||||
if (rc == HACKRF_SUCCESS) {
|
||||
rc = (hackrf_error) hackrf_si5351c_write(dev, msnaRegBase + 1, p3 & 0xFF); // reg 27 MSNA_P3[7:0]
|
||||
}
|
||||
if (rc == HACKRF_SUCCESS) {
|
||||
rc = (hackrf_error) hackrf_si5351c_write(dev, msnaRegBase + 2, (p1 >> 16) & 0x3); // reg28 bits 1:0 MSNA_P1[17:16]
|
||||
}
|
||||
if (rc == HACKRF_SUCCESS) {
|
||||
rc = (hackrf_error) hackrf_si5351c_write(dev, msnaRegBase + 3, (p1 >> 8) & 0xFF); // reg 29 MSNA_P1[15:8]
|
||||
}
|
||||
if (rc == HACKRF_SUCCESS) {
|
||||
rc = (hackrf_error) hackrf_si5351c_write(dev, msnaRegBase + 4, p1 & 0xFF); // reg 30 MSNA_P1[7:0]
|
||||
}
|
||||
if (rc == HACKRF_SUCCESS) {
|
||||
rc = (hackrf_error) hackrf_si5351c_write(dev, msnaRegBase + 5, ((p3 & 0xF0000) >> 12) | ((p2 >> 16) & 0xF)); // bits 7:4 MSNA_P3[19:16], reg31 bits 3:0 MSNA_P2[19:16]
|
||||
}
|
||||
if (rc == HACKRF_SUCCESS) {
|
||||
rc = (hackrf_error) hackrf_si5351c_write(dev, msnaRegBase + 6, (p2 >> 8) & 0xFF); // reg 32 MSNA_P2[15:8]
|
||||
}
|
||||
if (rc == HACKRF_SUCCESS) {
|
||||
rc = (hackrf_error) hackrf_si5351c_write(dev, msnaRegBase + 7, p2 & 0xFF); // reg 33 MSNA_P2[7:0]
|
||||
}
|
||||
|
||||
if (rc != HACKRF_SUCCESS)
|
||||
{
|
||||
qDebug("DeviceHackRF::setDevicePPMCorrection: XTAL error adjust failed: %s", hackrf_error_name(rc));
|
||||
}
|
||||
else
|
||||
{
|
||||
qDebug() << "DeviceHackRF::setDevicePPMCorrection: si5351c MSNA registers"
|
||||
<< msnaRegBase << "<-" << ((p3 >> 8) & 0xFF)
|
||||
<< (msnaRegBase + 1) << "<-" << (p3 & 0xFF)
|
||||
<< (msnaRegBase + 2) << "<-" << ((p1 >> 16) & 0x3)
|
||||
<< (msnaRegBase + 3) << "<-" << ((p1 >> 8) & 0xFF)
|
||||
<< (msnaRegBase + 4) << "<-" << (p1 & 0xFF)
|
||||
<< (msnaRegBase + 5) << "<-" << (((p3 & 0xF0000) >> 12) | ((p2 >> 16) & 0xF))
|
||||
<< (msnaRegBase + 6) << "<-" << ((p2 >> 8) & 0xFF)
|
||||
<< (msnaRegBase + 7) << "<-" << (p2 & 0xFF);
|
||||
qDebug() << "DeviceHackRF::setDevicePPMCorrection: XTAL error adjusted by" << (loPPMTenths / 10.0f) << "PPM.";
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user