Retain tethering status between reboots

This commit is contained in:
FrogAi
2024-02-27 16:34:47 -07:00
parent 1585cbcd25
commit 6661c4dd89
5 changed files with 18 additions and 0 deletions

View File

@@ -352,6 +352,7 @@ std::unordered_map<std::string, uint32_t> keys = {
{"StandardJerk", PERSISTENT},
{"StockTune", PERSISTENT},
{"StoppingDistance", PERSISTENT},
{"TetheringEnabled", PERSISTENT},
{"UnlimitedLength", PERSISTENT},
{"UpdateSchedule", PERSISTENT},
{"UpdateTime", PERSISTENT},

View File

@@ -130,6 +130,10 @@ AdvancedNetworking::AdvancedNetworking(QWidget* parent, WifiManager* wifi): QWid
tetheringToggle = new ToggleControl(tr("Enable Tethering"), "", "", wifi->isTetheringEnabled());
list->addItem(tetheringToggle);
QObject::connect(tetheringToggle, &ToggleControl::toggleFlipped, this, &AdvancedNetworking::toggleTethering);
if (params.getBool("TetheringEnabled")) {
tetheringToggle->refresh();
uiState()->scene.tethering_enabled = true;
}
// Change tethering password
ButtonControl *editPasswordButton = new ButtonControl(tr("Tethering Password"), tr("EDIT"));
@@ -224,6 +228,8 @@ void AdvancedNetworking::refresh() {
void AdvancedNetworking::toggleTethering(bool enabled) {
wifi->setTetheringEnabled(enabled);
tetheringToggle->setEnabled(false);
params.putBool("TetheringEnabled", enabled);
uiState()->scene.tethering_enabled = enabled;
}
// WifiUI functions

View File

@@ -127,6 +127,10 @@ public:
QObject::connect(&toggle, &Toggle::stateChanged, this, &ToggleControl::toggleFlipped);
}
void setVisualOn() {
toggle.togglePosition();
}
void setEnabled(bool enabled) {
toggle.setEnabled(enabled);
toggle.update();

View File

@@ -370,6 +370,7 @@ void UIState::updateStatus() {
started_prev = scene.started;
scene.world_objects_visible = false;
emit offroadTransition(!scene.started);
wifi->setTetheringEnabled(scene.started && scene.tethering_enabled);
}
}
@@ -393,6 +394,8 @@ UIState::UIState(QObject *parent) : QObject(parent) {
QObject::connect(timer, &QTimer::timeout, this, &UIState::update);
timer->start(1000 / UI_FREQ);
wifi = new WifiManager(this);
ui_update_frogpilot_params(this);
}

View File

@@ -15,6 +15,7 @@
#include "common/mat.h"
#include "common/params.h"
#include "common/timing.h"
#include "selfdrive/ui/qt/network/wifi_manager.h"
#include "system/hardware/hw.h"
const int UI_BORDER_SIZE = 30;
@@ -206,6 +207,7 @@ typedef struct UIScene {
bool road_name_ui;
bool show_driver_camera;
bool standstill;
bool tethering_enabled;
bool turn_signal_left;
bool turn_signal_right;
bool unlimited_road_ui_length;
@@ -264,6 +266,8 @@ public:
QTransform car_space_transform;
WifiManager *wifi = nullptr;
signals:
void uiUpdate(const UIState &s);
void offroadTransition(bool offroad);