We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hello, I want to do something like that:
`
this.mcMavParser.createMessage('MISSION_ITEM', { param1: fields.param1, // hold_time param2: fields.param2, // radis param3: fields.param3, // param3 param4: fields.param4, // yaw x: fields.x, // lat y: fields.y, // lon z: fields.z, // alt seq: fields.seq, /'command': mavheader.MAV_CMD_NAV_WAYPOINT,/ command: fields.command, target_system: this.mcSystemID, target_component: 1, frame: 3, current: 0, autocontinue: 1 }, (message) => { this.mcPortSendMessage(message); return; });
How can I do using this project?
The text was updated successfully, but these errors were encountered:
I tried to write the MISSION_COUNT message but didn't receveid any MISSION_REQUEST feedback. My code is this:
`const request = new MissionCount(this.mcSystemID,1); request.count = this.mcMissionList.length; request.mission_type = MavMissionType.MAV_MISSION_TYPE_MISSION; const messages: MAVLinkMessage[] = [request]; const buffer = this.mavLink.pack(messages); this.mcMavPort.write(buffer);`
Sorry, something went wrong.
No branches or pull requests
Hello, I want to do something like that:
`
`
How can I do using this project?
The text was updated successfully, but these errors were encountered: