QuakeGod
2023-02-01 2364f06313efb8eb97d4ae741a31cdd2efc175d2
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
/**
  ******************************************************************************
  * @file           : KWireLess.h
  * @brief          : Header for KWireLess.c file.
  *                   This file contains the common defines of the application.
  ******************************************************************************
    */
#include "KMachine.h"
#include <stdint.h>
#include "user.h"
 
#include "radio/inc/sx126x-board.h"
 
 
#ifndef __KWIRELESS_H__
#define __KWIRELESS_H__
typedef unsigned char uchar;
 
 
/**************************************************************************************************************************************
Demo 程序流程  RadioEnableMaster=true  为主机端,主机端发送一个"PING"数据后切换到接收,等待从机返回的应答"PONG"数据LED闪烁
 
               RadioEnableMaster=false 为从机端,从机端接收到主机端发过来的"PING"数据后LED闪烁并发送一个"PONG"数据作为应答
***************************************************************************************************************************************/
 
extern uint32_t nRadioChannel;
void SendPingMsg(void );
 
int KWireLessInit(bool bRadioEnableMaster, uint32_t nChn);
int KWireLessStart(void);
 
void OnTxDone( void );
void OnRxDone( uint8_t *payload, uint16_t size, int16_t rssi, int8_t snr );
void OnTxTimeout( void );
void OnRxTimeout( void );
void OnRxError( void );
 
void LedToggle(void);
 
typedef enum tag_KWStates
{
    KW_PON,
    KW_UNINIT,
    KW_INITED,
    KW_UNCONFIGED,
    KW_CONFIGING,
    KW_CONFIGED,
    KW_READY,
    KW_STARTING,
    KW_OPERATION,
    KW_ERROR1,
    KW_ERROR2,
    KW_ERROR3,
}KWStates;
 
 
int KWMasterProc(void);
int KWSlaveProc(void);
int MkKwPkg(void* pPkg, int len);
 
int KWSendPkg(void* pPkg, int len);
int KWProcPkg(void);
#endif ///*  __KBUS_H__  */