QuakeGod
2024-02-25 95322c84888cbe2e92024d4d65698f59b016cb52
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
/**
  ******************************************************************************
  * @file           : KBus.h
  * @brief          : Header for KBus.c file.
  *                   This file contains the common defines of the application.
  ******************************************************************************
    */
#include "KBusDefine.h"
 
#include "KMachine.h"
 
#ifndef __KBUS_H__
#define __KBUS_H__
 
#define KBUS_VER    (0x104)
 
//#define SYN_PREFIX 1
 
typedef unsigned char uchar;
 
extern unsigned char bKBusMaster,bKBusSlave,bKBusRepeater;;
 
 
extern unsigned char PacketBuf1[MaxPacketLength];
extern unsigned char PacketBuf2[MaxPacketLength];
 
 
extern unsigned char BufferIn[16];
extern unsigned char BufferOut[16];
extern unsigned char nStationID;
extern unsigned char nChilds;
extern int ChildStat[16];
extern unsigned char nCurPollId;
extern unsigned char nSeq;
 
extern volatile unsigned char KBusMasterRecved;
extern volatile unsigned char KBusMasterRecvOK;
extern volatile unsigned char KBusSlaveRecved;
extern unsigned int KBusSendTimeuS;
extern volatile int KBusRecvTimeuS;
extern int KBusDelayuS;
extern int KBusMaxDelayuS;
 
extern volatile unsigned int nSlaveTick;
 
extern stChnStat KBusChnStats[8];
/*
static inline char KWInit(int nPortNum) {  };
static inline char KWStart(int nPortNum) { };
static inline char KWGetClientNum(int nPortNum) { };
static inline char KWGetClientInfo(int nPortNum, int nClientId) { };
static inline char KWGetClientInCount(int nPortNum,int nClientId) {};
 
    
static inline char KWisSafeState(int nPortNum) { };
static inline char KWisRunState(int nPortNum) { };
static inline char KWGetState(int nPortNum) { };
static inline char KWChangeState(int nPortNum, int nNewState){ };
*/
 
 
unsigned char KBusBCC(void * pData, int nSize);
//
    /* Make a Packet and return Packet Length */
int KBusMakePacket(pKBPacket p1,uchar Src, uchar Dst, uchar nType, uchar nStatus, uchar DataLen, void *pData );
 
/*   */
int KBusCheckPacket(int nChn, pKBPacket p1, int len1);
 
/* */
int KBusParsePacket(int nChn, pKBPacket p1, int Len1);
 
/*
int InitMachine(stMachineConfig * pConfig);
 
int SetConfig(void );
 
int StartConfig(void);
    
int SetMasterConfig(void);
 
int StartPolling(void);
    
int ReadData(void);
 
int WriteData(void);
 
int GetStat(void);
*/
int KBusRepeaterFunc(int nChn);
int KBusMasterFunc(int nChn);
int KBusSlaveFunc(int nChn);
 
#endif    /* __KBUS_H__ */