-
Notifications
You must be signed in to change notification settings - Fork 21
/
RFM98_V10.ino
334 lines (275 loc) · 8.37 KB
/
RFM98_V10.ino
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
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
/******************************************************************************************
* Copyright 2015, 2016 Ideetron B.V.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program 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 Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
******************************************************************************************/
/****************************************************************************************
* File: RFM98_V10.ino
* Author: Gerben den Hartog
* Compagny: Ideetron B.V.
* Website: http://www.ideetron.nl/LoRa
* E-mail: [email protected]
****************************************************************************************/
/****************************************************************************************
* Created on: 03-11-2015
* Supported Hardware: ID150119-02 Nexus board with RFM98
*
* Description
* Code to setup a working connection between two Nexus boards.
* The Nexus will send a predefined message when it receives the character S trough the serial connection
*
* Firmware version: 1.0
* First version
****************************************************************************************/
#include <SPI.h>
//Define pin description
#define DS2401 2
#define MFP 3
#define DIO0 4
#define DIO1 5
#define DIO5 6
#define DIO2 7
#define CS 8
#define LED 9
#define NSS 10
//Define other constants
#define PACKAGE_LENGTH 10
void setup()
{
//Initialize the UART
Serial.begin(9600);
//Initialise the SPI port
SPI.begin();
SPI.beginTransaction(SPISettings(4000000,MSBFIRST,SPI_MODE0));
//Initialize I/O pins
pinMode(DS2401,OUTPUT);
pinMode(MFP,INPUT);
pinMode(DIO0,INPUT);
pinMode(DIO1,INPUT);
pinMode(DIO5,INPUT);
pinMode(DIO2,INPUT);
pinMode(CS,OUTPUT);
pinMode(LED,OUTPUT);
digitalWrite(DS2401,HIGH);
digitalWrite(CS,HIGH);
//Wait until RFM module is started
delay(20);
}
void loop()
{
unsigned char i;
unsigned char UART_Data;
unsigned char RFM_Package[PACKAGE_LENGTH];
RFM_Package[0] = 0x12; RFM_Package[1] = 0x34; RFM_Package[2] = 0x56; RFM_Package[3] = 0x78; RFM_Package[4] = 0x9A;
RFM_Package[5] = 0xBC; RFM_Package[6] = 0xDE; RFM_Package[7] = 0xF0; RFM_Package[8] = 0xAA; RFM_Package[9] = 0x00;
//Initialieze the RFM module
RFM_Init();
//Set led on to inidicate the Nexus has started up
digitalWrite(LED,HIGH);
//Main loop
while(1)
{
//Check if there is serial data
if(Serial.available() != 0)
{
UART_Data = Serial.read();
}
//Check if the serial data
if(UART_Data == 'S')
{
RFM_SendPackage(RFM_Package);
RFM_Package[9]++;
UART_Data = 0x00;
}
//Check if the RFM has received a package
if(digitalRead(DIO0) == HIGH)
{
//Get package from RFM
RFM_ReadPackage(RFM_Package);
//Send package over Serial
for(i = 0; i < PACKAGE_LENGTH; i++)
{
Serial.write(RFM_Package[i]);
}
}
}
}
/*
*****************************************************************************************
* Description : Initialisation of the RFM module.
* Check the datasheet if you want to use other settings
*****************************************************************************************
*/
void RFM_Init()
{
//Setting RFM in sleep
RFM_Write(0x01,0x00);
//Switch to LoRa mode
RFM_Write(0x01,0x80);
//Setting RFM to standby
RFM_Write(0x01,0x81);
//Wait for mode ready
while(digitalRead(DIO5) == LOW)
{
}
//Set carrier frequency
//433.175 MHz / 61.035 Hz = 7097157 = 0x6C4B45
RFM_Write(0x06,0x6C);
RFM_Write(0x07,0x4B);
RFM_Write(0x08,0x45);
//Set Pa pin to maximal power
RFM_Write(0x09,0xFF);
//Bandwith 250 kHz, Coding rate = 4/8, Implicit header mode
RFM_Write(0x1D,0x89);
//Spreading factor 6, PayloadCRC on
RFM_Write(0x1E,0x64);
//Setting additional register for SF6 use other settings for the other SF
RFM_Write(0x31,0xC5);
RFM_Write(0x37,0x0C);
//Preamble length 0x0018 + 4 = 28
RFM_Write(0x20,0x00);
RFM_Write(0x21,0x18);
//Payload length
RFM_Write(0x22,PACKAGE_LENGTH);
//Set RFM in continues receive
RFM_Write(0x01,0x85);
//Wait for mode ready
while(digitalRead(DIO5) == LOW)
{
}
}
/*
*****************************************************************************************
* Description: Function is used to read a value from a specific register of the RFM module
*
* Arguments: RFM_Adress Adress of the register to read
*
* Return: The value of the register is returned
*****************************************************************************************
*/
unsigned char RFM_Read(unsigned char RFM_Address)
{
unsigned char RFM_Data;
//Set NSS pin low to start SPI communication
digitalWrite(NSS,LOW);
//Send Address
SPI.transfer(RFM_Address);
//Send 0x00 to be able to receive the answer from the RFM
RFM_Data = SPI.transfer(0x00);
//Set NSS high to end communication
digitalWrite(NSS,HIGH);
//Return received data
return RFM_Data;
}
/*
*****************************************************************************************
* Description: Function is used to write a value to a specific register of the RFM module
*
* Arguments: RFM_Adress Adress of the register to be written
RFM_Data Data that will be written
*****************************************************************************************
*/
void RFM_Write(unsigned char RFM_Address, unsigned char RFM_Data)
{
//Set NSS pin Low to start communication
digitalWrite(NSS,LOW);
//Send Addres with MSB 1 to make it a writ command
SPI.transfer(RFM_Address | 0x80);
//Send Data
SPI.transfer(RFM_Data);
//Set NSS pin High to end communication
digitalWrite(NSS,HIGH);
}
/*
*****************************************************************************************
* Description : Function is used to send a message of 10 bytes
*
* Arguments : *RFM_Package Pointer to the array with the data to send
*****************************************************************************************
*/
void RFM_SendPackage(unsigned char *RFM_Package)
{
unsigned char i;
//Switch RFM to standby
RFM_Write(0x01,0x81);
//Wait for mode ready
while(digitalRead(DIO5) == LOW)
{
}
//Set SPI pointer to Tx base address
RFM_Write(0x0D,0x80);
//Switch DIO to TxDone
RFM_Write(0x40,0x40);
//Write payload in to the fifo
for(i = 0; i < PACKAGE_LENGTH; i++)
{
RFM_Write(0x00,*RFM_Package);
RFM_Package++;
}
//Switch RFM to TX
RFM_Write(0x01,0x83);
//Wait on TxDone
while(digitalRead(DIO0) == LOW)
{
}
//Clear interrupt
RFM_Write(0x12,0x08);
//Set DIO0 to RxDone
RFM_Write(0x40,0x00);
//Set RFM in continues receive
RFM_Write(0x01,0x85);
//Wait for mode ready
while(digitalRead(DIO5) == LOW)
{
}
}
/*
*****************************************************************************************
* Description: Function is to get a message of 10 bytes received by the RFM
*
* Arguments: *RFM_Package Pointer to the array with the data to send
*****************************************************************************************
*/
void RFM_ReadPackage(unsigned char *RFM_Package)
{
unsigned char i;
unsigned char RFM_Interrupt;
unsigned char RFM_PackageLocation;
//Get interrupt register
RFM_Interrupt = RFM_Read(0x12);
//Switch RFM to Standby
RFM_Write(0x01,0x81);
//Wait for mode ready
while(digitalRead(DIO5) == LOW)
{
}
//Clear interrupt register
RFM_Write(0x12,0x60);
//Get package location
RFM_PackageLocation = RFM_Read(0x10);
//Set SPI pointer to Packagelocation
RFM_Write(0x0D,RFM_PackageLocation);
//Get message
for(i = 0; i < PACKAGE_LENGTH; i++)
{
*RFM_Package = RFM_Read(0x00);
RFM_Package++;
}
//Switch RFM to receive
RFM_Write(0x01,0x85);
//Wait for mode ready
while(digitalRead(DIO5) == LOW)
{
}
}