Skip to content
Snippets Groups Projects
Commit 48ecefc5 authored by Thomas Jürges's avatar Thomas Jürges
Browse files

Task SW-533: Add documentation for switch_firmware

parent e0204047
No related branches found
No related tags found
No related merge requests found
...@@ -225,7 +225,12 @@ class TBBControlService: ...@@ -225,7 +225,12 @@ class TBBControlService:
def switch_firmware(stations, mode): def switch_firmware(stations, mode):
log_message = "Switching TBB firmware for mode %s on stations %s" % (mode, stations) """
Command TBBs to switch to one of two firmwares: sub-band mode or raw voltage mode.
:param stations: string - Only TBBs of these stations will be commanded to start data recording.
:param mode: string - Parameter to set-up data recording in either \"subband\" or \"rawvoltage\" mode.
"""
log_message = "Switching TBB firmware on stations %s to \"%s\"" % (stations, mode)
logger.info(log_message + "...") logger.info(log_message + "...")
load_tbb_firmware(stations, mode) load_tbb_firmware(stations, mode)
logger.info(log_message + "done.") logger.info(log_message + "done.")
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment