osmocom-analog/src/common/uhd.h

8 lines
253 B
C
Raw Normal View History

2017-01-04 13:22:24 +00:00
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);