WarpTwin
Documentation for WarpTwin models and classes.
Loading...
Searching...
No Matches
tlm_TwoAxisPointingGuidance.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/*
17Two Axis Pointing Guidance telemetry definition header file
18
19Author: Alex Reynolds
20*/
21
22#ifndef TELEMETRY_TLM_TWO_AXIS_POINTING_GUIDANCE_H
23#define TELEMETRY_TLM_TWO_AXIS_POINTING_GUIDANCE_H
24
25#include <array>
26
27#include "flight/Telemetry.h"
28#include "apps/app_apids.h"
29
30// Define the telemetry base for the pointing guidance
31#define TLM_GNC_TWO_AXIS_PNT_BASE APP_APID_GNC_TWO_AXIS_PNT + TLM_APID_BASE
32
33// -------------------------------------------------------------------------------------
34// TWO AXIS POINTING GUIDANCE TELEMETRY APID DEFINITIONS
35// -------------------------------------------------------------------------------------
37#define TLM_GNC_TWO_AXIS_PNT_DATA TLM_GNC_TWO_AXIS_PNT_BASE + 0x000
38#define TLM_GNC_TWO_AXIS_PNT_DATA_SIZE 8
39
44 ((std::array<float16, 4>), quat_body_ref) // Quaternion describing output pointing calculation
47#endif
Header for generic telemetry packet struct generation and serialization.
#define TELEMETRY(NAME, APID, SIZE,...)
Definition Telemetry.h:297
Two axis pointing guidance telemetry packet definition.
Definition tlm_TwoAxisPointingGuidance.h:44
std::array< float16, 4 > quat_body_ref
Definition tlm_TwoAxisPointingGuidance.h:44
#define TLM_GNC_TWO_AXIS_PNT_DATA
Telemetry code for the example blinker count.
Definition tlm_TwoAxisPointingGuidance.h:37
#define TLM_GNC_TWO_AXIS_PNT_DATA_SIZE
Definition tlm_TwoAxisPointingGuidance.h:38