Move Analog Outputs to Handles (#112)

This commit is contained in:
Thad House
2016-06-27 11:32:40 -07:00
committed by Peter Johnson
parent 95d40ed01f
commit e1d4845ccd
8 changed files with 85 additions and 70 deletions

View File

@@ -11,6 +11,7 @@
#include <memory>
#include "HAL/AnalogOutput.h"
#include "LiveWindow/LiveWindowSendable.h"
#include "SensorBase.h"
@@ -34,7 +35,7 @@ class AnalogOutput : public SensorBase, public LiveWindowSendable {
protected:
uint32_t m_channel;
void* m_port;
HalAnalogOutputHandle m_port;
std::shared_ptr<ITable> m_table;
};