New Contiki port to STM32W108.
This commit is contained in:
parent
324796cd1a
commit
ec5e3ce0d7
130 changed files with 43157 additions and 0 deletions
27
cpu/stm32w108/hal/micro/temperature_sensor.h
Normal file
27
cpu/stm32w108/hal/micro/temperature_sensor.h
Normal file
|
@ -0,0 +1,27 @@
|
|||
/** @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_ */
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue