Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependencies: X_NUCLEO_COMMON ST_INTERFACES
Revision 42:5490ac2d0a10, committed 2015-06-08
- Comitter:
- Wolfgang Betz
- Date:
- Mon Jun 08 13:46:20 2015 +0200
- Parent:
- 41:4a71f1594d7d
- Child:
- 43:2544d064d528
- Commit message:
- Prepare expansion board for having individually removable sensors
Changed in this revision
| x_nucleo_iks01a1.cpp | Show annotated file Show diff for this revision Revisions of this file |
| x_nucleo_iks01a1.h | Show annotated file Show diff for this revision Revisions of this file |
--- a/x_nucleo_iks01a1.cpp Fri Jun 05 18:20:37 2015 +0200
+++ b/x_nucleo_iks01a1.cpp Mon Jun 08 13:46:20 2015 +0200
@@ -48,10 +48,10 @@
* @brief Constructor
*/
X_NUCLEO_IKS01A1::X_NUCLEO_IKS01A1(DevI2C *ext_i2c) : dev_i2c(ext_i2c),
- ht_sensor(*(new HTS221(*dev_i2c))),
- magnetometer(*(new LIS3MDL(*dev_i2c))),
- pressure_sensor(*(new LPS25H(*dev_i2c))),
- gyroscope(*(new LSM6DS0(*dev_i2c)))
+ ht_sensor(new HTS221(*dev_i2c)),
+ magnetometer(new LIS3MDL(*dev_i2c)),
+ pressure_sensor(new LPS25H(*dev_i2c)),
+ gyroscope(new LSM6DS0(*dev_i2c))
{
}
@@ -85,31 +85,43 @@
}
/**
+ * @brief Initialize the singelton's sensors to default settings
+ * @return true if initialization successful, false otherwise
+ * @retval true if initialization successful,
+ * @retval false otherwise
+ */
+bool X_NUCLEO_IKS01A1::Init(void) {
+ return (Init_HTS221() &&
+ Init_LIS3MDL() &&
+ Init_LPS25H() &&
+ Init_LSM6DS0());
+}
+
+/**
* @brief Initialize the singelton HT sensor
* @return true if initialization successful, false otherwise
*/
-bool X_NUCLEO_IKS01A1::Init_HT(void) {
+bool X_NUCLEO_IKS01A1::Init_HTS221(void) {
uint8_t ht_id = 0;
HUM_TEMP_InitTypeDef InitStructure;
+ /* Check presence */
+ if((ht_sensor->ReadID(&ht_id) != HUM_TEMP_OK) ||
+ (ht_id != I_AM_HTS221))
+ {
+ delete ht_sensor;
+ ht_sensor = NULL;
+ return true;
+ }
+
/* Configure sensor */
InitStructure.OutputDataRate = HTS221_ODR_12_5Hz;
- if(ht_sensor.Init(&InitStructure) != HUM_TEMP_OK)
+ if(ht_sensor->Init(&InitStructure) != HUM_TEMP_OK)
{
return false;
}
- if(ht_sensor.ReadID(&ht_id) != HUM_TEMP_OK)
- {
- return false;
- }
-
- if(ht_id != I_AM_HTS221)
- {
- return false;
- }
-
return true;
}
@@ -117,31 +129,30 @@
* @brief Initialize the singelton magnetometer
* @return true if initialization successful, false otherwise
*/
-bool X_NUCLEO_IKS01A1::Init_MAG(void) {
+bool X_NUCLEO_IKS01A1::Init_LIS3MDL(void) {
uint8_t m_id = 0;
MAGNETO_InitTypeDef InitStructure;
+ /* Check presence */
+ if((magnetometer->ReadID(&m_id) != MAGNETO_OK) ||
+ (m_id != I_AM_LIS3MDL_M))
+ {
+ delete magnetometer;
+ magnetometer = NULL;
+ return true;
+ }
+
/* Configure sensor */
InitStructure.M_FullScale = LIS3MDL_M_FS_4;
InitStructure.M_OperatingMode = LIS3MDL_M_MD_CONTINUOUS;
InitStructure.M_XYOperativeMode = LIS3MDL_M_OM_HP;
InitStructure.M_OutputDataRate = LIS3MDL_M_DO_80;
- if(magnetometer.Init(&InitStructure) != MAGNETO_OK)
+ if(magnetometer->Init(&InitStructure) != MAGNETO_OK)
{
return false;
}
- if(magnetometer.ReadID(&m_id) != MAGNETO_OK)
- {
- return false;
- }
-
- if(m_id != I_AM_LIS3MDL_M)
- {
- return false;
- }
-
return true;
}
@@ -149,10 +160,19 @@
* @brief Initialize the singelton pressure sensor
* @return true if initialization successful, false otherwise
*/
-bool X_NUCLEO_IKS01A1::Init_PRESS(void) {
+bool X_NUCLEO_IKS01A1::Init_LPS25H(void) {
uint8_t p_id = 0;
PRESSURE_InitTypeDef InitStructure;
+ /* Check presence */
+ if((pressure_sensor->ReadID(&p_id) != PRESSURE_OK) ||
+ (p_id != I_AM_LPS25H))
+ {
+ delete pressure_sensor;
+ pressure_sensor = NULL;
+ return true;
+ }
+
/* Configure sensor */
InitStructure.OutputDataRate = LPS25H_ODR_1Hz;
InitStructure.BlockDataUpdate = LPS25H_BDU_CONT;
@@ -161,21 +181,11 @@
InitStructure.PressureResolution = LPS25H_P_RES_AVG_32;
InitStructure.TemperatureResolution = LPS25H_T_RES_AVG_16;
- if(pressure_sensor.Init(&InitStructure) != PRESSURE_OK)
+ if(pressure_sensor->Init(&InitStructure) != PRESSURE_OK)
{
return false;
}
- if(pressure_sensor.ReadID(&p_id) != PRESSURE_OK)
- {
- return false;
- }
-
- if(p_id != I_AM_LPS25H)
- {
- return false;
- }
-
return true;
}
@@ -183,10 +193,19 @@
* @brief Initialize the singelton gyroscope
* @return true if initialization successful, false otherwise
*/
-bool X_NUCLEO_IKS01A1::Init_GYRO(void) {
+bool X_NUCLEO_IKS01A1::Init_LSM6DS0(void) {
IMU_6AXES_InitTypeDef InitStructure;
uint8_t xg_id = 0;
+ /* Check presence */
+ if((gyroscope->ReadID(&xg_id) != IMU_6AXES_OK) ||
+ (xg_id != I_AM_LSM6DS0_XG))
+ {
+ delete gyroscope;
+ gyroscope = NULL;
+ return true;
+ }
+
/* Configure sensor */
InitStructure.G_FullScale = 2000.0f; /* 2000DPS */
InitStructure.G_OutputDataRate = 119.0f; /* 119HZ */
@@ -200,20 +219,10 @@
InitStructure.X_Y_Axis = 1; /* Enable */
InitStructure.X_Z_Axis = 1; /* Enable */
- if(gyroscope.Init(&InitStructure) != IMU_6AXES_OK)
+ if(gyroscope->Init(&InitStructure) != IMU_6AXES_OK)
{
return false;
}
- if(gyroscope.ReadID(&xg_id) != IMU_6AXES_OK)
- {
- return false;
- }
-
- if(xg_id != I_AM_LSM6DS0_XG)
- {
- return false;
- }
-
return true;
}
--- a/x_nucleo_iks01a1.h Fri Jun 05 18:20:37 2015 +0200
+++ b/x_nucleo_iks01a1.h Mon Jun 08 13:46:20 2015 +0200
@@ -49,6 +49,12 @@
#include "lsm6ds0/lsm6ds0_class.h"
#include "DevI2C.h"
+/* Macros -------------------------------------------------------------------*/
+#define CALL_METH(obj, meth, param, ret) ((obj == NULL) ? \
+ ((*(param) = (ret)), 0) : \
+ ((obj)->meth(param)) \
+ )
+
/* Classes -------------------------------------------------------------------*/
/** Class X_NUCLEO_IKS01A1 is intended to represent the MEMS Inertial & Environmental
* Nucleo Expansion Board with the same name.
@@ -73,27 +79,21 @@
protected:
X_NUCLEO_IKS01A1(DevI2C *ext_i2c);
- bool Init(void) {
- return (Init_HT() &&
- Init_MAG() &&
- Init_PRESS() &&
- Init_GYRO());
- }
-
- bool Init_HT(void);
- bool Init_MAG(void);
- bool Init_PRESS(void);
- bool Init_GYRO(void);
+ bool Init(void);
+ bool Init_HTS221(void);
+ bool Init_LIS3MDL(void);
+ bool Init_LPS25H(void);
+ bool Init_LSM6DS0(void);
public:
static X_NUCLEO_IKS01A1* Instance(DevI2C *ext_i2c = NULL);
- DevI2C *dev_i2c;
+ DevI2C *dev_i2c;
- HTS221 &ht_sensor;
- LIS3MDL &magnetometer;
- LPS25H &pressure_sensor;
- LSM6DS0 &gyroscope;
+ HTS221 *ht_sensor;
+ LIS3MDL *magnetometer;
+ LPS25H *pressure_sensor;
+ LSM6DS0 *gyroscope;
private:
static X_NUCLEO_IKS01A1 *_instance;