diff options
-rw-r--r-- | src/pspicetoKicad/ImportPspice.py | 5 | ||||
-rw-r--r-- | src/pspicetoKicad/converter.exe | bin | 0 -> 587797 bytes | |||
-rw-r--r-- | src/pspicetoKicad/libConverter.exe | bin | 0 -> 533533 bytes |
3 files changed, 3 insertions, 2 deletions
diff --git a/src/pspicetoKicad/ImportPspice.py b/src/pspicetoKicad/ImportPspice.py index fc07083d..807726ee 100644 --- a/src/pspicetoKicad/ImportPspice.py +++ b/src/pspicetoKicad/ImportPspice.py @@ -12,7 +12,7 @@ class ImportPspiceLibrary(QtGui.QWidget): def __init__(self): super(ImportPspiceLibrary, self).__init__() self.obj_Appconfig = Appconfig() - + def imortLib(self): self.home = os.path.expanduser("~") self.worspace_loc = self.obj_Appconfig.default_workspace['workspace'] @@ -34,7 +34,7 @@ class ImportPspiceLibrary(QtGui.QWidget): else: self.cmd = "../pspicetoKicad/libConverter32 "+self.arg elif platform.system() == 'Windows': - print "Needs to include for Windows" + self.cmd = os.path.join(os.path.split(os.path.realpath(__file__))[0],'libConverter.exe') self.status = os.system(str(self.cmd)) @@ -144,6 +144,7 @@ class ConvertPspiceKicad(QtGui.QWidget): self.cmd = "../pspicetoKicad/schConverter32 "+self.arg1+" "+self.arg2 elif platform.system() == 'Windows': print "Needs to include for Windows" + self.cmd = os.path.join(os.path.split(os.path.realpath(__file__))[0],'converter.exe')+" "+self.arg1+" "+self.arg2 #Running command self.status = os.system(str(self.cmd)) diff --git a/src/pspicetoKicad/converter.exe b/src/pspicetoKicad/converter.exe Binary files differnew file mode 100644 index 00000000..e7718811 --- /dev/null +++ b/src/pspicetoKicad/converter.exe diff --git a/src/pspicetoKicad/libConverter.exe b/src/pspicetoKicad/libConverter.exe Binary files differnew file mode 100644 index 00000000..062cdc22 --- /dev/null +++ b/src/pspicetoKicad/libConverter.exe |