Merge pull request #33 from eangeloff/master

Fix description comments of functions
This commit is contained in:
Carter Nelson 2022-10-18 08:16:59 -07:00 committed by GitHub
commit 50745f67c3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -87,12 +87,12 @@ public:
float readAltitude(float sealevelPressure = 101325); // std atmosphere float readAltitude(float sealevelPressure = 101325); // std atmosphere
/*! /*!
* @brief Reads the raw temperature * @brief Reads the raw temperature
* @return Returns signed 16-bit integer of the raw temperature * @return Returns the raw temperature
*/ */
uint16_t readRawTemperature(void); uint16_t readRawTemperature(void);
/*! /*!
* @brief Reads the raw pressure * @brief Reads the raw pressure
* @return Returns signed 32-bit integer of the raw temperature * @return Returns the raw pressure
*/ */
uint32_t readRawPressure(void); uint32_t readRawPressure(void);