added number of max stations per radio to error message

This commit is contained in:
Chuck SmileyRekiere
2020-07-28 10:37:06 -06:00
parent ecc89e46ed
commit a00d5a782f

View File

@@ -292,7 +292,7 @@ def main():
for radio in radios:
number_of_stations = int(number_of_stations_per_radio_list[index])
if number_of_stations > MAX_NUMBER_OF_STATIONS:
print("number of stations per radio exceeded")
print("number of stations per radio exceeded max of : {}".format(MAX_NUMBER_OF_STATIONS))
quit(1)
station_list = LFUtils.portNameSeries(prefix_="sta", start_id_= 1 + index*1000, end_id_= number_of_stations + index*1000, padding_number_=10000)
station_lists.append(station_list)