mirror of
https://github.com/meshtastic/firmware.git
synced 2025-06-21 20:44:47 +00:00
26 lines
566 B
C
26 lines
566 B
C
/**
|
|
* @file FusionConvention.h
|
|
* @author Seb Madgwick
|
|
* @brief Earth axes convention.
|
|
*/
|
|
|
|
#ifndef FUSION_CONVENTION_H
|
|
#define FUSION_CONVENTION_H
|
|
|
|
//------------------------------------------------------------------------------
|
|
// Definitions
|
|
|
|
/**
|
|
* @brief Earth axes convention.
|
|
*/
|
|
typedef enum {
|
|
FusionConventionNwu, /* North-West-Up */
|
|
FusionConventionEnu, /* East-North-Up */
|
|
FusionConventionNed, /* North-East-Down */
|
|
} FusionConvention;
|
|
|
|
#endif
|
|
|
|
//------------------------------------------------------------------------------
|
|
// End of file
|