| 56 | AmsWebServer::AmsWebServer(uint8_t* buf, RemoteDebug* Debug, HwTools* hw, ResetDataContainer* rdc) { |
| 57 | #else |
| 58 | AmsWebServer::AmsWebServer(uint8_t* buf, Stream* Debug, HwTools* hw, ResetDataContainer* rdc) { |
| 59 | #endif |
| 60 | this->debugger = Debug; |
| 61 | this->hw = hw; |
| 62 | this->buf = (char*) buf; |
| 63 | this->rdc = rdc; |
| 64 | } |
| 65 | |
| 66 | void AmsWebServer::setup(AmsConfiguration* config, GpioConfig* gpioConfig, AmsData* meterState, AmsDataStorage* ds, EnergyAccounting* ea, RealtimePlot* rtp, AmsFirmwareUpdater* updater) { |
| 67 | this->config = config; |
nothing calls this directly
no outgoing calls
no test coverage detected