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_ASSERT_H
elessair 0:7e2bd16f80af 17 #define MBED_ASSERT_H
elessair 0:7e2bd16f80af 18
elessair 0:7e2bd16f80af 19 #ifdef __cplusplus
elessair 0:7e2bd16f80af 20 extern "C" {
elessair 0:7e2bd16f80af 21 #endif
elessair 0:7e2bd16f80af 22
elessair 0:7e2bd16f80af 23 /** Internal mbed assert function which is invoked when MBED_ASSERT macro failes.
elessair 0:7e2bd16f80af 24 * This function is active only if NDEBUG is not defined prior to including this
elessair 0:7e2bd16f80af 25 * assert header file.
elessair 0:7e2bd16f80af 26 * In case of MBED_ASSERT failing condition, the assertation message is printed
elessair 0:7e2bd16f80af 27 * to stderr and mbed_die() is called.
elessair 0:7e2bd16f80af 28 * @param expr Expresion to be checked.
elessair 0:7e2bd16f80af 29 * @param file File where assertation failed.
elessair 0:7e2bd16f80af 30 * @param line Failing assertation line number.
elessair 0:7e2bd16f80af 31 */
elessair 0:7e2bd16f80af 32 void mbed_assert_internal(const char *expr, const char *file, int line);
elessair 0:7e2bd16f80af 33
elessair 0:7e2bd16f80af 34 #ifdef __cplusplus
elessair 0:7e2bd16f80af 35 }
elessair 0:7e2bd16f80af 36 #endif
elessair 0:7e2bd16f80af 37
elessair 0:7e2bd16f80af 38 #ifdef NDEBUG
elessair 0:7e2bd16f80af 39 #define MBED_ASSERT(expr) ((void)0)
elessair 0:7e2bd16f80af 40
elessair 0:7e2bd16f80af 41 #else
elessair 0:7e2bd16f80af 42 #define MBED_ASSERT(expr) \
elessair 0:7e2bd16f80af 43 do { \
elessair 0:7e2bd16f80af 44 if (!(expr)) { \
elessair 0:7e2bd16f80af 45 mbed_assert_internal(#expr, __FILE__, __LINE__); \
elessair 0:7e2bd16f80af 46 } \
elessair 0:7e2bd16f80af 47 } while (0)
elessair 0:7e2bd16f80af 48 #endif
elessair 0:7e2bd16f80af 49
elessair 0:7e2bd16f80af 50 #endif