mbed-os

Fork of mbed-os by erkin yucel

Committer:
xuaner
Date:
Thu Jul 20 14:26:57 2017 +0000
Revision:
1:3deb71413561
Parent:
0:f269e3021894
mbed_os

Who changed what in which revision?

UserRevisionLine numberNew contents of line
elessair 0:f269e3021894 1 /**
elessair 0:f269e3021894 2 ******************************************************************************
elessair 0:f269e3021894 3 * @file macros.h
elessair 0:f269e3021894 4 * @brief Implements some handy macros
elessair 0:f269e3021894 5 * @internal
elessair 0:f269e3021894 6 * @author : ON Semiconductor.
elessair 0:f269e3021894 7 * $Rev: 2076 $
elessair 0:f269e3021894 8 * $Date: 2013-07-10 18:26:10 +0530 (Wed, 10 Jul 2013) $
elessair 0:f269e3021894 9 *******************************************************************************
elessair 0:f269e3021894 10 * Copyright 2016 Semiconductor Components Industries LLC (d/b/a “ON Semiconductor”).
elessair 0:f269e3021894 11 * All rights reserved. This software and/or documentation is licensed by ON Semiconductor
elessair 0:f269e3021894 12 * under limited terms and conditions. The terms and conditions pertaining to the software
elessair 0:f269e3021894 13 * and/or documentation are available at http://www.onsemi.com/site/pdf/ONSEMI_T&C.pdf
elessair 0:f269e3021894 14 * (“ON Semiconductor Standard Terms and Conditions of Sale, Section 8 Software”) and
elessair 0:f269e3021894 15 * if applicable the software license agreement. Do not use this software and/or
elessair 0:f269e3021894 16 * documentation unless you have carefully read and you agree to the limited terms and
elessair 0:f269e3021894 17 * conditions. By using this software and/or documentation, you agree to the limited
elessair 0:f269e3021894 18 * terms and conditions.
elessair 0:f269e3021894 19 *
elessair 0:f269e3021894 20 * THIS SOFTWARE IS PROVIDED "AS IS". NO WARRANTIES, WHETHER EXPRESS, IMPLIED
elessair 0:f269e3021894 21 * OR STATUTORY, INCLUDING, BUT NOT LIMITED TO, IMPLIED WARRANTIES OF
elessair 0:f269e3021894 22 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE APPLY TO THIS SOFTWARE.
elessair 0:f269e3021894 23 * ON SEMICONDUCTOR SHALL NOT, IN ANY CIRCUMSTANCES, BE LIABLE FOR SPECIAL,
elessair 0:f269e3021894 24 * INCIDENTAL, OR CONSEQUENTIAL DAMAGES, FOR ANY REASON WHATSOEVER.
elessair 0:f269e3021894 25 * @endinternal
elessair 0:f269e3021894 26 *
elessair 0:f269e3021894 27 * @details
elessair 0:f269e3021894 28 *
elessair 0:f269e3021894 29 * @ingroup UTILITY
elessair 0:f269e3021894 30 */
elessair 0:f269e3021894 31
elessair 0:f269e3021894 32 #ifndef MACROS_H_
elessair 0:f269e3021894 33 #define MACROS_H_
elessair 0:f269e3021894 34
elessair 0:f269e3021894 35 #define BM(n) (1 << (n))
elessair 0:f269e3021894 36 #define BF(x,b,s) (((x) & (b)) >> (s))
elessair 0:f269e3021894 37 #define MIN(n,m) (((n) < (m)) ? (n) : (m))
elessair 0:f269e3021894 38 #define MAX(n,m) (((n) < (m)) ? (m) : (n))
elessair 0:f269e3021894 39 #define ABS(n) ((n < 0) ? -(n) : (n))
elessair 0:f269e3021894 40
elessair 0:f269e3021894 41 #endif /* MACROS_H_ */