view gsm-fw/L1/include/l1_types.h @ 1003:9b147d0b2cab

gsm-fw feature tch-reroute: started laying the foundation
author Mychaela Falconia <falcon@ivan.Harhan.ORG>
date Fri, 18 Mar 2016 16:37:28 +0000
parents c87f2e4dc391
children
line wrap: on
line source

/************* Revision Controle System Header *************
 *                  GSM Layer 1 software 
 * L1_TYPES.H
 *
 *        Filename l1_types.h
 *  Copyright 2003 (C) Texas Instruments  
 *
 ************* Revision Controle System Header *************/

//--------------------------------------
// Basic DATA types used along L1 code.
//--------------------------------------

#ifndef __L1_TYPES_H__
  #define __L1_TYPES_H__

#if !defined (BOOL_FLAG)
  #define BOOL_FLAG
  typedef unsigned char  BOOL;
#endif /* #if !defined (BOOL_FLAG) */

// FreeCalypso change
#if 1 //(OP_L1_STANDALONE == 1)
 
 
#if !defined (NUCLEUS) && !defined CHAR_FLAG
  #define CHAR_FLAG

  typedef          char  CHAR;
#endif

typedef unsigned char  UWORD8;
typedef signed   char  WORD8;

typedef unsigned short UWORD16;
typedef          short WORD16;

typedef unsigned long  UWORD32;
typedef          long  WORD32;
//--------------------------------------
 

#else
  #include "global_types.h"
#endif /* #if (OP_L1_STANDALONE == 1) */





typedef volatile UWORD16  API;
typedef volatile WORD16   API_SIGNED;
#endif /* #ifndef __L1_TYPES_H__ */