You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The text was updated successfully, but these errors were encountered:
kfessel
changed the title
OV/UV_TRIP config kind of return probaly of by 1000
OV/UV_TRIP config kind of return probaly off by 1000 * (set im V return in mV)
Mar 8, 2024
sorry very short
bms-firmware/drivers/bms_ic/bq769x0/bq769x0.c
Lines 287 to 288 in 58d2384
of by a factor of 1000 (adc_gain is in µV/LSB)
bms-firmware/drivers/bms_ic/bq769x0/bq769x0.c
Lines 244 to 245 in 58d2384
of by a factor of 1000 (adc_gain is in µV/LSB)
and
for ti manual SLUSBK2I – page 22
OV trip level is mapped to “10-XXXX-XXXX–1000”.
therefor the
(1U << 13 | ov_trip << 4)
should probaly be(1U << 13 | ov_trip << 4|0x8)
to match the effective valueThe text was updated successfully, but these errors were encountered: