54e6124925
version: sunnypilot v2026.001.000 (dev) date: 2026-05-07T23:07:19 master commit: c28eb958740187620f2282023b8f1997cf90f583
36 lines
845 B
C++
36 lines
845 B
C++
#pragma once
|
|
|
|
#include <string>
|
|
|
|
#include "common/params.h"
|
|
#include "selfdrive/pandad/panda.h"
|
|
|
|
void pandad_main_thread(std::string serial);
|
|
|
|
// deprecated devices
|
|
static const std::vector<cereal::PandaState::PandaType> SUPPORTED_PANDA_TYPES = {
|
|
cereal::PandaState::PandaType::RED_PANDA,
|
|
cereal::PandaState::PandaType::TRES,
|
|
cereal::PandaState::PandaType::CUATRO,
|
|
};
|
|
|
|
|
|
class PandaSafety {
|
|
public:
|
|
PandaSafety(Panda *panda) : panda_(panda) {}
|
|
void configureSafetyMode(bool is_onroad);
|
|
bool getOffroadMode();
|
|
|
|
private:
|
|
void updateMultiplexingMode();
|
|
std::vector<std::string> fetchCarParams();
|
|
void setSafetyMode(const std::vector<std::string> ¶ms_string);
|
|
|
|
bool initialized_ = false;
|
|
bool log_once_ = false;
|
|
bool safety_configured_ = false;
|
|
bool prev_obd_multiplexing_ = false;
|
|
Panda *panda_;
|
|
Params params_;
|
|
};
|