mirror of
https://github.com/PX4/PX4-Autopilot.git
synced 2026-05-23 22:58:10 +08:00
fixed dps310 calibration coeffecient for c11
This commit is contained in:
@@ -135,7 +135,7 @@ DPS310::reset()
|
||||
getTwosComplement(_calibration.c01, 16);
|
||||
|
||||
// 0x1A c11 [15:8] + 0x1B c11 [7:0]
|
||||
_calibration.c11 = ((uint32_t)coef[8] << 8) | (uint32_t)coef[9];
|
||||
_calibration.c11 = ((uint32_t)coef[10] << 8) | (uint32_t)coef[11];
|
||||
getTwosComplement(_calibration.c11, 16);
|
||||
|
||||
// 0x1C c20 [15:8] + 0x1D c20 [7:0]
|
||||
|
||||
Reference in New Issue
Block a user