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.
49 lines
1.7 KiB
49 lines
1.7 KiB
1 year ago
|
//////////////////////////////////////////////////////////////////////////
|
||
|
/// COPYRIGHT NOTICE
|
||
|
/// Copyright (c) 2023 CCSENS
|
||
|
/// 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_ROAD_H_
|
||
|
#define __TPC_ROAD_H_
|
||
|
#include "tpc_x.h"///
|
||
|
|
||
|
#define D_s2b_road1_init() ts_Urec[D_UART1].sp = ts_Urecbuf.r1;ts_Urec[D_UART1].rmax = D_rec1_max;L1_s2b_road_init(D_UART1)
|
||
|
#define D_s2b_road2_init() ts_Urec[D_UART2].sp = ts_Urecbuf.r2;ts_Urec[D_UART2].rmax = D_rec2_max;L1_s2b_road_init(D_UART2)
|
||
|
#define D_s2b_road3_init() ts_Urec[D_UART3].sp = ts_Urecbuf.r3;ts_Urec[D_UART3].rmax = D_rec3_max;L1_s2b_road_init(D_UART3)
|
||
|
#define D_s2b_road4_init() ts_Urec[D_UART4].sp = ts_Urecbuf.r4;ts_Urec[D_UART4].rmax = D_rec4_max;L1_s2b_road_init(D_UART4)
|
||
|
|
||
|
//<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
|
||
|
void L1_s2b_road_init(u8 ch) ;
|
||
|
extern void L1_s2b_road(u8 ch);
|
||
|
extern void L1_s2b_road2(u8 ch);
|
||
|
extern void L1_s2b_road3(u8 ch);
|
||
|
extern void L1_s2b_road4(u8 ch);
|
||
|
|
||
|
|
||
|
#endif /* end __TPC_ROAD_H_ */
|
||
|
/*****************************************************************************
|
||
|
** End Of File
|
||
|
******************************************************************************/
|
||
|
|
||
|
|
||
|
|