PS_Fgen_FW  4da88f4073c1cc65ea45c3a652a2751e495e50db
Firmware for an Power Supply and Function Generator build from an ATX power supply
Loading...
Searching...
No Matches
DMM_Channel.h
Go to the documentation of this file.
1
7
8#ifndef DMM_CHANNEL_H_
9#define DMM_CHANNEL_H_
10
11#include "../Configuration.h"
12#include "Channel.h"
13
14#ifdef MEASURE_SUBSYSTEM_ENABLED
15
20class DMM_Channel : public Channel
21{
22 public:
23 volatile float MeasuredVoltage;
24 volatile bool IsNegative;
25
30};
31
32#endif /* DMM_CHANNEL_H_ */
33
34#endif /* MEASURE_SUBSYSTEM_ENABLED */
Containing the base class for all channels.
Containing different defines for device configuration.
Channel(ChannelTypes_t channelType)
Constructor of the Channel class.
Definition Channel.h:48
DMM_Channel()
Constructor of the DMM_Channel.
Definition DMM_Channel.cpp:12
volatile float MeasuredVoltage
Voltage measured for this DMM channel.
Definition DMM_Channel.h:23
volatile bool IsNegative
Is the measured voltage negative?
Definition DMM_Channel.h:24