mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-19 00:41:43 +00:00
The old headers were moved into folders because doing so avoids polluting the system include directories. Folder names were also normalized to lowercase.
347 lines
9.8 KiB
C++
347 lines
9.8 KiB
C++
/*----------------------------------------------------------------------------*/
|
|
/* Copyright (c) 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 "hal/CANAPI.h"
|
|
|
|
#include <atomic>
|
|
#include <ctime>
|
|
|
|
#include <wpi/DenseMap.h>
|
|
|
|
#include "HALInitializer.h"
|
|
#include "hal/CAN.h"
|
|
#include "hal/Errors.h"
|
|
#include "hal/HAL.h"
|
|
#include "hal/handles/UnlimitedHandleResource.h"
|
|
|
|
using namespace hal;
|
|
|
|
namespace {
|
|
struct Receives {
|
|
uint64_t lastTimeStamp;
|
|
uint8_t data[8];
|
|
uint8_t length;
|
|
};
|
|
|
|
struct CANStorage {
|
|
HAL_CANManufacturer manufacturer;
|
|
HAL_CANDeviceType deviceType;
|
|
uint8_t deviceId;
|
|
wpi::mutex mapMutex;
|
|
wpi::SmallDenseMap<int32_t, int32_t> periodicSends;
|
|
wpi::SmallDenseMap<int32_t, Receives> receives;
|
|
};
|
|
} // namespace
|
|
|
|
static UnlimitedHandleResource<HAL_CANHandle, CANStorage, HAL_HandleEnum::CAN>*
|
|
canHandles;
|
|
|
|
static std::atomic_bool HasFixedTime{false};
|
|
static uint64_t timeSpanDiff;
|
|
|
|
static void CheckDeltaTime() {
|
|
if (HasFixedTime) return;
|
|
HasFixedTime = true;
|
|
|
|
// TODO: Fix locking
|
|
timespec t;
|
|
clock_gettime(CLOCK_MONOTONIC, &t);
|
|
|
|
int32_t status = 0;
|
|
uint64_t fpgaTime = HAL_GetFPGATime(&status);
|
|
|
|
// Convert t to microseconds
|
|
uint64_t us = t.tv_sec * 1000000 + t.tv_nsec / 1000;
|
|
|
|
timeSpanDiff =
|
|
us - fpgaTime; // This assumes CLOCK_MONOTONIC is greater then FPGA Time.
|
|
}
|
|
|
|
static inline uint64_t ConvertToFPGATime(uint32_t canMs) {
|
|
uint64_t canMsToUs = canMs * 1000;
|
|
return canMsToUs - timeSpanDiff;
|
|
}
|
|
|
|
namespace hal {
|
|
namespace init {
|
|
void InitializeCANAPI() {
|
|
static UnlimitedHandleResource<HAL_CANHandle, CANStorage, HAL_HandleEnum::CAN>
|
|
cH;
|
|
canHandles = &cH;
|
|
}
|
|
} // namespace init
|
|
} // namespace hal
|
|
|
|
static int32_t CreateCANId(CANStorage* storage, int32_t apiId) {
|
|
int32_t createdId = 0;
|
|
createdId |= (static_cast<int32_t>(storage->deviceType) & 0x1F) << 24;
|
|
createdId |= (static_cast<int32_t>(storage->manufacturer) & 0xFF) << 16;
|
|
createdId |= (apiId & 0x3FF) << 6;
|
|
createdId |= (storage->deviceId & 0x3F);
|
|
return createdId;
|
|
}
|
|
|
|
HAL_CANHandle HAL_InitializeCAN(HAL_CANManufacturer manufacturer,
|
|
int32_t deviceId, HAL_CANDeviceType deviceType,
|
|
int32_t* status) {
|
|
hal::init::CheckInit();
|
|
CheckDeltaTime();
|
|
auto can = std::make_shared<CANStorage>();
|
|
|
|
auto handle = canHandles->Allocate(can);
|
|
|
|
if (handle == HAL_kInvalidHandle) {
|
|
*status = NO_AVAILABLE_RESOURCES;
|
|
return HAL_kInvalidHandle;
|
|
}
|
|
|
|
can->deviceId = deviceId;
|
|
can->deviceType = deviceType;
|
|
can->manufacturer = manufacturer;
|
|
|
|
return handle;
|
|
}
|
|
|
|
void HAL_CleanCAN(HAL_CANHandle handle) {
|
|
auto data = canHandles->Free(handle);
|
|
|
|
std::lock_guard<wpi::mutex> lock(data->mapMutex);
|
|
|
|
for (auto&& i : data->periodicSends) {
|
|
int32_t s = 0;
|
|
HAL_CAN_SendMessage(i.first, nullptr, 0, HAL_CAN_SEND_PERIOD_STOP_REPEATING,
|
|
&s);
|
|
i.second = -1;
|
|
}
|
|
}
|
|
|
|
void HAL_WriteCANPacket(HAL_CANHandle handle, const uint8_t* data,
|
|
int32_t length, int32_t apiId, int32_t* status) {
|
|
auto can = canHandles->Get(handle);
|
|
if (!can) {
|
|
*status = HAL_HANDLE_ERROR;
|
|
return;
|
|
}
|
|
auto id = CreateCANId(can.get(), apiId);
|
|
|
|
HAL_CAN_SendMessage(id, data, length, HAL_CAN_SEND_PERIOD_NO_REPEAT, status);
|
|
|
|
if (*status != 0) {
|
|
return;
|
|
}
|
|
std::lock_guard<wpi::mutex> lock(can->mapMutex);
|
|
can->periodicSends[apiId] = -1;
|
|
}
|
|
|
|
void HAL_WriteCANPacketRepeating(HAL_CANHandle handle, const uint8_t* data,
|
|
int32_t length, int32_t apiId,
|
|
int32_t repeatMs, int32_t* status) {
|
|
auto can = canHandles->Get(handle);
|
|
if (!can) {
|
|
*status = HAL_HANDLE_ERROR;
|
|
return;
|
|
}
|
|
auto id = CreateCANId(can.get(), apiId);
|
|
|
|
HAL_CAN_SendMessage(id, data, length, repeatMs, status);
|
|
|
|
if (*status != 0) {
|
|
return;
|
|
}
|
|
std::lock_guard<wpi::mutex> lock(can->mapMutex);
|
|
can->periodicSends[apiId] = repeatMs;
|
|
}
|
|
|
|
void HAL_StopCANPacketRepeating(HAL_CANHandle handle, int32_t apiId,
|
|
int32_t* status) {
|
|
auto can = canHandles->Get(handle);
|
|
if (!can) {
|
|
*status = HAL_HANDLE_ERROR;
|
|
return;
|
|
}
|
|
auto id = CreateCANId(can.get(), apiId);
|
|
|
|
HAL_CAN_SendMessage(id, nullptr, 0, HAL_CAN_SEND_PERIOD_STOP_REPEATING,
|
|
status);
|
|
|
|
if (*status != 0) {
|
|
return;
|
|
}
|
|
std::lock_guard<wpi::mutex> lock(can->mapMutex);
|
|
can->periodicSends[apiId] = -1;
|
|
}
|
|
|
|
void HAL_ReadCANPacketNew(HAL_CANHandle handle, int32_t apiId, uint8_t* data,
|
|
int32_t* length, uint64_t* receivedTimestamp,
|
|
int32_t* status) {
|
|
auto can = canHandles->Get(handle);
|
|
if (!can) {
|
|
*status = HAL_HANDLE_ERROR;
|
|
return;
|
|
}
|
|
|
|
uint32_t messageId = CreateCANId(can.get(), apiId);
|
|
uint8_t dataSize = 0;
|
|
uint32_t ts = 0;
|
|
HAL_CAN_ReceiveMessage(&messageId, 0x1FFFFFFF, data, &dataSize, &ts, status);
|
|
|
|
uint64_t timestamp = ConvertToFPGATime(ts);
|
|
|
|
if (*status == 0) {
|
|
std::lock_guard<wpi::mutex> lock(can->mapMutex);
|
|
auto& msg = can->receives[messageId];
|
|
msg.length = dataSize;
|
|
msg.lastTimeStamp = timestamp;
|
|
std::memcpy(msg.data, data, dataSize);
|
|
}
|
|
*length = dataSize;
|
|
*receivedTimestamp = timestamp;
|
|
}
|
|
|
|
void HAL_ReadCANPacketLatest(HAL_CANHandle handle, int32_t apiId, uint8_t* data,
|
|
int32_t* length, uint64_t* receivedTimestamp,
|
|
int32_t* status) {
|
|
auto can = canHandles->Get(handle);
|
|
if (!can) {
|
|
*status = HAL_HANDLE_ERROR;
|
|
return;
|
|
}
|
|
|
|
uint32_t messageId = CreateCANId(can.get(), apiId);
|
|
uint8_t dataSize = 0;
|
|
uint32_t ts = 0;
|
|
HAL_CAN_ReceiveMessage(&messageId, 0x1FFFFFFF, data, &dataSize, &ts, status);
|
|
|
|
uint64_t timestamp = ConvertToFPGATime(ts);
|
|
|
|
std::lock_guard<wpi::mutex> lock(can->mapMutex);
|
|
if (*status == 0) {
|
|
// fresh update
|
|
auto& msg = can->receives[messageId];
|
|
msg.length = dataSize;
|
|
*length = dataSize;
|
|
msg.lastTimeStamp = timestamp;
|
|
*receivedTimestamp = timestamp;
|
|
std::memcpy(msg.data, data, dataSize);
|
|
} else {
|
|
auto i = can->receives.find(messageId);
|
|
if (i != can->receives.end()) {
|
|
std::memcpy(i->second.data, data, i->second.length);
|
|
*length = i->second.length;
|
|
*receivedTimestamp = i->second.lastTimeStamp;
|
|
*status = 0;
|
|
}
|
|
}
|
|
}
|
|
|
|
void HAL_ReadCANPacketTimeout(HAL_CANHandle handle, int32_t apiId,
|
|
uint8_t* data, int32_t* length,
|
|
uint64_t* receivedTimestamp, int32_t timeoutMs,
|
|
int32_t* status) {
|
|
auto can = canHandles->Get(handle);
|
|
if (!can) {
|
|
*status = HAL_HANDLE_ERROR;
|
|
return;
|
|
}
|
|
|
|
uint32_t messageId = CreateCANId(can.get(), apiId);
|
|
uint8_t dataSize = 0;
|
|
uint32_t ts = 0;
|
|
HAL_CAN_ReceiveMessage(&messageId, 0x1FFFFFFF, data, &dataSize, &ts, status);
|
|
|
|
uint64_t timestamp = ConvertToFPGATime(ts);
|
|
|
|
std::lock_guard<wpi::mutex> lock(can->mapMutex);
|
|
if (*status == 0) {
|
|
// fresh update
|
|
auto& msg = can->receives[messageId];
|
|
msg.length = dataSize;
|
|
*length = dataSize;
|
|
msg.lastTimeStamp = timestamp;
|
|
*receivedTimestamp = timestamp;
|
|
std::memcpy(msg.data, data, dataSize);
|
|
} else {
|
|
auto i = can->receives.find(messageId);
|
|
if (i != can->receives.end()) {
|
|
// Found, check if new enough
|
|
uint64_t now = HAL_GetFPGATime(status);
|
|
if (now - i->second.lastTimeStamp >
|
|
static_cast<uint64_t>(timeoutMs) * 1000) {
|
|
// Timeout, return bad status
|
|
*status = HAL_CAN_TIMEOUT;
|
|
return;
|
|
}
|
|
std::memcpy(i->second.data, data, i->second.length);
|
|
*length = i->second.length;
|
|
*receivedTimestamp = i->second.lastTimeStamp;
|
|
*status = 0;
|
|
}
|
|
}
|
|
}
|
|
|
|
void HAL_ReadCANPeriodicPacket(HAL_CANHandle handle, int32_t apiId,
|
|
uint8_t* data, int32_t* length,
|
|
uint64_t* receivedTimestamp, int32_t timeoutMs,
|
|
int32_t periodMs, int32_t* status) {
|
|
auto can = canHandles->Get(handle);
|
|
if (!can) {
|
|
*status = HAL_HANDLE_ERROR;
|
|
return;
|
|
}
|
|
|
|
uint32_t messageId = CreateCANId(can.get(), apiId);
|
|
|
|
{
|
|
std::lock_guard<wpi::mutex> lock(can->mapMutex);
|
|
auto i = can->receives.find(messageId);
|
|
if (i != can->receives.end()) {
|
|
uint64_t now = HAL_GetFPGATime(status);
|
|
// Found, check if new enough
|
|
if (now - i->second.lastTimeStamp <
|
|
static_cast<uint64_t>(periodMs) * 1000) {
|
|
*status = 0;
|
|
std::memcpy(i->second.data, data, i->second.length);
|
|
*length = i->second.length;
|
|
*receivedTimestamp = i->second.lastTimeStamp;
|
|
}
|
|
}
|
|
}
|
|
|
|
uint8_t dataSize = 0;
|
|
uint32_t ts = 0;
|
|
HAL_CAN_ReceiveMessage(&messageId, 0x1FFFFFFF, data, &dataSize, &ts, status);
|
|
|
|
uint64_t timestamp = ConvertToFPGATime(ts);
|
|
|
|
std::lock_guard<wpi::mutex> lock(can->mapMutex);
|
|
if (*status == 0) {
|
|
// fresh update
|
|
auto& msg = can->receives[messageId];
|
|
msg.length = dataSize;
|
|
*length = dataSize;
|
|
msg.lastTimeStamp = timestamp;
|
|
*receivedTimestamp = timestamp;
|
|
std::memcpy(msg.data, data, dataSize);
|
|
} else {
|
|
auto i = can->receives.find(messageId);
|
|
if (i != can->receives.end()) {
|
|
// Found, check if new enough
|
|
uint64_t now = HAL_GetFPGATime(status);
|
|
if (now - i->second.lastTimeStamp >
|
|
static_cast<uint64_t>(timeoutMs) * 1000) {
|
|
// Timeout, return bad status
|
|
*status = HAL_CAN_TIMEOUT;
|
|
return;
|
|
}
|
|
std::memcpy(i->second.data, data, i->second.length);
|
|
*length = i->second.length;
|
|
*receivedTimestamp = i->second.lastTimeStamp;
|
|
*status = 0;
|
|
}
|
|
}
|
|
}
|