Skip to content
This repository has been archived by the owner on Jan 2, 2024. It is now read-only.

Commit

Permalink
TPMS: Remove unused variable.
Browse files Browse the repository at this point in the history
May use again, so commented out.
  • Loading branch information
jboone committed Aug 8, 2017
1 parent 2033967 commit 39617f3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion firmware/common/tpms_packet.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ Optional<Reading> Packet::reading_ook_8k4_schrader() const {
* Those bits assumed to be 0b0100", which may not be entirely true...
*/
constexpr uint8_t first_nibble = 0x4;
const auto system_id = (first_nibble << 20) | reader_.read(0, 20);
// const auto system_id = (first_nibble << 20) | reader_.read(0, 20);
const auto id = reader_.read(20, 32);
const auto value_0 = reader_.read(52, 8);
const auto value_1 = reader_.read(60, 8);
Expand Down

0 comments on commit 39617f3

Please sign in to comment.