2015-07-10 06:01:56 -07:00
|
|
|
/**
|
|
|
|
* @file max31855.h
|
|
|
|
*
|
|
|
|
* @date Sep 17, 2014
|
2015-12-31 13:02:30 -08:00
|
|
|
* @author Andrey Belomutskiy, (c) 2012-2016
|
2015-07-10 06:01:56 -07:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef MAX31855_H_
|
|
|
|
#define MAX31855_H_
|
|
|
|
|
|
|
|
#include "main.h"
|
|
|
|
#include "engine_configuration.h"
|
|
|
|
|
|
|
|
void initMax31855(Logging *sharedLogger, SPIDriver *drv, egt_cs_array_t max31855_cs);
|
|
|
|
uint16_t getEgtValue(int egtChannel);
|
|
|
|
|
|
|
|
#endif /* MAX31855_H_ */
|