From e99cc31c89d7598340113575b5429918eeaf6e83 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Agust=C3=ADn=20Gimenez?= Date: Sat, 4 May 2024 20:59:45 +0200 Subject: [PATCH] Disabled power status --- Software/LogicAnalyzer/SharedDriver/LogicAnalyzerDriver.cs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Software/LogicAnalyzer/SharedDriver/LogicAnalyzerDriver.cs b/Software/LogicAnalyzer/SharedDriver/LogicAnalyzerDriver.cs index 6a36153..5575c0e 100644 --- a/Software/LogicAnalyzer/SharedDriver/LogicAnalyzerDriver.cs +++ b/Software/LogicAnalyzer/SharedDriver/LogicAnalyzerDriver.cs @@ -456,7 +456,9 @@ namespace SharedDriver public string? GetVoltageStatus() { - if(!isNetwork) + return "UNSUPPORTED"; + + if (!isNetwork) return "UNSUPPORTED"; OutputPacket pack = new OutputPacket();