Files
reflow/types.h

26 lines
407 B
C

/* types.h */
#ifndef _TYPES_H_
#define _TYPES_H_
/* These are correct for AVR. Change accordingly if you port. */
typedef unsigned char uint8;
typedef signed char int8;
typedef unsigned int uint16;
typedef signed int int16;
typedef unsigned long uint32;
typedef signed long int32;
#ifndef TRUE
typedef unsigned char bool;
#define TRUE 1
#define FALSE 0
#endif
typedef uint16_t temp_t;
#endif