X-Git-Url: http://git.linex4red.de/pub/lufa.git/blobdiff_plain/fb3fcb968ea70f8b5c6d8f7edde65745e49628f2..6933f2e1a543b066ebe734bd126a7ff2f1c2777f:/LUFA/Drivers/Board/Temperature.h diff --git a/LUFA/Drivers/Board/Temperature.h b/LUFA/Drivers/Board/Temperature.h index c205093a8..17b8acfe1 100644 --- a/LUFA/Drivers/Board/Temperature.h +++ b/LUFA/Drivers/Board/Temperature.h @@ -72,16 +72,16 @@ /** Initializes the temperature sensor driver, including setting up the appropriate ADC channel. * This must be called before any other temperature sensor routines. * - * The ADC itself (not the ADC channel) must be configured seperately before calling the temperature + * The ADC itself (not the ADC channel) must be configured separately before calling the temperature * sensor functions. */ #define Temperature_Init() ADC_SetupChannel(TEMP_ADC_CHANNEL); /* Function Prototypes: */ /** Performs a complete ADC on the temperature sensor channel, and converts the result into a - * valid temperature between TEMP_MIN_TEMP and TEMP_MAX_TEMP in degrees Celcius. + * valid temperature between TEMP_MIN_TEMP and TEMP_MAX_TEMP in degrees Celsius. * - * \return Signed temperature in degrees Celcius + * \return Signed temperature in degrees Celsius */ int8_t Temperature_GetTemperature(void) ATTR_WARN_UNUSED_RESULT;