mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-22 01:11:42 +00:00
This makes code easier to read and more consistent between C++ and Java. Also update clang-format settings to always add a line break (even if no braces are used).
77 lines
2.2 KiB
C++
77 lines
2.2 KiB
C++
// Copyright (c) FIRST and other WPILib contributors.
|
|
// Open Source Software; you can modify and/or share it under the terms of
|
|
// the WPILib BSD license file in the root directory of this project.
|
|
|
|
#include "DigitalInternal.h"
|
|
|
|
#include "PortsInternal.h"
|
|
#include "hal/AnalogTrigger.h"
|
|
#include "hal/Errors.h"
|
|
#include "hal/handles/DigitalHandleResource.h"
|
|
#include "hal/handles/HandlesInternal.h"
|
|
|
|
namespace hal {
|
|
|
|
DigitalHandleResource<HAL_DigitalHandle, DigitalPort,
|
|
kNumDigitalChannels + kNumPWMHeaders>*
|
|
digitalChannelHandles;
|
|
|
|
namespace init {
|
|
void InitializeDigitalInternal() {
|
|
static DigitalHandleResource<HAL_DigitalHandle, DigitalPort,
|
|
kNumDigitalChannels + kNumPWMHeaders>
|
|
dcH;
|
|
digitalChannelHandles = &dcH;
|
|
}
|
|
} // namespace init
|
|
|
|
bool remapDigitalSource(HAL_Handle digitalSourceHandle,
|
|
HAL_AnalogTriggerType analogTriggerType,
|
|
uint8_t& channel, uint8_t& module,
|
|
bool& analogTrigger) {
|
|
if (isHandleType(digitalSourceHandle, HAL_HandleEnum::AnalogTrigger)) {
|
|
// If handle passed, index is not negative
|
|
int32_t index = getHandleIndex(digitalSourceHandle);
|
|
channel = (index << 2) + analogTriggerType;
|
|
module = channel >> 4;
|
|
analogTrigger = true;
|
|
return true;
|
|
} else if (isHandleType(digitalSourceHandle, HAL_HandleEnum::DIO)) {
|
|
int32_t index = getHandleIndex(digitalSourceHandle);
|
|
if (index >= kNumDigitalHeaders) {
|
|
channel = remapMXPChannel(index);
|
|
module = 1;
|
|
} else {
|
|
channel = index;
|
|
module = 0;
|
|
}
|
|
analogTrigger = false;
|
|
return true;
|
|
} else {
|
|
return false;
|
|
}
|
|
}
|
|
|
|
int32_t remapMXPChannel(int32_t channel) {
|
|
return channel - 10;
|
|
}
|
|
|
|
int32_t remapMXPPWMChannel(int32_t channel) {
|
|
if (channel < 14) {
|
|
return channel - 10; // first block of 4 pwms (MXP 0-3)
|
|
} else {
|
|
return channel - 6; // block of PWMs after SPI
|
|
}
|
|
}
|
|
|
|
int32_t GetDigitalInputChannel(HAL_DigitalHandle handle, int32_t* status) {
|
|
auto digital = digitalChannelHandles->Get(handle, HAL_HandleEnum::DIO);
|
|
if (digital == nullptr) {
|
|
*status = HAL_HANDLE_ERROR;
|
|
return -1;
|
|
}
|
|
|
|
return digital->channel;
|
|
}
|
|
} // namespace hal
|