mirror of
https://github.com/infiniteCable2/openpilot.git
synced 2026-08-05 00:05:57 +08:00
96d1b876bb
* pandad: remove multi-panda support * lil more * mac * skip mac
27 lines
561 B
C++
27 lines
561 B
C++
#pragma once
|
|
|
|
#include <string>
|
|
|
|
#include "common/params.h"
|
|
#include "selfdrive/pandad/panda.h"
|
|
|
|
void pandad_main_thread(std::string serial);
|
|
|
|
class PandaSafety {
|
|
public:
|
|
PandaSafety(Panda *panda) : panda_(panda) {}
|
|
void configureSafetyMode(bool is_onroad);
|
|
|
|
private:
|
|
void updateMultiplexingMode();
|
|
std::string fetchCarParams();
|
|
void setSafetyMode(const std::string ¶ms_string);
|
|
|
|
bool initialized_ = false;
|
|
bool log_once_ = false;
|
|
bool safety_configured_ = false;
|
|
bool prev_obd_multiplexing_ = false;
|
|
Panda *panda_;
|
|
Params params_;
|
|
};
|