18 lines
343 B
C
18 lines
343 B
C
/**
|
|
* @file max31855.h
|
|
*
|
|
* @date Sep 17, 2014
|
|
* @author Andrey Belomutskiy, (c) 2012-2017
|
|
*/
|
|
|
|
#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_ */
|