2015-07-10 06:01:56 -07:00
|
|
|
/**
|
|
|
|
* @file max31855.h
|
|
|
|
*
|
|
|
|
* @date Sep 17, 2014
|
2020-01-07 21:02:40 -08:00
|
|
|
* @author Andrey Belomutskiy, (c) 2012-2020
|
2015-07-10 06:01:56 -07:00
|
|
|
*/
|
|
|
|
|
2020-02-18 05:16:19 -08:00
|
|
|
#pragma once
|
2015-07-10 06:01:56 -07:00
|
|
|
|
2018-09-16 19:26:57 -07:00
|
|
|
#include "global.h"
|
2015-07-10 06:01:56 -07:00
|
|
|
#include "engine_configuration.h"
|
|
|
|
|
2019-04-12 17:52:51 -07:00
|
|
|
#if HAL_USE_SPI
|
2021-04-21 11:28:48 -07:00
|
|
|
void initMax31855(spi_device_e device, egt_cs_array_t max31855_cs);
|
2018-11-16 04:40:06 -08:00
|
|
|
#endif /* HAL_USE_SPI */
|
|
|
|
|
2015-07-10 06:01:56 -07:00
|
|
|
uint16_t getEgtValue(int egtChannel);
|
|
|
|
|