mbed library for STMicroelectronics' X-NUCLEO-IKA01A1 expansion board.

Dependents:   HelloWorld_IKA01A1

Fork of X_NUCLEO_IKA01A1 by ST Expansion SW Team

Library for STMicroelectronics' X-NUCLEO-IKA01A1 multifunctional expansion board based on operational amplifiers.

Committer:
hemddabral
Date:
Wed Mar 02 12:58:02 2016 +0000
Revision:
2:19d1dcef0c0e
First draft version using STM32COO utility

Who changed what in which revision?

UserRevisionLine numberNew contents of line
hemddabral 2:19d1dcef0c0e 1 /**
hemddabral 2:19d1dcef0c0e 2 ******************************************************************************
hemddabral 2:19d1dcef0c0e 3 * @file tsz124.h
hemddabral 2:19d1dcef0c0e 4 * @author Central Labs
hemddabral 2:19d1dcef0c0e 5 * @version 1.0.0
hemddabral 2:19d1dcef0c0e 6 * @date 11-February-2016
hemddabral 2:19d1dcef0c0e 7 * @brief Portable architecture for TSV734
hemddabral 2:19d1dcef0c0e 8 ******************************************************************************
hemddabral 2:19d1dcef0c0e 9 * @attention
hemddabral 2:19d1dcef0c0e 10 *
hemddabral 2:19d1dcef0c0e 11 * <h2><center>&copy; COPYRIGHT(c) 2015 STMicroelectronics</center></h2>
hemddabral 2:19d1dcef0c0e 12 *
hemddabral 2:19d1dcef0c0e 13 * Redistribution and use in source and binary forms, with or without modification,
hemddabral 2:19d1dcef0c0e 14 * are permitted provided that the following conditions are met:
hemddabral 2:19d1dcef0c0e 15 * 1. Redistributions of source code must retain the above copyright notice,
hemddabral 2:19d1dcef0c0e 16 * this list of conditions and the following disclaimer.
hemddabral 2:19d1dcef0c0e 17 * 2. Redistributions in binary form must reproduce the above copyright notice,
hemddabral 2:19d1dcef0c0e 18 * this list of conditions and the following disclaimer in the documentation
hemddabral 2:19d1dcef0c0e 19 * and/or other materials provided with the distribution.
hemddabral 2:19d1dcef0c0e 20 * 3. Neither the name of STMicroelectronics nor the names of its contributors
hemddabral 2:19d1dcef0c0e 21 * may be used to endorse or promote products derived from this software
hemddabral 2:19d1dcef0c0e 22 * without specific prior written permission.
hemddabral 2:19d1dcef0c0e 23 *
hemddabral 2:19d1dcef0c0e 24 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
hemddabral 2:19d1dcef0c0e 25 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
hemddabral 2:19d1dcef0c0e 26 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
hemddabral 2:19d1dcef0c0e 27 * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
hemddabral 2:19d1dcef0c0e 28 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
hemddabral 2:19d1dcef0c0e 29 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
hemddabral 2:19d1dcef0c0e 30 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
hemddabral 2:19d1dcef0c0e 31 * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
hemddabral 2:19d1dcef0c0e 32 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
hemddabral 2:19d1dcef0c0e 33 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
hemddabral 2:19d1dcef0c0e 34 *
hemddabral 2:19d1dcef0c0e 35 ******************************************************************************
hemddabral 2:19d1dcef0c0e 36 */
hemddabral 2:19d1dcef0c0e 37
hemddabral 2:19d1dcef0c0e 38
hemddabral 2:19d1dcef0c0e 39 /* Define to prevent recursive inclusion -------------------------------------*/
hemddabral 2:19d1dcef0c0e 40
hemddabral 2:19d1dcef0c0e 41 #ifndef __TSV734_H
hemddabral 2:19d1dcef0c0e 42 #define __TSV734_H
hemddabral 2:19d1dcef0c0e 43
hemddabral 2:19d1dcef0c0e 44 #ifdef __cplusplus
hemddabral 2:19d1dcef0c0e 45 extern "C" {
hemddabral 2:19d1dcef0c0e 46 #endif
hemddabral 2:19d1dcef0c0e 47
hemddabral 2:19d1dcef0c0e 48
hemddabral 2:19d1dcef0c0e 49 /* Includes ------------------------------------------------------------------*/
hemddabral 2:19d1dcef0c0e 50
hemddabral 2:19d1dcef0c0e 51 /* ACTION --------------------------------------------------------------------*
hemddabral 2:19d1dcef0c0e 52 * Include here interface specific header files. *
hemddabral 2:19d1dcef0c0e 53 *----------------------------------------------------------------------------*/
hemddabral 2:19d1dcef0c0e 54 #include "../Common/instrumentation_amp.h"
hemddabral 2:19d1dcef0c0e 55
hemddabral 2:19d1dcef0c0e 56
hemddabral 2:19d1dcef0c0e 57 /* Definitions ---------------------------------------------------------------*/
hemddabral 2:19d1dcef0c0e 58
hemddabral 2:19d1dcef0c0e 59 /** @addtogroup BSP
hemddabral 2:19d1dcef0c0e 60 * @{
hemddabral 2:19d1dcef0c0e 61 */
hemddabral 2:19d1dcef0c0e 62
hemddabral 2:19d1dcef0c0e 63 /** @addtogroup Components
hemddabral 2:19d1dcef0c0e 64 * @{
hemddabral 2:19d1dcef0c0e 65 */
hemddabral 2:19d1dcef0c0e 66
hemddabral 2:19d1dcef0c0e 67 /** @addtogroup TSV734
hemddabral 2:19d1dcef0c0e 68 * @{
hemddabral 2:19d1dcef0c0e 69 */
hemddabral 2:19d1dcef0c0e 70
hemddabral 2:19d1dcef0c0e 71 /** @defgroup TSV734_Exported_Defines TSV734_Exported_Defines
hemddabral 2:19d1dcef0c0e 72 * @{
hemddabral 2:19d1dcef0c0e 73 */
hemddabral 2:19d1dcef0c0e 74 #ifndef NULL
hemddabral 2:19d1dcef0c0e 75 #define NULL (void *) 0
hemddabral 2:19d1dcef0c0e 76 #endif
hemddabral 2:19d1dcef0c0e 77
hemddabral 2:19d1dcef0c0e 78 /**
hemddabral 2:19d1dcef0c0e 79 * @brief Device Address
hemddabral 2:19d1dcef0c0e 80 */
hemddabral 2:19d1dcef0c0e 81 #define TSV734_ADDRESS (0x12)
hemddabral 2:19d1dcef0c0e 82
hemddabral 2:19d1dcef0c0e 83 /* ACTION --------------------------------------------------------------------*
hemddabral 2:19d1dcef0c0e 84 * Put here the component's registers' addresses. *
hemddabral 2:19d1dcef0c0e 85 *----------------------------------------------------------------------------*/
hemddabral 2:19d1dcef0c0e 86
hemddabral 2:19d1dcef0c0e 87 /**
hemddabral 2:19d1dcef0c0e 88 * @brief Device identification register.
hemddabral 2:19d1dcef0c0e 89 * \code
hemddabral 2:19d1dcef0c0e 90 * Read
hemddabral 2:19d1dcef0c0e 91 * Default value: 0xXX
hemddabral 2:19d1dcef0c0e 92 * 7:0 This read-only register contains the device identifier.
hemddabral 2:19d1dcef0c0e 93 * \endcode
hemddabral 2:19d1dcef0c0e 94 */
hemddabral 2:19d1dcef0c0e 95 #define TSV734_WHO_AM_I_ADDR (0x22)
hemddabral 2:19d1dcef0c0e 96
hemddabral 2:19d1dcef0c0e 97 /**
hemddabral 2:19d1dcef0c0e 98 * @brief Device Identifier. Default value of the WHO_AM_I register.
hemddabral 2:19d1dcef0c0e 99 */
hemddabral 2:19d1dcef0c0e 100 #define I_AM_TSV734 ((uint8_t) (0x24))
hemddabral 2:19d1dcef0c0e 101
hemddabral 2:19d1dcef0c0e 102 extern Status_t TSV734_Write_Pin_D3(unsigned int dc);
hemddabral 2:19d1dcef0c0e 103
hemddabral 2:19d1dcef0c0e 104 #ifdef __cplusplus
hemddabral 2:19d1dcef0c0e 105 }
hemddabral 2:19d1dcef0c0e 106 #endif
hemddabral 2:19d1dcef0c0e 107
hemddabral 2:19d1dcef0c0e 108 #endif /* __TSV734_H */
hemddabral 2:19d1dcef0c0e 109
hemddabral 2:19d1dcef0c0e 110 /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/
hemddabral 2:19d1dcef0c0e 111