hp3478a.h

来自「用于惠普3478a万用表的编程驱动」· C头文件 代码 · 共 33 行

H
33
字号

/* = HP 3478A Multimeter Include File ===================================== */

#ifndef __hp3478a_HEADER
#define __hp3478a_HEADER

#if defined(__cplusplus) || defined(__cplusplus__)
extern "C" {
#endif

/* = GLOBAL FUNCTION DECLARATIONS =========================================== */
void hp3478a_init (int address);
void hp3478a_setup (int autozero, int display, char message[]);
void hp3478a_config_and_measure (int function, int range, int trigger,
                                 double *measurement);
void hp3478a_config (int function, int range, int trigger);
void hp3478a_measure (double *measurement);
void hp3478a_close (void);

/* = GLOBAL VARIABLE DECLARATIONS =========================================== */
/*  Global error variable for the instrument module  */
extern int hp3478a_err;

#if defined(__cplusplus) || defined(__cplusplus__)
}
#endif

/*****************************************************************************/
/*=== END INCLUDE FILE ======================================================*/
/*****************************************************************************/

#endif

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?