From 4581ce6e10a45b4a3ea4900d3bc7120ee3ec04a0 Mon Sep 17 00:00:00 2001 From: "Christian Y. Brenninkmeijer" Date: Mon, 31 Jul 2023 13:07:10 +0100 Subject: [PATCH] cabinet, frame never used --- spinnman/extended/extended_transceiver.py | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/spinnman/extended/extended_transceiver.py b/spinnman/extended/extended_transceiver.py index e591172a1..48b44aee6 100644 --- a/spinnman/extended/extended_transceiver.py +++ b/spinnman/extended/extended_transceiver.py @@ -427,7 +427,7 @@ def execute_application(self, executable_targets, app_id): # Send a signal telling the application to start self.send_signal(app_id, Signal.START) - def set_led(self, led, action, board, cabinet, frame): + def set_led(self, led, action, board): """ Set the LED state of a board in the machine. @@ -445,15 +445,13 @@ def set_led(self, led, action, board, cabinet, frame): also be an iterable of multiple boards (in the same frame). The command will actually be sent to the first board in the iterable. :type board: int or iterable(int) - :param int cabinet: the cabinet this is targeting - :param int frame: the frame this is targeting """ warn_once(logger, "The set_led method is deprecated and " "untested due to no known use.") process = SendSingleCommandProcess(self._bmp_connection_selector) process.execute(BMPSetLed(led, action, board)) - def read_adc_data(self, board, cabinet, frame): + def read_adc_data(self, board): """ Read the BMP ADC data. @@ -462,8 +460,6 @@ def read_adc_data(self, board, cabinet, frame): known use. Same functionality provided by ybug and bmpc. Retained in case needed for hardware debugging. - :param int cabinet: cabinet: the cabinet this is targeting - :param int frame: the frame this is targeting :param int board: which board to request the ADC data from :return: the FPGA's ADC data object :rtype: ADCInfo