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.
 
 

11 lines
154 B

/* common.h */
#ifndef _COMMON_H_
#define _COMMON_H_
#include <inttypes.h>
#include "types.h"
#define ARRAY_SIZE(x) (sizeof(x) / sizeof(x[0]))
#endif