summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFahim2016-02-15 12:17:49 +0530
committerFahim2016-02-15 12:17:49 +0530
commit8f8e5c8e4a3608d46fd2e93f6f378c1a2aca39cf (patch)
tree6414fbe224d6025c626e45fcd9bf015d3c98d3c6
parent378fc7dc1bbc4c8c1c84db4a049d12f3414c6584 (diff)
downloadnghdl-8f8e5c8e4a3608d46fd2e93f6f378c1a2aca39cf.tar.gz
nghdl-8f8e5c8e4a3608d46fd2e93f6f378c1a2aca39cf.tar.bz2
nghdl-8f8e5c8e4a3608d46fd2e93f6f378c1a2aca39cf.zip
Added stop_time parameter for nghdl model
-rw-r--r--src/createKicadLibrary.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/createKicadLibrary.py b/src/createKicadLibrary.py
index ae3e11d..bf520d1 100644
--- a/src/createKicadLibrary.py
+++ b/src/createKicadLibrary.py
@@ -73,6 +73,7 @@ class AutoSchematic(QtGui.QWidget):
ET.SubElement(param ,"fall_delay", default ="1.0e-9").text = "Enter Fall Delay (default=1.0e-9)"
ET.SubElement(param ,"input_load", default ="1.0e-12").text = "Enter Input Load (default=1.0e-12)"
ET.SubElement(param ,"instance_id", default ="1").text = "Enter Instance ID (Between 0-99)"
+ ET.SubElement(param ,"stop_time", default ="90e-9").text = "Enter the stop time to end the simulation (default=90e-9)"
tree = ET.ElementTree(root)
tree.write(str(self.modelname) + '.xml')
print "Leaving the directory ", (xmlDestination)