mirror of
https://github.com/firestar5683/StarPilot.git
synced 2026-06-29 18:42:07 +08:00
boardd: const reference pandaStates to avoid copy (#23030)
old-commit-hash: ab9c7a11a9c6ef6e891429b26e77d59a70b0f418
This commit is contained in:
@@ -307,7 +307,7 @@ bool send_panda_states(PubMaster *pm, const std::vector<Panda *> &pandas, bool s
|
||||
|
||||
for (uint32_t i=0; i<pandas.size(); i++) {
|
||||
auto panda = pandas[i];
|
||||
auto pandaState = pandaStates[i];
|
||||
const auto &pandaState = pandaStates[i];
|
||||
|
||||
// Make sure CAN buses are live: safety_setter_thread does not work if Panda CAN are silent and there is only one other CAN node
|
||||
if (pandaState.safety_model == (uint8_t)(cereal::CarParams::SafetyModel::SILENT)) {
|
||||
|
||||
Reference in New Issue
Block a user