テスト用です。

Dependencies:   mbed

Committer:
jksoft
Date:
Tue Oct 11 11:09:42 2016 +0000
Revision:
0:8468a4403fea
SB??ver;

Who changed what in which revision?

UserRevisionLine numberNew contents of line
jksoft 0:8468a4403fea 1 /* Copyright (c) 2008 Nordic Semiconductor. All Rights Reserved.
jksoft 0:8468a4403fea 2 *
jksoft 0:8468a4403fea 3 * The information contained herein is property of Nordic Semiconductor ASA.
jksoft 0:8468a4403fea 4 * Terms and conditions of usage are described in detail in NORDIC
jksoft 0:8468a4403fea 5 * SEMICONDUCTOR STANDARD SOFTWARE LICENSE AGREEMENT.
jksoft 0:8468a4403fea 6 *
jksoft 0:8468a4403fea 7 * Licensees are granted free, non-transferable use of the information. NO
jksoft 0:8468a4403fea 8 * WARRANTY of ANY KIND is provided. This heading must NOT be removed from
jksoft 0:8468a4403fea 9 * the file.
jksoft 0:8468a4403fea 10 */
jksoft 0:8468a4403fea 11
jksoft 0:8468a4403fea 12 /** @file
jksoft 0:8468a4403fea 13 * @brief Common defines and macros for firmware developed by Nordic Semiconductor.
jksoft 0:8468a4403fea 14 */
jksoft 0:8468a4403fea 15
jksoft 0:8468a4403fea 16 #ifndef NORDIC_COMMON_H__
jksoft 0:8468a4403fea 17 #define NORDIC_COMMON_H__
jksoft 0:8468a4403fea 18
jksoft 0:8468a4403fea 19 #include "nordic_global.h"
jksoft 0:8468a4403fea 20
jksoft 0:8468a4403fea 21 /** Swaps the upper byte with the lower byte in a 16 bit variable */
jksoft 0:8468a4403fea 22 //lint -emacro((572),SWAP) // Suppress warning 572 "Excessive shift value"
jksoft 0:8468a4403fea 23 #define SWAP(x) ((((x)&0xFF)<<8)|(((x)>>8)&0xFF))
jksoft 0:8468a4403fea 24
jksoft 0:8468a4403fea 25 /** The upper 8 bits of a 16 bit value */
jksoft 0:8468a4403fea 26 //lint -emacro(572,MSB) // Suppress warning 572 "Excessive shift value"
jksoft 0:8468a4403fea 27 #define MSB(a) (((a) & 0xFF00) >> 8)
jksoft 0:8468a4403fea 28 /** The lower 8 bits (of a 16 bit value) */
jksoft 0:8468a4403fea 29 #define LSB(a) ((a) & 0xFF)
jksoft 0:8468a4403fea 30
jksoft 0:8468a4403fea 31 /** Leaves the minimum of the two arguments */
jksoft 0:8468a4403fea 32 /*lint -emacro(506, MIN) */ /* Suppress "Constant value Boolean */
jksoft 0:8468a4403fea 33 #define MIN(a, b) ((a) < (b) ? (a) : (b))
jksoft 0:8468a4403fea 34 /** Leaves the maximum of the two arguments */
jksoft 0:8468a4403fea 35 /*lint -emacro(506, MAX) */ /* Suppress "Constant value Boolean */
jksoft 0:8468a4403fea 36 #define MAX(a, b) ((a) < (b) ? (b) : (a))
jksoft 0:8468a4403fea 37
jksoft 0:8468a4403fea 38 #define BIT_0 0x01 /**< The value of bit 0 */
jksoft 0:8468a4403fea 39 #define BIT_1 0x02 /**< The value of bit 1 */
jksoft 0:8468a4403fea 40 #define BIT_2 0x04 /**< The value of bit 2 */
jksoft 0:8468a4403fea 41 #define BIT_3 0x08 /**< The value of bit 3 */
jksoft 0:8468a4403fea 42 #define BIT_4 0x10 /**< The value of bit 4 */
jksoft 0:8468a4403fea 43 #define BIT_5 0x20 /**< The value of bit 5 */
jksoft 0:8468a4403fea 44 #define BIT_6 0x40 /**< The value of bit 6 */
jksoft 0:8468a4403fea 45 #define BIT_7 0x80 /**< The value of bit 7 */
jksoft 0:8468a4403fea 46 #define BIT_8 0x0100 /**< The value of bit 8 */
jksoft 0:8468a4403fea 47 #define BIT_9 0x0200 /**< The value of bit 9 */
jksoft 0:8468a4403fea 48 #define BIT_10 0x0400 /**< The value of bit 10 */
jksoft 0:8468a4403fea 49 #define BIT_11 0x0800 /**< The value of bit 11 */
jksoft 0:8468a4403fea 50 #define BIT_12 0x1000 /**< The value of bit 12 */
jksoft 0:8468a4403fea 51 #define BIT_13 0x2000 /**< The value of bit 13 */
jksoft 0:8468a4403fea 52 #define BIT_14 0x4000 /**< The value of bit 14 */
jksoft 0:8468a4403fea 53 #define BIT_15 0x8000 /**< The value of bit 15 */
jksoft 0:8468a4403fea 54 #define BIT_16 0x00010000 /**< The value of bit 16 */
jksoft 0:8468a4403fea 55 #define BIT_17 0x00020000 /**< The value of bit 17 */
jksoft 0:8468a4403fea 56 #define BIT_18 0x00040000 /**< The value of bit 18 */
jksoft 0:8468a4403fea 57 #define BIT_19 0x00080000 /**< The value of bit 19 */
jksoft 0:8468a4403fea 58 #define BIT_20 0x00100000 /**< The value of bit 20 */
jksoft 0:8468a4403fea 59 #define BIT_21 0x00200000 /**< The value of bit 21 */
jksoft 0:8468a4403fea 60 #define BIT_22 0x00400000 /**< The value of bit 22 */
jksoft 0:8468a4403fea 61 #define BIT_23 0x00800000 /**< The value of bit 23 */
jksoft 0:8468a4403fea 62 #define BIT_24 0x01000000 /**< The value of bit 24 */
jksoft 0:8468a4403fea 63 #define BIT_25 0x02000000 /**< The value of bit 25 */
jksoft 0:8468a4403fea 64 #define BIT_26 0x04000000 /**< The value of bit 26 */
jksoft 0:8468a4403fea 65 #define BIT_27 0x08000000 /**< The value of bit 27 */
jksoft 0:8468a4403fea 66 #define BIT_28 0x10000000 /**< The value of bit 28 */
jksoft 0:8468a4403fea 67 #define BIT_29 0x20000000 /**< The value of bit 29 */
jksoft 0:8468a4403fea 68 #define BIT_30 0x40000000 /**< The value of bit 30 */
jksoft 0:8468a4403fea 69 #define BIT_31 0x80000000 /**< The value of bit 31 */
jksoft 0:8468a4403fea 70
jksoft 0:8468a4403fea 71 #define UNUSED_VARIABLE(X) ((void)(X))
jksoft 0:8468a4403fea 72 #define UNUSED_PARAMETER(X) UNUSED_VARIABLE(X)
jksoft 0:8468a4403fea 73
jksoft 0:8468a4403fea 74 #endif // NORDIC_COMMON_H__