You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
51 lines
1.3 KiB
51 lines
1.3 KiB
//////////////////////////////////////////////////////////////////////////
|
|
/// COPYRIGHT NOTICE
|
|
/// Copyright (c) 2018, 传控科技
|
|
/// All rights reserved.
|
|
///
|
|
/// @file tpc_fsk.c
|
|
/// @brief transaction protocol control of fsk
|
|
///
|
|
///(本文件实现的功能的详述)
|
|
///
|
|
/// @version 1.1 CCsens technology
|
|
/// @author CC
|
|
/// @date 20150102
|
|
///
|
|
///
|
|
/// @version 1.2 CCsens technology
|
|
/// @author CC
|
|
/// @date 20180308
|
|
/// @info 整理
|
|
|
|
//
|
|
//////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
#ifndef __TPC_DEBUG_H_
|
|
#define __TPC_DEBUG_H_
|
|
|
|
#include "tpc_x.h"
|
|
//<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
|
|
//定长协议:长度固定为5个字节
|
|
//eg: F1 01 02 03 06
|
|
typedef struct
|
|
{//8byte
|
|
vU8 filter;
|
|
vU8 R1;
|
|
vU8 R2;
|
|
vU8 R3;
|
|
vU8 ocr;
|
|
}TS_P_debug;
|
|
|
|
#define D_HETU_FX_buf_max 5 //定长协议 长度为5
|
|
|
|
extern void L1_s2b_PH1 (struct _tp_handler_x *p);// reentrant;
|
|
|
|
#endif /* end __TPC_DEBUG_H_ */
|
|
/*****************************************************************************
|
|
** End Of File
|
|
******************************************************************************/
|
|
|
|
|
|
|
|
|