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_SLEEP_API_H
dudmuck 336:1e18a06a987b 17 #define MBED_SLEEP_API_H
dudmuck 336:1e18a06a987b 18
dudmuck 336:1e18a06a987b 19 #include "device.h"
dudmuck 336:1e18a06a987b 20
dudmuck 336:1e18a06a987b 21 #if DEVICE_SLEEP
dudmuck 336:1e18a06a987b 22
dudmuck 336:1e18a06a987b 23 #ifdef __cplusplus
dudmuck 336:1e18a06a987b 24 extern "C" {
dudmuck 336:1e18a06a987b 25 #endif
dudmuck 336:1e18a06a987b 26
dudmuck 336:1e18a06a987b 27 /** Send the microcontroller to sleep
dudmuck 336:1e18a06a987b 28 *
dudmuck 336:1e18a06a987b 29 * The processor is setup ready for sleep, and sent to sleep using __WFI(). In this mode, the
dudmuck 336:1e18a06a987b 30 * system clock to the core is stopped until a reset or an interrupt occurs. This eliminates
dudmuck 336:1e18a06a987b 31 * dynamic power used by the processor, memory systems and buses. The processor, peripheral and
dudmuck 336:1e18a06a987b 32 * memory state are maintained, and the peripherals continue to work and can generate interrupts.
dudmuck 336:1e18a06a987b 33 *
dudmuck 336:1e18a06a987b 34 * The processor can be woken up by any internal peripheral interrupt or external pin interrupt.
dudmuck 336:1e18a06a987b 35 *
dudmuck 336:1e18a06a987b 36 * @note
dudmuck 336:1e18a06a987b 37 * The mbed interface semihosting is disconnected as part of going to sleep, and can not be restored.
dudmuck 336:1e18a06a987b 38 * Flash re-programming and the USB serial port will remain active, but the mbed program will no longer be
dudmuck 336:1e18a06a987b 39 * able to access the LocalFileSystem
dudmuck 336:1e18a06a987b 40 */
dudmuck 336:1e18a06a987b 41 void sleep(void);
dudmuck 336:1e18a06a987b 42
dudmuck 336:1e18a06a987b 43 /** Send the microcontroller to deep sleep
dudmuck 336:1e18a06a987b 44 *
dudmuck 336:1e18a06a987b 45 * This processor is setup ready for deep sleep, and sent to sleep using __WFI(). This mode
dudmuck 336:1e18a06a987b 46 * has the same sleep features as sleep plus it powers down peripherals and clocks. All state
dudmuck 336:1e18a06a987b 47 * is still maintained.
dudmuck 336:1e18a06a987b 48 *
dudmuck 336:1e18a06a987b 49 * The processor can only be woken up by an external interrupt on a pin or a watchdog timer.
dudmuck 336:1e18a06a987b 50 *
dudmuck 336:1e18a06a987b 51 * @note
dudmuck 336:1e18a06a987b 52 * The mbed interface semihosting is disconnected as part of going to sleep, and can not be restored.
dudmuck 336:1e18a06a987b 53 * Flash re-programming and the USB serial port will remain active, but the mbed program will no longer be
dudmuck 336:1e18a06a987b 54 * able to access the LocalFileSystem
dudmuck 336:1e18a06a987b 55 */
dudmuck 336:1e18a06a987b 56 void deepsleep(void);
dudmuck 336:1e18a06a987b 57
dudmuck 336:1e18a06a987b 58 #ifdef __cplusplus
dudmuck 336:1e18a06a987b 59 }
dudmuck 336:1e18a06a987b 60 #endif
dudmuck 336:1e18a06a987b 61
dudmuck 336:1e18a06a987b 62 #endif
dudmuck 336:1e18a06a987b 63
dudmuck 336:1e18a06a987b 64 #endif