Files
allwpilib/hal/src/main/native/sim/AddressableLED.cpp

121 lines
4.0 KiB
C++
Raw Normal View History

// 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.
2019-11-17 16:39:38 -08:00
2025-11-07 19:56:21 -05:00
#include "wpi/hal/AddressableLED.h"
2019-11-17 16:39:38 -08:00
#include <fmt/format.h>
#include "DigitalInternal.hpp"
#include "HALInitializer.hpp"
#include "HALInternal.hpp"
#include "PortsInternal.hpp"
#include "mockdata/AddressableLEDDataInternal.hpp"
2025-11-07 19:56:21 -05:00
#include "wpi/hal/Errors.h"
#include "wpi/hal/handles/HandlesInternal.hpp"
2019-11-17 15:05:56 -08:00
2025-11-07 20:00:05 -05:00
using namespace wpi::hal;
2019-11-17 15:05:56 -08:00
2025-11-07 20:00:05 -05:00
namespace wpi::hal::init {
void InitializeAddressableLED() {}
2025-11-07 20:00:05 -05:00
} // namespace wpi::hal::init
2019-11-17 15:05:56 -08:00
2019-11-17 16:39:38 -08:00
extern "C" {
HAL_AddressableLEDHandle HAL_InitializeAddressableLED(
int32_t channel, const char* allocationLocation, int32_t* status) {
2025-11-07 20:00:05 -05:00
wpi::hal::init::CheckInit();
2019-11-17 15:05:56 -08:00
if (channel < 0 || channel >= kNumAddressableLEDs) {
*status = RESOURCE_OUT_OF_RANGE;
2025-11-07 20:01:58 -05:00
wpi::hal::SetLastErrorIndexOutOfRange(status,
"Invalid Index for AddressableLED", 0,
kNumAddressableLEDs, channel);
return HAL_INVALID_HANDLE;
}
HAL_DigitalHandle handle;
auto port = digitalChannelHandles->Allocate(
channel, HAL_HandleEnum::ADDRESSABLE_LED, &handle, status);
2019-11-17 15:05:56 -08:00
if (*status != 0) {
if (port) {
2025-11-07 20:00:05 -05:00
wpi::hal::SetLastErrorPreviouslyAllocated(status, "PWM or DIO", channel,
2025-11-07 20:01:58 -05:00
port->previousAllocation);
} else {
2025-11-07 20:00:05 -05:00
wpi::hal::SetLastErrorIndexOutOfRange(status,
2025-11-07 20:01:58 -05:00
"Invalid Index for AddressableLED",
0, kNumAddressableLEDs, channel);
}
return HAL_INVALID_HANDLE; // failed to allocate. Pass error back.
2019-11-17 15:05:56 -08:00
}
port->channel = static_cast<uint8_t>(channel);
SimAddressableLEDData[channel].start = 0;
SimAddressableLEDData[channel].length = 0;
SimAddressableLEDData[channel].initialized = true;
port->previousAllocation = allocationLocation ? allocationLocation : "";
2019-11-17 15:05:56 -08:00
return handle;
2019-11-17 16:39:38 -08:00
}
2019-11-17 15:05:56 -08:00
void HAL_FreeAddressableLED(HAL_AddressableLEDHandle handle) {
auto port =
digitalChannelHandles->Get(handle, HAL_HandleEnum::ADDRESSABLE_LED);
// no status, so no need to check for a proper free.
digitalChannelHandles->Free(handle, HAL_HandleEnum::ADDRESSABLE_LED);
if (port == nullptr) {
2019-11-17 15:05:56 -08:00
return;
}
SimAddressableLEDData[port->channel].initialized = false;
2019-11-17 15:05:56 -08:00
}
2019-11-17 16:39:38 -08:00
void HAL_SetAddressableLEDStart(HAL_AddressableLEDHandle handle, int32_t start,
int32_t* status) {
auto port =
digitalChannelHandles->Get(handle, HAL_HandleEnum::ADDRESSABLE_LED);
if (!port) {
2019-11-17 15:05:56 -08:00
*status = HAL_HANDLE_ERROR;
return;
}
if (start > HAL_ADDRESSABLE_LED_MAX_LEN || start < 0) {
2019-11-17 15:05:56 -08:00
*status = PARAMETER_OUT_OF_RANGE;
2025-11-07 20:00:05 -05:00
wpi::hal::SetLastError(
status,
fmt::format(
"LED start must be less than or equal to {}. {} was requested",
HAL_ADDRESSABLE_LED_MAX_LEN, start));
2019-11-17 15:05:56 -08:00
return;
}
SimAddressableLEDData[port->channel].start = start;
2019-11-17 15:05:56 -08:00
}
2019-11-17 16:39:38 -08:00
void HAL_SetAddressableLEDLength(HAL_AddressableLEDHandle handle,
2019-11-17 15:05:56 -08:00
int32_t length, int32_t* status) {
auto port =
digitalChannelHandles->Get(handle, HAL_HandleEnum::ADDRESSABLE_LED);
if (!port) {
2019-11-17 15:05:56 -08:00
*status = HAL_HANDLE_ERROR;
return;
}
if (length > HAL_ADDRESSABLE_LED_MAX_LEN || length < 0) {
2019-11-17 15:05:56 -08:00
*status = PARAMETER_OUT_OF_RANGE;
2025-11-07 20:00:05 -05:00
wpi::hal::SetLastError(
status,
fmt::format(
"LED length must be less than or equal to {}. {} was requested",
HAL_ADDRESSABLE_LED_MAX_LEN, length));
2019-11-17 15:05:56 -08:00
return;
}
SimAddressableLEDData[port->channel].length = length;
2019-11-17 15:05:56 -08:00
}
2019-11-17 16:39:38 -08:00
void HAL_SetAddressableLEDData(int32_t start, int32_t length,
HAL_AddressableLEDColorOrder colorOrder,
const struct HAL_AddressableLEDData* data,
int32_t* status) {
SimAddressableLEDDataBuffer->SetData(start, length, data);
2019-11-17 15:05:56 -08:00
}
2019-11-17 16:39:38 -08:00
} // extern "C"