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.
 
 

25 lines
407 B

/* 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