osd-contiki/cpu/stm32w108/hal/micro/temperature_sensor.h
2010-10-25 09:03:38 +00:00

28 lines
788 B
C

/** @file temperature_sensor.h
* @brief Header for temperature sensor driver
*
*
* <!--(C) COPYRIGHT 2010 STMicroelectronics. All rights reserved. -->
*/
#ifndef _TEMP_SENSOR_H_
#define _TEMP_SENSOR_H_
/* Include --------------------------------------------------------------------*/
#include "hal/micro/adc.h"
/* Define --------------------------------------------------------------------*/
/* Typedef -------------------------------------------------------------------*/
/* Functions -----------------------------------------------------------------*/
/** @brief Temperature Sensor Initialization function
*/
void temperatureSensor_Init(void);
/** @brief Get temperature sensor value
*/
int32u temperatureSensor_GetValue(int8u type);
#endif /* _TEMP_SENSOR_H_ */