command: model remaining autonomy/autopilot domain and vehicle lighting fields - #17
Merged
Conversation
…ng fields A version-diff pass over recent app releases found a small set of already-wired protobuf fields this package hadn't modelled yet: the DOMAIN_AUTOPILOT routing domain, VCSEC's AutonomyCommand (wrapping a PullOverCommand trigger, wired into UnsignedMessage field 66), and VehicleState's deck_lights_on/hazards_on. The bulk of that diff (FSD usage cluster, multi-axle TPMS, autopilot entitlement, Cybertruck lighting/closures) was already modelled at the initial release.
Saves a future app-version-diff pass from re-discovering that most candidate fields are already modelled.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Intent
DriveState, autopilot entitlement onVehicleConfig, the multi-axle TPMS fields, Cybertruck side-storage closures, theChargeLimitReason/HeadlampType_E/SeatTrimTypeenum additions, and the four newVehicleActionslots - turned out to already be modelled from the initial release's own app-4.58.6 baseline. This PR adds the genuine remainder:UniversalMessage.Domain.DOMAIN_AUTOPILOT- a new routing domain value, wired and in active use (absent from older builds, present in the current one).VCSEC.AutonomyCommand, wrapping aPullOverCommandtrigger (empty body - remote "pull over" for a vehicle under autonomy), wired intoUnsignedMessagefield 66.VehicleState.deck_lights_on/hazards_on- two plain booleans missing from an otherwise-complete lighting/status field set.teslamotors/vehicle-commandandteslamotors/fleet-telemetry- none of these three are in Tesla's public repos yet. Publishing them anyway per the standing policy: this package tracks Tesla's real protobuf surface, not just the subset Tesla has open-sourced, and all three are real, wired fields observed in the current app rather than speculative additions.commandcenter.Transportenum value and aProxyCommandActionfield - thecommandcenterpackage isn't modelled in this repo at all, and the field itself has no recoverable name. Same reasoning for an unnamedExteriorColorfield addition - the containing message isn't modelled here either. Nothing worth guessing a name for.buf lint,buf breaking(againstmain), and the upstream coverage gate are all green.