SX 00: Configure Registers

This example shows how to configure the SX1272 module registers and read the settings used

Required Materials

1 x Waspmote PRO 1 x Battery 1 x MiniUSB wire 1 x SX1272 module (LoRa)

Notes

- The SX1272 module is provided with a special 4.5 dBi antenna, which enables maximum range. The only exception is Smart Parking; in this case the antenna is smaller, 0 dBi, to fit inside the enclosure. - It is not recommended to work without an antenna screwed to the module. The module could be damaged due to RF reflections. - The SX1272 module can only be used in special Waspmote units which have been modified to drive the SPI pins to SOCKET0. (only SOCKET0 is available for SX1272) - This module does not save the configuration. So, the network settings as the mode or the channel MUST be configured every time it is switched on. - This example can be executed in Waspmote v12 and Waspmote v15

Code

/*
 *  ------ [SX_00] - Configure registers -------- 
 *
 *  Explanation: This example shows how to configure the 
 *  semtech module registers and read the settings used
 *
 *  Copyright (C) 2014 Libelium Comunicaciones Distribuidas S.L. 
 *  http://www.libelium.com 
 *  
 *  This program 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 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 General Public License for more details. 
 *  
 *  You should have received a copy of the GNU General Public License 
 *  along with this program.  If not, see . 
 *  
 *  Version:           0.1
 *  Design:            David Gascón 
 *  Implementation:    Covadonga Albiñana
 */

#include <WaspSX1272.h>

// status variable
int8_t e;


void setup()
{
  // init USB port
  USB.ON();
  USB.println(F("SX_00 example"));
  USB.println(F("SX1272 module configuration in LoRa, complete example"));

  USB.println(F("----------------------------------------"));
  USB.println(F("Setting configuration:")); 
  USB.println(F("----------------------------------------"));

  // init SX1272 module  
  sx1272.ON();

  // Choose channel
  e = sx1272.setChannel(CH_06_900);
  USB.print(F("Setting Channel CH_06_900.\t state ")); 
  USB.println(e);    

  // Set Packet length
  e = sx1272.setPacketLength(83);
  USB.print(F("Setting Payload Length to '83'.\t state "));
  USB.println(e);

  // Disable Header
  e = sx1272.setHeaderOFF();
  USB.print(F("Setting Header OFF.\t\t state "));    
  USB.println(e);

  // Select LoRa mode: from 1 to 10
  e = sx1272.setMode(1);  
  USB.print(F("Setting Mode '1'.\t\t state "));
  USB.println(e); 

  // Set Power level (choose between 'H', 'L' and 'M') 
  e = sx1272.setPower('H');
  USB.print(F("Setting Power to 'H'.\t\t state "));   
  USB.println(e);

  // Disable CRC
  e = sx1272.setCRC_OFF();
  USB.print(F("Setting CRC OFF.\t\t state "));
  USB.println(e); 

  // Set Node Address: from 2 to 255
  e = sx1272.setNodeAddress(9);
  USB.print(F("Setting Node Address to '9'.\t state "));
  USB.println(e);  
  USB.println();

  delay(1000);  
}


void loop()
{
  // Get registers
  e = sx1272.getRegs();
  USB.print(F("Getting Registers: state ")); 
  USB.println(e);

  // Check status
  if( e == 0 ) 
  {    
    // 1. Power
    USB.print(F("--> Power is ('M'=0x0F; 'L'=0x00; 'H'=0x07): 0x"));  
    USB.printHex(sx1272._power);  
    USB.println();

    // 2. Channel
    USB.print(F("--> Channel is: 0x"));    
    USB.print(sx1272._channel, HEX);  
    USB.println();

    // 3. CRC
    USB.print(F("--> CRC (CRC_ON=1; CRC_OFF=0): "));
    USB.println(sx1272._CRC,DEC); 

    // 4. Header
    USB.print(F("--> Header (HeaderON=0; HeaderOFF=1): "));
    USB.println(sx1272._header,DEC);

    // 5. Preamble length
    USB.print(F("--> Preamble length: "));
    USB.println(sx1272._preamblelength,DEC);

    // 6. Payload length
    USB.print(F("--> Payload Length is: "));    
    USB.println(sx1272._payloadlength,DEC); 

    // 7. Node Address
    USB.print(F("--> Node Address is: "));    
    USB.println(sx1272._nodeAddress,DEC);  
        
    // 8. Max current
    USB.print(F("--> Max current is (mA): "));    
    USB.println(sx1272._maxCurrent,DEC);  
        
    // 9. Temperature
    USB.print(F("--> Temperature is: "));
    USB.print(sx1272._temp);    

  }
  else 
  {
    USB.println(F("ERROR getting registers"));
  } 

  USB.println();
  USB.println(F("**********************************"));
  delay(5000);

}


Output

H#
SX_00 example
SX1272 module configuration in LoRa, complete example
----------------------------------------
Setting configuration:
----------------------------------------
Setting Channel CH_06_900. state 0
Setting Payload Length to '83'. state 0
Setting Header OFF. state 0
Setting Mode '1'. state 0
Setting Power to 'H'. state 0
Setting CRC OFF. state 0
Setting Node Address to '9'. state 0

Getting Registers: state 0
--> Power is ('M'=0x0F; 'L'=0x00; 'H'=0x07): 0x07
--> Channel is: 0xE5028F
--> CRC (CRC_ON=1; CRC_OFF=0): 0
--> Header (HeaderON=0; HeaderOFF=1): 1
--> Preamble length: 8
--> Payload Length is: 83
--> Node Address is: 9
--> Max current is (mA): 240
--> Temperature is: 14
**********************************
Getting Registers: state 0
--> Power is ('M'=0x0F; 'L'=0x00; 'H'=0x07): 0x07
--> Channel is: 0xE5028F
--> CRC (CRC_ON=1; CRC_OFF=0): 0
--> Header (HeaderON=0; HeaderOFF=1): 1
--> Preamble length: 8
--> Payload Length is: 83
--> Node Address is: 9
--> Max current is (mA): 240
--> Temperature is: 14
**********************************
...

Last updated