Mercurial > hg > fxanalyse
view ad9912.h @ 262:ebbe0f198322
Fix DDS client connection retry
author | Daniele Nicolodi <daniele.nicolodi@obspm.fr> |
---|---|
date | Tue, 16 Jun 2015 17:16:11 +0200 |
parents | 5296f3bcd160 |
children |
line wrap: on
line source
#ifndef __AD9912_H__ #define __AD9912_H__ #include "xsocket.h" #define REVISION 1 struct ad9912 { struct xsocket *sock; double clock; double frequency[4]; }; int ad9912_init(struct ad9912 *d, const char *hostname, double clock); int ad9912_get_frequency(struct ad9912 *d, unsigned channel, double *f); int ad9912_set_frequency(struct ad9912 *d, unsigned channel, double f); int ad9912_ramp_frequency(struct ad9912 *d, unsigned channel, double f, double step); #endif