| /*----------------------------------------------------------------------------*/ |
| /* Copyright (c) 2008-2018 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/DigitalOutput.h" |
| |
| #include <limits> |
| #include <utility> |
| |
| #include <hal/DIO.h> |
| #include <hal/HAL.h> |
| #include <hal/Ports.h> |
| |
| #include "frc/SensorUtil.h" |
| #include "frc/WPIErrors.h" |
| #include "frc/smartdashboard/SendableBuilder.h" |
| |
| using namespace frc; |
| |
| DigitalOutput::DigitalOutput(int channel) { |
| m_pwmGenerator = HAL_kInvalidHandle; |
| if (!SensorUtil::CheckDigitalChannel(channel)) { |
| wpi_setWPIErrorWithContext(ChannelIndexOutOfRange, |
| "Digital Channel " + wpi::Twine(channel)); |
| m_channel = std::numeric_limits<int>::max(); |
| return; |
| } |
| m_channel = channel; |
| |
| int32_t status = 0; |
| m_handle = HAL_InitializeDIOPort(HAL_GetPort(channel), false, &status); |
| if (status != 0) { |
| wpi_setErrorWithContextRange(status, 0, HAL_GetNumDigitalChannels(), |
| channel, HAL_GetErrorMessage(status)); |
| m_channel = std::numeric_limits<int>::max(); |
| m_handle = HAL_kInvalidHandle; |
| return; |
| } |
| |
| HAL_Report(HALUsageReporting::kResourceType_DigitalOutput, channel); |
| SetName("DigitalOutput", channel); |
| } |
| |
| DigitalOutput::~DigitalOutput() { |
| if (StatusIsFatal()) return; |
| // Disable the PWM in case it was running. |
| DisablePWM(); |
| |
| HAL_FreeDIOPort(m_handle); |
| } |
| |
| DigitalOutput::DigitalOutput(DigitalOutput&& rhs) |
| : ErrorBase(std::move(rhs)), |
| SendableBase(std::move(rhs)), |
| m_channel(std::move(rhs.m_channel)), |
| m_pwmGenerator(std::move(rhs.m_pwmGenerator)) { |
| std::swap(m_handle, rhs.m_handle); |
| } |
| |
| DigitalOutput& DigitalOutput::operator=(DigitalOutput&& rhs) { |
| ErrorBase::operator=(std::move(rhs)); |
| SendableBase::operator=(std::move(rhs)); |
| |
| m_channel = std::move(rhs.m_channel); |
| std::swap(m_handle, rhs.m_handle); |
| m_pwmGenerator = std::move(rhs.m_pwmGenerator); |
| |
| return *this; |
| } |
| |
| void DigitalOutput::Set(bool value) { |
| if (StatusIsFatal()) return; |
| |
| int32_t status = 0; |
| HAL_SetDIO(m_handle, value, &status); |
| wpi_setErrorWithContext(status, HAL_GetErrorMessage(status)); |
| } |
| |
| bool DigitalOutput::Get() const { |
| if (StatusIsFatal()) return false; |
| |
| int32_t status = 0; |
| bool val = HAL_GetDIO(m_handle, &status); |
| wpi_setErrorWithContext(status, HAL_GetErrorMessage(status)); |
| return val; |
| } |
| |
| int DigitalOutput::GetChannel() const { return m_channel; } |
| |
| void DigitalOutput::Pulse(double length) { |
| if (StatusIsFatal()) return; |
| |
| int32_t status = 0; |
| HAL_Pulse(m_handle, length, &status); |
| wpi_setErrorWithContext(status, HAL_GetErrorMessage(status)); |
| } |
| |
| bool DigitalOutput::IsPulsing() const { |
| if (StatusIsFatal()) return false; |
| |
| int32_t status = 0; |
| bool value = HAL_IsPulsing(m_handle, &status); |
| wpi_setErrorWithContext(status, HAL_GetErrorMessage(status)); |
| return value; |
| } |
| |
| void DigitalOutput::SetPWMRate(double rate) { |
| if (StatusIsFatal()) return; |
| |
| int32_t status = 0; |
| HAL_SetDigitalPWMRate(rate, &status); |
| wpi_setErrorWithContext(status, HAL_GetErrorMessage(status)); |
| } |
| |
| void DigitalOutput::EnablePWM(double initialDutyCycle) { |
| if (m_pwmGenerator != HAL_kInvalidHandle) return; |
| |
| int32_t status = 0; |
| |
| if (StatusIsFatal()) return; |
| m_pwmGenerator = HAL_AllocateDigitalPWM(&status); |
| wpi_setErrorWithContext(status, HAL_GetErrorMessage(status)); |
| |
| if (StatusIsFatal()) return; |
| HAL_SetDigitalPWMDutyCycle(m_pwmGenerator, initialDutyCycle, &status); |
| wpi_setErrorWithContext(status, HAL_GetErrorMessage(status)); |
| |
| if (StatusIsFatal()) return; |
| HAL_SetDigitalPWMOutputChannel(m_pwmGenerator, m_channel, &status); |
| wpi_setErrorWithContext(status, HAL_GetErrorMessage(status)); |
| } |
| |
| void DigitalOutput::DisablePWM() { |
| if (StatusIsFatal()) return; |
| if (m_pwmGenerator == HAL_kInvalidHandle) return; |
| |
| int32_t status = 0; |
| |
| // Disable the output by routing to a dead bit. |
| HAL_SetDigitalPWMOutputChannel(m_pwmGenerator, SensorUtil::kDigitalChannels, |
| &status); |
| wpi_setErrorWithContext(status, HAL_GetErrorMessage(status)); |
| |
| HAL_FreeDigitalPWM(m_pwmGenerator, &status); |
| wpi_setErrorWithContext(status, HAL_GetErrorMessage(status)); |
| |
| m_pwmGenerator = HAL_kInvalidHandle; |
| } |
| |
| void DigitalOutput::UpdateDutyCycle(double dutyCycle) { |
| if (StatusIsFatal()) return; |
| |
| int32_t status = 0; |
| HAL_SetDigitalPWMDutyCycle(m_pwmGenerator, dutyCycle, &status); |
| wpi_setErrorWithContext(status, HAL_GetErrorMessage(status)); |
| } |
| |
| void DigitalOutput::InitSendable(SendableBuilder& builder) { |
| builder.SetSmartDashboardType("Digital Output"); |
| builder.AddBooleanProperty("Value", [=]() { return Get(); }, |
| [=](bool value) { Set(value); }); |
| } |