This class holds information of current consumption data (return value of the debugger.CurrentConsumption.Get function). [RL78/G10,G13][Simulator]
[Type]
class CurrentConsumptionInfo:
Max = 0
Average = 0
Count = 0
ModuleNames = []
|
[Variable]
|
|
Max
|
This holds the maximum current (uA).
|
Average
|
This holds the average current (uA).
|
Count
|
This holds the count of current consumption data.
|
ModuleNames
|
This holds a list of the peripheral modules for which measurement was performed.
|
[Detailed description]
[Example of use]
>>>ci = debugger.CurrentConsumption.Get()
Max = 120.20, Average = 30.20
>>>print ci.Max
120.20
>>>print ci.Count
3020
>>>
|