mbed library sources. Supersedes mbed-src.

Dependents:   Nucleo_Hello_Encoder BLE_iBeaconScan AM1805_DEMO DISCO-F429ZI_ExportTemplate1 ... more

Committer:
AnnaBridge
Date:
Wed Feb 20 22:31:08 2019 +0000
Revision:
189:f392fc9709a3
Parent:
186:707f6e361f3e
mbed library release version 165

Who changed what in which revision?

UserRevisionLine numberNew contents of line
<> 144:ef7eb2e8f9f7 1 /* mbed Microcontroller Library
<> 144:ef7eb2e8f9f7 2 * Copyright (c) 2006-2013 ARM Limited
<> 144:ef7eb2e8f9f7 3 *
<> 144:ef7eb2e8f9f7 4 * Licensed under the Apache License, Version 2.0 (the "License");
<> 144:ef7eb2e8f9f7 5 * you may not use this file except in compliance with the License.
<> 144:ef7eb2e8f9f7 6 * You may obtain a copy of the License at
<> 144:ef7eb2e8f9f7 7 *
<> 144:ef7eb2e8f9f7 8 * http://www.apache.org/licenses/LICENSE-2.0
<> 144:ef7eb2e8f9f7 9 *
<> 144:ef7eb2e8f9f7 10 * Unless required by applicable law or agreed to in writing, software
<> 144:ef7eb2e8f9f7 11 * distributed under the License is distributed on an "AS IS" BASIS,
<> 144:ef7eb2e8f9f7 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
<> 144:ef7eb2e8f9f7 13 * See the License for the specific language governing permissions and
<> 144:ef7eb2e8f9f7 14 * limitations under the License.
<> 144:ef7eb2e8f9f7 15 */
<> 144:ef7eb2e8f9f7 16 #include "sleep_api.h"
<> 144:ef7eb2e8f9f7 17 #include "cmsis.h"
<> 144:ef7eb2e8f9f7 18 #include "mbed_interface.h"
<> 144:ef7eb2e8f9f7 19
<> 160:d5399cc887bb 20 void hal_sleep(void) {
<> 144:ef7eb2e8f9f7 21 LPC_SC->PCON = 0x0;
Anna Bridge 186:707f6e361f3e 22
<> 144:ef7eb2e8f9f7 23 // SRC[SLEEPDEEP] set to 0 = sleep
<> 144:ef7eb2e8f9f7 24 SCB->SCR &= ~SCB_SCR_SLEEPDEEP_Msk;
Anna Bridge 186:707f6e361f3e 25
<> 144:ef7eb2e8f9f7 26 // wait for interrupt
<> 144:ef7eb2e8f9f7 27 __WFI();
Anna Bridge 186:707f6e361f3e 28 __NOP();
<> 144:ef7eb2e8f9f7 29 }
<> 144:ef7eb2e8f9f7 30
<> 144:ef7eb2e8f9f7 31 /*
<> 144:ef7eb2e8f9f7 32 * The mbed lpc1768 does not support the deepsleep mode
<> 144:ef7eb2e8f9f7 33 * as a debugger is connected to it (the mbed interface).
<> 144:ef7eb2e8f9f7 34 *
<> 144:ef7eb2e8f9f7 35 * As mentionned in an application note from NXP:
<> 144:ef7eb2e8f9f7 36 *
<> 144:ef7eb2e8f9f7 37 * http://www.po-star.com/public/uploads/20120319123122_141.pdf
<> 144:ef7eb2e8f9f7 38 *
<> 144:ef7eb2e8f9f7 39 * {{{
<> 144:ef7eb2e8f9f7 40 * The user should be aware of certain limitations during debugging.
<> 144:ef7eb2e8f9f7 41 * The most important is that, due to limitations of the Cortex-M3
<> 144:ef7eb2e8f9f7 42 * integration, the LPC17xx cannot wake up in the usual manner from
<> 144:ef7eb2e8f9f7 43 * Deep Sleep and Power-down modes. It is recommended not to use these
<> 144:ef7eb2e8f9f7 44 * modes during debug. Once an application is downloaded via JTAG/SWD
<> 144:ef7eb2e8f9f7 45 * interface, the USB to SWD/JTAG debug adapter (Keil ULINK2 for example)
<> 144:ef7eb2e8f9f7 46 * should be removed from the target board, and thereafter, power cycle
<> 144:ef7eb2e8f9f7 47 * the LPC17xx to allow wake-up from deep sleep and power-down modes
<> 144:ef7eb2e8f9f7 48 * }}}
<> 144:ef7eb2e8f9f7 49 *
<> 144:ef7eb2e8f9f7 50 * As the interface firmware does not reset the target when a
<> 144:ef7eb2e8f9f7 51 * mbed_interface_disconnect() semihosting call is made, the
<> 144:ef7eb2e8f9f7 52 * core cannot wake-up from deepsleep.
<> 144:ef7eb2e8f9f7 53 *
<> 144:ef7eb2e8f9f7 54 * We treat a deepsleep() as a normal sleep().
<> 144:ef7eb2e8f9f7 55 */
<> 160:d5399cc887bb 56 void hal_deepsleep(void) {
<> 160:d5399cc887bb 57 hal_sleep();
<> 144:ef7eb2e8f9f7 58 }