local changes to increase sample rate

Dependencies:   ST_INTERFACES X_NUCLEO_COMMON_Local

Fork of X_NUCLEO_IKS01A1 by ST

Committer:
Wolfgang Betz
Date:
Fri May 29 14:23:22 2015 +0200
Revision:
18:1cb4ae9d83e7
Parent:
6:8d2abd695c52
Child:
20:c20c8bd5be6b
Remove Cube specific types from abstract classes

Who changed what in which revision?

UserRevisionLine numberNew contents of line
Wolfgang Betz 5:8bab0f419849 1 /**
Wolfgang Betz 5:8bab0f419849 2 ******************************************************************************
Wolfgang Betz 5:8bab0f419849 3 * @file lis3mdl_class.h
Wolfgang Betz 5:8bab0f419849 4 * @author AST / EST
Wolfgang Betz 5:8bab0f419849 5 * @version V0.0.1
Wolfgang Betz 5:8bab0f419849 6 * @date 14-April-2015
Wolfgang Betz 5:8bab0f419849 7 * @brief Header file for component LIS3MDL
Wolfgang Betz 5:8bab0f419849 8 ******************************************************************************
Wolfgang Betz 5:8bab0f419849 9 * @attention
Wolfgang Betz 5:8bab0f419849 10 *
Wolfgang Betz 5:8bab0f419849 11 * <h2><center>&copy; COPYRIGHT(c) 2015 STMicroelectronics</center></h2>
Wolfgang Betz 5:8bab0f419849 12 *
Wolfgang Betz 5:8bab0f419849 13 * Redistribution and use in source and binary forms, with or without modification,
Wolfgang Betz 5:8bab0f419849 14 * are permitted provided that the following conditions are met:
Wolfgang Betz 5:8bab0f419849 15 * 1. Redistributions of source code must retain the above copyright notice,
Wolfgang Betz 5:8bab0f419849 16 * this list of conditions and the following disclaimer.
Wolfgang Betz 5:8bab0f419849 17 * 2. Redistributions in binary form must reproduce the above copyright notice,
Wolfgang Betz 5:8bab0f419849 18 * this list of conditions and the following disclaimer in the documentation
Wolfgang Betz 5:8bab0f419849 19 * and/or other materials provided with the distribution.
Wolfgang Betz 5:8bab0f419849 20 * 3. Neither the name of STMicroelectronics nor the names of its contributors
Wolfgang Betz 5:8bab0f419849 21 * may be used to endorse or promote products derived from this software
Wolfgang Betz 5:8bab0f419849 22 * without specific prior written permission.
Wolfgang Betz 5:8bab0f419849 23 *
Wolfgang Betz 5:8bab0f419849 24 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
Wolfgang Betz 5:8bab0f419849 25 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
Wolfgang Betz 5:8bab0f419849 26 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
Wolfgang Betz 5:8bab0f419849 27 * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
Wolfgang Betz 5:8bab0f419849 28 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
Wolfgang Betz 5:8bab0f419849 29 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
Wolfgang Betz 5:8bab0f419849 30 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
Wolfgang Betz 5:8bab0f419849 31 * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
Wolfgang Betz 5:8bab0f419849 32 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
Wolfgang Betz 5:8bab0f419849 33 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Wolfgang Betz 5:8bab0f419849 34 *
Wolfgang Betz 5:8bab0f419849 35 ******************************************************************************
Wolfgang Betz 5:8bab0f419849 36 */
Wolfgang Betz 5:8bab0f419849 37
Wolfgang Betz 5:8bab0f419849 38 #ifndef __LIS3MDL_CLASS_H
Wolfgang Betz 5:8bab0f419849 39 #define __LIS3MDL_CLASS_H
Wolfgang Betz 5:8bab0f419849 40
Wolfgang Betz 5:8bab0f419849 41 /* Includes ------------------------------------------------------------------*/
Wolfgang Betz 5:8bab0f419849 42 #include "mbed.h"
Wolfgang Betz 5:8bab0f419849 43 #include "DevI2C.h"
Wolfgang Betz 5:8bab0f419849 44 #include "../Common/Magneto.h"
Wolfgang Betz 5:8bab0f419849 45 #include "lis3mdl.h"
Wolfgang Betz 5:8bab0f419849 46
Wolfgang Betz 5:8bab0f419849 47 /* Classes -------------------------------------------------------------------*/
Wolfgang Betz 5:8bab0f419849 48 /** Class representing a LIS3MDL sensor component
Wolfgang Betz 5:8bab0f419849 49 */
Wolfgang Betz 5:8bab0f419849 50 class LIS3MDL : public Magneto {
Wolfgang Betz 5:8bab0f419849 51 public:
Wolfgang Betz 5:8bab0f419849 52 /** Constructor
Wolfgang Betz 5:8bab0f419849 53 * @param i2c device I2C to be used for communication
Wolfgang Betz 5:8bab0f419849 54 */
Wolfgang Betz 5:8bab0f419849 55 LIS3MDL(DevI2C &i2c) : Magneto(), dev_i2c(i2c) {
Wolfgang Betz 5:8bab0f419849 56 }
Wolfgang Betz 5:8bab0f419849 57
Wolfgang Betz 5:8bab0f419849 58 /*** Interface Methods ***/
Wolfgang Betz 18:1cb4ae9d83e7 59 virtual int Init(void *init_struct) {
Wolfgang Betz 18:1cb4ae9d83e7 60 return LIS3MDL_Init((MAGNETO_InitTypeDef*)init_struct);
Wolfgang Betz 5:8bab0f419849 61 }
Wolfgang Betz 5:8bab0f419849 62
Wolfgang Betz 18:1cb4ae9d83e7 63 virtual int Read_M_ID(uint8_t *m_id) {
Wolfgang Betz 5:8bab0f419849 64 return LIS3MDL_Read_M_ID(m_id);
Wolfgang Betz 5:8bab0f419849 65 }
Wolfgang Betz 5:8bab0f419849 66
Wolfgang Betz 18:1cb4ae9d83e7 67 virtual int Get_M_Axes(int32_t *pData) {
Wolfgang Betz 5:8bab0f419849 68 return LIS3MDL_M_GetAxes(pData);
Wolfgang Betz 5:8bab0f419849 69 }
Wolfgang Betz 5:8bab0f419849 70
Wolfgang Betz 5:8bab0f419849 71 protected:
Wolfgang Betz 5:8bab0f419849 72 /*** Methods ***/
Wolfgang Betz 5:8bab0f419849 73 MAGNETO_StatusTypeDef LIS3MDL_Init(MAGNETO_InitTypeDef *LIS3MDL_Init);
Wolfgang Betz 5:8bab0f419849 74 MAGNETO_StatusTypeDef LIS3MDL_Read_M_ID(uint8_t *m_id);
Wolfgang Betz 5:8bab0f419849 75 MAGNETO_StatusTypeDef LIS3MDL_M_GetAxes(int32_t *pData);
Wolfgang Betz 6:8d2abd695c52 76
Wolfgang Betz 5:8bab0f419849 77 MAGNETO_StatusTypeDef LIS3MDL_M_GetAxesRaw(int16_t *pData);
Wolfgang Betz 5:8bab0f419849 78
Wolfgang Betz 5:8bab0f419849 79 /**
Wolfgang Betz 5:8bab0f419849 80 * @brief Configures LIS3MDL interrupt lines for NUCLEO boards
Wolfgang Betz 5:8bab0f419849 81 * @param None
Wolfgang Betz 5:8bab0f419849 82 * @retval None
Wolfgang Betz 5:8bab0f419849 83 */
Wolfgang Betz 5:8bab0f419849 84 void LIS3MDL_IO_ITConfig(void)
Wolfgang Betz 5:8bab0f419849 85 {
Wolfgang Betz 5:8bab0f419849 86 /* To be implemented */
Wolfgang Betz 5:8bab0f419849 87 }
Wolfgang Betz 5:8bab0f419849 88
Wolfgang Betz 5:8bab0f419849 89 /**
Wolfgang Betz 5:8bab0f419849 90 * @brief Configures LIS3MDL I2C interface
Wolfgang Betz 5:8bab0f419849 91 * @param None
Wolfgang Betz 5:8bab0f419849 92 * @retval MAGNETO_OK in case of success, an error code otherwise
Wolfgang Betz 5:8bab0f419849 93 */
Wolfgang Betz 5:8bab0f419849 94 MAGNETO_StatusTypeDef LIS3MDL_IO_Init(void)
Wolfgang Betz 5:8bab0f419849 95 {
Wolfgang Betz 5:8bab0f419849 96 return MAGNETO_OK; /* done in constructor */
Wolfgang Betz 5:8bab0f419849 97 }
Wolfgang Betz 5:8bab0f419849 98
Wolfgang Betz 5:8bab0f419849 99 /**
Wolfgang Betz 5:8bab0f419849 100 * @brief utility function to read data from STC3115
Wolfgang Betz 5:8bab0f419849 101 * @param pBuffer: pointer to data to be read.
Wolfgang Betz 5:8bab0f419849 102 * @param RegisterAddr: specifies internal address register to read from.
Wolfgang Betz 5:8bab0f419849 103 * @param NumByteToRead: number of bytes to be read.
Wolfgang Betz 5:8bab0f419849 104 * @retval MAGNETO_OK if ok, MAGNETO_ERROR if an I2C error has occured
Wolfgang Betz 5:8bab0f419849 105 */
Wolfgang Betz 5:8bab0f419849 106 MAGNETO_StatusTypeDef LIS3MDL_IO_Read(uint8_t* pBuffer,
Wolfgang Betz 5:8bab0f419849 107 uint8_t RegisterAddr, uint16_t NumByteToRead)
Wolfgang Betz 5:8bab0f419849 108 {
Wolfgang Betz 5:8bab0f419849 109 int ret = dev_i2c.i2c_read(pBuffer,
Wolfgang Betz 5:8bab0f419849 110 LIS3MDL_M_MEMS_ADDRESS,
Wolfgang Betz 5:8bab0f419849 111 RegisterAddr,
Wolfgang Betz 5:8bab0f419849 112 NumByteToRead);
Wolfgang Betz 5:8bab0f419849 113 if(ret != 0) {
Wolfgang Betz 5:8bab0f419849 114 return MAGNETO_ERROR;
Wolfgang Betz 5:8bab0f419849 115 }
Wolfgang Betz 5:8bab0f419849 116 return MAGNETO_OK;
Wolfgang Betz 5:8bab0f419849 117 }
Wolfgang Betz 5:8bab0f419849 118
Wolfgang Betz 5:8bab0f419849 119 /**
Wolfgang Betz 5:8bab0f419849 120 * @brief utility function to write data to STC3115
Wolfgang Betz 5:8bab0f419849 121 * @param pBuffer: pointer to buffer to be filled.
Wolfgang Betz 5:8bab0f419849 122 * @param RegisterAddr: specifies internal address register to read from.
Wolfgang Betz 5:8bab0f419849 123 * @param NumByteToWrite: number of bytes to write.
Wolfgang Betz 5:8bab0f419849 124 * @retval 0 if ok, -1 if an I2C error has occured
Wolfgang Betz 5:8bab0f419849 125 */
Wolfgang Betz 5:8bab0f419849 126 MAGNETO_StatusTypeDef LIS3MDL_IO_Write(uint8_t* pBuffer,
Wolfgang Betz 5:8bab0f419849 127 uint8_t RegisterAddr, uint16_t NumByteToWrite)
Wolfgang Betz 5:8bab0f419849 128 {
Wolfgang Betz 5:8bab0f419849 129 int ret = dev_i2c.i2c_write(pBuffer,
Wolfgang Betz 5:8bab0f419849 130 LIS3MDL_M_MEMS_ADDRESS,
Wolfgang Betz 5:8bab0f419849 131 RegisterAddr,
Wolfgang Betz 5:8bab0f419849 132 NumByteToWrite);
Wolfgang Betz 5:8bab0f419849 133 if(ret != 0) {
Wolfgang Betz 5:8bab0f419849 134 return MAGNETO_ERROR;
Wolfgang Betz 5:8bab0f419849 135 }
Wolfgang Betz 5:8bab0f419849 136 return MAGNETO_OK;
Wolfgang Betz 5:8bab0f419849 137 }
Wolfgang Betz 5:8bab0f419849 138
Wolfgang Betz 5:8bab0f419849 139 /*** Instance Variables ***/
Wolfgang Betz 5:8bab0f419849 140 /* IO Device */
Wolfgang Betz 5:8bab0f419849 141 DevI2C &dev_i2c;
Wolfgang Betz 5:8bab0f419849 142 };
Wolfgang Betz 5:8bab0f419849 143
Wolfgang Betz 5:8bab0f419849 144 #endif // __LIS3MDL_CLASS_H