Support for UHD SDR interface

This commit is contained in:
Andreas Eversberg
2017-01-04 14:22:24 +01:00
parent b30b61282c
commit 57993e3e48
12 changed files with 412 additions and 1 deletions

7
src/common/uhd.h Normal file
View File

@@ -0,0 +1,7 @@
int uhd_open(const char *device_args, double tx_frequency, double rx_frequency, double rate, double rx_gain, double tx_gain);
void uhd_close(void);
int uhd_send(float *buff, int num);
int uhd_receive(float *buff, int max);
int uhd_get_inbuffer(void);