123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172 |
- /**
- ******************************************************************************
- * @file stm320518_eval_i2c_tsensor.h
- * @author MCD Application Team
- * @version V1.0.0
- * @date 20-April-2012
- * @brief This file contains all the functions prototypes for the
- * stm320518_eval_i2c_tsensor.c firmware driver.
- ******************************************************************************
- * @attention
- *
- * <h2><center>© COPYRIGHT 2012 STMicroelectronics</center></h2>
- *
- * Licensed under MCD-ST Liberty SW License Agreement V2, (the "License");
- * You may not use this file except in compliance with the License.
- * You may obtain a copy of the License at:
- *
- * http://www.st.com/software_license_agreement_liberty_v2
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- *
- ******************************************************************************
- */
- /* Define to prevent recursive inclusion -------------------------------------*/
- #ifndef __STM320518_EVAL_I2C_TSENSOR_H
- #define __STM320518_EVAL_I2C_TSENSOR_H
- #ifdef __cplusplus
- extern "C" {
- #endif
- /* Includes ------------------------------------------------------------------*/
- #include "stm320518_eval.h"
- /** @addtogroup Utilities
- * @{
- */
-
- /** @addtogroup STM32_EVAL
- * @{
- */
- /** @addtogroup STM320518_EVAL
- * @{
- */
-
- /** @addtogroup STM320518_EVAL_I2C_TSENSOR
- * @{
- */
- /** @defgroup STM320518_EVAL_I2C_TSENSOR_Exported_Types
- * @{
- */
-
- /**
- * @brief TSENSOR Status
- */
- typedef enum
- {
- LM75_OK = 0,
- LM75_FAIL
- }LM75_Status_TypDef;
- /**
- * @}
- */
-
- /** @defgroup STM320518_EVAL_I2C_TSENSOR_Exported_Constants
- * @{
- */
-
- /* Uncomment the following line to use Timeout_User_Callback LM75_TimeoutUserCallback().
- If This Callback is enabled, it should be implemented by user in main function .
- LM75_TimeoutUserCallback() function is called whenever a timeout condition
- occure during communication (waiting on an event that doesn't occur, bus
- errors, busy devices ...). */
- /* #define USE_TIMEOUT_USER_CALLBACK */
-
- /* Maximum Timeout values for flags and events waiting loops. These timeouts are
- not based on accurate values, they just guarantee that the application will
- not remain stuck if the I2C communication is corrupted.
- You may modify these timeout values depending on CPU frequency and application
- conditions (interrupts routines ...). */
- #define LM75_FLAG_TIMEOUT ((uint32_t)0x1000)
- #define LM75_LONG_TIMEOUT ((uint32_t)(10 * LM75_FLAG_TIMEOUT))
-
- /**
- * @brief Block Size
- */
- #define LM75_REG_TEMP 0x00 /*!< Temperature Register of LM75 */
- #define LM75_REG_CONF 0x01 /*!< Configuration Register of LM75 */
- #define LM75_REG_THYS 0x02 /*!< Temperature Register of LM75 */
- #define LM75_REG_TOS 0x03 /*!< Over-temp Shutdown threshold Register of LM75 */
- #define I2C_TIMEOUT ((uint32_t)0x3FFFF) /*!< I2C Time out */
- #define LM75_ADDR 0x90 /*!< LM75 address */
- #define LM75_I2C_TIMING 0x1045061D
-
- /**
- * @}
- */
- /** @defgroup STM320518_EVAL_I2C_TSENSOR_Exported_Macros
- * @{
- */
- /**
- * @}
- */
- /** @defgroup STM320518_EVAL_I2C_TSENSOR_Exported_Functions
- * @{
- */
- void LM75_DeInit(void);
- void LM75_Init(void);
- ErrorStatus LM75_GetStatus(void);
- uint16_t LM75_ReadTemp(void);
- uint16_t LM75_ReadReg(uint8_t RegName);
- uint8_t LM75_WriteReg(uint8_t RegName, uint16_t RegValue);
- uint8_t LM75_ReadConfReg(void);
- uint8_t LM75_WriteConfReg(uint8_t RegValue);
- uint8_t LM75_ShutDown(FunctionalState NewState);
- /**
- * @brief Timeout user callback function. This function is called when a timeout
- * condition occurs during communication with LM75. Only protoype
- * of this function is decalred in LM75 driver. Its implementation
- * may be done into user application. This function may typically stop
- * current operations and reset the I2C peripheral and LM75.
- * To enable this function use uncomment the define USE_TIMEOUT_USER_CALLBACK
- * at the top of this file.
- */
- #ifdef USE_TIMEOUT_USER_CALLBACK
- uint8_t LM75_TIMEOUT_UserCallback(void);
- #else
- #define LM75_TIMEOUT_UserCallback() LM75_FAIL
- #endif /* USE_TIMEOUT_USER_CALLBACK */
-
- #ifdef __cplusplus
- }
- #endif
- #endif /* __STM320518_EVAL_I2C_TSENSOR_H */
- /**
- * @}
- */
- /**
- * @}
- */
- /**
- * @}
- */
- /**
- * @}
- */
- /**
- * @}
- */
- /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/
|