Руслан Бредун / Mbed 2 deprecated STM32-MC_node

Dependencies:   mbed Watchdog stm32-sensor-base2

Committer:
ommpy
Date:
Tue Jul 07 15:19:06 2020 +0530
Revision:
2:b7fdc74e5c5d
new board files

Who changed what in which revision?

UserRevisionLine numberNew contents of line
ommpy 2:b7fdc74e5c5d 1 /* mbed Microcontroller Library
ommpy 2:b7fdc74e5c5d 2 *******************************************************************************
ommpy 2:b7fdc74e5c5d 3 * Copyright (c) 2017, STMicroelectronics
ommpy 2:b7fdc74e5c5d 4 * All rights reserved.
ommpy 2:b7fdc74e5c5d 5 *
ommpy 2:b7fdc74e5c5d 6 * Redistribution and use in source and binary forms, with or without
ommpy 2:b7fdc74e5c5d 7 * modification, are permitted provided that the following conditions are met:
ommpy 2:b7fdc74e5c5d 8 *
ommpy 2:b7fdc74e5c5d 9 * 1. Redistributions of source code must retain the above copyright notice,
ommpy 2:b7fdc74e5c5d 10 * this list of conditions and the following disclaimer.
ommpy 2:b7fdc74e5c5d 11 * 2. Redistributions in binary form must reproduce the above copyright notice,
ommpy 2:b7fdc74e5c5d 12 * this list of conditions and the following disclaimer in the documentation
ommpy 2:b7fdc74e5c5d 13 * and/or other materials provided with the distribution.
ommpy 2:b7fdc74e5c5d 14 * 3. Neither the name of STMicroelectronics nor the names of its contributors
ommpy 2:b7fdc74e5c5d 15 * may be used to endorse or promote products derived from this software
ommpy 2:b7fdc74e5c5d 16 * without specific prior written permission.
ommpy 2:b7fdc74e5c5d 17 *
ommpy 2:b7fdc74e5c5d 18 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
ommpy 2:b7fdc74e5c5d 19 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
ommpy 2:b7fdc74e5c5d 20 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
ommpy 2:b7fdc74e5c5d 21 * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
ommpy 2:b7fdc74e5c5d 22 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
ommpy 2:b7fdc74e5c5d 23 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
ommpy 2:b7fdc74e5c5d 24 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
ommpy 2:b7fdc74e5c5d 25 * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
ommpy 2:b7fdc74e5c5d 26 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
ommpy 2:b7fdc74e5c5d 27 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
ommpy 2:b7fdc74e5c5d 28 *******************************************************************************
ommpy 2:b7fdc74e5c5d 29 */
ommpy 2:b7fdc74e5c5d 30 #ifndef STM32_ASSERT_H
ommpy 2:b7fdc74e5c5d 31 #define STM32_ASSERT_H
ommpy 2:b7fdc74e5c5d 32 /**
ommpy 2:b7fdc74e5c5d 33 * @brief The assert_param macro is used for function's parameters check.
ommpy 2:b7fdc74e5c5d 34 * @param expr: If expr is false, it calls assert_failed function
ommpy 2:b7fdc74e5c5d 35 * which reports the name of the source file and the source
ommpy 2:b7fdc74e5c5d 36 * line number of the call that failed.
ommpy 2:b7fdc74e5c5d 37 * If expr is true, it returns no value.
ommpy 2:b7fdc74e5c5d 38 * @retval None
ommpy 2:b7fdc74e5c5d 39 */
ommpy 2:b7fdc74e5c5d 40 #include "mbed_assert.h"
ommpy 2:b7fdc74e5c5d 41 #define assert_param(expr) MBED_ASSERT(expr)
ommpy 2:b7fdc74e5c5d 42
ommpy 2:b7fdc74e5c5d 43 #endif