osd-contiki/cpu/stm32w108/hal/micro/temperature-sensor.h

28 lines
801 B
C
Raw Normal View History

2014-06-19 14:28:13 +02:00
/** @file cpu/stm32w108/hal/micro/temperature-sensor.h
* @brief Header for temperature sensor driver
2010-10-25 11:03:38 +02:00
*
*
* <!--(C) COPYRIGHT 2010 STMicroelectronics. All rights reserved. -->
*/
#ifndef TEMP_SENSOR_H_
#define TEMP_SENSOR_H_
2010-10-25 11:03:38 +02:00
/* Include --------------------------------------------------------------------*/
#include "hal/micro/adc.h"
/* Define --------------------------------------------------------------------*/
/* Typedef -------------------------------------------------------------------*/
/* Functions -----------------------------------------------------------------*/
2014-06-19 14:28:13 +02:00
/** @brief Temperature Sensor Initialization function
2010-10-25 11:03:38 +02:00
*/
void temperatureSensor_Init(void);
2014-06-19 14:28:13 +02:00
/** @brief Get temperature sensor value
2010-10-25 11:03:38 +02:00
*/
uint32_t temperatureSensor_GetValue(void);
2010-10-25 11:03:38 +02:00
#endif /*TEMP_SENSOR_H_ */
2010-10-25 11:03:38 +02:00