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.
 
 

17 lines
274 B

/* therm.h */
#ifndef _THERM_H_
#define _THERM_H_
#include "common.h"
void therm_init(void);
void therm_read(void);
temp_t therm_coldtemp(void);
temp_t therm_temp(void);
uint8_t therm_fault(void);
temp_t therm_reduce(int32_t);
#define INVALID_TEMPERATURE 0xffff
#endif