- Deleting calibration standard sets destroyed Open capacitance values

pull/36/head
Rune B. Broberg 2019-10-07 17:55:22 +02:00
rodzic 8fd59828ee
commit 0970487991
2 zmienionych plików z 31 dodań i 4 usunięć

Wyświetl plik

@ -389,10 +389,10 @@ class CalibrationWindow(QtWidgets.QWidget):
self.app.settings.setValue("ShortL3", shortL3[i])
self.app.settings.setValue("ShortDelay", shortDelay[i])
self.app.settings.setValue("OpenL0", openC0[i])
self.app.settings.setValue("OpenL1", openC1[i])
self.app.settings.setValue("OpenL2", openC2[i])
self.app.settings.setValue("OpenL3", openC3[i])
self.app.settings.setValue("OpenC0", openC0[i])
self.app.settings.setValue("OpenC1", openC1[i])
self.app.settings.setValue("OpenC2", openC2[i])
self.app.settings.setValue("OpenC3", openC3[i])
self.app.settings.setValue("OpenDelay", openDelay[i])
self.app.settings.setValue("LoadR", loadR[i])

Wyświetl plik

@ -0,0 +1,27 @@
# NanoVNASaver - a python program to view and export Touchstone data from a NanoVNA
# Copyright (C) 2019. Rune B. Broberg
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <https://www.gnu.org/licenses/>.
class VNA:
pass
class NanoVNA(VNA):
pass
class NanoVNA_F(NanoVNA):
pass