1-channel Gateway configGway.h

Introduction

This is the 6th generation of software implementing LoRa gateway function on a platform consisting of an ESP8266/ESP32 mcu and a sx1276 radio. Unlike older versions of the gateway, this version will listen to all available Spreading Factors (SF) on a single frequency. The Gateway uses a web function (over Intranet) that enables monitoring and configuration of the gateway.

The interface is described in more detail in a separate section of the user manual. The user is advised to learn about the available functions there.

The gateway, when connected with a local OLED display, will show the WiFi address it is connected too (in this case 138) and enable following of its performance over internet.

CAD

This gateway will listen on one channel by default, and on that channel listen to all available Spreading Factors. For this we make used of the CAD (Channel Activity Detection) functions that are described below. The CAD mode can be configured by the user, but the user must select the CAD mode manually either in the used interface or set the CAD mode in the configGway.h file.

CAD is the standard receive mode and it does perform (almost) equal to the mode where we listen to one channel and one spreading factor only. So it is advised that the CAD function is enabled in the configuration file.

HOP

Also, we have tried to integrate frequency hopping to this version of the gateway. However, this function is experimental at best and not ready for production. A lot of incoming messages are not noticed by the software. The problem is that the chip does have supporting interrupts and registers to spot activity on spreading factors for a given frequency but it does not have any tools to detect incoming messages on other frequencies (read below for detailed analysis).

Change History

Version 4.x of this single channel gateway had a number of changes compared to version 3:

  1. The system does support CAD mode (see below)
  2. The webserver supports configuration and dynamic setting of parameters.
  3. SPIFFS file system is used to store important configuration data
  4. The web interface allows setting of Debug mode, Gateway Sensor, Refresh web page, reset Boot etc.
  5. Memory usage is significantly reduced
  6. Several bug fixes that lead to exception were integrated
  7. Over the air updates through the IDE/USB are now possible
  8. OLED 128x64 support (SSD1306 library which is one of the libraries supported in the Arduino IDE)

Known issues

  1. The gateway acting as a sensor node is working for all backend systems. However, this function (scheduled every 60 seconds) might interfere with regular sensor values received over the air (interrupt basis). If so, sensor values received over the air from LoRa devices will prevail.
  2. The WifiManager functionality does not always work as expected

Gateway Components

The gateway sketch consists of multiple components that are found in several files. These are:

Documentation

There are (at least) two separate documents that apply to this gateway:

Datasheets for RFM95 and SX1276 should be the same. However, the HopeRF document contains confusing information especially in the registers description are where RSSI for example (register 0x1B ?) is concerned.

Gateway modes of operation

The gateway knows 3 modes of operation:

  1. STD; standard single channel operation, one one channel only and on one spreading factor. Both frequency and spreading factor can be changed using the web interface. Configuration values are written to the file system,
  2. CAD; the system uses one frequency but is able to receive all spreading factors.
  3. HOP; reserved for frequency Hopping (experimental)

1. STD Mode

In single channel gateway standard mode, the user can select the frequency and the spreading factor to use for reception of messages. the Gateway will behave like a real single channel gateway; just one frequency and one spreading factor can be set.

the advantage of the STD mode is, that as we know on what frequency and spreading factor we listen for new messages to arrive, the whole configuration is tuned towards this use. For example: We can receive message with a very low RSSI (-120dB or lower), something that is not possible with CAD mode of operation. Also, this mode may be a little more reliable although we have no indication that the system will miss more messages when in CAD mode.

The frequency and the spreading factor can be set as a default in the configGway.h file or can be set (and changed) using the webserver interface.

2. Channel Activity Detection (CAD)

Channel Activity Detection (CAD) is a function of the LoRa radio. It means that the radio detects whether another LoRa device in range is transmitting and when the receiver senses that, the device will not transmit on that channel or spreading factor to avoid a collision. During a short time before the actual transmission of data (payload) begins, each transmitter send out preamble signals indicating to other devices that a device is ready to transmit data.

Although CAD is designed to be used by nodes to detect other activity on a given frequency/spreading factor combination, it can be used by our single channel gateway as well. If the gateway can use CAD functionality to detect incoming messages on a given band, we can quickly set the receiver to that frequency and spreading factor and receive the incoming message.

Now we have CAD mode with all its advantages, why would we ever use STD mode? The answer lies in the way we use the CAD functions in our gateway code. In our code we put the chip in CAD mode and set the interrupt so that we receive an CADDONE interrupt once the radio detects activity from other nodes. This tells us that someone is starting transmission on our current frequency.

The radio will get this interrupt for its current frequency but it does not know on which spreading factor the remote node is going to send a message.

So next we check on the rssi (signal strength), we use the normal rssi of the sx1276 and subtract 157 for correction. The resulting number is the rssi of the receiver. (The package rssi (prssi) is another parameter that describes the rssi of the last package received, but it is not used in CAD mode). When we receive a CADDONE interrupt with a high rssi, we probably will receive a message on that frequency soon. So we need to figure out at which spreading factor the sender is starting its transmission. Therefore we will start with SF7 and move up to the next factor until we receive a CADDETECT interrupt on DIO1. The RSSI parameter that determines whether there could be a message arriving on the radio receiver can be configured in the loraModem.h file by setting the RSSI_LIMIT definition. The default value is 40, but it can be set to other values as well.

Once we receive the CADDETECT interrupt on DIO 1 we know that there is a message coming on our correct frequency and spreading factor. We then put the radio in message receive mode and wait for the RXDONE interrupt that tells us that the complete message has been received and is ready in the FIFO buffer.

Should for whatever reason no message arrive within a certain time, we will receive the RXTOUT (timeout) interrupt instead telling us that there was a timeout and no message has been received.

