Skip to content

Commit

Permalink
#28 reverse byte order change
Browse files Browse the repository at this point in the history
  • Loading branch information
JoeMaier committed Mar 10, 2018
1 parent cd36a02 commit b6c48a3
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions MainBrain/src/Controller/CanController/CanController.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -110,8 +110,8 @@ void CanController::sendUnitekWrite(uint8_t regID, uint8_t buf1, uint8_t buf2){
canMessage.id=canModel->UNITEKSENDID;
canMessage.len=3;
canMessage.buf[0]=regID;
canMessage.buf[1]=buf1;
canMessage.buf[2]=buf2;
canMessage.buf[1]=buf2;
canMessage.buf[2]=buf1;

// canModel.
canModel->send(canMessage);
Expand Down
Binary file not shown.
Binary file not shown.
Binary file not shown.

0 comments on commit b6c48a3

Please sign in to comment.