view sr-data-logger.h @ 268:ec4462c7f8b7

Extensive cleanup of beatnote specific variables Reorganize the beatnote specific variables in arrays indexed by the beatnote enum constants LO, HG, SR. Also reorganize DDS frequency related variables in arrays indexed by the DDS channel number.
author Daniele Nicolodi <daniele.nicolodi@obspm.fr>
date Thu, 09 Jul 2015 23:11:00 +0200
parents 97112b45b838
children
line wrap: on
line source

#ifndef __SR_DATA_LOGGER_H__
#define __SR_DATA_LOGGER_H__

struct datalogger {
	int enabled;
	unsigned int sock;
	/* configuration parameters */
	char *id;
	char *host;
	int port;
};


int sr_datalogger_init(struct datalogger *dl);
void sr_datalogger_dispose(struct datalogger *dl);
int __sr_datalogger_send(struct datalogger *dl, double utc, double data);


static inline int sr_datalogger_send(struct datalogger *dl, double utc, double data)
{
	if (dl->enabled)
		return __sr_datalogger_send(dl, utc, data);
	return 0;
}

#endif