2015-07-10 06:01:56 -07:00
|
|
|
/**
|
2024-03-10 04:54:04 -07:00
|
|
|
* @file max3185x.h
|
2015-07-10 06:01:56 -07:00
|
|
|
*
|
|
|
|
* @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
|
2024-03-10 04:54:04 -07:00
|
|
|
void initMax3185x(spi_device_e device, egt_cs_array_t max31855_cs);
|
2024-03-11 12:48:11 -07:00
|
|
|
void stopMax3185x(void);
|
|
|
|
void startMax3185x(spi_device_e device, egt_cs_array_t max31855_cs);
|
2018-11-16 04:40:06 -08:00
|
|
|
#endif /* HAL_USE_SPI */
|