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.
Diff: LPS22HB.h
- Revision:
- 2:b6cb5c37b974
- Parent:
- 1:5f21b0eac2c2
- Child:
- 3:755ac86eb6fd
--- a/LPS22HB.h Wed Nov 30 17:45:08 2016 +0000
+++ b/LPS22HB.h Wed Nov 30 18:17:32 2016 +0000
@@ -194,23 +194,23 @@
*/
void write_reg(uint8_t addr, uint8_t data);
- /** Set output data rate (add by user)
+ /** Set output data rate
* @param data rate config
* @return none
*/
- void set_odr(lps22hb_odr odrcfg = LPS22HB_ODR_75HZ);
+ void set_odr(lps22hb_odr odrcfg = LPS22HB_ODR_75HZ); //add by user
- /** LPF (add by user)
+ /** LPF
* @param LPF config
* @return none
*/
- void set_lpf(lps22hb_lpf lpfcfg = LPS22HB_LPF_DISABLE);
+ void set_lpf(lps22hb_lpf lpfcfg = LPS22HB_LPF_DISABLE); //add by user
- /** DRDY (add by user)
+ /** DRDY
* @param DRDY config
* @return none
*/
- void drdy(lps22hb_drdy drdycfg = LPS22HB_DRDY_DISABLE);
+ void drdy(lps22hb_drdy drdycfg = LPS22HB_DRDY_DISABLE); //add by user
protected:
I2C _i2c;