From a3d3c0ca3f5985a3500ed90b6ba4118a4726d8fd Mon Sep 17 00:00:00 2001 From: elral <3263285+elral@users.noreply.github.com> Date: Mon, 2 Dec 2024 13:13:51 +0100 Subject: [PATCH] add leerzeile --- MobiFlight/MobiFlightModule.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/MobiFlight/MobiFlightModule.cs b/MobiFlight/MobiFlightModule.cs index bd082f97..5c3c75ce 100644 --- a/MobiFlight/MobiFlightModule.cs +++ b/MobiFlight/MobiFlightModule.cs @@ -247,12 +247,14 @@ public MobiFlightModule(MobiFlightModuleInfo moduleInfo) Board = moduleInfo.Board; HardwareId = moduleInfo.HardwareId; } + public object Clone() { var clone = new MobiFlightModule(this.ToMobiFlightModuleInfo()); clone.CoreVersion = this.CoreVersion; return clone; } + public void Connect() { if (this.Connected)