aboutsummaryrefslogtreecommitdiffstats
path: root/src/common/uhd.h
blob: fd224e123bdda2d380fcff776e205814128b3312 (plain)
1
2
3
4
5
6
7
8
int uhd_open(const char *device_args, double tx_frequency, double rx_frequency, double rate, double rx_gain, double tx_gain, double bandwidth);
int uhd_start(void);
void uhd_close(void);
int uhd_send(float *buff, int num);
int uhd_receive(float *buff, int max);
int uhd_get_tosend(int latspl);