Cabana: remove bus time from can message (#26475)

remove bustime
This commit is contained in:
Dean Lee
2022-11-14 04:56:05 +08:00
committed by GitHub
parent 7b0f7312e5
commit f924e797b7
2 changed files with 0 additions and 2 deletions
-1
View File
@@ -95,7 +95,6 @@ bool CANMessages::eventFilter(const Event *event) {
}
CanData &data = list.emplace_front();
data.ts = current_sec;
data.bus_time = c.getBusTime();
data.dat.append((char *)c.getDat().begin(), c.getDat().size());
data.count = ++counters[id];
-1
View File
@@ -16,7 +16,6 @@ struct CanData {
double ts = 0.;
uint32_t count = 0;
uint32_t freq = 0;
uint16_t bus_time = 0;
QByteArray dat;
};