reduced minimum tuning frequency from 5 MHz to 0 Hz

This commit is contained in:
Michael Ossmann
2014-03-03 12:21:28 -07:00
parent dd6d192e13
commit fbe4c481f2
2 changed files with 2 additions and 2 deletions

View File

@ -29,7 +29,7 @@
#define FREQ_ONE_MHZ (1000*1000) #define FREQ_ONE_MHZ (1000*1000)
#define MIN_LP_FREQ_MHZ (5) #define MIN_LP_FREQ_MHZ (0)
#define MAX_LP_FREQ_MHZ (2150) #define MAX_LP_FREQ_MHZ (2150)
#define MIN_BYPASS_FREQ_MHZ (2150) #define MIN_BYPASS_FREQ_MHZ (2150)

View File

@ -84,7 +84,7 @@ int gettimeofday(struct timeval *tv, void* ignored)
#define FREQ_ONE_MHZ (1000000ull) #define FREQ_ONE_MHZ (1000000ull)
#define DEFAULT_FREQ_HZ (900000000ull) /* 900MHz */ #define DEFAULT_FREQ_HZ (900000000ull) /* 900MHz */
#define FREQ_MIN_HZ (5000000ull) /* 5MHz */ #define FREQ_MIN_HZ (0ull) /* 0 Hz */
#define FREQ_MAX_HZ (6800000000ull) /* 6800MHz */ #define FREQ_MAX_HZ (6800000000ull) /* 6800MHz */
#define DEFAULT_SAMPLE_RATE_HZ (10000000) /* 10MHz default sample rate */ #define DEFAULT_SAMPLE_RATE_HZ (10000000) /* 10MHz default sample rate */