aboutsummaryrefslogtreecommitdiffstats
path: root/src/common/uhd.h
blob: 686d6588b7f7917706d7a47cad64259a41518f2e (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);
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);