Coder Social home page Coder Social logo

microchiptech / lightweight_mesh_stack Goto Github PK

View Code? Open in Web Editor NEW
3.0 4.0 4.0 110.03 MB

"IoT Made Easy!" - Lightweight Mesh software stack with source code for self-support, self-maintenance and self-programming

License: Other

C 99.80% GDB 0.01% Python 0.03% Batchfile 0.05% HTML 0.01% CSS 0.01% JavaScript 0.02% Assembly 0.03% C++ 0.04% Shell 0.01%

lightweight_mesh_stack's Introduction

LIGHTWEIGHT_MESH_STACK

"Wireless Made Easy!" - Lightweight Mesh Software Stack with source code for self-support, self-maintenance and self-programming

Devices: 802.15.4 TRx and SoCs

Disclaimer

Subject to your compliance with these terms, you may use Microchip software and any derivatives exclusively with Microchip products. It is your responsibility to comply with third party license terms applicable to your use of third party software (including open source software) that may accompany Microchip software.
THIS SOFTWARE IS SUPPLIED BY MICROCHIP "AS IS". NO WARRANTIES, WHETHER EXPRESS, IMPLIED OR STATUTORY, APPLY TO THIS SOFTWARE, INCLUDING ANY IMPLIED WARRANTIES OF NON-INFRINGEMENT, MERCHANTABILITY, AND FITNESS FOR A PARTICULAR PURPOSE.
IN NO EVENT WILL MICROCHIP BE LIABLE FOR ANY INDIRECT, SPECIAL, PUNITIVE, INCIDENTAL OR CONSEQUENTIAL LOSS, DAMAGE, COST OR EXPENSE OF ANY KIND WHATSOEVER RELATED TO THE SOFTWARE, HOWEVER CAUSED, EVEN IF MICROCHIP HAS BEEN ADVISED OF THE POSSIBILITY OR THE DAMAGES ARE FORESEEABLE. TO THE FULLEST EXTENT ALLOWED BY LAW, MICROCHIP'S TOTAL LIABILITY ON ALL CLAIMS IN ANY WAY RELATED TO THIS SOFTWARE WILL NOT EXCEED THE AMOUNT OF FEES, IF ANY, THAT YOU HAVE PAID DIRECTLY TO MICROCHIP FOR THIS SOFTWARE.

Interact with your peers about this software in 802.15.4 Forum.

Important considerations

THE SOFTWARE ARE PROVIDED "AS IS" AND GIVE A PATH FOR SELF-SUPPORT AND SELF-MAINTENANCE.

This repository contains unsupported example code intended to help accelerate client product development. It is not validated for production nor audited for security best-practices. Note that while this repository is unsupported, Microchip welcome community contributions, and all pull-requests will be considered for inclusion into the repository.

Resources

A la carte

  1. Introduction
  2. Hardware Platforms
  3. Software Requirements
  4. Software Environment Setup
    1. Overview
    2. Location of MakeFiles in LWMESH Folder Structure
    3. Create a project from Makefile in Microchip Studio 7
  5. Sample Applications
    1. Energy Detection Application
    2. Peer2Peer Application
    3. Tester Application
    4. WSN Demo Application

Introduction

Lightweight Mesh software stack is an easy to use proprietary low power wireless mesh network protocol. It has been designed to address the needs of a wide range of wireless connectivity applications, including:

  • Remote control
  • Alarms and security
  • Automatic Meter Reading (AMR)
  • Home and commercial building automation
  • Toys and educational equipment

Lightweight Mesh is designed to work with all Microchip IEEE® 802.15.4 transceivers and SoCs. Currently the stack works with AVR®- and ARM®-based MCUs, but given extreme portability and low resource requirements, it can be run on almost any Microchip MCU.

Hardware Platforms

Supported MCU families Supported Transceivers Supported boards
SAM platforms AT86RF212 Atmega256RFR2 Xplained Pro
SAMD20 AT86RF12B SAMR21 Xplained Pro
SAMD21 AT86RF231 SAM4S Xplained Pro
SAM4L AT86RF233 SAM4L Xplained ProUSB stick with ZigBit Xmega-AT86RF233
SAMR21 ATMEGARFA1 USB stick with ZigBit Xmega-AT86RF212B
SAM4S ATMEGARFR2 SAMD20 with ZigBit AT86RF233
SAM4E SAMD20 with ZigBit-AT86RF212B
MEGA_RF SAM4L with ZigBit AT86RF233
Atmel AVR 8-bit ATmega RF Single Chip platforms SAM4L with ZigBit-AT86RF212B
XMEGA-A Xmega-a3bu Xplained with RZ600 radio modules
Atmel AVR 8-bit ATxmega platforms Atmega128rfa1 RCB
Atmega256rfr2 RCB

