mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-20 00:51:42 +00:00
According to NI, 0 is unspecified, and all the indices need to be index + 1, so the first index becomes 1.
46 lines
1.6 KiB
C++
46 lines
1.6 KiB
C++
/*----------------------------------------------------------------------------*/
|
|
/* Copyright (c) 2008-2019 FIRST. All Rights Reserved. */
|
|
/* Open Source Software - may be modified and shared by FRC teams. The code */
|
|
/* must be accompanied by the FIRST BSD license file in the root directory of */
|
|
/* the project. */
|
|
/*----------------------------------------------------------------------------*/
|
|
|
|
#include "frc/AnalogTriggerOutput.h"
|
|
|
|
#include <hal/HAL.h>
|
|
|
|
#include "frc/AnalogTrigger.h"
|
|
#include "frc/WPIErrors.h"
|
|
|
|
using namespace frc;
|
|
|
|
bool AnalogTriggerOutput::Get() const {
|
|
int32_t status = 0;
|
|
bool result = HAL_GetAnalogTriggerOutput(
|
|
m_trigger->m_trigger, static_cast<HAL_AnalogTriggerType>(m_outputType),
|
|
&status);
|
|
wpi_setErrorWithContext(status, HAL_GetErrorMessage(status));
|
|
return result;
|
|
}
|
|
|
|
HAL_Handle AnalogTriggerOutput::GetPortHandleForRouting() const {
|
|
return m_trigger->m_trigger;
|
|
}
|
|
|
|
AnalogTriggerType AnalogTriggerOutput::GetAnalogTriggerTypeForRouting() const {
|
|
return m_outputType;
|
|
}
|
|
|
|
bool AnalogTriggerOutput::IsAnalogTrigger() const { return true; }
|
|
|
|
int AnalogTriggerOutput::GetChannel() const { return m_trigger->m_index; }
|
|
|
|
void AnalogTriggerOutput::InitSendable(SendableBuilder&) {}
|
|
|
|
AnalogTriggerOutput::AnalogTriggerOutput(const AnalogTrigger& trigger,
|
|
AnalogTriggerType outputType)
|
|
: m_trigger(&trigger), m_outputType(outputType) {
|
|
HAL_Report(HALUsageReporting::kResourceType_AnalogTriggerOutput,
|
|
trigger.GetIndex() + 1, static_cast<uint8_t>(outputType) + 1);
|
|
}
|