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/

Revision:
2:87208512ab66
Parent:
1:138e8076f348
Child:
6:9dfa42666f03
--- a/Drivers/BSP/Components/Common/tsensor.h	Tue Jan 31 09:31:29 2017 +0100
+++ b/Drivers/BSP/Components/Common/tsensor.h	Fri Apr 14 11:03:32 2017 +0200
@@ -2,14 +2,14 @@
   ******************************************************************************
   * @file    tsensor.h
   * @author  MCD Application Team
-  * @version V4.0.1
-  * @date    21-July-2015
+  * @version V5.0.0
+  * @date    01-March-2017
   * @brief   This header file contains the functions prototypes for the
   *          Temperature Sensor driver. 
   ******************************************************************************
   * @attention
   *
-  * <h2><center>&copy; COPYRIGHT(c) 2015 STMicroelectronics</center></h2>
+  * <h2><center>&copy; COPYRIGHT(c) 2017 STMicroelectronics</center></h2>
   *
   * Redistribution and use in source and binary forms, with or without modification,
   * are permitted provided that the following conditions are met:
@@ -72,8 +72,8 @@
   uint8_t ConversionMode;       /* Continuous/One Shot Mode */
   uint8_t ConversionResolution; /* Temperature Resolution */
   uint8_t ConversionRate;       /* Number of measure per second */
-  uint8_t TemperatureLimitHigh; /* High Temperature Limit Range */
-  uint8_t TemperatureLimitLow;  /* Low Temperature Limit Range */
+  int8_t TemperatureLimitHigh; /* High Temperature Limit Range */
+  int8_t TemperatureLimitLow;  /* Low Temperature Limit Range */
 }TSENSOR_InitTypeDef;
 /**
   * @}
@@ -87,7 +87,7 @@
   void       (*Init)(uint16_t, TSENSOR_InitTypeDef *);
   uint8_t    (*IsReady)(uint16_t, uint32_t);
   uint8_t    (*ReadStatus)(uint16_t);
-  uint16_t   (*ReadTemp)(uint16_t); 
+  float      (*ReadTemp)(uint16_t); 
 }TSENSOR_DrvTypeDef;
 /**
   * @}