view src/cs/system/main/sys_types.h @ 192:4f40ae165be4

abb.c & init.c: sync with Magnetite for Luna additions These Luna target-specific additions are conditionalized on CONFIG_TARGET_LUNA, a C preprocessor symbol that will never be defined in Selenite, hence this change has exactly zero impact on FC Selenite. However, they are being pulled in as a sync in order to keep the diff between Magnetite and Selenite to a minimum; keeping this diff to a minimum increases our opportunities for possible evolution of future FC firmwares.
author Mychaela Falconia <falcon@freecalypso.org>
date Sat, 23 May 2020 07:03:46 +0000
parents 1eb391057168
children
line wrap: on
line source

/**********************************************************
 *        GSM/GPRS TI S/W software 
 *
 *        Filename sys_types.h
 *
 *
 *	Redefine the types for the TI GSM/GPRS system software
 *
 **********************************************************/

#ifndef __SYS_TYPES_H__
#define __SYS_TYPES_H__

typedef unsigned char  SYS_BOOL;

typedef unsigned char  SYS_UWORD8;
typedef signed   char  SYS_WORD8;

typedef unsigned short SYS_UWORD16;
typedef          short SYS_WORD16;

typedef unsigned long  SYS_UWORD32;
typedef          long  SYS_WORD32;


typedef void           (*SYS_FUNC)(void);		/* pointer to a function */

#endif /* __SYS_TYPES_H__ */