Add support to Thermocouple-to-Digital converter MAX6675

This commit is contained in:
Alan Carvalho de Assis 2015-10-18 07:52:47 +08:00 committed by Gregory Nutt
parent bf99b4e207
commit 0ba6f21532
2 changed files with 11 additions and 0 deletions

View File

@ -99,6 +99,13 @@ config MAX31855
---help---
Enables support for the MAX31855 driver
config MAX6675
bool "Maxim MAX6675 Driver"
default n
select SPI
---help---
Enables support for the MAX6675 driver
config I2C_LM75
bool
default y if LM75

View File

@ -90,6 +90,10 @@ ifeq ($(CONFIG_MAX31855),y)
CSRCS += max31855.c
endif
ifeq ($(CONFIG_MAX6675),y)
CSRCS += max6675.c
endif
ifeq ($(CONFIG_MPL115A),y)
CSRCS += mpl115a.c
endif