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

121 lines
3.9 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>
2019-11-17 15:05:56 -08:00
#include "DigitalInternal.h"
#include "HALInitializer.h"
#include "HALInternal.h"
2019-11-17 15:05:56 -08:00
#include "PortsInternal.h"
2025-11-07 19:56:21 -05:00
#include "wpi/hal/Errors.h"
#include "wpi/hal/handles/HandlesInternal.h"
#include "wpi/hal/handles/IndexedHandleResource.h"
2019-11-17 15:05:56 -08:00
#include "mockdata/AddressableLEDDataInternal.h"
using namespace hal;
namespace hal::init {
void InitializeAddressableLED() {}
} // namespace 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) {
2019-11-17 15:05:56 -08:00
hal::init::CheckInit();
if (channel < 0 || channel >= kNumAddressableLEDs) {
*status = RESOURCE_OUT_OF_RANGE;
hal::SetLastErrorIndexOutOfRange(status, "Invalid Index for AddressableLED",
0, kNumAddressableLEDs, channel);
return HAL_kInvalidHandle;
}
HAL_DigitalHandle handle;
auto port = digitalChannelHandles->Allocate(
channel, HAL_HandleEnum::AddressableLED, &handle, status);
2019-11-17 15:05:56 -08:00
if (*status != 0) {
if (port) {
hal::SetLastErrorPreviouslyAllocated(status, "PWM or DIO", channel,
port->previousAllocation);
} else {
hal::SetLastErrorIndexOutOfRange(status,
"Invalid Index for AddressableLED", 0,
kNumAddressableLEDs, channel);
}
return HAL_kInvalidHandle; // 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::AddressableLED);
// no status, so no need to check for a proper free.
digitalChannelHandles->Free(handle, HAL_HandleEnum::AddressableLED);
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::AddressableLED);
if (!port) {
2019-11-17 15:05:56 -08:00
*status = HAL_HANDLE_ERROR;
return;
}
if (start > HAL_kAddressableLEDMaxLength || start < 0) {
2019-11-17 15:05:56 -08:00
*status = PARAMETER_OUT_OF_RANGE;
hal::SetLastError(
status,
fmt::format(
"LED start must be less than or equal to {}. {} was requested",
HAL_kAddressableLEDMaxLength, 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::AddressableLED);
if (!port) {
2019-11-17 15:05:56 -08:00
*status = HAL_HANDLE_ERROR;
return;
}
if (length > HAL_kAddressableLEDMaxLength || length < 0) {
2019-11-17 15:05:56 -08:00
*status = PARAMETER_OUT_OF_RANGE;
hal::SetLastError(
status,
fmt::format(
"LED length must be less than or equal to {}. {} was requested",
HAL_kAddressableLEDMaxLength, 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"