Move out BUILD build system module start and end messages to the respective targets...
[pub/USBasp.git] / LUFA / Drivers / Board / Temperature.c
index b9b7adc..f465add 100644 (file)
@@ -1,13 +1,13 @@
 /*
              LUFA Library
-     Copyright (C) Dean Camera, 2011.
+     Copyright (C) Dean Camera, 2012.
 
   dean [at] fourwalledcubicle [dot] com
            www.lufa-lib.org
 */
 
 /*
-  Copyright 2011  Dean Camera (dean [at] fourwalledcubicle [dot] com)
+  Copyright 2012  Dean Camera (dean [at] fourwalledcubicle [dot] com)
 
   Permission to use, copy, modify, distribute, and sell this
   software and its documentation for any purpose is hereby granted
   this software.
 */
 
+#define  __INCLUDE_FROM_TEMPERATURE_C
 #include "Temperature.h"
 
+#if defined(TEMPERATURE_SENSOR_DRIVER_COMPATIBLE)
+
 static const uint16_t PROGMEM Temperature_Lookup[TEMP_TABLE_SIZE] =
 {
        0x3B4, 0x3B0, 0x3AB, 0x3A6, 0x3A0, 0x39A, 0x394, 0x38E, 0x388, 0x381, 0x37A, 0x373,
@@ -60,3 +63,4 @@ int8_t Temperature_GetTemperature(void)
        return TEMP_MAX_TEMP;
 }
 
+#endif