forked from gkaindl/rfm12b-linux
-
Notifications
You must be signed in to change notification settings - Fork 0
/
rfm12b_ioctl.h
154 lines (132 loc) · 5.38 KB
/
rfm12b_ioctl.h
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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
/* rfm12b-linux: linux kernel driver for the rfm12(b) RF module by HopeRF
* Copyright (C) 2013 Georg Kaindl
*
* This file is part of rfm12b-linux.
*
* rfm12b-linux is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 2 of the License, or
* (at your option) any later version.
*
* rfm12b-linux is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with rfm12b-linux. If not, see <http://www.gnu.org/licenses/>.
*/
#if !defined(__RFM12B_IOCTL_H__)
#define __RFM12B_IOCTL_H__
#include <linux/ioctl.h>
#include "rfm12b_config.h"
/*
Allows you to obtain a structure with statistics about the currently open
rfm12b board. See the definition of struct rfm12b_stats for details.
Tracked stats include things like how many bytes and packets have been
sent and received, how many crc16 checks for received packets failed,
if the "low battery" status is currently set (probably not all too useful),
and other driver-internal statistics like rx/tx overflows and underruns.
*/
#define RFM12B_IOCTL_GET_STATS _IOR(RFM12B_SPI_MAJOR, 0, rfm12b_stats*)
/*
Get the currently set group identifier for the given board. Only boards
within the same group can talk to each other.
*/
#define RFM12B_IOCTL_GET_GROUP_ID _IOR(RFM12B_SPI_MAJOR, 1, int)
/*
Get the currently set band for the board. The band should match whatever
your board has been tuned to (check the bottom silkscreen of the rfm12b
module).
The settings are as follows
1 ... 433mhz
2 ... 868mhz
*/
#define RFM12B_IOCTL_GET_BAND_ID _IOR(RFM12B_SPI_MAJOR, 2, int)
/*
Get the currently set bitrate for the board as a register value. Boards
must be set to same bitrate in order to communicate with each other. Lower
bitrates offer greater range and are more error-tolerant.
You can use the macro RFM12B_BIT_RATE_FROM_BYTE to translate this value
to a bits-per-second value.
*/
#define RFM12B_IOCTL_GET_BIT_RATE _IOR(RFM12B_SPI_MAJOR, 3, int)
#define RFM12B_BIT_RATE_FROM_BYTE(b) (10000000/29/((b&0x7f)+1)/(1+(b&0x80)*7))
/*
Get the currently set Jee ID for the board. If 0, the driver is not
in Jee-compatible mode (check the doc for RFM12B_DEFAULT_JEE_ID in
rfm12b_config.h for more info).
*/
#define RFM12B_IOCTL_GET_JEE_ID _IOR(RFM12B_SPI_MAJOR, 4, int)
/*
Get whether automatic sending of ACK packets in Jee-compatible mode
is active (also see the docs for RFM12B_DEFAULT_JEE_AUTOACK in
rfm12b_config.h)
*/
#define RFM12B_IOCTL_GET_JEEMODE_AUTOACK _IOR(RFM12B_SPI_MAJOR, 5, int)
/*
Set the group identifier for the given board. Only boards within the
same group can talk to each other.
*/
#define RFM12B_IOCTL_SET_GROUP_ID _IOW(RFM12B_SPI_MAJOR, 6, int)
/*
Set the band for the board. The band should match whatever your board
has been tuned to (check the bottom of the silkscreen of the rfm12b
module).
The settings are as follows
1 ... 433mhz
2 ... 868mhz
*/
#define RFM12B_IOCTL_SET_BAND_ID _IOW(RFM12B_SPI_MAJOR, 7, int)
/*
Set the bitrate for the board. Boards must be set to the same bitrate
to communicate with each other.
Please refer to the datasheet on how to calculate the byte value.
*/
#define RFM12B_IOCTL_SET_BIT_RATE _IOW(RFM12B_SPI_MAJOR, 8, int)
/*
Set the Jee ID for the board. If this value is non-zero, then the
driver is in the Jee-compatible mode. Please check the docs for
RFM12B_DEFAULT_JEE_ID in rfm12b_config.h for more info on Jee-
compatible mode.
*/
#define RFM12B_IOCTL_SET_JEE_ID _IOW(RFM12B_SPI_MAJOR, 9, int)
/*
Enable or disable (1 or 0) the automatic sending for ACK packets
in Jee-compatible mode. Check the docs for RFM12B_DEFAULT_JEE_AUTOACK
in rfm12b_config.h for more information.
*/
#define RFM12B_IOCTL_SET_JEEMODE_AUTOACK _IOW(RFM12B_SPI_MAJOR, 10, int)
/*
Retrieve information about the device, e.g. its type and its capabilities.
*/
#define RFM12B_IOCTL_GET_MODULE_INFO _IOR(RFM12B_SPI_MAJOR, 11, rfm12b_module_info*)
/*
Structure for driver statistics (see RFM12B_IOCTL_GET_STATS).
All statistics are tracked since the when the device was opened
by the current user-space process.
*/
typedef struct
{
unsigned long
bytes_recvd, // received bytes count
bytes_sent, // sent bytes count
pkts_recvd, // received packets count
pkts_sent, // sent packets count
num_recv_overflows, // FIFO overflow during receiving count
num_recv_timeouts, // timeout count during receiving
num_recv_crc16_fail, // failed crc16 check count during receiving
num_send_underruns, // send buffer underrun count
num_send_timeouts, // timeout count during sending
low_battery; // yes/no if rfm12b Vcc is currently below threshold
int rssi; // last rssi reading during receive (rfm69)
} rfm12b_stats;
typedef struct
{
rfm12_module_type_t module_type;
struct {
unsigned has_low_battery:1;
unsigned has_rssi:1;
} module_capabilities;
} rfm12b_module_info;
#endif // __RFM12B_IOCTL_H__