Skip to content

Commit

Permalink
allow bmp from args
Browse files Browse the repository at this point in the history
  • Loading branch information
Christian-B committed Aug 14, 2023
1 parent 26121d2 commit ef14d77
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion spinnman/get_cores_in_run_state.py
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,7 @@ def _make_transceiver(host, version, bmp_names):
config = BoardTestConfiguration()
config.set_up_remote_board()
host = config.remotehost
bmp_names = None
auto_detect_bmp = config.auto_detect_bmp
else:
if version is None:
Expand All @@ -95,7 +96,8 @@ def _make_transceiver(host, version, bmp_names):

print(f"talking to SpiNNaker system at {host}")
return create_transceiver_from_hostname(
host, auto_detect_bmp=auto_detect_bmp)
host, bmp_connection_data=bmp_names,
auto_detect_bmp=auto_detect_bmp)


def main(args):
Expand Down

0 comments on commit ef14d77

Please sign in to comment.