2014-09-17 09:03:04 -07:00
|
|
|
/**
|
|
|
|
* @file max31855.h
|
|
|
|
*
|
|
|
|
* @date Sep 17, 2014
|
|
|
|
* @author Andrey Belomutskiy, (c) 2012-2014
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef MAX31855_H_
|
|
|
|
#define MAX31855_H_
|
|
|
|
|
|
|
|
#include "main.h"
|
|
|
|
#include "engine_configuration.h"
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C"
|
|
|
|
{
|
|
|
|
#endif /* __cplusplus */
|
|
|
|
|
|
|
|
void initMax31855(board_configuration_s *boardConfiguration);
|
2014-09-20 18:02:53 -07:00
|
|
|
uint16_t getEgtValue(board_configuration_s *boardConfiguration, int egtChannel);
|
2014-09-17 09:03:04 -07:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif /* __cplusplus */
|
|
|
|
|
|
|
|
#endif /* MAX31855_H_ */
|