This commit is contained in:
Loic Guegan 2022-09-09 13:47:52 +02:00
parent cfa677a0c6
commit de95c9710e

View file

@ -110,7 +110,7 @@ class PowerStatesComms(NodePlugin):
def __init__(self,api):
super().__init__("PowerStatesComms",api)
self.power=dict() # Store the power states
self.power=dict() # Store each interface informations
def on_communication_end(self,time,com_event):
content=com_event[2]
@ -119,8 +119,6 @@ class PowerStatesComms(NodePlugin):
interface=content[2]
mode= "tx" if content[0] == self.api.node_id else "rx"
self.power[interface]["consumption_dynamic"]+=self.power[interface][mode]*duration
if self.api.node_id==0:
print("called with +{}J".format(self.power[interface][mode]*duration))
def set_power(self,interface,idle,tx,rx):
self.power[interface]=dict()
@ -137,7 +135,6 @@ class PowerStatesComms(NodePlugin):
def on_turn_off(self):
self.sync_idle()
self.log("Consumes "+str(self.get_energy()))
def sync_idle(self):
clock=self.api.read("clock")