diff options
-rw-r--r-- | src/createKicadLibrary.py | 1 |
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) |