mirror of
https://github.com/portapack-mayhem/mayhem-firmware.git
synced 2024-12-14 04:04:34 +00:00
Don't show TPMS Manchester errors on LCD, truncate data to not wrap.
This commit is contained in:
parent
19f352fa13
commit
8e4e33f74e
@ -562,8 +562,7 @@ void ReceiverView::on_packet_tpms(const TPMSPacketMessage& message) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
auto console = reinterpret_cast<Console*>(widget_content.get());
|
auto console = reinterpret_cast<Console*>(widget_content.get());
|
||||||
console->writeln(hex_data);
|
console->writeln(hex_data.substr(0, 240 / 8));
|
||||||
console->writeln(hex_error);
|
|
||||||
|
|
||||||
if( !f_error(&fil_tpms) ) {
|
if( !f_error(&fil_tpms) ) {
|
||||||
rtc::RTC datetime;
|
rtc::RTC datetime;
|
||||||
|
Loading…
Reference in New Issue
Block a user