Skip to content

Commit

Permalink
ardupilot: Remove inexistent resultText on command ACK
Browse files Browse the repository at this point in the history
  • Loading branch information
rafaellehmkuhl authored and ArturoManzoli committed Sep 20, 2024
1 parent 5124120 commit bcdd884
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
1 change: 0 additions & 1 deletion src/libs/vehicle/ardupilot/ardupilot.ts
Original file line number Diff line number Diff line change
Expand Up @@ -389,7 +389,6 @@ export abstract class ArduPilotVehicle<Modes> extends Vehicle.AbstractVehicle<Mo
command: commandAck.command,
result: commandAck.result,
progress: commandAck.progress,
resultText: commandAck.resultText,
targetSystem: commandAck.targetSystem,
targetComponent: commandAck.targetComponent,
})
Expand Down
3 changes: 1 addition & 2 deletions src/libs/vehicle/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -110,8 +110,7 @@ export class Coordinates {
export class CommandAck {
command: Type<MavCmd>
result: Type<MavResult>
progress: number
resultText: string
progress: number | undefined
targetSystem: number
targetComponent: number

Expand Down

0 comments on commit bcdd884

Please sign in to comment.