-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCANWrapper.cpp
62 lines (50 loc) · 979 Bytes
/
CANWrapper.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
#include "CANWrapper.h"
#include "CANJaguar.h"
CANWrapper::CANWrapper(UINT8 deviceNumber, CANJaguar::ControlMode controlMode)
{
m_can = new CANJaguar(deviceNumber, controlMode);
}
CANWrapper::~CANWrapper()
{
delete m_can;
}
float CANWrapper::Get()
{
return m_can->Get();
}
void CANWrapper::Set(float value, UINT8 syncGroup)
{
m_can->Set(value, syncGroup);
}
void CANWrapper::Disable()
{
m_can->Disable();
}
bool CANWrapper::IsAlive()
{
return m_can->IsAlive();
}
void CANWrapper::StopMotor()
{
m_can->StopMotor();
}
bool CANWrapper::IsSafetyEnabled()
{
return m_can->IsSafetyEnabled();
}
void CANWrapper::SetSafetyEnabled(bool enabled)
{
m_can->SetSafetyEnabled(enabled);
}
void CANWrapper::PIDWrite(float output)
{
m_can->PIDWrite(output);
}
void CANWrapper::SetExpiration(float timeout)
{
m_can->SetExpiration(timeout);
}
float CANWrapper::GetExpiration()
{
return m_can->GetExpiration();
}