17 lines
314 B
C
17 lines
314 B
C
|
/**
|
||
|
* @file max31855.c
|
||
|
* @brief MAX31855 Thermocouple-to-Digital Converter driver
|
||
|
*
|
||
|
*
|
||
|
* http://datasheets.maximintegrated.com/en/ds/MAX31855.pdf
|
||
|
*
|
||
|
* @date Sep 17, 2014
|
||
|
* @author Andrey Belomutskiy, (c) 2012-2014
|
||
|
*/
|
||
|
|
||
|
#include "max31855.h"
|
||
|
|
||
|
void initMax31855(board_configuration_s *boardConfiguration) {
|
||
|
|
||
|
}
|