Example of free fall detection for LSM6DSL in X-NUCLEO-IKS01A2

Dependencies:   X_NUCLEO_IKS01A2 mbed

Fork of FreeFall_IKS01A2 by ST Expansion SW Team

Free Fall Detection Demo Application based on sensor expansion board X-NUCLEO-IKS01A2

Main function is to show how to detect the free fall event using the sensor expansion board and send a notification using UART to a connected PC or Desktop and display it on terminal applications like TeraTerm.
After connection has been established:
- the user can try to leave falling the board and then view the notification using an hyper terminal. When the free fall is detected, the LED is switched on for a while.
- the user button can be used to enable/disable the free fall detection feature.

Committer:
cparata
Date:
Fri Aug 19 12:26:01 2016 +0000
Revision:
2:8308cb42bc49
Add interfaces to all components

Who changed what in which revision?

UserRevisionLine numberNew contents of line
cparata 2:8308cb42bc49 1 /**
cparata 2:8308cb42bc49 2 ******************************************************************************
cparata 2:8308cb42bc49 3 * @file LPS22HBSensor.h
cparata 2:8308cb42bc49 4 * @author AST
cparata 2:8308cb42bc49 5 * @version V1.0.0
cparata 2:8308cb42bc49 6 * @date 5 August 2016
cparata 2:8308cb42bc49 7 * @brief Abstract Class of an LPS22HB Pressure sensor.
cparata 2:8308cb42bc49 8 ******************************************************************************
cparata 2:8308cb42bc49 9 * @attention
cparata 2:8308cb42bc49 10 *
cparata 2:8308cb42bc49 11 * <h2><center>&copy; COPYRIGHT(c) 2016 STMicroelectronics</center></h2>
cparata 2:8308cb42bc49 12 *
cparata 2:8308cb42bc49 13 * Redistribution and use in source and binary forms, with or without modification,
cparata 2:8308cb42bc49 14 * are permitted provided that the following conditions are met:
cparata 2:8308cb42bc49 15 * 1. Redistributions of source code must retain the above copyright notice,
cparata 2:8308cb42bc49 16 * this list of conditions and the following disclaimer.
cparata 2:8308cb42bc49 17 * 2. Redistributions in binary form must reproduce the above copyright notice,
cparata 2:8308cb42bc49 18 * this list of conditions and the following disclaimer in the documentation
cparata 2:8308cb42bc49 19 * and/or other materials provided with the distribution.
cparata 2:8308cb42bc49 20 * 3. Neither the name of STMicroelectronics nor the names of its contributors
cparata 2:8308cb42bc49 21 * may be used to endorse or promote products derived from this software
cparata 2:8308cb42bc49 22 * without specific prior written permission.
cparata 2:8308cb42bc49 23 *
cparata 2:8308cb42bc49 24 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
cparata 2:8308cb42bc49 25 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
cparata 2:8308cb42bc49 26 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
cparata 2:8308cb42bc49 27 * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
cparata 2:8308cb42bc49 28 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
cparata 2:8308cb42bc49 29 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
cparata 2:8308cb42bc49 30 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
cparata 2:8308cb42bc49 31 * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
cparata 2:8308cb42bc49 32 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
cparata 2:8308cb42bc49 33 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
cparata 2:8308cb42bc49 34 *
cparata 2:8308cb42bc49 35 ******************************************************************************
cparata 2:8308cb42bc49 36 */
cparata 2:8308cb42bc49 37
cparata 2:8308cb42bc49 38
cparata 2:8308cb42bc49 39 /* Prevent recursive inclusion -----------------------------------------------*/
cparata 2:8308cb42bc49 40
cparata 2:8308cb42bc49 41 #ifndef __LPS22HBSensor_H__
cparata 2:8308cb42bc49 42 #define __LPS22HBSensor_H__
cparata 2:8308cb42bc49 43
cparata 2:8308cb42bc49 44
cparata 2:8308cb42bc49 45 /* Includes ------------------------------------------------------------------*/
cparata 2:8308cb42bc49 46
cparata 2:8308cb42bc49 47 #include "DevI2C.h"
cparata 2:8308cb42bc49 48 #include "LPS22HB_Driver.h"
cparata 2:8308cb42bc49 49 #include "PressureSensor.h"
cparata 2:8308cb42bc49 50 #include "TempSensor.h"
cparata 2:8308cb42bc49 51
cparata 2:8308cb42bc49 52 /* Class Declaration ---------------------------------------------------------*/
cparata 2:8308cb42bc49 53
cparata 2:8308cb42bc49 54 /**
cparata 2:8308cb42bc49 55 * Abstract class of an LPS22HB Pressure sensor.
cparata 2:8308cb42bc49 56 */
cparata 2:8308cb42bc49 57 class LPS22HBSensor : public PressureSensor, public TempSensor
cparata 2:8308cb42bc49 58 {
cparata 2:8308cb42bc49 59 public:
cparata 2:8308cb42bc49 60 LPS22HBSensor(DevI2C &i2c);
cparata 2:8308cb42bc49 61 LPS22HBSensor(DevI2C &i2c, uint8_t address);
cparata 2:8308cb42bc49 62 virtual int Init(void *init);
cparata 2:8308cb42bc49 63 virtual int ReadID(uint8_t *id);
cparata 2:8308cb42bc49 64 virtual int GetPressure(float *pfData);
cparata 2:8308cb42bc49 65 virtual int GetTemperature(float *pfData);
cparata 2:8308cb42bc49 66 int Enable(void);
cparata 2:8308cb42bc49 67 int Disable(void);
cparata 2:8308cb42bc49 68 int Reset(void);
cparata 2:8308cb42bc49 69 int Get_ODR(float *odr);
cparata 2:8308cb42bc49 70 int Set_ODR(float odr);
cparata 2:8308cb42bc49 71 int ReadReg(uint8_t reg, uint8_t *data);
cparata 2:8308cb42bc49 72 int WriteReg(uint8_t reg, uint8_t data);
cparata 2:8308cb42bc49 73
cparata 2:8308cb42bc49 74 /**
cparata 2:8308cb42bc49 75 * @brief Utility function to read data.
cparata 2:8308cb42bc49 76 * @param pBuffer: pointer to data to be read.
cparata 2:8308cb42bc49 77 * @param RegisterAddr: specifies internal address register to be read.
cparata 2:8308cb42bc49 78 * @param NumByteToRead: number of bytes to be read.
cparata 2:8308cb42bc49 79 * @retval 0 if ok, an error code otherwise.
cparata 2:8308cb42bc49 80 */
cparata 2:8308cb42bc49 81 uint8_t IO_Read(uint8_t* pBuffer, uint8_t RegisterAddr, uint16_t NumByteToRead)
cparata 2:8308cb42bc49 82 {
cparata 2:8308cb42bc49 83 return (uint8_t) dev_i2c.i2c_read(pBuffer, address, RegisterAddr, NumByteToRead);
cparata 2:8308cb42bc49 84 }
cparata 2:8308cb42bc49 85
cparata 2:8308cb42bc49 86 /**
cparata 2:8308cb42bc49 87 * @brief Utility function to write data.
cparata 2:8308cb42bc49 88 * @param pBuffer: pointer to data to be written.
cparata 2:8308cb42bc49 89 * @param RegisterAddr: specifies internal address register to be written.
cparata 2:8308cb42bc49 90 * @param NumByteToWrite: number of bytes to write.
cparata 2:8308cb42bc49 91 * @retval 0 if ok, an error code otherwise.
cparata 2:8308cb42bc49 92 */
cparata 2:8308cb42bc49 93 uint8_t IO_Write(uint8_t* pBuffer, uint8_t RegisterAddr, uint16_t NumByteToWrite)
cparata 2:8308cb42bc49 94 {
cparata 2:8308cb42bc49 95 return (uint8_t) dev_i2c.i2c_write(pBuffer, address, RegisterAddr, NumByteToWrite);
cparata 2:8308cb42bc49 96 }
cparata 2:8308cb42bc49 97
cparata 2:8308cb42bc49 98 private:
cparata 2:8308cb42bc49 99 int Set_ODR_When_Enabled(float odr);
cparata 2:8308cb42bc49 100 int Set_ODR_When_Disabled(float odr);
cparata 2:8308cb42bc49 101
cparata 2:8308cb42bc49 102 /* Helper classes. */
cparata 2:8308cb42bc49 103 DevI2C &dev_i2c;
cparata 2:8308cb42bc49 104
cparata 2:8308cb42bc49 105 /* Configuration */
cparata 2:8308cb42bc49 106 uint8_t address;
cparata 2:8308cb42bc49 107
cparata 2:8308cb42bc49 108 uint8_t isEnabled;
cparata 2:8308cb42bc49 109 float Last_ODR;
cparata 2:8308cb42bc49 110 };
cparata 2:8308cb42bc49 111
cparata 2:8308cb42bc49 112 #ifdef __cplusplus
cparata 2:8308cb42bc49 113 extern "C" {
cparata 2:8308cb42bc49 114 #endif
cparata 2:8308cb42bc49 115 uint8_t LPS22HB_IO_Write( void *handle, uint8_t WriteAddr, uint8_t *pBuffer, uint16_t nBytesToWrite );
cparata 2:8308cb42bc49 116 uint8_t LPS22HB_IO_Read( void *handle, uint8_t ReadAddr, uint8_t *pBuffer, uint16_t nBytesToRead );
cparata 2:8308cb42bc49 117 #ifdef __cplusplus
cparata 2:8308cb42bc49 118 }
cparata 2:8308cb42bc49 119 #endif
cparata 2:8308cb42bc49 120
cparata 2:8308cb42bc49 121 #endif