From d888c77661f8ac26137b312d3f835780d095c812 Mon Sep 17 00:00:00 2001 From: Jared Boone Date: Sat, 23 Jan 2016 21:38:43 -0800 Subject: [PATCH] Remove TPMS commented code. --- firmware/application/tpms_app.cpp | 8 -------- 1 file changed, 8 deletions(-) diff --git a/firmware/application/tpms_app.cpp b/firmware/application/tpms_app.cpp index 3c5d6ccc..08aeeb88 100644 --- a/firmware/application/tpms_app.cpp +++ b/firmware/application/tpms_app.cpp @@ -157,17 +157,9 @@ void TPMSRecentEntry::update(const tpms::Reading& reading) { if( reading.pressure().is_valid() ) { last_pressure = reading.pressure(); - // pressures.emplace_back(reading.pressure().value()); - // while( pressures.size() > 20 ) { - // pressures.pop_front(); - // } } if( reading.temperature().is_valid() ) { last_temperature = reading.temperature(); - // temperatures.emplace_back(reading.temperature().value()); - // while( temperatures.size() > 20 ) { - // temperatures.pop_front(); - // } } }