Software Requirements

Notes: The Lighweight Mesh software is validated with Microchip Studio 7.0, ASFv3.50 on SAMR21 Xplained Pro boards

Software Environment Setup

Overview

Makefiles have been generated for each hardware supported.

Follow the instructions below to learn how to access the makefile location and generate a Microchip Studio project from a makefile.

Location of MakeFiles in LWMESH Folder Structure

Generic File Path: ..\thirdparty\wireless\avr2130_lwmesh\apps\AppName\Device_Name\gcc

or

Device Specific File Path: ..\thirdparty\wireless\avr2130_lwmesh\apps\EdDemo\atmega128rfa1_rcb\gcc

Inside the gcc folder MakeFile can be found.

Create a project from Makefile in Microchip Studio 7

To create a project from Makefile in Microchip Studio 7:

https://microchipsupport.force.com/s/article/Creating-a-project-from-Makefile-in-Atmel-Studio

Alternatively, to open the readily available Microchip studio C project file, find it from the mentioned path:

Generic File Path: ..\thirdparty\wireless\avr2130_lwmesh\apps\AppName\Device_Name\as5_8

or

Device Specific File Path: ..\thirdparty\wireless\avr2130_lwmesh\apps\EdDemo\atmega128rfa1_rcb\as5_8

Which can be opened with Microchip studio and changes can be done on the application level if needed and then compiled & build. After the successful build, the firmware images will be generated.

Sample Applications

Energy Detection Application

Overview

  • The Lightweight Mesh EDDemo application demonstrates the energy detection (ED) feature of Microchip 802.15.4 Transceivers and helps analyzing the energy on all channels.

  • This application requires only one node for demonstration.

  • No Data communication is performed in this application and no networking APIs are used.

  • A terminal (9600 8 N 1) need to be connected to the node.

  • The node measures the energy values on channels 11 to 26 periodically and prints the results on the connected terminal.

Output

Peer2Peer Application

Overview

  • The Lightweight Mesh Peer2Peer implements a wireless UART application. Two nodes are used in this application.

  • These two nodes must be configured with addresses 0x0001 and 0x0000 respectively.

  • To test this application, open a terminal for both the nodes. On entering text in the terminal, the data is transmitted from one Node to another node (0x0001 to 0x0000 and vice-versa).

  • A terminal (9600 8 N 1) need to be connected to each of the 2 nodes.

Nodes Configuration

  • Open config.h file in Peer2Peer project and Address must be set to 0 for the first device, and to 1 for the second one.

Output

Tester Application

Overview

The Test application exposes all stack APIs via serial port and was primarily designed to be used as an automated test tool.

  • The operations are illustrated in tester.c by the function appUartSendCommand().
  • Frame is formatted like this: <1 byte start symbol = 0xa5> <2 bytes size> <2 bytes CRC>.
  • Commands and their structure are described in the commands.h file.

WSN Demo Application

Overview

The WSN Demo application implements a typical wireless sensor network scenario, in which one central node collects the data from a network of sensors and passes this data over a serial connection for further processing. In the case of the WSN Demo, this processing is performed by the WSN Monitor PC application.

  • Device types (Coordinator, Router and End Device) are simulated on the application level; there is no such separation in Lightweight Mesh on the stack level

  • The value of the extended address field is set equal to the value of the short address field

  • For all frames, the LQI and RSSI fields are filled in by the coordinator with the values of LQI and RSSI from the received frame. This means that nodes that are not connected to the coordinator directly will have the same values as the last node on the route to the coordinator

  • Sensor data values are generated randomly on all platforms

  • Sending data to the nodes on the network is not implemented and not supported in this demo application

  • This demo has been tested with 3 SAM R21 devices

Nodes Configuration

The Application Address (APP_ADDR) should be set in config.h.

  • If APP_ADDR is 0, the device role will be identified as Coordinator in WSN monitor
  • If APP_ADDR is less than 0x8000, the device role will be identified as Router
  • If APP_ADDR is greater than or equal to 0x8000, the device role will be identified as End Device

Coordinator:

  • Set APP_ADDR = 0x0000

Router:

  • Set APP_ADDR = 0x0100

End Device:

  • Set APP_ADDR = 0x8001

Output

Network topology in WSN Monitor for 3 devices configured with different device roles in application level.

Note: For details on LwMesh Architecture & Network Layer specifications, please refer the document AVR2130_LWMesh_Developer_Guide_v1.2.1

lightweight_mesh_stack's People

Contributors

deepthi-tech avatar gd91 avatar

Stargazers

 avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.