/** Initializes the temperature sensor driver, including setting up the appropriate ADC channel.\r
* This must be called before any other temperature sensor routines.\r
*\r
- * The ADC itself (not the ADC channel) must be configured seperately before calling the temperature\r
+ * The ADC itself (not the ADC channel) must be configured separately before calling the temperature\r
* sensor functions.\r
*/\r
#define Temperature_Init() ADC_SetupChannel(TEMP_ADC_CHANNEL);\r
\r
/* Function Prototypes: */\r
/** Performs a complete ADC on the temperature sensor channel, and converts the result into a\r
- * valid temperature between TEMP_MIN_TEMP and TEMP_MAX_TEMP in degrees Celcius.\r
+ * valid temperature between TEMP_MIN_TEMP and TEMP_MAX_TEMP in degrees Celsius.\r
*\r
- * \return Signed temperature in degrees Celcius\r
+ * \return Signed temperature in degrees Celsius\r
*/\r
int8_t Temperature_GetTemperature(void) ATTR_WARN_UNUSED_RESULT;\r
\r