Revision 6e07ea72a3d1d9a8538627f8470085ca8b01414e authored by Felix Ruess on 15 December 2015, 23:39:49 UTC, committed by Felix Ruess on 15 December 2015, 23:39:49 UTC
Rotorcraft guided mode

Set the autopilot mode to GUIDED and then send the GUIDED_SETPOINT_NED message to "goto" a position:
currently you can specify a frame in flags (first 4 bits):
- 0x0: LOCAL_NED, position in local NED frame
- 0x1: LOCAL_OFFSET_NED, position relative to where the vehicle currently is in NED
- 0x2: BODY_NED, same as LOCAL_NED for position
- 0x3: BODY_OFFSET_NED, position relative to vehicle pos AND heading (so X=forward, Y=right, Z=down)
2 parent s 10b56e4 + 93b7bae
Raw File
paparazzi.sublime-project
{
	"folders":
	[
		{
			"follow_symlinks": true,
			"path": ".",
      "file_exclude_patterns":
      [
        "*.swp",
        ".emacs*",
        "*.o",
        "*.a",
        "*.d",
        "*.depend",
        "*.so",
        "*.out",
        "*.cmo",
        "*.cma",
        "*.cmi",
        "*.cmx",
        "*.cmxa",
        "*.sublime-project",
        "*.sublime-workspace",
        ".project",
        ".cproject",
        ".pydevproject"
      ],
      "folder_exclude_patterns":
      [
        ".settings",
        ".idea",
        ".vagrant",
        "var"
      ]
		}
	],
	"settings":
    {
        "tab_size": 2,
        "translate_tabs_to_spaces": true,
        "highlight_line": true,
        "trim_trailing_white_space_on_save": true,
        "ensure_newline_at_eof_on_save": true
    },
}
back to top