Contains the BSP driver for the B-L475E-IOT01 board.

Dependents:   mbed-os-example-ble-Thermometer DISCO_L475VG_IOT01-Telegram-BOT DISCO_L475VG_IOT01-sche_cheveux DISCO_L475VG_IOT01-QSPI_FLASH_FILE_SYSTEM ... more

https://os.mbed.com/platforms/ST-Discovery-L475E-IOT01A/

Committer:
jeromecoutant
Date:
Tue Sep 24 15:30:09 2019 +0200
Revision:
7:bfe8272ced90
Parent:
6:9dfa42666f03
Update BSP files with STM32Cube L4 V1.14.0

Who changed what in which revision?

UserRevisionLine numberNew contents of line
bcostm 1:138e8076f348 1 /**
bcostm 1:138e8076f348 2 ******************************************************************************
bcostm 1:138e8076f348 3 * @file tsensor.h
bcostm 1:138e8076f348 4 * @author MCD Application Team
bcostm 1:138e8076f348 5 * @brief This header file contains the functions prototypes for the
bcostm 1:138e8076f348 6 * Temperature Sensor driver.
bcostm 1:138e8076f348 7 ******************************************************************************
bcostm 1:138e8076f348 8 * @attention
bcostm 1:138e8076f348 9 *
jeromecoutant 7:bfe8272ced90 10 * <h2><center>&copy; Copyright (c) 2017 STMicroelectronics.
jeromecoutant 7:bfe8272ced90 11 * All rights reserved.</center></h2>
bcostm 1:138e8076f348 12 *
jeromecoutant 7:bfe8272ced90 13 * This software component is licensed by ST under BSD 3-Clause license,
jeromecoutant 7:bfe8272ced90 14 * the "License"; You may not use this file except in compliance with the
jeromecoutant 7:bfe8272ced90 15 * License. You may obtain a copy of the License at:
jeromecoutant 7:bfe8272ced90 16 * opensource.org/licenses/BSD-3-Clause
bcostm 1:138e8076f348 17 *
bcostm 1:138e8076f348 18 ******************************************************************************
bcostm 1:138e8076f348 19 */
bcostm 1:138e8076f348 20
bcostm 1:138e8076f348 21 /* Define to prevent recursive inclusion -------------------------------------*/
bcostm 1:138e8076f348 22 #ifndef __TSENSOR_H
bcostm 1:138e8076f348 23 #define __TSENSOR_H
bcostm 1:138e8076f348 24
bcostm 1:138e8076f348 25 #ifdef __cplusplus
bcostm 1:138e8076f348 26 extern "C" {
bcostm 1:138e8076f348 27 #endif
bcostm 1:138e8076f348 28
bcostm 1:138e8076f348 29 /* Includes ------------------------------------------------------------------*/
bcostm 1:138e8076f348 30 #include <stdint.h>
bcostm 1:138e8076f348 31
bcostm 1:138e8076f348 32 /** @addtogroup BSP
bcostm 1:138e8076f348 33 * @{
bcostm 1:138e8076f348 34 */
bcostm 1:138e8076f348 35
bcostm 1:138e8076f348 36 /** @addtogroup Components
bcostm 1:138e8076f348 37 * @{
bcostm 1:138e8076f348 38 */
bcostm 1:138e8076f348 39
bcostm 1:138e8076f348 40 /** @addtogroup TSENSOR
bcostm 1:138e8076f348 41 * @{
bcostm 1:138e8076f348 42 */
bcostm 1:138e8076f348 43
bcostm 1:138e8076f348 44 /** @defgroup TSENSOR_Exported_Types
bcostm 1:138e8076f348 45 * @{
bcostm 1:138e8076f348 46 */
bcostm 1:138e8076f348 47
bcostm 1:138e8076f348 48 /** @defgroup TSENSOR_Config_structure Temperature Sensor Configuration structure
bcostm 1:138e8076f348 49 * @{
bcostm 1:138e8076f348 50 */
bcostm 1:138e8076f348 51 typedef struct
bcostm 1:138e8076f348 52 {
bcostm 1:138e8076f348 53 uint8_t AlertMode; /* Alert Mode Temperature out of range*/
bcostm 1:138e8076f348 54 uint8_t ConversionMode; /* Continuous/One Shot Mode */
bcostm 1:138e8076f348 55 uint8_t ConversionResolution; /* Temperature Resolution */
bcostm 1:138e8076f348 56 uint8_t ConversionRate; /* Number of measure per second */
bcostm 2:87208512ab66 57 int8_t TemperatureLimitHigh; /* High Temperature Limit Range */
bcostm 2:87208512ab66 58 int8_t TemperatureLimitLow; /* Low Temperature Limit Range */
bcostm 1:138e8076f348 59 }TSENSOR_InitTypeDef;
bcostm 1:138e8076f348 60 /**
bcostm 1:138e8076f348 61 * @}
bcostm 1:138e8076f348 62 */
bcostm 1:138e8076f348 63
bcostm 1:138e8076f348 64 /** @defgroup TSENSOR_Driver_structure Temperature Sensor Driver structure
bcostm 1:138e8076f348 65 * @{
bcostm 1:138e8076f348 66 */
bcostm 1:138e8076f348 67 typedef struct
bcostm 1:138e8076f348 68 {
bcostm 1:138e8076f348 69 void (*Init)(uint16_t, TSENSOR_InitTypeDef *);
bcostm 1:138e8076f348 70 uint8_t (*IsReady)(uint16_t, uint32_t);
bcostm 1:138e8076f348 71 uint8_t (*ReadStatus)(uint16_t);
bcostm 2:87208512ab66 72 float (*ReadTemp)(uint16_t);
bcostm 1:138e8076f348 73 }TSENSOR_DrvTypeDef;
bcostm 1:138e8076f348 74 /**
bcostm 1:138e8076f348 75 * @}
bcostm 1:138e8076f348 76 */
bcostm 1:138e8076f348 77
bcostm 1:138e8076f348 78 /**
bcostm 1:138e8076f348 79 * @}
bcostm 1:138e8076f348 80 */
bcostm 1:138e8076f348 81
bcostm 1:138e8076f348 82 /**
bcostm 1:138e8076f348 83 * @}
bcostm 1:138e8076f348 84 */
bcostm 1:138e8076f348 85
bcostm 1:138e8076f348 86 /**
bcostm 1:138e8076f348 87 * @}
bcostm 1:138e8076f348 88 */
bcostm 1:138e8076f348 89
bcostm 1:138e8076f348 90 /**
bcostm 1:138e8076f348 91 * @}
bcostm 1:138e8076f348 92 */
bcostm 1:138e8076f348 93
bcostm 1:138e8076f348 94 #ifdef __cplusplus
bcostm 1:138e8076f348 95 }
bcostm 1:138e8076f348 96 #endif
bcostm 1:138e8076f348 97
bcostm 1:138e8076f348 98 #endif /* __TSENSOR_H */
bcostm 1:138e8076f348 99
bcostm 1:138e8076f348 100 /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/