Reflow oven controller firmware
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

23 lines
348 B

/* types.h */
#ifndef _TYPES_H_
#define _TYPES_H_
/* Probably right for a PC */
typedef unsigned char uint8;
typedef signed char int8;
typedef unsigned short uint16;
typedef signed short int16;
typedef unsigned int uint32;
typedef signed int int32;
#ifndef TRUE
typedef unsigned char bool;
#define TRUE 1
#define FALSE 0
#endif
#endif