Skip to content

Commit

Permalink
Do not treat error bit as biss error. fix for jkd
Browse files Browse the repository at this point in the history
  • Loading branch information
Ultrawipf committed Feb 28, 2023
1 parent 2b413bd commit 6c98a22
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Firmware/FFBoard/UserExtensions/Src/EncoderBissC.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ bool EncoderBissC::updateFrame(){
crc = 0x3F & ~crc; //CRC is output inverted

bool crc_ok = crc == crcRx;
return crc_ok && !(errorWarning & 0x2);
return crc_ok;
}

int32_t EncoderBissC::getPosAbs(){
Expand Down

0 comments on commit 6c98a22

Please sign in to comment.