⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 tat8sim.hec

📁 这是用Labwindows开发的一个RF test程序。 用于日本机种的组装后ANT 测试。
💻 HEC
字号:
/******************************************************************************/
/* SCCS: %Z% Name: %M% Date US: %G% %U% Ver.: %I% */
/******************************************************************************/
/*F(*************************************************************************** 
 * File name : tat8sim.hec
 * Project : ROAD RUNNER
 * Module : TATSIM
 * Date : (US) %G% %U%
 * Version : %I%
 * Compiler name and release(s) :
 *----------------------------------------------------------------------------* 
 *----------------------------------------------------------------------------* 
 *                                    DESCRIPTION
 *
 *----------------------------------------------------------------------------* 
 *----------------------------------------------------------------------------* 
 *                           FUNCTIONS DEFINED IN THIS FILE
 *----------------------------------------------------------------------------* 
 * Name            | Object
 *----------------------------------------------------------------------------* 
 * 
 *----------------------------------------------------------------------------* 
 *----------------------------------------------------------------------------* 
 *                                    EVOLUTION
 *----------------------------------------------------------------------------* 
 * Date     | Author     | Arnb   | Description
 *----------------------------------------------------------------------------* 
 * 22.01.97 | A. NICOLAS |        | Creation
 *          |            |        | 
 * 16.11.99 |F. Sezille  |  2.10  | - Change message identifier declaration in
 *          |            |        |   order to avoid conflict between operation
 *          |            |        |   type values and v_command values.
 ***************************************************************************)F*/
/* #*/

#ifndef TAT8SIM_HEC
#define TAT8SIM_HEC


/* Constants for Messages identifier (v_command field) */
/*******************************************************/

/* Messages identifier is :                    */
/* --------------------------------------------*/
/* |   Process  |   Function   | Msg Type |    */
/* |  (6 bits)  |   (7 bits)   | (3 bits) |    */
/* --------------------------------------------*/

/* Constant for "Msg Type" */
/*-------------------------*/
#if defined(NEW_TAT_CMD_MGT_FTR)
#define	MSG_TYPE_TATSIM	0
#else
#define	MSG_TYPE_TATSIM	1
#define	PROCESS_TATSIM PROCESS_TAT
#endif
/* Constants for "Function" */
/*--------------------------*/
enum
{
  F_TAT_SIM_SAP_INIT,
  F_TAT_SIM_REGISTERS
};

/* Add "Msg Type" to "Function" */
/*------------------------------*/
#define TAT_SIM_SAP_INIT_TMP	MC_PCC_FUNCTION_TYPE( F_TAT_SIM_SAP_INIT, MSG_TYPE_TATSIM )
#define TAT_SIM_REGISTERS_TMP	MC_PCC_FUNCTION_TYPE( F_TAT_SIM_REGISTERS, MSG_TYPE_TATSIM )


/* Build entire messages identifiers */
/*-----------------------------------*/
#define TAT_SIM_SAP_INIT	MC_PCC_PROCESS_OPERATION(PROCESS_TATSIM, TAT_SIM_SAP_INIT_TMP)
#define TAT_SIM_REGISTERS	MC_PCC_PROCESS_OPERATION(PROCESS_TATSIM, TAT_SIM_REGISTERS_TMP)

















#define TIMER_INIT_SIM_WAIT   MC_DIN_MILLISECONDS_TO_TICK (250)

#endif /* TAT8SIM_HEC */ 

⌨️ 快捷键说明

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