Skip to content
Snippets Groups Projects
Commit 16dcd602 authored by Pieter Donker's avatar Pieter Donker
Browse files

Task #9612: checkhardware, index bug in hba.py

parent 0006f448
No related branches found
No related tags found
No related merge requests found
......@@ -546,10 +546,12 @@ class HBA(object):
for tile in self.hba.tile:
if tile.x.rcu_off or tile.y.rcu_off:
continue
if signal_info_x[str(tile.x.rcu)]['status'] in ('high',):
logger.warning("Tile %d rcu %d not switched off" % (tile.nr, tile.x.rcu))
if signal_info_y[str(tile.y.rcu)]['status'] in ('high',):
logger.warning("Tile %d rcu %d not switched off" % (tile.nr, tile.y.rcu))
if str(tile.x.rcu) in signal_info_x:
if signal_info_x[str(tile.x.rcu)]['status'] in ('high',):
logger.warning("Tile %d rcu %d not switched off" % (tile.nr, tile.x.rcu))
if str(tile.y.rcu) in signal_info_y:
if signal_info_y[str(tile.y.rcu)]['status'] in ('high',):
logger.warning("Tile %d rcu %d not switched off" % (tile.nr, tile.y.rcu))
if not check_active_rspdriver():
logger.warning("RSPDriver down while testing, skip result")
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment