153 lines
4.6 KiB
C
153 lines
4.6 KiB
C
/**************************************************************************************************
|
||
Filename: comdef.h
|
||
Revised: $Date: 2010-07-28 08:42:48 -0700 (Wed, 28 Jul 2010) $
|
||
Revision: $Revision: 23160 $
|
||
|
||
Description: Type definitions and macros.
|
||
|
||
|
||
Copyright 2004-2008 Texas Instruments Incorporated. All rights reserved.
|
||
|
||
IMPORTANT: Your use of this Software is limited to those specific rights
|
||
granted under the terms of a software license agreement between the user
|
||
who downloaded the software, his/her employer (which must be your employer)
|
||
and Texas Instruments Incorporated (the "License"). You may not use this
|
||
Software unless you agree to abide by the terms of the License. The License
|
||
limits your use, and you acknowledge, that the Software may not be modified,
|
||
copied or distributed unless embedded on a Texas Instruments microcontroller
|
||
or used solely and exclusively in conjunction with a Texas Instruments radio
|
||
frequency transceiver, which is integrated into your product. Other than for
|
||
the foregoing purpose, you may not use, reproduce, copy, prepare derivative
|
||
works of, modify, distribute, perform, display or sell this Software and/or
|
||
its documentation for any purpose.
|
||
|
||
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
|
||
TEXAS INSTRUMENTS OR ITS LICENSORS 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.
|
||
|
||
Should you have any questions regarding your right to use this Software,
|
||
contact Texas Instruments Incorporated at www.TI.com.
|
||
**************************************************************************************************/
|
||
|
||
#ifndef COMDEF_H
|
||
#define COMDEF_H
|
||
|
||
#ifdef __cplusplus
|
||
extern "C"
|
||
{
|
||
#endif
|
||
|
||
|
||
/*********************************************************************
|
||
* INCLUDES
|
||
*/
|
||
|
||
/* HAL */
|
||
#include "hal_types.h"
|
||
#include "hal_defs.h"
|
||
|
||
/*********************************************************************
|
||
* Lint Keywords
|
||
*/
|
||
#define VOID (void)
|
||
|
||
#define NULL_OK
|
||
#define INP
|
||
#define OUTP
|
||
#define UNUSED
|
||
#define ONLY
|
||
#define READONLY
|
||
#define SHARED
|
||
#define KEEP
|
||
#define RELAX
|
||
|
||
/*********************************************************************
|
||
* CONSTANTS
|
||
*/
|
||
|
||
#ifndef false
|
||
#define false 0
|
||
#endif
|
||
|
||
#ifndef true
|
||
#define true 1
|
||
#endif
|
||
|
||
#ifndef CONST
|
||
#define CONST const
|
||
#endif
|
||
|
||
#ifndef GENERIC
|
||
#define GENERIC
|
||
#endif
|
||
|
||
/*** Generic Status Return Values ***/
|
||
#define SUCCESS 0x00
|
||
#define FAILURE 0x01
|
||
#define INVALIDPARAMETER 0x02
|
||
#define INVALID_TASK 0x03
|
||
#define MSG_BUFFER_NOT_AVAIL 0x04
|
||
#define INVALID_MSG_POINTER 0x05
|
||
#define INVALID_EVENT_ID 0x06
|
||
#define INVALID_INTERRUPT_ID 0x07
|
||
#define NO_TIMER_AVAIL 0x08
|
||
#define NV_ITEM_UNINIT 0x09
|
||
#define NV_OPER_FAILED 0x0A
|
||
#define INVALID_MEM_SIZE 0x0B
|
||
#define NV_BAD_ITEM_LEN 0x0C
|
||
|
||
/*********************************************************************
|
||
* TYPEDEFS
|
||
*/
|
||
|
||
// Generic Status return
|
||
typedef uint8 Status_t;
|
||
|
||
// Data types
|
||
typedef int32 int24;
|
||
typedef uint32 uint24;
|
||
|
||
/*********************************************************************
|
||
* Global System Events
|
||
*/
|
||
|
||
#define SYS_EVENT_MSG 0x8000 // A message is waiting event
|
||
|
||
/*********************************************************************
|
||
* Global Generic System Messages
|
||
*/
|
||
|
||
#define KEY_CHANGE 0xC0 // Key Events
|
||
|
||
// OSAL System Message IDs/Events Reserved for applications (user applications)
|
||
// 0xE0 – 0xFC
|
||
|
||
/*********************************************************************
|
||
* MACROS
|
||
*/
|
||
|
||
/*********************************************************************
|
||
* GLOBAL VARIABLES
|
||
*/
|
||
|
||
/*********************************************************************
|
||
* FUNCTIONS
|
||
*/
|
||
|
||
/*********************************************************************
|
||
*********************************************************************/
|
||
|
||
#ifdef __cplusplus
|
||
}
|
||
#endif
|
||
|
||
#endif /* COMDEF_H */
|