Static Analysis fix and Documentation comment changes

Signed-off-by: Abhishek Malik <abhishek.malik@intel.com>
This commit is contained in:
Abhishek Malik 2017-04-05 16:24:00 -07:00
parent e2fe04927f
commit 27dc4a5742
2 changed files with 5 additions and 4 deletions

View File

@ -35,7 +35,7 @@ namespace upm {
/** /**
* @library abp * @library abp
* @sensor abp * @sensor abp
* @comname ABP Honeywell Pressure and Temperature Sensor * @comname Honeywell ABP Pressure and Temperature Sensor
* @type other * @type other
* @man Honeywell * @man Honeywell
* @web https://sensing.honeywell.com/honeywell-sensing-basic-board-mount-pressure-sensors-abp-series-datasheet-323005128-c-en.pdf * @web https://sensing.honeywell.com/honeywell-sensing-basic-board-mount-pressure-sensors-abp-series-datasheet-323005128-c-en.pdf

View File

@ -36,9 +36,9 @@ namespace upm {
/** /**
* @library rsc * @library rsc
* @sensor rsc * @sensor rsc
* @comname Honeywell TruStability Boardmount Pressure Sensors * @comname Honeywell RSC TruStability Pressure and Temperature Sensors
* @altname TruStability Pressure and Temperature Sensors * @altname Honeywell RSC TruStability Boardmount Pressure Sensors
* @type pressure temperature * @type pressure temp
* @man honeywell * @man honeywell
* @con spi * @con spi
* @snippet rsc.cxx Interesting * @snippet rsc.cxx Interesting
@ -244,6 +244,7 @@ namespace upm {
private: private:
rsc_context m_rsc; rsc_context m_rsc;
RSC(const RSC& src) { /* do not create copied */} RSC(const RSC& src) { /* do not create copied */}
RSC& operator=(const RSC&) {return *this;}
uint8_t m_adc_coeff[4]; uint8_t m_adc_coeff[4];
}; };
} }