Searched refs:InstrumentChannel (Results 1 – 4 of 4) sorted by relevance
/external/devlib/devlib/platform/ |
D | arm.py | 23 from devlib.instrument import Instrument, InstrumentChannel, MeasurementsCsv, Measurement, CONTINU… 213 InstrumentChannel('sys_curr', 'sys', 'current'), 214 InstrumentChannel('a57_curr', 'a57', 'current'), 215 InstrumentChannel('a53_curr', 'a53', 'current'), 216 InstrumentChannel('gpu_curr', 'gpu', 'current'), 217 InstrumentChannel('sys_volt', 'sys', 'voltage'), 218 InstrumentChannel('a57_volt', 'a57', 'voltage'), 219 InstrumentChannel('a53_volt', 'a53', 'voltage'), 220 InstrumentChannel('gpu_volt', 'gpu', 'voltage'), 221 InstrumentChannel('sys_pow', 'sys', 'power'), [all …]
|
/external/devlib/doc/ |
D | instrumentation.rst | 81 Returns a list of :class:`InstrumentChannel` instances that describe what 139 ``<site>_<kind>`` (see :class:`InstrumentChannel`). The order of the coluns 159 .. class:: InstrumentChannel(name, site, measurement_type, **attrs) 161 An :class:`InstrumentChannel` describes a single type of measurement that may 181 .. attribute:: InstrumentChannel.site 186 .. attribute:: InstrumentChannel.kind 191 .. attribute:: InstrumentChannel.units 196 .. attribute:: InstrumentChannel.label
|
/external/devlib/devlib/instrument/ |
D | __init__.py | 174 chan = InstrumentChannel(name, site, measure) 178 class InstrumentChannel(object): class 238 chan = InstrumentChannel(name, site, measure, **attrs)
|
/external/devlib/devlib/ |
D | __init__.py | 12 from devlib.instrument import Instrument, InstrumentChannel, Measurement, MeasurementsCsv
|