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 Tx continuous 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 set LoRa concentrator in Tx continuous mode, for
dgabino 0:102b50f941d0 17 spectral measurement.
dgabino 0:102b50f941d0 18 The user can set the modulation type, the modulation parameters, and the
dgabino 0:102b50f941d0 19 multiple gains of the Tx chain.
dgabino 0:102b50f941d0 20 The program runs indefinitely, until the user stops the application.
dgabino 0:102b50f941d0 21
dgabino 0:102b50f941d0 22
dgabino 0:102b50f941d0 23 2. Usage
dgabino 0:102b50f941d0 24 --------
dgabino 0:102b50f941d0 25
dgabino 0:102b50f941d0 26 See command line help to get the list of all available options:
dgabino 0:102b50f941d0 27 ./util_tx_continuous -h
dgabino 0:102b50f941d0 28
dgabino 0:102b50f941d0 29 Example:
dgabino 0:102b50f941d0 30 ./util_tx_continuous -f 868 -r 1257 --dig 0 --mix 14 --pa 3 --mod "LORA" --sf 7 --bw 125
dgabino 0:102b50f941d0 31
dgabino 0:102b50f941d0 32
dgabino 0:102b50f941d0 33 4. License
dgabino 0:102b50f941d0 34 -----------
dgabino 0:102b50f941d0 35
dgabino 0:102b50f941d0 36 Copyright (c) 2013, SEMTECH S.A.
dgabino 0:102b50f941d0 37 All rights reserved.
dgabino 0:102b50f941d0 38
dgabino 0:102b50f941d0 39 Redistribution and use in source and binary forms, with or without
dgabino 0:102b50f941d0 40 modification, are permitted provided that the following conditions are met:
dgabino 0:102b50f941d0 41
dgabino 0:102b50f941d0 42 * Redistributions of source code must retain the above copyright
dgabino 0:102b50f941d0 43 notice, this list of conditions and the following disclaimer.
dgabino 0:102b50f941d0 44 * Redistributions in binary form must reproduce the above copyright
dgabino 0:102b50f941d0 45 notice, this list of conditions and the following disclaimer in the
dgabino 0:102b50f941d0 46 documentation and/or other materials provided with the distribution.
dgabino 0:102b50f941d0 47 * Neither the name of the Semtech corporation nor the
dgabino 0:102b50f941d0 48 names of its contributors may be used to endorse or promote products
dgabino 0:102b50f941d0 49 derived from this software without specific prior written permission.
dgabino 0:102b50f941d0 50
dgabino 0:102b50f941d0 51 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
dgabino 0:102b50f941d0 52 ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
dgabino 0:102b50f941d0 53 WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
dgabino 0:102b50f941d0 54 DISCLAIMED. IN NO EVENT SHALL SEMTECH S.A. BE LIABLE FOR ANY
dgabino 0:102b50f941d0 55 DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
dgabino 0:102b50f941d0 56 (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
dgabino 0:102b50f941d0 57 LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
dgabino 0:102b50f941d0 58 ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
dgabino 0:102b50f941d0 59 (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
dgabino 0:102b50f941d0 60 SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
dgabino 0:102b50f941d0 61
dgabino 0:102b50f941d0 62 *EOF*