31#ifndef DWFRAMEWORK_DWNODES_SELFCALIBRATION_DWSELFCALIBRATIONIMUNODE_DWSELFCALIBRATIONIMUNODE_HPP_
32#define DWFRAMEWORK_DWNODES_SELFCALIBRATION_DWSELFCALIBRATIONIMUNODE_DWSELFCALIBRATIONIMUNODE_HPP_
41#include <dwframework/dwnodes/common/SelfCalibrationTypes.hpp>
42#include <dwframework/dwnodes/common/channelpackets/IMU.hpp>
43#include <dwframework/dwnodes/common/channelpackets/SelfCalibrationTypes.hpp>
44#include <dwframework/dwnodes/common/channelpackets/VehicleIOValStructures.hpp>
80 static constexpr char8_t LOG_TAG[]{
"dwSelfCalibrationIMUNode"};
108 describePass(StringView{
"SETUP"}, DW_PROCESSOR_TYPE_CPU),
109 describePass(StringView{
"PROCESS"}, DW_PROCESSOR_TYPE_CPU),
110 describePass(StringView{
"TEARDOWN"}, DW_PROCESSOR_TYPE_CPU));
121 describeConstructorArgument<dwSelfCalibrationIMUNodeParams>(
131 "enableCalibration"_sv,
135 "histogramMaxOutlierFailureCount"_sv,
139 "channelFifoSize"_sv,
146 dw::core::FixedString<64>,
147 "calibrationSaveFileSuffix"_sv,
151 "loadStateOnStartup"_sv,
155 describeConstructorArgument<dwContextHandle_t>(
157 dwContextHandle_t)));
#define DW_DESCRIBE_PARAMETER_WITH_DEFAULT(TYPE_NAME, args...)
#define DW_DESCRIBE_UNNAMED_PARAMETER_WITH_SEMANTIC(TYPE_NAME, SEMANTIC_TYPE_NAME, args...)
#define DW_DESCRIBE_UNNAMED_PARAMETER(TYPE_NAME, args...)
#define DW_DESCRIBE_PARAMETER(TYPE_NAME, args...)
#define DW_DESCRIBE_PORT(TYPE_NAME, NAME, args...)
The interface to access parameter values identified by name and/or (semantic) type.
This node computes the IMUs's extrinsic properties (rotation+translation) with respect to the configu...
static constexpr char8_t LOG_TAG[]
static constexpr auto describeParameters()
static constexpr auto describeOutputPorts()
static std::unique_ptr< dwSelfCalibrationIMUNode > create(ParameterProvider const &provider)
static constexpr auto describeInputPorts()
static constexpr auto describePasses()
dwSelfCalibrationIMUNode(dwSelfCalibrationIMUNodeParams const ¶m, dwContextHandle_t const ctx)
uint32_t channelFifoSize
Size of the input channel FIFO queues (must be >0)
constexpr std::tuple describeConstructorArguments()
uint32_t histogramMaxOutlierFailureCount
Calibration will fail if histogram accumulates more outliers than configured here.
uint32_t sensorRigIndex
Sensor rig index (e.g. sensor [0-127]), auto-populated by RR2 Loader.
constexpr PassDescriptorT< 0 > describePass(dw::core::StringView &&name, dwProcessorType processorType)
dwConstRigHandle_t rigHandle
Rig handle.
constexpr auto describePassCollection(const Args &&... args) -> std::tuple< Args... >
constexpr auto describePortCollection(Args &&... args) -> dw::core::Tuple< Args... >
uint64_t stateWriteTimerOffsetInCycles
offset, in cycles, for the write counter. The intention is to allow to delay the first write (and sub...
dw::core::FixedString< 64 > calibrationSaveFileSuffix
Output file suffix.
bool enableCalibration
Flag to enable and disable calibration.
char8_t const * calibrationOutputFileName
Output path where calibration overlay will be written, used to determine the location where calibrati...
uint32_t sensorIndex
Sensor type index (e.g. IMU [0-2]), provided as parameter.
uint64_t stateWriteTimerPeriodInCycles
How often to serialize in node pass cycles. 0 means turn off serialization.
bool loadStateOnStartup
Flag to enable loading of stored calibration state on startup.
Parameters for dwSelfCalibrationIMUNode.