Mercurial > hg > fxanalyse
view FXAllan.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 | b3581a75a0b7 |
children |
line wrap: on
line source
/**************************************************************************/ /* LabWindows/CVI User Interface Resource (UIR) Include File */ /* Copyright (c) National Instruments 2015. All Rights Reserved. */ /* */ /* WARNING: Do not add to, delete from, or otherwise modify the contents */ /* of this include file. */ /**************************************************************************/ #include <userint.h> #ifdef __cplusplus extern "C" { #endif /* Panels and Controls: */ #define ALLANPANEL 1 /* callback function: CB_GeneralAllanPanel */ #define ALLANPANEL_NORMALIZER 2 /* control type: numeric, callback function: Allan_CB_ChangeNormalization */ #define ALLANPANEL_ALLANPLOT 3 /* control type: graph, callback function: (none) */ #define ALLANPANEL_MAX 4 /* control type: numeric, callback function: Allan_CB_ChangeYLim */ #define ALLANPANEL_MIN 5 /* control type: numeric, callback function: Allan_CB_ChangeYLim */ #define ALLANPANEL_CHECKBOX_AUTOSCALE 6 /* control type: radioButton, callback function: Allan_CB_ChangeAutoScale */ #define ALLANPANEL_RESETBUTTON 7 /* control type: command, callback function: Allan_CB_Reset */ #define ALLANPANEL_DRIFT 8 /* control type: numeric, callback function: (none) */ #define ALLANPANEL_DEDRIFT 9 /* control type: radioButton, callback function: (none) */ /* Control Arrays: */ /* (no control arrays in the resource file) */ /* Menu Bars, Menus, and Menu Items: */ /* (no menu bars in the resource file) */ /* Callback Prototypes: */ int CVICALLBACK Allan_CB_ChangeAutoScale(int panel, int control, int event, void *callbackData, int eventData1, int eventData2); int CVICALLBACK Allan_CB_ChangeNormalization(int panel, int control, int event, void *callbackData, int eventData1, int eventData2); int CVICALLBACK Allan_CB_ChangeYLim(int panel, int control, int event, void *callbackData, int eventData1, int eventData2); int CVICALLBACK Allan_CB_Reset(int panel, int control, int event, void *callbackData, int eventData1, int eventData2); int CVICALLBACK CB_GeneralAllanPanel(int panel, int event, void *callbackData, int eventData1, int eventData2); #ifdef __cplusplus } #endif