added brake bias

This commit is contained in:
2026-03-13 17:36:15 +00:00
parent bbc62560f3
commit 93ecb1a11d
4 changed files with 75 additions and 42 deletions
+6 -4
View File
@@ -120,16 +120,18 @@ const (
Speed FieldID = iota
RPM
Gear
BrakeBias
Empty
MaxFields
)
const FirstField = Speed
var FieldNames = [MaxFields]string{
Speed: "Speed",
RPM: "RPM",
Gear: "Gear",
Empty: "Emtpy",
Speed: "Speed",
RPM: "RPM",
Gear: "Gear",
BrakeBias: "BrakeBias",
Empty: "Emtpy",
}
func GetFieldName(id FieldID) string {