ground-dashboard/ground/core/consts.go
2022-12-05 22:25:36 +00:00

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
)