123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206 |
- /**************************************************************************************************
-
- Phyplus Microelectronics Limited confidential and proprietary.
- All rights reserved.
- IMPORTANT: All rights of this software belong to Phyplus Microelectronics
- Limited ("Phyplus"). Your use of this Software is limited to those
- specific rights granted under the terms of the business contract, the
- confidential agreement, the non-disclosure agreement and any other forms
- of agreements as a customer or a partner of Phyplus. You may not use this
- Software unless you agree to abide by the terms of these agreements.
- You acknowledge that the Software may not be modified, copied,
- distributed or disclosed unless embedded on a Phyplus Bluetooth Low Energy
- (BLE) integrated circuit, either as a product or is integrated into your
- products. Other than for the aforementioned purposes, you may not use,
- reproduce, copy, prepare derivative works of, modify, distribute, perform,
- display or sell this Software and/or its documentation for any purposes.
- YOU FURTHER ACKNOWLEDGE AND AGREE THAT THE SOFTWARE AND DOCUMENTATION ARE
- PROVIDED AS IS WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESS OR IMPLIED,
- INCLUDING WITHOUT LIMITATION, ANY WARRANTY OF MERCHANTABILITY, TITLE,
- NON-INFRINGEMENT AND FITNESS FOR A PARTICULAR PURPOSE. IN NO EVENT SHALL
- PHYPLUS OR ITS SUBSIDIARIES BE LIABLE OR OBLIGATED UNDER CONTRACT,
- NEGLIGENCE, STRICT LIABILITY, CONTRIBUTION, BREACH OF WARRANTY, OR OTHER
- LEGAL EQUITABLE THEORY ANY DIRECT OR INDIRECT DAMAGES OR EXPENSES
- INCLUDING BUT NOT LIMITED TO ANY INCIDENTAL, SPECIAL, INDIRECT, PUNITIVE
- OR CONSEQUENTIAL DAMAGES, LOST PROFITS OR LOST DATA, COST OF PROCUREMENT
- OF SUBSTITUTE GOODS, TECHNOLOGY, SERVICES, OR ANY CLAIMS BY THIRD PARTIES
- (INCLUDING BUT NOT LIMITED TO ANY DEFENSE THEREOF), OR OTHER SIMILAR COSTS.
-
- **************************************************************************************************/
- /* Type group ----------------------------------------------------------- */
- #ifndef __LPC_TYPES_H
- #define __LPC_TYPES_H
- /* Includes ------------------------------------------------------------------- */
- #include <stdint.h>
- /** @defgroup LPC_Type_Def Data Types Definitions
- * @ingroup LPC177x_8xCMSIS_FwLib_Drivers
- * @{
- */
-
- /* Public Types --------------------------------------------------------------- */
- /** @defgroup LPC_Types_Public_Types Basic Public Data Types
- * @{
- */
- /**
- * @brief Boolean Type definition
- */
- typedef enum {FALSE = 0, TRUE = !FALSE} Bool;
- /**
- * @brief Flag Status and Interrupt Flag Status type definition
- */
- typedef enum {RESET = 0, SET = !RESET} FlagStatus, IntStatus, SetState;
- #define PARAM_SETSTATE(State) ((State==RESET) || (State==SET))
- /**
- * @brief Functional State Definition
- */
- typedef enum {DISABLE = 0, ENABLE = !DISABLE} FunctionalState;
- #define PARAM_FUNCTIONALSTATE(State) ((State==DISABLE) || (State==ENABLE))
- /**
- * @ Status type definition
- */
- typedef enum {ERROR = 0, SUCCESS = !ERROR} Status;
- /**
- * Read/Write transfer type mode (Block or non-block)
- */
- typedef enum
- {
- NONE_BLOCKING = 0, /**< None Blocking type */
- BLOCKING, /**< Blocking type */
- } TRANSFER_BLOCK_Type;
- /** Pointer to Function returning Void (any number of parameters) */
- typedef void (*PFV)();
- /** Pointer to Function returning int32_t (any number of parameters) */
- typedef int32_t(*PFI)();
- /**
- * @}
- */
- /* Public Macros -------------------------------------------------------------- */
- /** @defgroup LPC_Types_Public_Macros Basic Public Macros
- * @{
- */
- /** _BIT(n) sets the bit at position "n"
- * _BIT(n) is intended to be used in "OR" and "AND" expressions:
- * e.g., "(_BIT(3) | _BIT(7))".
- */
- #undef _BIT
- /** Set bit macro */
- #define _BIT(n) (1<<n)
- /** _SBF(f,v) sets the bit field starting at position "f" to value "v".
- * _SBF(f,v) is intended to be used in "OR" and "AND" expressions:
- * e.g., "((_SBF(5,7) | _SBF(12,0xF)) & 0xFFFF)"
- */
- #undef _SBF
- /* Set bit field macro */
- #define _SBF(f,v) (v<<f)
- /* _BITMASK constructs a symbol with 'field_width' least significant
- * bits set.
- * e.g., _BITMASK(5) constructs '0x1F', _BITMASK(16) == 0xFFFF
- * The symbol is intended to be used to limit the bit field width
- * thusly:
- * <a_register> = (any_expression) & _BITMASK(x), where 0 < x <= 32.
- * If "any_expression" results in a value that is larger than can be
- * contained in 'x' bits, the bits above 'x - 1' are masked off. When
- * used with the _SBF example above, the example would be written:
- * a_reg = ((_SBF(5,7) | _SBF(12,0xF)) & _BITMASK(16))
- * This ensures that the value written to a_reg is no wider than
- * 16 bits, and makes the code easier to read and understand.
- */
- #undef _BITMASK
- /* Bitmask creation macro */
- #define _BITMASK(field_width) ( _BIT(field_width) - 1)
- /* NULL pointer */
- #ifndef NULL
- #define NULL ((void*) 0)
- #endif
- /* Number of elements in an array */
- #define NELEMENTS(array) (sizeof (array) / sizeof (array[0]))
- /* Static data/function define */
- #define STATIC static
- /* External data/function define */
- #define EXTERN extern
- #define MAX(a, b) (((a) > (b)) ? (a) : (b))
- #define MIN(a, b) (((a) < (b)) ? (a) : (b))
- /**
- * @}
- */
- /* Old Type Definition compatibility ------------------------------------------ */
- /** @addtogroup LPC_Types_Public_Types LPC_Types Public Types
- * @{
- */
- /** SMA type for character type */
- typedef char CHAR;
- /** SMA type for 8 bit unsigned value */
- typedef uint8_t UNS_8;
- /** SMA type for 8 bit signed value */
- typedef int8_t INT_8;
- /** SMA type for 16 bit unsigned value */
- typedef uint16_t UNS_16;
- /** SMA type for 16 bit signed value */
- typedef int16_t INT_16;
- /** SMA type for 32 bit unsigned value */
- typedef uint32_t UNS_32;
- /** SMA type for 32 bit signed value */
- typedef int32_t INT_32;
- /** SMA type for 64 bit signed value */
- typedef int64_t INT_64;
- /** SMA type for 64 bit unsigned value */
- typedef uint64_t UNS_64;
- /** 32 bit boolean type */
- typedef Bool BOOL_32;
- /** 16 bit boolean type */
- typedef Bool BOOL_16;
- /** 8 bit boolean type */
- typedef Bool BOOL_8;
- /**
- * @}
- */
- #endif /* __LPC_TYPES_H */
- /**
- * @}
- */
- /* --------------------------------- End Of File ------------------------------ */
|