mirror of
https://gitlab.com/manzerbredes/esds.git
synced 2025-04-06 01:56:27 +02:00
Cleaning
This commit is contained in:
parent
cfa677a0c6
commit
de95c9710e
1 changed files with 1 additions and 4 deletions
|
@ -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")
|
||||
|
|
Loading…
Add table
Reference in a new issue