19 lines
340 B
C
19 lines
340 B
C
/**
|
|
* @file max31855.h
|
|
*
|
|
* @date Sep 17, 2014
|
|
* @author Andrey Belomutskiy, (c) 2012-2020
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include "global.h"
|
|
#include "engine_configuration.h"
|
|
|
|
#if HAL_USE_SPI
|
|
void initMax31855(Logging *sharedLogger, spi_device_e device, egt_cs_array_t max31855_cs);
|
|
#endif /* HAL_USE_SPI */
|
|
|
|
uint16_t getEgtValue(int egtChannel);
|
|
|