Arkadi Rafalovich / X_NUCLEO_IKS01A1

Dependencies:   ST_INTERFACES X_NUCLEO_COMMON

Dependents:   STM32_MagneticLight

Fork of X_NUCLEO_IKS01A1 by ST

Committer:
Wolfgang Betz
Date:
Mon Apr 13 14:44:02 2015 +0200
Revision:
3:088aa5839e0d
Child:
4:566f2c41dc1d
Provide first skeleton for abstract classes

Who changed what in which revision?

UserRevisionLine numberNew contents of line
Wolfgang Betz 3:088aa5839e0d 1 /**
Wolfgang Betz 3:088aa5839e0d 2 ******************************************************************************
Wolfgang Betz 3:088aa5839e0d 3 * @file Pressure.h
Wolfgang Betz 3:088aa5839e0d 4 * @author AST / EST
Wolfgang Betz 3:088aa5839e0d 5 * @version V0.0.1
Wolfgang Betz 3:088aa5839e0d 6 * @date 13-April-2015
Wolfgang Betz 3:088aa5839e0d 7 * @brief This file contains the abstract class describing in general
Wolfgang Betz 3:088aa5839e0d 8 * the interfaces of a pressure sensor
Wolfgang Betz 3:088aa5839e0d 9 ******************************************************************************
Wolfgang Betz 3:088aa5839e0d 10 * @attention
Wolfgang Betz 3:088aa5839e0d 11 *
Wolfgang Betz 3:088aa5839e0d 12 * <h2><center>&copy; COPYRIGHT(c) 2015 STMicroelectronics</center></h2>
Wolfgang Betz 3:088aa5839e0d 13 *
Wolfgang Betz 3:088aa5839e0d 14 * Redistribution and use in source and binary forms, with or without modification,
Wolfgang Betz 3:088aa5839e0d 15 * are permitted provided that the following conditions are met:
Wolfgang Betz 3:088aa5839e0d 16 * 1. Redistributions of source code must retain the above copyright notice,
Wolfgang Betz 3:088aa5839e0d 17 * this list of conditions and the following disclaimer.
Wolfgang Betz 3:088aa5839e0d 18 * 2. Redistributions in binary form must reproduce the above copyright notice,
Wolfgang Betz 3:088aa5839e0d 19 * this list of conditions and the following disclaimer in the documentation
Wolfgang Betz 3:088aa5839e0d 20 * and/or other materials provided with the distribution.
Wolfgang Betz 3:088aa5839e0d 21 * 3. Neither the name of STMicroelectronics nor the names of its contributors
Wolfgang Betz 3:088aa5839e0d 22 * may be used to endorse or promote products derived from this software
Wolfgang Betz 3:088aa5839e0d 23 * without specific prior written permission.
Wolfgang Betz 3:088aa5839e0d 24 *
Wolfgang Betz 3:088aa5839e0d 25 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
Wolfgang Betz 3:088aa5839e0d 26 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
Wolfgang Betz 3:088aa5839e0d 27 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
Wolfgang Betz 3:088aa5839e0d 28 * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
Wolfgang Betz 3:088aa5839e0d 29 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
Wolfgang Betz 3:088aa5839e0d 30 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
Wolfgang Betz 3:088aa5839e0d 31 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
Wolfgang Betz 3:088aa5839e0d 32 * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
Wolfgang Betz 3:088aa5839e0d 33 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
Wolfgang Betz 3:088aa5839e0d 34 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Wolfgang Betz 3:088aa5839e0d 35 *
Wolfgang Betz 3:088aa5839e0d 36 ******************************************************************************
Wolfgang Betz 3:088aa5839e0d 37 */
Wolfgang Betz 3:088aa5839e0d 38
Wolfgang Betz 3:088aa5839e0d 39 /* Define to prevent from recursive inclusion --------------------------------*/
Wolfgang Betz 3:088aa5839e0d 40 #ifndef __PRESSURE_CLASS_H
Wolfgang Betz 3:088aa5839e0d 41 #define __PRESSURE_CLASS_H
Wolfgang Betz 3:088aa5839e0d 42
Wolfgang Betz 3:088aa5839e0d 43 /* Includes ------------------------------------------------------------------*/
Wolfgang Betz 3:088aa5839e0d 44 #include "mbed.h"
Wolfgang Betz 3:088aa5839e0d 45 #include "pressure.h"
Wolfgang Betz 3:088aa5839e0d 46
Wolfgang Betz 3:088aa5839e0d 47 /* Classes ------------------------------------------------------------------*/
Wolfgang Betz 3:088aa5839e0d 48 /** An abstract class for Pressure components
Wolfgang Betz 3:088aa5839e0d 49 */
Wolfgang Betz 3:088aa5839e0d 50 class Pressure
Wolfgang Betz 3:088aa5839e0d 51 {
Wolfgang Betz 3:088aa5839e0d 52 public:
Wolfgang Betz 3:088aa5839e0d 53 virtual PRESSURE_StatusTypeDef Init(PRESSURE_InitTypeDef&) = 0;
Wolfgang Betz 3:088aa5839e0d 54
Wolfgang Betz 3:088aa5839e0d 55 virtual PRESSURE_StatusTypeDef PowerOff(void) = 0;
Wolfgang Betz 3:088aa5839e0d 56 virtual PRESSURE_StatusTypeDef ReadID(uint8_t&) = 0;
Wolfgang Betz 3:088aa5839e0d 57 virtual PRESSURE_StatusTypeDef Reset(void) = 0;
Wolfgang Betz 3:088aa5839e0d 58
Wolfgang Betz 3:088aa5839e0d 59 virtual void ConfigIT(uint16_t) = 0;
Wolfgang Betz 3:088aa5839e0d 60 virtual void EnableIT(uint8_t) = 0;
Wolfgang Betz 3:088aa5839e0d 61 virtual void DisableIT(uint8_t) = 0;
Wolfgang Betz 3:088aa5839e0d 62 virtual uint8_t ITStatus(uint16_t, uint16_t) = 0;
Wolfgang Betz 3:088aa5839e0d 63 virtual void ClearIT(uint16_t, uint16_t) = 0;
Wolfgang Betz 3:088aa5839e0d 64
Wolfgang Betz 3:088aa5839e0d 65 virtual PRESSURE_StatusTypeDef GetPressure(float&) = 0;
Wolfgang Betz 3:088aa5839e0d 66 virtual PRESSURE_StatusTypeDef GetTemperature(float&) = 0;
Wolfgang Betz 3:088aa5839e0d 67 virtual void SlaveAddrRemap(uint8_t) = 0;
Wolfgang Betz 3:088aa5839e0d 68
Wolfgang Betz 3:088aa5839e0d 69 virtual void AttachIT(void (*fptr)(void)) = 0;
Wolfgang Betz 3:088aa5839e0d 70
Wolfgang Betz 3:088aa5839e0d 71 protected:
Wolfgang Betz 3:088aa5839e0d 72 Pressure(void) {};
Wolfgang Betz 3:088aa5839e0d 73 };
Wolfgang Betz 3:088aa5839e0d 74
Wolfgang Betz 3:088aa5839e0d 75 #endif /* __PRESSURE_CLASS_H */