Update can_vss.cpp (#1813)

update vss reading from can
This commit is contained in:
shadowm60 2020-09-21 12:55:09 +03:00 committed by GitHub
parent 2ee9e837bb
commit f2edf843e5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -63,7 +63,7 @@ void processW202(const CANRxFrame& frame) {
tmp = (frame.data8[2] << 8);
tmp |= frame.data8[3];
vssSpeed = ((float)tmp) * 0.0277;
vssSpeed = ((float)tmp) * 0.0625;
}
/* End of specific processing functions */