If we have receive a message, we set the state variable so that in the next loop() iteration the message is read from the FIFO buffer.

Next, whether we receive a message or not, the mode is set to scanning again.

Advantages

Using CAD mode has several advantages over STD more. Selecting CAD makes the gateway a lot more versatile and it will receive message from SF7 to SF12. And although the reception will probably not be quite as sensitive as a "real" gateway for most applications it will do the job.

 

3. HOP; Frequency Hopping mode (Experimental)

This mode is very experimental, and does not work yet the way it is intended. Using HOP mode, the system will have same functions as CAD mode but have the additional value of listening to messages on 3 frequencies as well. This would mean that the single channel gateway will act as a full-blown gateway for three frequencies (which is the minimum according to spec).

The HOP Problem

The frequency hopping function is more difficult to implement than the CAD function. This is because CAD does work more or less automatically for a given frequency and the receiver can wait for the CADDONE interrupt telling that there might be a message waiting on one of the spreading factors for that frequency.

For frequency hopping this does not work as there is no mechanism that tells us that there might be a message arriving on another frequency than the one we're tuned in an the moment. So, if we want to implement a reliable frequency hopping function we must set a timer interrupt that fires once there is no incoming activity detected within a certain time on the frequency.

So what is the ideal waiting period for the hopping mode, and how do we implement a timer.

re 1. The timer period should be long enough to determine that there is no activity on that frequency. So we should only switch when state is S_SCAN.
re 2. It is possible to connect an external clock/timer and connect it's pin(s) to one of the free GPIO pin's of the ESP8266, or it's possible to use one of the internal timers for this purpose. The first one is an option but will make the code a lot more complex and add extra hardware to the gateway. The second option internal timer is an option but only if its use does not interfere with the internal administration functions of the ESP8266 (such as Wifi handling etc.).

So taking both options into account it may be an option to just use the microsecond timer for his purpose yet do not use any interrupt processing, but instead use the loop() function itself. Timeout is about 2500 uSec before switching.

HOP Advantages

If the HOP mode works without problems, it makes our gateway more or less a "real" gateway that supports 3 frequencies and all Spreading Factors.

 

RSSI

RSSI stands for Received Signal Strength Indicator is is measured on the receiver to determine the signal quality of the sender. Normal RSSI can be measured any time at the receiver side by reading register 0x1B. The SX1276/RFM95 transceiver contains a special register 0x1A that contains the average packet RSSI information.

The RSSI function is used by CAD to determine if we have received a message. This is not as the RFM95 is designed, after all new messages might be received that are below the noise floor and this using RSSI is not the most reliable process.

The correct RSSI sample can be computed (according to the RFM95 manual para 4.2.5.3) by adding TS_RE + TS_RSSI

DIO Pin-Out

In the sx1276 datasheet we find that DIO 0 and DIO 1 are used to handle CAD interrupts and for message reception. So where we would only use dio0 in the version  3.x of the gateway, we now use dio0 AND dio1 in order to detect CAD and RX Timeout events. This also means for users that the have to modify their gateway and set the pins correctly in the loraModem.h file.

Hallard

This code assumes that we map all DIO lines onto GPIO15. The code "sees" this when dio0 and dio1 have the same value set. It then assumes that we do multiplexing of interrupts  and it will do the appropriate initialization in setup(). This can only be done by connecting the DIO 0, 1 and if necessary DIO 2 to the GPIO15 pin with a diode and this is how the Hallard PCB does it's multiplexing.

../../HardwareGuide/Single-Channel-Gway/images/hallard_1.jpg
1-ch Gateway made with Hallard PCB

The advantage of this interrupt sharing approach is that only one GPO line less is used leaving more GPIO pins on the ESP8266 for connecting sensors.

The Hallard board for Wemos D1 mini can be found (and ordered) from http://pcbs.io

ComResult

Another PCB is made by ComResult. Actually, at least 2 versions have been defined. Multiple people in the Apeldoorn (NL) area have built this gateway.

 

../../HardwareGuide/Single-Channel-Gway/images/ComResult-2.jpg
1-ch Gateway made with the Comresult PCB

 

 

Configuration Parameter Setting

The operation mode of the gateway and most of its settings can be controlled by the user. There are two ways to set operating parameters:

  1. Setting and defining parameters in the configGway.h file
  2. Setting parameters using the Web interface

Both methods live together for a great deal. However, sometimes values set in the configGway.h file make that the same settings will disappear on the web interface as well. This is especially true when setting the A_SERVER parameter in the .h file is set to 0. In this case, the webserver is not defined and its code is not included in the executable.

Setting the directives in configGway.h

Most parameters that can be set are compile-time directives so that code is compiled or not based on the value of the directive in the configGway.h file. This way, the code base can be kept small when functions are not used. Example: Support for Wifi Manager can be turned ON or OFF based on the setting of WIFIMANAGER in the configGway.h file.

#define WIFIMANAGER 0

By changing the definition to "1" the complete functionality to use Wifi Manager is included in the code and compiled. By using "0" all functions relating to this functionality is excluded from the gateway code.

Several parameters or compiler directives can be set in the .h file such as:

Most parameters starting with a "_" are parameters only. Please only change these if you know what you are doing. If the parameter contains a "<xxx>" it means that you have to put your own values there. After all, it does not make sense to put my email address or GPS data in your configuration.

The remanding part of the #define settings should be to include or not include certain parts of the code based on your own preference.

Setting parameters through the webserver interface

Some other parameters can best be set using the webserver interface. Examples for this are the mode selection of CAD and HOP. The following settings can be changed using the webserver:

Please read the webserver page