mbed library sources with internal temperature sensor for nucleo f401

Committer:
elessair
Date:
Sat Jan 17 18:03:58 2015 +0000
Revision:
0:7e2bd16f80af
nucleo f401re internal temperature added

Who changed what in which revision?

UserRevisionLine numberNew contents of line
elessair 0:7e2bd16f80af 1 /* mbed Microcontroller Library
elessair 0:7e2bd16f80af 2 * Copyright (c) 2006-2013 ARM Limited
elessair 0:7e2bd16f80af 3 *
elessair 0:7e2bd16f80af 4 * Licensed under the Apache License, Version 2.0 (the "License");
elessair 0:7e2bd16f80af 5 * you may not use this file except in compliance with the License.
elessair 0:7e2bd16f80af 6 * You may obtain a copy of the License at
elessair 0:7e2bd16f80af 7 *
elessair 0:7e2bd16f80af 8 * http://www.apache.org/licenses/LICENSE-2.0
elessair 0:7e2bd16f80af 9 *
elessair 0:7e2bd16f80af 10 * Unless required by applicable law or agreed to in writing, software
elessair 0:7e2bd16f80af 11 * distributed under the License is distributed on an "AS IS" BASIS,
elessair 0:7e2bd16f80af 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
elessair 0:7e2bd16f80af 13 * See the License for the specific language governing permissions and
elessair 0:7e2bd16f80af 14 * limitations under the License.
elessair 0:7e2bd16f80af 15 */
elessair 0:7e2bd16f80af 16 #ifndef MBED_SLEEP_API_H
elessair 0:7e2bd16f80af 17 #define MBED_SLEEP_API_H
elessair 0:7e2bd16f80af 18
elessair 0:7e2bd16f80af 19 #include "device.h"
elessair 0:7e2bd16f80af 20
elessair 0:7e2bd16f80af 21 #if DEVICE_SLEEP
elessair 0:7e2bd16f80af 22
elessair 0:7e2bd16f80af 23 #ifdef __cplusplus
elessair 0:7e2bd16f80af 24 extern "C" {
elessair 0:7e2bd16f80af 25 #endif
elessair 0:7e2bd16f80af 26
elessair 0:7e2bd16f80af 27 /** Send the microcontroller to sleep
elessair 0:7e2bd16f80af 28 *
elessair 0:7e2bd16f80af 29 * The processor is setup ready for sleep, and sent to sleep using __WFI(). In this mode, the
elessair 0:7e2bd16f80af 30 * system clock to the core is stopped until a reset or an interrupt occurs. This eliminates
elessair 0:7e2bd16f80af 31 * dynamic power used by the processor, memory systems and buses. The processor, peripheral and
elessair 0:7e2bd16f80af 32 * memory state are maintained, and the peripherals continue to work and can generate interrupts.
elessair 0:7e2bd16f80af 33 *
elessair 0:7e2bd16f80af 34 * The processor can be woken up by any internal peripheral interrupt or external pin interrupt.
elessair 0:7e2bd16f80af 35 *
elessair 0:7e2bd16f80af 36 * @note
elessair 0:7e2bd16f80af 37 * The mbed interface semihosting is disconnected as part of going to sleep, and can not be restored.
elessair 0:7e2bd16f80af 38 * Flash re-programming and the USB serial port will remain active, but the mbed program will no longer be
elessair 0:7e2bd16f80af 39 * able to access the LocalFileSystem
elessair 0:7e2bd16f80af 40 */
elessair 0:7e2bd16f80af 41 void sleep(void);
elessair 0:7e2bd16f80af 42
elessair 0:7e2bd16f80af 43 /** Send the microcontroller to deep sleep
elessair 0:7e2bd16f80af 44 *
elessair 0:7e2bd16f80af 45 * This processor is setup ready for deep sleep, and sent to sleep using __WFI(). This mode
elessair 0:7e2bd16f80af 46 * has the same sleep features as sleep plus it powers down peripherals and clocks. All state
elessair 0:7e2bd16f80af 47 * is still maintained.
elessair 0:7e2bd16f80af 48 *
elessair 0:7e2bd16f80af 49 * The processor can only be woken up by an external interrupt on a pin or a watchdog timer.
elessair 0:7e2bd16f80af 50 *
elessair 0:7e2bd16f80af 51 * @note
elessair 0:7e2bd16f80af 52 * The mbed interface semihosting is disconnected as part of going to sleep, and can not be restored.
elessair 0:7e2bd16f80af 53 * Flash re-programming and the USB serial port will remain active, but the mbed program will no longer be
elessair 0:7e2bd16f80af 54 * able to access the LocalFileSystem
elessair 0:7e2bd16f80af 55 */
elessair 0:7e2bd16f80af 56 void deepsleep(void);
elessair 0:7e2bd16f80af 57
elessair 0:7e2bd16f80af 58 #ifdef __cplusplus
elessair 0:7e2bd16f80af 59 }
elessair 0:7e2bd16f80af 60 #endif
elessair 0:7e2bd16f80af 61
elessair 0:7e2bd16f80af 62 #endif
elessair 0:7e2bd16f80af 63
elessair 0:7e2bd16f80af 64 #endif