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 Copyright (c) 2013, SEMTECH S.A.
dgabino 0:102b50f941d0 2 All rights reserved.
dgabino 0:102b50f941d0 3
dgabino 0:102b50f941d0 4 Redistribution and use in source and binary forms, with or without
dgabino 0:102b50f941d0 5 modification, are permitted provided that the following conditions are met:
dgabino 0:102b50f941d0 6 * Redistributions of source code must retain the above copyright
dgabino 0:102b50f941d0 7 notice, this list of conditions and the following disclaimer.
dgabino 0:102b50f941d0 8 * Redistributions in binary form must reproduce the above copyright
dgabino 0:102b50f941d0 9 notice, this list of conditions and the following disclaimer in the
dgabino 0:102b50f941d0 10 documentation and/or other materials provided with the distribution.
dgabino 0:102b50f941d0 11 * Neither the name of the Semtech corporation nor the
dgabino 0:102b50f941d0 12 names of its contributors may be used to endorse or promote products
dgabino 0:102b50f941d0 13 derived from this software without specific prior written permission.
dgabino 0:102b50f941d0 14
dgabino 0:102b50f941d0 15 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
dgabino 0:102b50f941d0 16 ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
dgabino 0:102b50f941d0 17 WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
dgabino 0:102b50f941d0 18 DISCLAIMED. IN NO EVENT SHALL SEMTECH S.A. BE LIABLE FOR ANY
dgabino 0:102b50f941d0 19 DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
dgabino 0:102b50f941d0 20 (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
dgabino 0:102b50f941d0 21 LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
dgabino 0:102b50f941d0 22 ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
dgabino 0:102b50f941d0 23 (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
dgabino 0:102b50f941d0 24 SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
dgabino 0:102b50f941d0 25
dgabino 0:102b50f941d0 26
dgabino 0:102b50f941d0 27 --- For the parson library used by the packet logger ---
dgabino 0:102b50f941d0 28
dgabino 0:102b50f941d0 29 Parson ( http://kgabis.github.com/parson/ )
dgabino 0:102b50f941d0 30 Copyright (c) 2012 Krzysztof Gabis
dgabino 0:102b50f941d0 31
dgabino 0:102b50f941d0 32 Permission is hereby granted, free of charge, to any person obtaining a copy
dgabino 0:102b50f941d0 33 of this software and associated documentation files (the "Software"), to deal
dgabino 0:102b50f941d0 34 in the Software without restriction, including without limitation the rights
dgabino 0:102b50f941d0 35 to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
dgabino 0:102b50f941d0 36 copies of the Software, and to permit persons to whom the Software is
dgabino 0:102b50f941d0 37 furnished to do so, subject to the following conditions:
dgabino 0:102b50f941d0 38
dgabino 0:102b50f941d0 39 The above copyright notice and this permission notice shall be included in
dgabino 0:102b50f941d0 40 all copies or substantial portions of the Software.
dgabino 0:102b50f941d0 41
dgabino 0:102b50f941d0 42 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
dgabino 0:102b50f941d0 43 IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
dgabino 0:102b50f941d0 44 ITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
dgabino 0:102b50f941d0 45 AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
dgabino 0:102b50f941d0 46 LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
dgabino 0:102b50f941d0 47 OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
dgabino 0:102b50f941d0 48 THE SOFTWARE.
dgabino 0:102b50f941d0 49