2014-09-17 09:03:04 -07:00
|
|
|
/**
|
|
|
|
* @file max31855.h
|
|
|
|
*
|
|
|
|
* @date Sep 17, 2014
|
2015-01-12 15:04:10 -08:00
|
|
|
* @author Andrey Belomutskiy, (c) 2012-2015
|
2014-09-17 09:03:04 -07:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef MAX31855_H_
|
|
|
|
#define MAX31855_H_
|
|
|
|
|
|
|
|
#include "main.h"
|
|
|
|
#include "engine_configuration.h"
|
|
|
|
|
2015-01-14 16:03:39 -08:00
|
|
|
void initMax31855(Logging *sharedLogger, SPIDriver *drv, egt_cs_array_t max31855_cs);
|
2014-12-30 12:03:24 -08:00
|
|
|
uint16_t getEgtValue(int egtChannel);
|
2014-09-17 09:03:04 -07:00
|
|
|
|
|
|
|
#endif /* MAX31855_H_ */
|