LIN: Add wakeup request

This commit is contained in:
Samuel Bejko
2026-09-14 17:13:23 -04:00
committed by Kyle Schwarz
parent 3a6501d116
commit d95a17b360
11 changed files with 135 additions and 10 deletions
@@ -115,6 +115,18 @@ public:
}
}
const LIN_SETTINGS* getLINSettingsFor(Network net) const override {
auto cfg = getStructurePointer<radcomet3_settings_t>();
if(cfg == nullptr)
return nullptr;
switch(net.getNetID()) {
case Network::NetID::LIN_01:
return &(cfg->lin1);
default:
return nullptr;
}
}
const ETHERNET_SETTINGS2* getEthernetSettingsFor(Network net) const override {
auto cfg = getStructurePointer<radcomet3_settings_t>();
if(cfg == nullptr)