WarpTwin
Documentation for WarpTwin models and classes.
Loading...
Searching...
No Matches
cmd_InertialNavigationBiasMeasurementUpdate.h
Go to the documentation of this file.
1/******************************************************************************
2* Copyright (c) ATTX INC 2025. All Rights Reserved.
3*
4* This software and associated documentation (the "Software") are the
5* proprietary and confidential information of ATTX, INC. The Software is
6* furnished under a license agreement between ATTX and the user organization
7* and may be used or copied only in accordance with the terms of the agreement.
8* Refer to 'license/attx_license.adoc' for standard license terms.
9*
10* EXPORT CONTROL NOTICE: THIS SOFTWARE MAY INCLUDE CONTENT CONTROLLED UNDER THE
11* INTERNATIONAL TRAFFIC IN ARMS REGULATIONS (ITAR) OR THE EXPORT ADMINISTRATION
12* REGULATIONS (EAR99). No part of the Software may be used, reproduced, or
13* transmitted in any form or by any means, for any purpose, without the express
14* written permission of ATTX, INC.
15******************************************************************************/
16/*
17Inertial Navigation Bias Measurement Update command definition header file
18
19Author: James Tabony
20*/
21
22#ifndef COMMAND_CMD_INERTIAL_NAVIGATION_BIAS_UPDATE_H
23#define COMMAND_CMD_INERTIAL_NAVIGATION_BIAS_UPDATE_H
24
25#include "flight/Command.h"
26#include "apps/app_apids.h"
27
28// Define the command base for the inertial nav gps update app
29#define CMD_GNC_INERT_NAV_BIAS_UPDATE_BASE APP_APID_GNC_INERT_NAV_BIAS_UPDATE + CMD_APID_BASE
30
31
32// -------------------------------------------------------------------------------------
33// INERTIAL NAVIGATION BIAS MEASUREMENT UPDATE COMMAND APID DEFINITIONS
34// -------------------------------------------------------------------------------------
36#define CMD_GNC_INERT_NAV_BIAS_UPDATE_SET_NOISE CMD_GNC_INERT_NAV_BIAS_UPDATE_BASE + 0x000
37
47 ((std::array<float, 3>), gyro_std), // New gyroscope measurement standard deviation resolved in IMU frame
48 ((std::array<float, 3>), accel_std) // New accelerometer measurement standard deviation resolved in IMU frame
51#endif
#define COMMAND(NAME, APID, SIZE,...)
Definition Command.h:33
#define CMD_GNC_INERT_NAV_BIAS_UPDATE_SET_NOISE
Command code to change the measurement noise covariances.
Definition cmd_InertialNavigationBiasMeasurementUpdate.h:36
Definition cmd_InertialNavigationBiasMeasurementUpdate.h:47
std::array< float, 3 > gyro_std
Definition cmd_InertialNavigationBiasMeasurementUpdate.h:47
std::array< float, 3 > accel_std
Definition cmd_InertialNavigationBiasMeasurementUpdate.h:47