123 lines
3.7 KiB
C
123 lines
3.7 KiB
C
/*
|
|
* Copyright 2012 Jared Boone
|
|
* Copyright 2013 Benjamin Vernoux
|
|
*
|
|
* This file is part of HackRF.
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; either version 2, or (at your option)
|
|
* any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program; see the file COPYING. If not, write to
|
|
* the Free Software Foundation, Inc., 51 Franklin Street,
|
|
* Boston, MA 02110-1301, USA.
|
|
*/
|
|
|
|
#include "tuning.h"
|
|
|
|
#include <rffc5071.h>
|
|
#include <max2837.h>
|
|
|
|
#include "rf_path.h"
|
|
|
|
#define FREQ_ONE_MHZ (1000*1000)
|
|
|
|
#define MIN_LP_FREQ_MHZ (5)
|
|
#define MAX_LP_FREQ_MHZ (2300)
|
|
|
|
#define MIN_BYPASS_FREQ_MHZ (2300)
|
|
#define MAX_BYPASS_FREQ_MHZ (2700)
|
|
|
|
#define MIN_HP_FREQ_MHZ (2700)
|
|
#define MAX_HP_FREQ_MHZ (6800)
|
|
|
|
static uint32_t max2837_freq_nominal_hz=2560000000;
|
|
|
|
uint32_t freq_mhz_cache=100, freq_hz_cache=0;
|
|
/*
|
|
* Set freq/tuning between 5MHz to 6800 MHz (less than 16bits really used)
|
|
* hz between 0 to 999999 Hz (not checked)
|
|
* return false on error or true if success.
|
|
*/
|
|
bool set_freq(uint32_t freq_mhz, uint32_t freq_hz)
|
|
{
|
|
bool success;
|
|
uint32_t RFFC5071_freq_mhz;
|
|
uint32_t MAX2837_freq_hz;
|
|
uint32_t real_RFFC5071_freq_hz;
|
|
uint32_t tmp_hz;
|
|
|
|
success = true;
|
|
|
|
const max2837_mode_t prior_max2837_mode = max2837_mode();
|
|
max2837_mode_standby();
|
|
if(freq_mhz >= MIN_LP_FREQ_MHZ)
|
|
{
|
|
if(freq_mhz < MAX_LP_FREQ_MHZ)
|
|
{
|
|
rf_path_set_filter(RF_PATH_FILTER_LOW_PASS);
|
|
RFFC5071_freq_mhz = (max2837_freq_nominal_hz / FREQ_ONE_MHZ) - freq_mhz;
|
|
/* Set Freq and read real freq */
|
|
real_RFFC5071_freq_hz = rffc5071_set_frequency(RFFC5071_freq_mhz);
|
|
if(real_RFFC5071_freq_hz < RFFC5071_freq_mhz * FREQ_ONE_MHZ)
|
|
{
|
|
tmp_hz = -(RFFC5071_freq_mhz * FREQ_ONE_MHZ - real_RFFC5071_freq_hz);
|
|
}else
|
|
{
|
|
tmp_hz = (real_RFFC5071_freq_hz - RFFC5071_freq_mhz * FREQ_ONE_MHZ);
|
|
}
|
|
MAX2837_freq_hz = max2837_freq_nominal_hz + tmp_hz + freq_hz;
|
|
max2837_set_frequency(MAX2837_freq_hz);
|
|
}else if( (freq_mhz >= MIN_BYPASS_FREQ_MHZ) && (freq_mhz < MAX_BYPASS_FREQ_MHZ) )
|
|
{
|
|
rf_path_set_filter(RF_PATH_FILTER_BYPASS);
|
|
MAX2837_freq_hz = (freq_mhz * FREQ_ONE_MHZ) + freq_hz;
|
|
/* RFFC5071_freq_mhz <= not used in Bypass mode */
|
|
max2837_set_frequency(MAX2837_freq_hz);
|
|
}else if( (freq_mhz >= MIN_HP_FREQ_MHZ) && (freq_mhz < MAX_HP_FREQ_MHZ) )
|
|
{
|
|
rf_path_set_filter(RF_PATH_FILTER_HIGH_PASS);
|
|
RFFC5071_freq_mhz = freq_mhz - (max2837_freq_nominal_hz / FREQ_ONE_MHZ);
|
|
/* Set Freq and read real freq */
|
|
real_RFFC5071_freq_hz = rffc5071_set_frequency(RFFC5071_freq_mhz);
|
|
if(real_RFFC5071_freq_hz < RFFC5071_freq_mhz * FREQ_ONE_MHZ)
|
|
{
|
|
tmp_hz = (RFFC5071_freq_mhz * FREQ_ONE_MHZ - real_RFFC5071_freq_hz);
|
|
}else
|
|
{
|
|
tmp_hz = -(real_RFFC5071_freq_hz - RFFC5071_freq_mhz * FREQ_ONE_MHZ);
|
|
}
|
|
MAX2837_freq_hz = max2837_freq_nominal_hz + tmp_hz + freq_hz;
|
|
max2837_set_frequency(MAX2837_freq_hz);
|
|
}else
|
|
{
|
|
/* Error freq_mhz too high */
|
|
success = false;
|
|
}
|
|
}else
|
|
{
|
|
/* Error freq_mhz too low */
|
|
success = false;
|
|
}
|
|
max2837_set_mode(prior_max2837_mode);
|
|
freq_mhz_cache = freq_mhz;
|
|
freq_hz_cache = freq_hz;
|
|
return success;
|
|
}
|
|
|
|
bool set_freq_if(const uint32_t freq_if_hz) {
|
|
bool success = false;
|
|
if( (freq_if_hz >= MIN_BYPASS_FREQ_MHZ) && (freq_if_hz <= MAX_BYPASS_FREQ_MHZ) ) {
|
|
max2837_freq_nominal_hz = freq_if_hz;
|
|
success = set_freq(freq_mhz_cache, freq_hz_cache);
|
|
}
|
|
return success;
|
|
}
|