Contains a number of commonly used integer types which allows a degree of portability for any code which uses them.

Dependents:   GameduinoTest SimpleGameduinoTest RobotRic WiiClassicControllerTest ... more

This contains definitions for a number of commonly used integer types. The aim is to allow a degree of portability for any code which makes use of them. If the compiler is changed and the integer types on the new compiler differ from the old one then all that is required is a change to the Types.h file and all should be well. Anyway, that's the theory.

Types.h

Committer:
RichardE
Date:
2012-11-15
Revision:
0:033e112463bb

File content as of revision 0:033e112463bb:

/*
 * SOURCE FILE : Types.h
 *
 * Various types defined for portability.
 *
 */

#ifndef TypesIncluded
  
  #define TypesIncluded

  typedef unsigned char UInt8;
  typedef signed char Int8;
  typedef unsigned short UInt16;
  typedef signed short Int16;
  typedef unsigned long UInt32;
  typedef signed long Int32;
  
#endif

/* END of Types.h */