mirror of
https://codeberg.org/portospaceteam/ground-dashboard.git
synced 2025-02-18 01:10:39 +00:00
26 lines
500 B
Go
26 lines
500 B
Go
package core
|
|
|
|
const (
|
|
ModeWaitingLaunch = "WT"
|
|
ModeLaunch = "LD"
|
|
ModeLowVelocity = "LV"
|
|
ModeNoseOver = "AP"
|
|
ModeDrogueFired = "DR"
|
|
ModeMainFired = "MN"
|
|
ModeFailsafe = "FS"
|
|
ModeLanding = "TD"
|
|
)
|
|
|
|
const (
|
|
IndexFlightTime = 0
|
|
IndexFightPhase = 1
|
|
IndexAltitude = 2
|
|
IndexVelocity = 3
|
|
IndexAcceleration = 4
|
|
IndexTemperature = 5
|
|
IndexCoordinateLat = 6
|
|
IndexCoordinateLon = 7
|
|
IndexGpsQuality = 8
|
|
IndexGpsSats = 9
|
|
)
|