Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
ykyohei committed Dec 21, 2024
1 parent c40d3f5 commit b0bc179
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions socs/agents/hwp_pmx/agent.py
Original file line number Diff line number Diff line change
Expand Up @@ -103,15 +103,15 @@ class SetILim(BaseAction):
curr: float

def process(self, module):
msg = module.set_current_limit(self.curr)
msg, val = module.set_current_limit(self.curr)
self.log.info(msg + "...")

@dataclass
class SetVLim(BaseAction):
volt: float

def process(self, module):
msg = module.set_voltage_limit(self.volt)
msg, val = module.set_voltage_limit(self.volt)
self.log.info(msg + "...")


Expand Down

0 comments on commit b0bc179

Please sign in to comment.