Improved time pretty-print function

This commit is contained in:
Mark Qvist 2022-11-23 17:15:46 +01:00
parent 9e4ae3c6fe
commit de53a105a4

View File

@ -217,7 +217,10 @@ def prettytime(time, verbose=False):
tstr += c
return tstr
if tstr == "":
return "0s"
else:
return tstr
def phyparams():
print("Required Physical Layer MTU : "+str(Reticulum.MTU)+" bytes")