Mbed SDK for XRange SX1272 LoRa module

Dependents:   XRangePingPong XRange-LoRaWAN-lmic-app lora-transceiver

SX1272 LoRa RF module

https://www.netblocks.eu/xrange-sx1272-lora-datasheet/

Committer:
netblocks
Date:
Thu Jan 07 13:01:25 2016 +0000
Revision:
339:ac6f3fd999f3
Parent:
336:1e18a06a987b
HSE_VALUE set for XTAL 16Mhz

Who changed what in which revision?

UserRevisionLine numberNew contents of line
dudmuck 336:1e18a06a987b 1 /* mbed Microcontroller Library
dudmuck 336:1e18a06a987b 2 * Copyright (c) 2006-2013 ARM Limited
dudmuck 336:1e18a06a987b 3 *
dudmuck 336:1e18a06a987b 4 * Licensed under the Apache License, Version 2.0 (the "License");
dudmuck 336:1e18a06a987b 5 * you may not use this file except in compliance with the License.
dudmuck 336:1e18a06a987b 6 * You may obtain a copy of the License at
dudmuck 336:1e18a06a987b 7 *
dudmuck 336:1e18a06a987b 8 * http://www.apache.org/licenses/LICENSE-2.0
dudmuck 336:1e18a06a987b 9 *
dudmuck 336:1e18a06a987b 10 * Unless required by applicable law or agreed to in writing, software
dudmuck 336:1e18a06a987b 11 * distributed under the License is distributed on an "AS IS" BASIS,
dudmuck 336:1e18a06a987b 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
dudmuck 336:1e18a06a987b 13 * See the License for the specific language governing permissions and
dudmuck 336:1e18a06a987b 14 * limitations under the License.
dudmuck 336:1e18a06a987b 15 */
dudmuck 336:1e18a06a987b 16 #ifndef MBED_ERROR_H
dudmuck 336:1e18a06a987b 17 #define MBED_ERROR_H
dudmuck 336:1e18a06a987b 18
dudmuck 336:1e18a06a987b 19 /** To generate a fatal compile-time error, you can use the pre-processor #error directive.
dudmuck 336:1e18a06a987b 20 *
dudmuck 336:1e18a06a987b 21 * @code
dudmuck 336:1e18a06a987b 22 * #error "That shouldn't have happened!"
dudmuck 336:1e18a06a987b 23 * @endcode
dudmuck 336:1e18a06a987b 24 *
dudmuck 336:1e18a06a987b 25 * If the compiler evaluates this line, it will report the error and stop the compile.
dudmuck 336:1e18a06a987b 26 *
dudmuck 336:1e18a06a987b 27 * For example, you could use this to check some user-defined compile-time variables:
dudmuck 336:1e18a06a987b 28 *
dudmuck 336:1e18a06a987b 29 * @code
dudmuck 336:1e18a06a987b 30 * #define NUM_PORTS 7
dudmuck 336:1e18a06a987b 31 * #if (NUM_PORTS > 4)
dudmuck 336:1e18a06a987b 32 * #error "NUM_PORTS must be less than 4"
dudmuck 336:1e18a06a987b 33 * #endif
dudmuck 336:1e18a06a987b 34 * @endcode
dudmuck 336:1e18a06a987b 35 *
dudmuck 336:1e18a06a987b 36 * Reporting Run-Time Errors:
dudmuck 336:1e18a06a987b 37 * To generate a fatal run-time error, you can use the mbed error() function.
dudmuck 336:1e18a06a987b 38 *
dudmuck 336:1e18a06a987b 39 * @code
dudmuck 336:1e18a06a987b 40 * error("That shouldn't have happened!");
dudmuck 336:1e18a06a987b 41 * @endcode
dudmuck 336:1e18a06a987b 42 *
dudmuck 336:1e18a06a987b 43 * If the mbed running the program executes this function, it will print the
dudmuck 336:1e18a06a987b 44 * message via the USB serial port, and then die with the blue lights of death!
dudmuck 336:1e18a06a987b 45 *
dudmuck 336:1e18a06a987b 46 * The message can use printf-style formatting, so you can report variables in the
dudmuck 336:1e18a06a987b 47 * message too. For example, you could use this to check a run-time condition:
dudmuck 336:1e18a06a987b 48 *
dudmuck 336:1e18a06a987b 49 * @code
dudmuck 336:1e18a06a987b 50 * if(x >= 5) {
dudmuck 336:1e18a06a987b 51 * error("expected x to be less than 5, but got %d", x);
dudmuck 336:1e18a06a987b 52 * }
dudmuck 336:1e18a06a987b 53 * #endcode
dudmuck 336:1e18a06a987b 54 */
dudmuck 336:1e18a06a987b 55
dudmuck 336:1e18a06a987b 56 #ifdef __cplusplus
dudmuck 336:1e18a06a987b 57 extern "C" {
dudmuck 336:1e18a06a987b 58 #endif
dudmuck 336:1e18a06a987b 59
dudmuck 336:1e18a06a987b 60 void error(const char* format, ...);
dudmuck 336:1e18a06a987b 61
dudmuck 336:1e18a06a987b 62 #ifdef __cplusplus
dudmuck 336:1e18a06a987b 63 }
dudmuck 336:1e18a06a987b 64 #endif
dudmuck 336:1e18a06a987b 65
dudmuck 336:1e18a06a987b 66 #endif