GNU Radio's TEST Package
freesrp_common.h
Go to the documentation of this file.
1#ifndef INCLUDED_FREESRP_COMMON_H
2#define INCLUDED_FREESRP_COMMON_H
3
4#include <memory>
5#include <vector>
6#include <string>
7
8#include "osmosdr/ranges.h"
9
10#include <freesrp.hpp>
11
13{
14protected:
15 freesrp_common(const std::string &args);
16public:
17 static std::vector<std::string> get_devices();
18
19 size_t get_num_channels( void );
23 double set_freq_corr( double ppm, size_t chan = 0 );
24 double get_freq_corr( size_t chan = 0 );
25protected:
26 static std::shared_ptr<::FreeSRP::FreeSRP> _srp;
27 bool _ignore_overflow = false;
28};
29
30#endif
Definition: freesrp_common.h:13
static std::shared_ptr<::FreeSRP::FreeSRP > _srp
Definition: freesrp_common.h:26
double get_freq_corr(size_t chan=0)
static std::vector< std::string > get_devices()
osmosdr::freq_range_t get_bandwidth_range(size_t chan=0)
freesrp_common(const std::string &args)
double set_freq_corr(double ppm, size_t chan=0)
osmosdr::freq_range_t get_freq_range(size_t chan=0)
size_t get_num_channels(void)
bool _ignore_overflow
Definition: freesrp_common.h:27
osmosdr::meta_range_t get_sample_rates(void)
Definition: ranges.h:75