diff options
Diffstat (limited to 'os/ex/ST')
-rw-r--r-- | os/ex/ST/hts221.h | 6 | ||||
-rw-r--r-- | os/ex/ST/l3gd20.h | 4 | ||||
-rw-r--r-- | os/ex/ST/lsm303dlhc.h | 6 |
3 files changed, 8 insertions, 8 deletions
diff --git a/os/ex/ST/hts221.h b/os/ex/ST/hts221.h index c6f2f9f5f..2570a6ed1 100644 --- a/os/ex/ST/hts221.h +++ b/os/ex/ST/hts221.h @@ -419,11 +419,11 @@ struct HTS221VMT { */
struct HTS221Driver {
/** @brief Virtual Methods Table.*/
- const struct HTS221VMT *vmt;
+ const struct HTS221VMT *vmt;
/** @brief Base hygrometer interface.*/
- BaseHygrometer hygro_if;
+ BaseHygrometer hygro_if;
/** @brief Base thermometer interface.*/
- BaseThermometer thermo_if;
+ BaseThermometer thermo_if;
_hts221_data
};
/** @} */
diff --git a/os/ex/ST/l3gd20.h b/os/ex/ST/l3gd20.h index 0cb3b18a9..5f17eb91b 100644 --- a/os/ex/ST/l3gd20.h +++ b/os/ex/ST/l3gd20.h @@ -526,9 +526,9 @@ struct L3GD20VMT { */ struct L3GD20Driver { /** @brief Virtual Methods Table. */ - const struct L3GD20VMT *vmt;
+ const struct L3GD20VMT *vmt;
/** @brief Base gyroscope interface.*/
- BaseGyroscope gyro_if; + BaseGyroscope gyro_if; _l3gd20_data }; /** @} */ diff --git a/os/ex/ST/lsm303dlhc.h b/os/ex/ST/lsm303dlhc.h index 1288c4b36..51784e24b 100644 --- a/os/ex/ST/lsm303dlhc.h +++ b/os/ex/ST/lsm303dlhc.h @@ -608,11 +608,11 @@ struct LSM303DLHCVMT { */
struct LSM303DLHCDriver {
/** @brief Virtual Methods Table.*/
- const struct LSM303DLHCVMT *vmt;
+ const struct LSM303DLHCVMT *vmt;
/** @brief Base accelerometer interface.*/
- BaseAccelerometer acc_if;
+ BaseAccelerometer acc_if;
/** @brief Base compass interface.*/
- BaseCompass comp_if;
+ BaseCompass comp_if;
_lsm303dlhc_data
};
/** @} */
|