Mercurial > hg > fxanalyse
view KKFX80E.h @ 158:9154291658ef
Simplify DDS frequency juggling in N measurement
Clarify variable names. Update display at the end of the cicle with actual
frequency values. Remove unnecessary SetFrequency() calls after RampFrequency().
author | Daniele Nicolodi <daniele.nicolodi@obspm.fr> |
---|---|
date | Mon, 03 Feb 2014 15:22:35 +0100 |
parents | 4f1f353e84f5 |
children | 3427013e4f70 |
line wrap: on
line source
#ifndef __KKFX80E_H__ #define __KKFX80E_H__ #ifdef __cplusplus extern "C" { #endif int FX_Init(void); void FX_Free(void); int FX_OpenPort(char **port); void FX_ClosePort(void); int FX_SendCommand(char **cmd); int FX_GetReport(char **sep); void FX_Debug(BOOL value); int FX_Open(char *port); void FX_Close(void); int FX_Send(char *cmd); int FX_Recv(char **data, int timeout); char * FX_Error(void); #ifdef __cplusplus } #endif #endif /* ndef __KKFX80E_H__ */