Host driver/HAL to build a LoRa Picocell Gateway which communicates through USB with a concentrator board based on Semtech SX1308 multi-channel modem and SX1257/SX1255 RF transceivers.

Committer:
dgabino
Date:
Wed Apr 11 14:38:42 2018 +0000
Revision:
0:102b50f941d0
Initial commit

Who changed what in which revision?

UserRevisionLine numberNew contents of line
dgabino 0:102b50f941d0 1 ______ _
dgabino 0:102b50f941d0 2 / _____) _ | |
dgabino 0:102b50f941d0 3 ( (____ _____ ____ _| |_ _____ ____| |__
dgabino 0:102b50f941d0 4 \____ \| ___ | (_ _) ___ |/ ___) _ \
dgabino 0:102b50f941d0 5 _____) ) ____| | | || |_| ____( (___| | | |
dgabino 0:102b50f941d0 6 (______/|_____)_|_|_| \__)_____)\____)_| |_|
dgabino 0:102b50f941d0 7 (C)2014 Semtech-Cycleo
dgabino 0:102b50f941d0 8
dgabino 0:102b50f941d0 9 util_chip_id program for LoRa concentrator
dgabino 0:102b50f941d0 10 ===========================================
dgabino 0:102b50f941d0 11
dgabino 0:102b50f941d0 12
dgabino 0:102b50f941d0 13 1. Introduction
dgabino 0:102b50f941d0 14 ----------------
dgabino 0:102b50f941d0 15
dgabino 0:102b50f941d0 16 This software is used to obtain the unique id of the PicoCell gateway.
dgabino 0:102b50f941d0 17 64 bits unique id extracts from the STM32 uinque id registers.
dgabino 0:102b50f941d0 18
dgabino 0:102b50f941d0 19
dgabino 0:102b50f941d0 20 2. Usage
dgabino 0:102b50f941d0 21 --------
dgabino 0:102b50f941d0 22
dgabino 0:102b50f941d0 23 See command line help to get the list of all available options:
dgabino 0:102b50f941d0 24 ./util_chip_id -h
dgabino 0:102b50f941d0 25
dgabino 0:102b50f941d0 26 example
dgabino 0:102b50f941d0 27 ./util_chip_id -l
dgabino 0:102b50f941d0 28
dgabino 0:102b50f941d0 29 4. License
dgabino 0:102b50f941d0 30 -----------
dgabino 0:102b50f941d0 31
dgabino 0:102b50f941d0 32 Copyright (c) 2013, SEMTECH S.A.
dgabino 0:102b50f941d0 33 All rights reserved.
dgabino 0:102b50f941d0 34
dgabino 0:102b50f941d0 35 Redistribution and use in source and binary forms, with or without
dgabino 0:102b50f941d0 36 modification, are permitted provided that the following conditions are met:
dgabino 0:102b50f941d0 37
dgabino 0:102b50f941d0 38 * Redistributions of source code must retain the above copyright
dgabino 0:102b50f941d0 39 notice, this list of conditions and the following disclaimer.
dgabino 0:102b50f941d0 40 * Redistributions in binary form must reproduce the above copyright
dgabino 0:102b50f941d0 41 notice, this list of conditions and the following disclaimer in the
dgabino 0:102b50f941d0 42 documentation and/or other materials provided with the distribution.
dgabino 0:102b50f941d0 43 * Neither the name of the Semtech corporation nor the
dgabino 0:102b50f941d0 44 names of its contributors may be used to endorse or promote products
dgabino 0:102b50f941d0 45 derived from this software without specific prior written permission.
dgabino 0:102b50f941d0 46
dgabino 0:102b50f941d0 47 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
dgabino 0:102b50f941d0 48 ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
dgabino 0:102b50f941d0 49 WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
dgabino 0:102b50f941d0 50 DISCLAIMED. IN NO EVENT SHALL SEMTECH S.A. BE LIABLE FOR ANY
dgabino 0:102b50f941d0 51 DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
dgabino 0:102b50f941d0 52 (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
dgabino 0:102b50f941d0 53 LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
dgabino 0:102b50f941d0 54 ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
dgabino 0:102b50f941d0 55 (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
dgabino 0:102b50f941d0 56 SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
dgabino 0:102b50f941d0 57
dgabino 0:102b50f941d0 58 *EOF*