end node on synchronous star LoRa network.

Dependencies:   SX127x sx12xx_hal TSL2561

radio chip selection

Radio chip driver is not included, allowing choice of radio device.
If you're using SX1272 or SX1276, then import sx127x driver into your program.
if you're using SX1261 or SX1262, then import sx126x driver into your program.
if you're using SX1280, then import sx1280 driver into your program.
If you're using NAmote72 or Murata discovery, then you must import only sx127x driver.

This project for use with LoRaWAN_singlechannel_gateway project.

Alternately gateway running on raspberry pi can be used as gateway.

LoRaWAN on single radio channel

Network description is at gateway project page. Synchronous star network.

Hardware Support

This project supports SX1276 and SX1272, sx126x kit, sx126x shield, and sx128x 2.4GHz. The ST board B-L072Z-LRWAN1 is also supported (TypeABZ module). When B-L072Z-LRWAN1 target is selected, TARGET_DISCO_L072CZ_LRWAN1 is defined by tools, allowing correct radio driver configuration for this platform. Alternately, any mbed board that can use LoRa radio shield board should work, but NUCLEO boards are tested.

End-node Unique ID

DevEUI is created from CPU serial number. AppEUI and AppKey are declared as software constants.

End-node Configuration

Data rate definition LORAMAC_DEFAULT_DATARATE configured in LoRaMac-definitions.h. See gateway project page for configuration of gateway.
LoRaWAN addressing is configured in Comissioning.h; only OTA mode is functional.
Header file board/lora_config.h, selects application layer options (i.e. sensors) to be compiled in.

Serial Interface

Serial port operates at 115200bps.
Application layer single_us915_main.cpp User button triggers uplink (i.e. blue button on nucleo board), or jumper enables continuously sends repeated uplink packets. The MAC layer holds each uplink request until the allocated timeslot.

commandargumentsdescription
?-print available commands
. (period)-print status (DevEUI, DevAddr, etc)
ullength integerset payload length of test uplink packets

sensor demo

Selected grove sensors may be plugged into SX1272 shield.
To enable, edit lora_config.h to define SENSORS.

Sensor connections on SX1272MB2xAS:

D8 D9: buttonRX TX: (unused)A3 A4: Rotary Angle Sensor
D6 D7: RGB LEDSCL SDA: digital light sensorA1 A2: Rotary Angle Sensor

Digital input pin, state reported via uplink: PC8
Digital output pin, controlled via downlink: PC6
PWM out: PB_10

Jumper enables auto-repeated transmit: PC10 and PC12 on NUCLEO board, located on end of morpho headers nearby JP4.

Committer:
Wayne Roberts
Date:
Fri Jul 10 11:12:59 2020 -0700
Revision:
34:9c8966cd66a2
Parent:
29:ad409c68c0a6
update to using mbed-6

Who changed what in which revision?

UserRevisionLine numberNew contents of line
dudmuck 0:8f0d0ae0a077 1 /*
dudmuck 0:8f0d0ae0a077 2 / _____) _ | |
dudmuck 0:8f0d0ae0a077 3 ( (____ _____ ____ _| |_ _____ ____| |__
dudmuck 0:8f0d0ae0a077 4 \____ \| ___ | (_ _) ___ |/ ___) _ \
dudmuck 0:8f0d0ae0a077 5 _____) ) ____| | | || |_| ____( (___| | | |
dudmuck 0:8f0d0ae0a077 6 (______/|_____)_|_|_| \__)_____)\____)_| |_|
dudmuck 0:8f0d0ae0a077 7 (C)2015 Semtech
dudmuck 0:8f0d0ae0a077 8
dudmuck 0:8f0d0ae0a077 9 Description: Target board general functions implementation
dudmuck 0:8f0d0ae0a077 10
dudmuck 0:8f0d0ae0a077 11 License: Revised BSD License, see LICENSE.TXT file include in the project
dudmuck 0:8f0d0ae0a077 12
dudmuck 0:8f0d0ae0a077 13 Maintainer: Miguel Luis and Gregory Cristian
dudmuck 0:8f0d0ae0a077 14 */
dudmuck 0:8f0d0ae0a077 15 #ifndef __BOARD_H__
dudmuck 0:8f0d0ae0a077 16 #define __BOARD_H__
dudmuck 0:8f0d0ae0a077 17
dudmuck 20:42839629a5dc 18 #undef MBED_DEBUG
dudmuck 0:8f0d0ae0a077 19 #include "mbed.h"
dudmuck 0:8f0d0ae0a077 20 #include "debug.h"
dudmuck 0:8f0d0ae0a077 21 #include "system/utilities.h"
dudmuck 7:e238827f0e47 22 #include "lora_config.h"
dudmuck 0:8f0d0ae0a077 23
dudmuck 0:8f0d0ae0a077 24 /*!
dudmuck 0:8f0d0ae0a077 25 * \brief Disable interrupts
dudmuck 0:8f0d0ae0a077 26 *
dudmuck 0:8f0d0ae0a077 27 * \remark IRQ nesting is managed
dudmuck 0:8f0d0ae0a077 28 */
dudmuck 0:8f0d0ae0a077 29 void BoardDisableIrq( void );
dudmuck 0:8f0d0ae0a077 30
dudmuck 0:8f0d0ae0a077 31 /*!
dudmuck 0:8f0d0ae0a077 32 * \brief Enable interrupts
dudmuck 0:8f0d0ae0a077 33 *
dudmuck 0:8f0d0ae0a077 34 * \remark IRQ nesting is managed
dudmuck 0:8f0d0ae0a077 35 */
dudmuck 0:8f0d0ae0a077 36 void BoardEnableIrq( void );
dudmuck 0:8f0d0ae0a077 37
dudmuck 0:8f0d0ae0a077 38 /*!
dudmuck 0:8f0d0ae0a077 39 * \brief Initializes the target board peripherals.
dudmuck 0:8f0d0ae0a077 40 */
dudmuck 0:8f0d0ae0a077 41 void BoardInit( void );
dudmuck 0:8f0d0ae0a077 42
dudmuck 0:8f0d0ae0a077 43 /*!
dudmuck 0:8f0d0ae0a077 44 * \brief Measure the Battery level
dudmuck 0:8f0d0ae0a077 45 *
dudmuck 0:8f0d0ae0a077 46 * \retval value battery level ( 0: very low, 254: fully charged )
dudmuck 0:8f0d0ae0a077 47 */
dudmuck 0:8f0d0ae0a077 48 uint8_t BoardGetBatteryLevel( void );
dudmuck 0:8f0d0ae0a077 49
dudmuck 0:8f0d0ae0a077 50 void BoardGetUniqueId( uint8_t *id );
dudmuck 0:8f0d0ae0a077 51
Wayne Roberts 34:9c8966cd66a2 52 extern UnbufferedSerial pc;
dudmuck 1:53c30224eda8 53
dudmuck 22:999a7e7698a8 54 #define FW_VERS "v0.12"
dudmuck 16:915815632c1f 55
Wayne Roberts 34:9c8966cd66a2 56 void pc_printf(const char *fmt, ...);
Wayne Roberts 34:9c8966cd66a2 57 void mac_printf(const char *fmt, ...);
Wayne Roberts 34:9c8966cd66a2 58 void app_printf(const char *fmt, ...);
Wayne Roberts 29:ad409c68c0a6 59
dudmuck 0:8f0d0ae0a077 60 #endif // __BOARD_H__