Ask Your Question

Revision history [back]

click to hide/show revision 1
initial version

The next free bus number can be found in this easy way:

 def nextfreebus(ibus):
    """ Returns the first unused bus number, starting from ibus
    """
    while psspy.busexs(ibus)==0: ibus += 1
    return ibus