view DDS4xAD9959.h @ 194:4b74b81e0c79

Fix KK data provider. Wait for command reply before sending the next one.
author Daniele Nicolodi <daniele.nicolodi@obspm.fr>
date Mon, 31 Mar 2014 17:03:32 +0200
parents d9aae7d7f2c6
children
line wrap: on
line source

//==============================================================================
//
// Title:       DDS4xAD9959.h
// Purpose:     
//
// Created on:  by Volodimer Laurent, modified by YLC
// Copyright:   syrte. All Rights Reserved.
//
//==============================================================================

#ifndef __DDS4XAD9959_H__
#define __DDS4XAD9959_H__

#ifdef __cplusplus
    extern "C" {
#endif

//==============================================================================
// Include files

#include "cvidef.h"

//==============================================================================
// Defines
		
#define Adress	"192.168.0.5"								
#define Port1 	6665										 
#define Port2	6666										
#define Port3	6667
#define Port4	6668
#define Clk		1000000000									 
#define E48		1099511627776.0								
#define E32		4294967296.0								
#define E24		16777216.0									 
#define E16		65536.0										 
#define E8		256.0										

//==============================================================================
// Macros
		
#define WORD(Freq,Clk) pow(2,32)*(Freq/Clk)	
		
// DDS2xAD9858_Data : the data of crypto class DDS2xAD9858

typedef struct {
	double Frequency1 ; 
	double Frequency2 ;
	double Frequency3 ;
	double Frequency4 ;
	} DDS4XAD9959_Data ;
		
//==============================================================================		
// Variables
		
char  Request[255];
char Response[255];
unsigned int hConv;		

//==============================================================================		
// Functions


static int DDS4XAD9959_SendCmd(int DDSNum,char *Buffer) ; // essentially a private function, hence the static scope... 
int DDS4XAD9959_SetFrequency(DDS4XAD9959_Data * Instance, int DDSNum, double Freq) ;		
int DDS4XAD9959_Reset(DDS4XAD9959_Data * Instance) ;

#ifdef __cplusplus
    }
#endif

#endif  /* ndef __DDS2XAD9858_H__ */