diff --git a/test/CMakeLists.txt b/test/CMakeLists.txt
index 252925fa..5fc135ce 100644
--- a/test/CMakeLists.txt
+++ b/test/CMakeLists.txt
@@ -29,6 +29,8 @@ set(TEST_SUBDIRECTORIES
set(TEST_SUBDIRECTORIES ${TEST_SUBDIRECTORIES} httpserver)
#endif()
+set(TEST_SUBDIRECTORIES ${TEST_SUBDIRECTORIES} gcs)
+
if (EIGEN_FOUND AND CERES_FOUND)
set(TEST_SUBDIRECTORIES ${TEST_SUBDIRECTORIES} ceres_playground)
endif()
diff --git a/test/gcs/CMakeLists.txt b/test/gcs/CMakeLists.txt
new file mode 100644
index 00000000..771c5795
--- /dev/null
+++ b/test/gcs/CMakeLists.txt
@@ -0,0 +1,104 @@
+project (gcs)
+
+set (SRC_FILES
+ main_gcs.cpp
+ gcs.c
+)
+
+set (HDR_FILES
+)
+
+if (PNG_LIB)
+ include(../../wrappers/libpng/sourcelist.cmake)
+endif()
+
+if (JPEG_LIB)
+ include(../../wrappers/libjpeg/sourcelist.cmake)
+endif()
+
+if (GIF_LIB)
+ include(../../wrappers/libgif/sourcelist.cmake)
+endif()
+
+if(AVCODEC_LIBS)
+ message("Switching on avcodec support <${AVCODEC_LIBS}>")
+ include(../../wrappers/avcodec/sourcelist.cmake)
+endif()
+
+include(../../wrappers/httpserver/sourcelist.cmake)
+
+set (NAME gcs)
+
+add_executable(${NAME} ${SRC_FILES} ${HDR_FILES})
+include_directories(${INC_PATHS})
+
+target_link_libraries(${NAME} ${LIBS} corecvs pthread)
+
+add_custom_command(TARGET ${NAME} POST_BUILD
+ COMMAND cp ${PROJECT_BINARY_DIR}/${NAME} ${CMAKE_BINARY_DIR}/bin/${NAME}
+ WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}
+ COMMENT "Copying ${NAME} to binary directory"
+ )
+
+function(create_resources dir output prefix)
+
+ set(INDEX_LIST "")
+
+ function(create_resources_recursively dir wpath output prefix)
+ message("create_resources_recursively(${dir}, ${wpath}, ${output}, ${prefix})")
+
+ file(GLOB bins RELATIVE ${CMAKE_CURRENT_SOURCE_DIR}/${dir}/${wpath} ${CMAKE_CURRENT_SOURCE_DIR}/${dir}/${wpath}*)
+ foreach(rel_bin ${bins})
+
+ set(bin ${CMAKE_CURRENT_SOURCE_DIR}/${dir}${wpath}${rel_bin})
+ message("Packaging resource file: ${bin}")
+ if(IS_DIRECTORY ${bin})
+ message("Packaging directory: ${bin}")
+ create_resources_recursively(${dir} "${wpath}${rel_bin}/" ${output} ${prefix})
+ else()
+
+ # Get short filename
+ #string(REGEX MATCH "([^/]+)$" filename ${bin})
+ set(filename ${wpath}${rel_bin})
+
+ # Replace filename spaces & extension separator for C compatibility
+ string(REGEX REPLACE "[\\.-/]" "_" filename "${filename}")
+ string(REGEX REPLACE "-|@" "_" filename "${filename}")
+ file(READ ${bin} filedata HEX)
+ # Convert hex data for C compatibility
+ string(REGEX REPLACE "([0-9a-f][0-9a-f])" "0x\\1," filedata "${filedata}")
+
+ # beautify it a bit
+ string(REGEX REPLACE "([^,]*,[^,]*,[^,]*,[^,]*,[^,]*,[^,]*,[^,]*,[^,]*,[^,]*,[^,]*,[^,]*,[^,]*,[^,]*,[^,]*,[^,]*,[^,]*,[^,]*,[^,]*,[^,]*,[^,]*,)" "\\1\n " filedata "${filedata}")
+ file(APPEND ${output} "const unsigned char ${prefix}${filename}[] = {\n ${filedata}\n};\nconst unsigned ${prefix}${filename}_size = sizeof(${prefix}${filename});\n")
+ file(APPEND ${output} "\n" )
+
+ set(INDEX_LIST ${INDEX_LIST} " {\"${wpath}${rel_bin}\", ${prefix}${filename}, sizeof(${prefix}${filename}) },\n" )
+ endif()
+ endforeach()
+ set(INDEX_LIST ${INDEX_LIST} PARENT_SCOPE)
+ endfunction()
+ # Create empty output files
+ file(WRITE ${output} "")
+ file(APPEND ${output} "#include \"compiledResourceDirectory.h\"\n")
+
+ create_resources_recursively(${dir} "/" ${output} ${prefix})
+
+ file(APPEND ${output} "\n")
+ file(APPEND ${output} "\n")
+ file(APPEND ${output} "struct CompiledResourceDirectoryEntry ${prefix}resource_index[] = {\n")
+ file(APPEND ${output} ${INDEX_LIST} )
+ file(APPEND ${output} "};\n")
+ file(APPEND ${output} "int ${prefix}resource_index_size = (sizeof(${prefix}resource_index) / sizeof(struct CompiledResourceDirectoryEntry));\n")
+endfunction()
+
+create_resources(dist gcs.c gcs_)
+
+# Additional stuff mostly for IDE only
+file(GLOB CURR_ADD_SRC_FILES ${CMAKE_CURRENT_LIST_DIR}/pages/img/*)
+set(ADD_SRC_FILES ${ADD_SRC_FILES} ${CURR_ADD_SRC_FILES} )
+file(GLOB CURR_ADD_SRC_FILES ${CMAKE_CURRENT_LIST_DIR}/test_pages/*)
+set(ADD_SRC_FILES ${ADD_SRC_FILES} ${CURR_ADD_SRC_FILES} )
+
+target_sources(${NAME} PRIVATE ${ADD_SRC_FILES})
+set_source_files_properties(${ADD_SRC_FILES} PROPERTIES EXTERNAL_OBJECT true HEADER_FILE_ONLY TRUE)
diff --git a/test/gcs/dist/css/app.ab6361a8.css b/test/gcs/dist/css/app.ab6361a8.css
new file mode 100644
index 00000000..619ba9f9
--- /dev/null
+++ b/test/gcs/dist/css/app.ab6361a8.css
@@ -0,0 +1 @@
+#map[data-v-f2808c1a]{width:100%;height:400px}#mapComponent[data-v-f2808c1a]{width:90%;display:grid;grid-template-columns:80% 20%}.gps .property input[type=text][data-v-f2808c1a],.gps .property label[data-v-f2808c1a],.gps button[data-v-f2808c1a],.transition[data-v-f2808c1a]{transition:all .25s cubic-bezier(.53,.01,.35,1.5)}[data-v-f2808c1a]{font-family:Helvetica,sans-serif;font-weight:light;-webkit-font-smoothing:antialiased}.gps[data-v-f2808c1a]{position:relative;display:inline-block;width:90%;box-sizing:border-box;padding:30px 25px;background-color:#fff;border-radius:40px;margin:40px 0;left:50%;transform:translate(-50%);border:4px solid #000;background-color:#abc}h1[data-v-f2808c1a]{color:#ff4a56;font-weight:100;letter-spacing:.01em;margin-left:15px;margin-bottom:35px;text-transform:uppercase}.property[data-v-f2808c1a]{position:relative;padding:10px 0}.property[data-v-f2808c1a]:first-of-type{padding-top:0}.property[data-v-f2808c1a]:last-of-type{padding-bottom:0}.property label[data-v-f2808c1a]{transform-origin:left center;font-size:22px;position:absolute;margin-top:-40px;z-index:2;pointer-events:none}.property input[type=text][data-v-f2808c1a],.property label[data-v-f2808c1a]{font-weight:100;letter-spacing:.01em;box-sizing:border-box;padding:10px 15px;display:block}.property input[type=text][data-v-f2808c1a]{-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:none;line-height:0;font-size:17px;width:100%;border-radius:60px;position:relative;z-index:1}.green[data-v-f2808c1a]{border:1px solid green;color:green}.red[data-v-f2808c1a]{border:1px solid red;color:red}.green[data-v-f2808c1a]:focus{background:green}.red[data-v-f2808c1a]:focus{background:red}.property input[type=text][data-v-f2808c1a]:focus{outline:none;color:#fff;margin-top:30px}.property input[type=text][data-v-f2808c1a]:valid{margin-top:30px}.property input[type=text]:focus~label[data-v-f2808c1a]{transform:translateY(-35px)}.property input[type=text]:valid~label[data-v-f2808c1a]{text-transform:uppercase;font-style:italic;transform:translate(5px,-35px) scale(.6)}[data-v-23a9cc93]{height:50px}.arrow.up[data-v-23a9cc93]{grid-column:8}.arrow.down[data-v-23a9cc93]{grid-column:9}.buttonRemoveWaypoint[data-v-23a9cc93]{grid-column:10}input[data-v-23a9cc93]{font-size:18px;height:70%;margin:4px}div.arrow[data-v-23a9cc93]{width:32px;height:32px;box-sizing:border-box;left:50%;top:50%;transform:rotate(-45deg)}div.arrow[data-v-23a9cc93]:before{border-width:.8vmin .8vmin 0 0;display:block}div.arrow[data-v-23a9cc93]:after,div.arrow[data-v-23a9cc93]:before{content:"";width:100%;height:100%;border-style:solid;border-color:#fafafa;transition:.2s ease;transform-origin:100% 0}div.arrow[data-v-23a9cc93]:after{float:left;position:relative;top:-100%;border-width:0 .8vmin 0 0}div.arrow[data-v-23a9cc93]:hover:after{transform:rotate(45deg);border-color:orange;height:120%}div.arrow[data-v-23a9cc93]:hover:before{border-color:orange;transform:scale(.8)}div.up[data-v-23a9cc93]{margin-top:18px;margin-left:12px}div.down[data-v-23a9cc93]{transform:rotate(135deg);-webkit-transform:rotate(135deg)}#wrap[data-v-23a9cc93]{width:100%;max-width:900px;margin:0 auto 60px;box-shadow:0 3px 6px rgba(0,0,0,.25)}.inputTextNaN[data-v-23a9cc93]{background-color:red}ul[data-v-3ceb6146]{padding:0;list-style-type:none;display:grid;grid-template-rows:repeat(2,140px)}li[data-v-3ceb6146]{width:140px;height:100px;font-size:20px;text-align:center;line-height:7rem;font-family:sans-serif;text-transform:uppercase;letter-spacing:1px;position:relative;transition:.3s;margin:3rem}.notSelected[data-v-3ceb6146]:after,.notSelected[data-v-3ceb6146]:before{content:"";position:absolute;width:inherit;height:inherit;top:0;left:0;transition:.3s}.notSelected[data-v-3ceb6146]:before{background-color:#fff;z-index:-1;box-shadow:.2rem .2rem .5rem rgba(0,0,0,.2)}.notSelected[data-v-3ceb6146]:after{background-color:#daa520;transform:translate(1.5rem,1.5rem);z-index:-2}.notSelected[data-v-3ceb6146]:hover{transform:translate(1.5rem,1.5rem);color:#fff}.notSelected[data-v-3ceb6146]:hover:before{background-color:#daa520}.notSelected[data-v-3ceb6146]:hover:after{background-color:#fff;transform:translate(-1.5rem,-1.5rem)}.selected[data-v-3ceb6146]{padding-left:1rem;padding-top:1rem;color:#fff}.selected[data-v-3ceb6146]:after,.selected[data-v-3ceb6146]:before{content:"";position:absolute;width:inherit;height:inherit;top:1.5rem;left:1.5rem;transition:.3s}.selected[data-v-3ceb6146]:before{background-color:#fff;transform:translate(-1.5rem,-1.5rem);z-index:-2}.selected[data-v-3ceb6146]:after{background-color:#282;z-index:-1;box-shadow:-.2rem -.2rem -.5rem rgba(0,0,0,.2)}.noselect[data-v-3ceb6146]{-webkit-touch-callout:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.waypoint{grid-template-columns:20% 20% 9% 5% 5% 5% 5% 5.5% 5.5% 250px;padding:2px;background-color:#abc;border:2px solid #000;left:0;right:0;height:60px;min-width:1450px;margin-left:200px}#waypoints,.waypoint{display:grid;box-sizing:border-box;width:80%}#waypoints{margin-top:1%}#buttonAddWaypoint{margin:4px;grid-column:10}.buttonRed{background:#a00}label{font-size:22px}.buttonWaypoint{font-family:Hack,monospace;color:#fff;cursor:pointer;font-size:2em;padding:.5rem;border:0;transition:all .5s;border-radius:10px;position:relative;box-sizing:border-box}.buttonWaypoint:after{content:"〉";font-family:Font Awesome\ 5 Pro;font-weight:400;position:absolute;left:85%;top:5%;right:5%;bottom:0;opacity:0}.buttonRemoveWaypoint:hover{background-color:red;box-shadow:0 6px 15px #a00}.buttonWaypoint:hover{transition:all .5s;border-radius:10px;padding:.5rem 3.5rem .5rem .5rem}.buttonWaypoint:hover:after{opacity:1;transition:all .5s}.buttonGreen{font-size:20px;background-color:green}.buttonGreen:hover{background-color:green;box-shadow:0 6px 15px #0a0}#camera[data-v-7e737e40]{background-color:green;width:80%;height:400px}#cameraImage[data-v-7e737e40]{width:400px;height:400px}#missionController[data-v-8910d1b8]{width:80%;margin:auto;margin-top:.2%;border:4px solid #000;background-color:#abc;border-radius:40px;display:grid;grid-template-columns:repeat(2,20%) 30%}#buttonStartMission[data-v-8910d1b8]{grid-column:0}button[data-v-8910d1b8]{height:50px;margin:10px}#properties input[data-v-54efae41]{border:2px solid green;width:230px;border-radius:10px}#properties input[data-v-54efae41]:focus{outline:none}.property_confirmed[data-v-54efae41]{background-color:#9fc}.property_loading[data-v-54efae41]{background-color:#ffff50}.property_failed[data-v-54efae41]{background-color:red}.table-fill[data-v-54efae41]{background:#fff;border-radius:3px;border-collapse:collapse;width:100%;padding:5px;box-shadow:0 5px 10px rgba(0,0,0,.1);-webkit-animation:float 5s infinite;animation:float 5s infinite}th[data-v-54efae41]{color:#d5dde5;background:#1b1e24;border-bottom:4px solid #9ea7af;border-right:1px solid #343a45;font-size:23px;font-weight:100;padding:24px;text-align:left;text-shadow:0 1px 1px rgba(0,0,0,.1);vertical-align:middle}tr[data-v-54efae41]{border-top:1px solid #c1c3d1;border-bottom:1px solid #c1c3d1;color:#666b85;font-size:16px;font-weight:400;text-shadow:0 1px 1px hsla(0,0%,100%,.1)}tr:hover td[data-v-54efae41]{background:#4e5066;color:#fff;border-top:1px solid #22262e}tr:nth-child(odd) td[data-v-54efae41]{background:#ebebeb}tr:nth-child(odd):hover td[data-v-54efae41]{background:#4e5066}td[data-v-54efae41]{background:#fff;padding:20px;text-align:left;vertical-align:middle;font-weight:300;font-size:18px;text-shadow:-1px -1px 1px rgba(0,0,0,.1);border-right:1px solid #c1c3d1;height:32px}td input[data-v-54efae41]{font-size:18px}#tables[data-v-54efae41]{display:grid;grid-template-columns:10% repeat(2,40%) 10%;margin-top:.2%}#tableProperties[data-v-54efae41]{grid-column:2}#properties[data-v-54efae41]{grid-column:3}#graphDiv[data-v-20ec5b04]{width:1700px;height:410px;top:0;left:0}#graphCanvas[data-v-20ec5b04]{width:100%}body{background-color:#789}#app{font-family:Avenir,Helvetica,Arial,sans-serif;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;text-align:center;color:#2c3e50;margin-top:60px}#main{display:grid;grid-template-columns:250px auto}Menu{grid-column:1}Map{grid-column:2}
\ No newline at end of file
diff --git a/test/gcs/dist/css/chunk-vendors.f32eaac2.css b/test/gcs/dist/css/chunk-vendors.f32eaac2.css
new file mode 100644
index 00000000..940c5998
--- /dev/null
+++ b/test/gcs/dist/css/chunk-vendors.f32eaac2.css
@@ -0,0 +1 @@
+.leaflet-image-layer,.leaflet-layer,.leaflet-marker-icon,.leaflet-marker-shadow,.leaflet-pane,.leaflet-pane>canvas,.leaflet-pane>svg,.leaflet-tile,.leaflet-tile-container,.leaflet-zoom-box{position:absolute;left:0;top:0}.leaflet-container{overflow:hidden}.leaflet-marker-icon,.leaflet-marker-shadow,.leaflet-tile{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-webkit-user-drag:none}.leaflet-tile::-moz-selection{background:transparent}.leaflet-tile::selection{background:transparent}.leaflet-safari .leaflet-tile{image-rendering:-webkit-optimize-contrast}.leaflet-safari .leaflet-tile-container{width:1600px;height:1600px;-webkit-transform-origin:0 0}.leaflet-marker-icon,.leaflet-marker-shadow{display:block}.leaflet-container .leaflet-marker-pane img,.leaflet-container .leaflet-overlay-pane svg,.leaflet-container .leaflet-shadow-pane img,.leaflet-container .leaflet-tile,.leaflet-container .leaflet-tile-pane img,.leaflet-container img.leaflet-image-layer{max-width:none!important;max-height:none!important}.leaflet-container.leaflet-touch-zoom{touch-action:pan-x pan-y}.leaflet-container.leaflet-touch-drag{touch-action:none;touch-action:pinch-zoom}.leaflet-container.leaflet-touch-drag.leaflet-touch-zoom{touch-action:none}.leaflet-container{-webkit-tap-highlight-color:transparent}.leaflet-container a{-webkit-tap-highlight-color:rgba(51,181,229,.4)}.leaflet-tile{filter:inherit;visibility:hidden}.leaflet-tile-loaded{visibility:inherit}.leaflet-zoom-box{width:0;height:0;box-sizing:border-box;z-index:800}.leaflet-overlay-pane svg{-moz-user-select:none}.leaflet-pane{z-index:400}.leaflet-tile-pane{z-index:200}.leaflet-overlay-pane{z-index:400}.leaflet-shadow-pane{z-index:500}.leaflet-marker-pane{z-index:600}.leaflet-tooltip-pane{z-index:650}.leaflet-popup-pane{z-index:700}.leaflet-map-pane canvas{z-index:100}.leaflet-map-pane svg{z-index:200}.leaflet-vml-shape{width:1px;height:1px}.lvml{behavior:url(#default#VML);display:inline-block;position:absolute}.leaflet-control{position:relative;z-index:800;pointer-events:visiblePainted;pointer-events:auto}.leaflet-bottom,.leaflet-top{position:absolute;z-index:1000;pointer-events:none}.leaflet-top{top:0}.leaflet-right{right:0}.leaflet-bottom{bottom:0}.leaflet-left{left:0}.leaflet-control{float:left;clear:both}.leaflet-right .leaflet-control{float:right}.leaflet-top .leaflet-control{margin-top:10px}.leaflet-bottom .leaflet-control{margin-bottom:10px}.leaflet-left .leaflet-control{margin-left:10px}.leaflet-right .leaflet-control{margin-right:10px}.leaflet-fade-anim .leaflet-tile{will-change:opacity}.leaflet-fade-anim .leaflet-popup{opacity:0;transition:opacity .2s linear}.leaflet-fade-anim .leaflet-map-pane .leaflet-popup{opacity:1}.leaflet-zoom-animated{transform-origin:0 0}.leaflet-zoom-anim .leaflet-zoom-animated{will-change:transform;transition:transform .25s cubic-bezier(0,0,.25,1)}.leaflet-pan-anim .leaflet-tile,.leaflet-zoom-anim .leaflet-tile{transition:none}.leaflet-zoom-anim .leaflet-zoom-hide{visibility:hidden}.leaflet-interactive{cursor:pointer}.leaflet-grab{cursor:-webkit-grab;cursor:grab}.leaflet-crosshair,.leaflet-crosshair .leaflet-interactive{cursor:crosshair}.leaflet-control,.leaflet-popup-pane{cursor:auto}.leaflet-dragging .leaflet-grab,.leaflet-dragging .leaflet-grab .leaflet-interactive,.leaflet-dragging .leaflet-marker-draggable{cursor:move;cursor:-webkit-grabbing;cursor:grabbing}.leaflet-image-layer,.leaflet-marker-icon,.leaflet-marker-shadow,.leaflet-pane>svg path,.leaflet-tile-container{pointer-events:none}.leaflet-image-layer.leaflet-interactive,.leaflet-marker-icon.leaflet-interactive,.leaflet-pane>svg path.leaflet-interactive,svg.leaflet-image-layer.leaflet-interactive path{pointer-events:visiblePainted;pointer-events:auto}.leaflet-container{background:#ddd;outline:0}.leaflet-container a{color:#0078a8}.leaflet-container a.leaflet-active{outline:2px solid orange}.leaflet-zoom-box{border:2px dotted #38f;background:hsla(0,0%,100%,.5)}.leaflet-container{font:12px/1.5 Helvetica Neue,Arial,Helvetica,sans-serif}.leaflet-bar{box-shadow:0 1px 5px rgba(0,0,0,.65);border-radius:4px}.leaflet-bar a,.leaflet-bar a:hover{background-color:#fff;border-bottom:1px solid #ccc;width:26px;height:26px;line-height:26px;display:block;text-align:center;text-decoration:none;color:#000}.leaflet-bar a,.leaflet-control-layers-toggle{background-position:50% 50%;background-repeat:no-repeat;display:block}.leaflet-bar a:hover{background-color:#f4f4f4}.leaflet-bar a:first-child{border-top-left-radius:4px;border-top-right-radius:4px}.leaflet-bar a:last-child{border-bottom-left-radius:4px;border-bottom-right-radius:4px;border-bottom:none}.leaflet-bar a.leaflet-disabled{cursor:default;background-color:#f4f4f4;color:#bbb}.leaflet-touch .leaflet-bar a{width:30px;height:30px;line-height:30px}.leaflet-touch .leaflet-bar a:first-child{border-top-left-radius:2px;border-top-right-radius:2px}.leaflet-touch .leaflet-bar a:last-child{border-bottom-left-radius:2px;border-bottom-right-radius:2px}.leaflet-control-zoom-in,.leaflet-control-zoom-out{font:700 18px Lucida Console,Monaco,monospace;text-indent:1px}.leaflet-touch .leaflet-control-zoom-in,.leaflet-touch .leaflet-control-zoom-out{font-size:22px}.leaflet-control-layers{box-shadow:0 1px 5px rgba(0,0,0,.4);background:#fff;border-radius:5px}.leaflet-control-layers-toggle{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABoAAAAaCAQAAAADQ4RFAAACf0lEQVR4AY1UM3gkARTePdvdoTxXKc+qTl3aU5U6b2Kbkz3Gtq3Zw6ziLGNPzrYx7946Tr6/ee/XeCQ4D3ykPtL5tHno4n0d/h3+xfuWHGLX81cn7r0iTNzjr7LrlxCqPtkbTQEHeqOrTy4Yyt3VCi/IOB0v7rVC7q45Q3Gr5K6jt+3Gl5nCoDD4MtO+j96Wu8atmhGqcNGHObuf8OM/x3AMx38+4Z2sPqzCxRFK2aF2e5Jol56XTLyggAMTL56XOMoS1W4pOyjUcGGQdZxU6qRh7B9Zp+PfpOFlqt0zyDZckPi1ttmIp03jX8gyJ8a/PG2yutpS/Vol7peZIbZcKBAEEheEIAgFbDkz5H6Zrkm2hVWGiXKiF4Ycw0RWKdtC16Q7qe3X4iOMxruonzegJzWaXFrU9utOSsLUmrc0YjeWYjCW4PDMADElpJSSQ0vQvA1Tm6/JlKnqFs1EGyZiFCqnRZTEJJJiKRYzVYzJck2Rm6P4iH+cmSY0YzimYa8l0EtTODFWhcMIMVqdsI2uiTvKmTisIDHJ3od5GILVhBCarCfVRmo4uTjkhrhzkiBV7SsaqS+TzrzM1qpGGUFt28pIySQHR6h7F6KSwGWm97ay+Z+ZqMcEjEWebE7wxCSQwpkhJqoZA5ivCdZDjJepuJ9IQjGGUmuXJdBFUygxVqVsxFsLMbDe8ZbDYVCGKxs+W080max1hFCarCfV+C1KATwcnvE9gRRuMP2prdbWGowm1KB1y+zwMMENkM755cJ2yPDtqhTI6ED1M/82yIDtC/4j4BijjeObflpO9I9MwXTCsSX8jWAFeHr05WoLTJ5G8IQVS/7vwR6ohirYM7f6HzYpogfS3R2OAAAAAElFTkSuQmCC);width:36px;height:36px}.leaflet-retina .leaflet-control-layers-toggle{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADQAAAA0CAQAAABvcdNgAAAEsklEQVR4AWL4TydIhpZK1kpWOlg0w3ZXP6D2soBtG42jeI6ZmQTHzAxiTbSJsYLjO9HhP+WOmcuhciVnmHVQcJnp7DFvScowZorad/+V/fVzMdMT2g9Cv9guXGv/7pYOrXh2U+RRR3dSd9JRx6bIFc/ekqHI29JC6pJ5ZEh1yWkhkbcFeSjxgx3L2m1cb1C7bceyxA+CNjT/Ifff+/kDk2u/w/33/IeCMOSaWZ4glosqT3DNnNZQ7Cs58/3Ce5HL78iZH/vKVIaYlqzfdLu8Vi7dnvUbEza5Idt36tquZFldl6N5Z/POLof0XLK61mZCmJSWjVF9tEjUluu74IUXvgttuVIHE7YxSkaYhJZam7yiM9Pv82JYfl9nptxZaxMJE4YSPty+vF0+Y2up9d3wwijfjZbabqm/3bZ9ecKHsiGmRflnn1MW4pjHf9oLufyn2z3y1D6n8g8TZhxyzipLNPnAUpsOiuWimg52psrTZYnOWYNDTMuWBWa0tJb4rgq1UvmutpaYEbZlwU3CLJm/ayYjHW5/h7xWLn9Hh1vepDkyf7dE7MtT5LR4e7yYpHrkhOUpEfssBLq2pPhAqoSWKUkk7EDqkmK6RrCEzqDjhNDWNE+XSMvkJRDWlZTmCW0l0PHQGRZY5t1L83kT0Y3l2SItk5JAWHl2dCOBm+fPu3fo5/3v61RMCO9Jx2EEYYhb0rmNQMX/vm7gqOEJLcXTGw3CAuRNeyaPWwjR8PRqKQ1PDA/dpv+on9Shox52WFnx0KY8onHayrJzm87i5h9xGw/tfkev0jGsQizqezUKjk12hBMKJ4kbCqGPVNXudyyrShovGw5CgxsRICxF6aRmSjlBnHRzg7Gx8fKqEubI2rahQYdR1YgDIRQO7JvQyD52hoIQx0mxa0ODtW2Iozn1le2iIRdzwWewedyZzewidueOGqlsn1MvcnQpuVwLGG3/IR1hIKxCjelIDZ8ldqWz25jWAsnldEnK0Zxro19TGVb2ffIZEsIO89EIEDvKMPrzmBOQcKQ+rroye6NgRRxqR4U8EAkz0CL6uSGOm6KQCdWjvjRiSP1BPalCRS5iQYiEIvxuBMJEWgzSoHADcVMuN7IuqqTeyUPq22qFimFtxDyBBJEwNyt6TM88blFHao/6tWWhuuOM4SAK4EI4QmFHA+SEyWlp4EQoJ13cYGzMu7yszEIBOm2rVmHUNqwAIQabISNMRstmdhNWcFLsSm+0tjJH1MdRxO5Nx0WDMhCtgD6OKgZeljJqJKc9po8juskR9XN0Y1lZ3mWjLR9JCO1jRDMd0fpYC2VnvjBSEFg7wBENc0R9HFlb0xvF1+TBEpF68d+DHR6IOWVv2BECtxo46hOFUBd/APU57WIoEwJhIi2CdpyZX0m93BZicktMj1AS9dClteUFAUNUIEygRZCtik5zSxI9MubTBH1GOiHsiLJ3OCoSZkILa9PxiN0EbvhsAo8tdAf9Seepd36lGWHmtNANTv5Jd0z4QYyeo/UEJqxKRpg5LZx6btLPsOaEmdMyxYdlc8LMaJnikDlhclqmPiQnTEpLUIZEwkRagjYkEibQErwhkTAKCLQEbUgkzJQWc/0PstHHcfEdQ+UAAAAASUVORK5CYII=);background-size:26px 26px}.leaflet-touch .leaflet-control-layers-toggle{width:44px;height:44px}.leaflet-control-layers-expanded .leaflet-control-layers-toggle,.leaflet-control-layers .leaflet-control-layers-list{display:none}.leaflet-control-layers-expanded .leaflet-control-layers-list{display:block;position:relative}.leaflet-control-layers-expanded{padding:6px 10px 6px 6px;color:#333;background:#fff}.leaflet-control-layers-scrollbar{overflow-y:scroll;overflow-x:hidden;padding-right:5px}.leaflet-control-layers-selector{margin-top:2px;position:relative;top:1px}.leaflet-control-layers label{display:block}.leaflet-control-layers-separator{height:0;border-top:1px solid #ddd;margin:5px -10px 5px -6px}.leaflet-default-icon-path{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABkAAAApCAYAAADAk4LOAAAFgUlEQVR4Aa1XA5BjWRTN2oW17d3YaZtr2962HUzbDNpjszW24mRt28p47v7zq/bXZtrp/lWnXr337j3nPCe85NcypgSFdugCpW5YoDAMRaIMqRi6aKq5E3YqDQO3qAwjVWrD8Ncq/RBpykd8oZUb/kaJutow8r1aP9II0WmLKLIsJyv1w/kqw9Ch2MYdB++12Onxee/QMwvf4/Dk/Lfp/i4nxTXtOoQ4pW5Aj7wpici1A9erdAN2OH64x8OSP9j3Ft3b7aWkTg/Fm91siTra0f9on5sQr9INejH6CUUUpavjFNq1B+Oadhxmnfa8RfEmN8VNAsQhPqF55xHkMzz3jSmChWU6f7/XZKNH+9+hBLOHYozuKQPxyMPUKkrX/K0uWnfFaJGS1QPRtZsOPtr3NsW0uyh6NNCOkU3Yz+bXbT3I8G3xE5EXLXtCXbbqwCO9zPQYPRTZ5vIDXD7U+w7rFDEoUUf7ibHIR4y6bLVPXrz8JVZEql13trxwue/uDivd3fkWRbS6/IA2bID4uk0UpF1N8qLlbBlXs4Ee7HLTfV1j54APvODnSfOWBqtKVvjgLKzF5YdEk5ewRkGlK0i33Eofffc7HT56jD7/6U+qH3Cx7SBLNntH5YIPvODnyfIXZYRVDPqgHtLs5ABHD3YzLuespb7t79FY34DjMwrVrcTuwlT55YMPvOBnRrJ4VXTdNnYug5ucHLBjEpt30701A3Ts+HEa73u6dT3FNWwflY86eMHPk+Yu+i6pzUpRrW7SNDg5JHR4KapmM5Wv2E8Tfcb1HoqqHMHU+uWDD7zg54mz5/2BSnizi9T1Dg4QQXLToGNCkb6tb1NU+QAlGr1++eADrzhn/u8Q2YZhQVlZ5+CAOtqfbhmaUCS1ezNFVm2imDbPmPng5wmz+gwh+oHDce0eUtQ6OGDIyR0uUhUsoO3vfDmmgOezH0mZN59x7MBi++WDL1g/eEiU3avlidO671bkLfwbw5XV2P8Pzo0ydy4t2/0eu33xYSOMOD8hTf4CrBtGMSoXfPLchX+J0ruSePw3LZeK0juPJbYzrhkH0io7B3k164hiGvawhOKMLkrQLyVpZg8rHFW7E2uHOL888IBPlNZ1FPzstSJM694fWr6RwpvcJK60+0HCILTBzZLFNdtAzJaohze60T8qBzyh5ZuOg5e7uwQppofEmf2++DYvmySqGBuKaicF1blQjhuHdvCIMvp8whTTfZzI7RldpwtSzL+F1+wkdZ2TBOW2gIF88PBTzD/gpeREAMEbxnJcaJHNHrpzji0gQCS6hdkEeYt9DF/2qPcEC8RM28Hwmr3sdNyht00byAut2k3gufWNtgtOEOFGUwcXWNDbdNbpgBGxEvKkOQsxivJx33iow0Vw5S6SVTrpVq11ysA2Rp7gTfPfktc6zhtXBBC+adRLshf6sG2RfHPZ5EAc4sVZ83yCN00Fk/4kggu40ZTvIEm5g24qtU4KjBrx/BTTH8ifVASAG7gKrnWxJDcU7x8X6Ecczhm3o6YicvsLXWfh3Ch1W0k8x0nXF+0fFxgt4phz8QvypiwCCFKMqXCnqXExjq10beH+UUA7+nG6mdG/Pu0f3LgFcGrl2s0kNNjpmoJ9o4B29CMO8dMT4Q5ox8uitF6fqsrJOr8qnwNbRzv6hSnG5wP+64C7h9lp30hKNtKdWjtdkbuPA19nJ7Tz3zR/ibgARbhb4AlhavcBebmTHcFl2fvYEnW0ox9xMxKBS8btJ+KiEbq9zA4RthQXDhPa0T9TEe69gWupwc6uBUphquXgf+/FrIjweHQS4/pduMe5ERUMHUd9xv8ZR98CxkS4F2n3EUrUZ10EYNw7BWm9x1GiPssi3GgiGRDKWRYZfXlON+dfNbM+GgIwYdwAAAAASUVORK5CYII=)}.leaflet-container .leaflet-control-attribution{background:#fff;background:hsla(0,0%,100%,.7);margin:0}.leaflet-control-attribution,.leaflet-control-scale-line{padding:0 5px;color:#333}.leaflet-control-attribution a{text-decoration:none}.leaflet-control-attribution a:hover{text-decoration:underline}.leaflet-container .leaflet-control-attribution,.leaflet-container .leaflet-control-scale{font-size:11px}.leaflet-left .leaflet-control-scale{margin-left:5px}.leaflet-bottom .leaflet-control-scale{margin-bottom:5px}.leaflet-control-scale-line{border:2px solid #777;border-top:none;line-height:1.1;padding:2px 5px 1px;font-size:11px;white-space:nowrap;overflow:hidden;box-sizing:border-box;background:#fff;background:hsla(0,0%,100%,.5)}.leaflet-control-scale-line:not(:first-child){border-top:2px solid #777;border-bottom:none;margin-top:-2px}.leaflet-control-scale-line:not(:first-child):not(:last-child){border-bottom:2px solid #777}.leaflet-touch .leaflet-bar,.leaflet-touch .leaflet-control-attribution,.leaflet-touch .leaflet-control-layers{box-shadow:none}.leaflet-touch .leaflet-bar,.leaflet-touch .leaflet-control-layers{border:2px solid rgba(0,0,0,.2);background-clip:padding-box}.leaflet-popup{position:absolute;text-align:center;margin-bottom:20px}.leaflet-popup-content-wrapper{padding:1px;text-align:left;border-radius:12px}.leaflet-popup-content{margin:13px 19px;line-height:1.4}.leaflet-popup-content p{margin:18px 0}.leaflet-popup-tip-container{width:40px;height:20px;position:absolute;left:50%;margin-left:-20px;overflow:hidden;pointer-events:none}.leaflet-popup-tip{width:17px;height:17px;padding:1px;margin:-10px auto 0;transform:rotate(45deg)}.leaflet-popup-content-wrapper,.leaflet-popup-tip{background:#fff;color:#333;box-shadow:0 3px 14px rgba(0,0,0,.4)}.leaflet-container a.leaflet-popup-close-button{position:absolute;top:0;right:0;padding:4px 4px 0 0;border:none;text-align:center;width:18px;height:14px;font:16px/14px Tahoma,Verdana,sans-serif;color:#c3c3c3;text-decoration:none;font-weight:700;background:transparent}.leaflet-container a.leaflet-popup-close-button:hover{color:#999}.leaflet-popup-scrolled{overflow:auto;border-bottom:1px solid #ddd;border-top:1px solid #ddd}.leaflet-oldie .leaflet-popup-content-wrapper{-ms-zoom:1}.leaflet-oldie .leaflet-popup-tip{width:24px;margin:0 auto;-ms-filter:"progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678)";filter:progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678,M12=0.70710678,M21=-0.70710678,M22=0.70710678)}.leaflet-oldie .leaflet-popup-tip-container{margin-top:-1px}.leaflet-oldie .leaflet-control-layers,.leaflet-oldie .leaflet-control-zoom,.leaflet-oldie .leaflet-popup-content-wrapper,.leaflet-oldie .leaflet-popup-tip{border:1px solid #999}.leaflet-div-icon{background:#fff;border:1px solid #666}.leaflet-tooltip{position:absolute;padding:6px;background-color:#fff;border:1px solid #fff;border-radius:3px;color:#222;white-space:nowrap;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;pointer-events:none;box-shadow:0 1px 3px rgba(0,0,0,.4)}.leaflet-tooltip.leaflet-clickable{cursor:pointer;pointer-events:auto}.leaflet-tooltip-bottom:before,.leaflet-tooltip-left:before,.leaflet-tooltip-right:before,.leaflet-tooltip-top:before{position:absolute;pointer-events:none;border:6px solid transparent;background:transparent;content:""}.leaflet-tooltip-bottom{margin-top:6px}.leaflet-tooltip-top{margin-top:-6px}.leaflet-tooltip-bottom:before,.leaflet-tooltip-top:before{left:50%;margin-left:-6px}.leaflet-tooltip-top:before{bottom:0;margin-bottom:-12px;border-top-color:#fff}.leaflet-tooltip-bottom:before{top:0;margin-top:-12px;margin-left:-6px;border-bottom-color:#fff}.leaflet-tooltip-left{margin-left:-6px}.leaflet-tooltip-right{margin-left:6px}.leaflet-tooltip-left:before,.leaflet-tooltip-right:before{top:50%;margin-top:-6px}.leaflet-tooltip-left:before{right:0;margin-right:-12px;border-left-color:#fff}.leaflet-tooltip-right:before{left:0;margin-left:-12px;border-right-color:#fff}
\ No newline at end of file
diff --git a/test/gcs/dist/favicon.ico b/test/gcs/dist/favicon.ico
new file mode 100644
index 00000000..df36fcfb
Binary files /dev/null and b/test/gcs/dist/favicon.ico differ
diff --git a/test/gcs/dist/index.html b/test/gcs/dist/index.html
new file mode 100644
index 00000000..032686e6
--- /dev/null
+++ b/test/gcs/dist/index.html
@@ -0,0 +1 @@
+
gcs
\ No newline at end of file
diff --git a/test/gcs/dist/js/app.4f7bccfe.js b/test/gcs/dist/js/app.4f7bccfe.js
new file mode 100644
index 00000000..a3a34830
--- /dev/null
+++ b/test/gcs/dist/js/app.4f7bccfe.js
@@ -0,0 +1,2 @@
+(function(t){function e(e){for(var a,s,r=e[0],c=e[1],o=e[2],l=0,m=[];l0&&void 0!==arguments[0]?arguments[0]:[],e=document.getElementById("latitude"),_=document.getElementById("longitude"),a=document.getElementById("viewSize");if(0==t.length&&(this.x=Number(e.value),this.y=Number(_.value),this.z=Number(a.value)),3==t.length){var n=Object(O["a"])(t,3);this.x=n[0],this.y=n[1],this.z=n[2],e.value=t[0].toString(),_.value=t[1].toString(),a.value=t[2].toString()}e.classList.replace(e.classList[0],isNaN(this.x)||""==e.value.trim()?"red":"green"),_.classList.replace(_.classList[0],isNaN(this.y)||""==_.value.trim()?"red":"green"),a.classList.replace(a.classList[0],isNaN(this.z)||""==a.value.trim()?"red":"green"),this.map.flyTo([this.x,this.y],this.z)}},{key:"mounted",value:function(){var t=this;this.map=f.a.map("map").setView([this.position.latitude,this.position.longitude],18),this.map.on("moveend",(function(e){var _=t.map,a=_.getCenter();t.x==a.lat&&t.y==a.lng&&t.z==_.getZoom()||(t.x=a.lat,t.y=a.lng,t.z=_.getZoom(),t.updatePosition([t.x,t.y,t.z]))}));var e=f.a.icon({iconUrl:"https://www.freeiconspng.com/uploads/helicopter-icon-11.png",iconSize:[50,40],iconAnchor:[25,20]});this.copterMarker=f.a.marker([this.position.latitude,this.position.longitude],{icon:e}),this.copterMarker.addTo(this.map),this.addMap(this.map),f.a.tileLayer("https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png",{attribution:'© OpenStreetMap contributors'}).addTo(this.map);var _="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABkAAAApCAYAAADAk4LOAAAFgUlEQVR4Aa1XA5BjWRTN2oW17d3YaZtr2962HUzbDNpjszW24mRt28p47v7zq/bXZtrp/lWnXr337j3nPCe85NcypgSFdugCpW5YoDAMRaIMqRi6aKq5E3YqDQO3qAwjVWrD8Ncq/RBpykd8oZUb/kaJutow8r1aP9II0WmLKLIsJyv1w/kqw9Ch2MYdB++12Onxee/QMwvf4/Dk/Lfp/i4nxTXtOoQ4pW5Aj7wpici1A9erdAN2OH64x8OSP9j3Ft3b7aWkTg/Fm91siTra0f9on5sQr9INejH6CUUUpavjFNq1B+Oadhxmnfa8RfEmN8VNAsQhPqF55xHkMzz3jSmChWU6f7/XZKNH+9+hBLOHYozuKQPxyMPUKkrX/K0uWnfFaJGS1QPRtZsOPtr3NsW0uyh6NNCOkU3Yz+bXbT3I8G3xE5EXLXtCXbbqwCO9zPQYPRTZ5vIDXD7U+w7rFDEoUUf7ibHIR4y6bLVPXrz8JVZEql13trxwue/uDivd3fkWRbS6/IA2bID4uk0UpF1N8qLlbBlXs4Ee7HLTfV1j54APvODnSfOWBqtKVvjgLKzF5YdEk5ewRkGlK0i33Eofffc7HT56jD7/6U+qH3Cx7SBLNntH5YIPvODnyfIXZYRVDPqgHtLs5ABHD3YzLuespb7t79FY34DjMwrVrcTuwlT55YMPvOBnRrJ4VXTdNnYug5ucHLBjEpt30701A3Ts+HEa73u6dT3FNWwflY86eMHPk+Yu+i6pzUpRrW7SNDg5JHR4KapmM5Wv2E8Tfcb1HoqqHMHU+uWDD7zg54mz5/2BSnizi9T1Dg4QQXLToGNCkb6tb1NU+QAlGr1++eADrzhn/u8Q2YZhQVlZ5+CAOtqfbhmaUCS1ezNFVm2imDbPmPng5wmz+gwh+oHDce0eUtQ6OGDIyR0uUhUsoO3vfDmmgOezH0mZN59x7MBi++WDL1g/eEiU3avlidO671bkLfwbw5XV2P8Pzo0ydy4t2/0eu33xYSOMOD8hTf4CrBtGMSoXfPLchX+J0ruSePw3LZeK0juPJbYzrhkH0io7B3k164hiGvawhOKMLkrQLyVpZg8rHFW7E2uHOL888IBPlNZ1FPzstSJM694fWr6RwpvcJK60+0HCILTBzZLFNdtAzJaohze60T8qBzyh5ZuOg5e7uwQppofEmf2++DYvmySqGBuKaicF1blQjhuHdvCIMvp8whTTfZzI7RldpwtSzL+F1+wkdZ2TBOW2gIF88PBTzD/gpeREAMEbxnJcaJHNHrpzji0gQCS6hdkEeYt9DF/2qPcEC8RM28Hwmr3sdNyht00byAut2k3gufWNtgtOEOFGUwcXWNDbdNbpgBGxEvKkOQsxivJx33iow0Vw5S6SVTrpVq11ysA2Rp7gTfPfktc6zhtXBBC+adRLshf6sG2RfHPZ5EAc4sVZ83yCN00Fk/4kggu40ZTvIEm5g24qtU4KjBrx/BTTH8ifVASAG7gKrnWxJDcU7x8X6Ecczhm3o6YicvsLXWfh3Ch1W0k8x0nXF+0fFxgt4phz8QvypiwCCFKMqXCnqXExjq10beH+UUA7+nG6mdG/Pu0f3LgFcGrl2s0kNNjpmoJ9o4B29CMO8dMT4Q5ox8uitF6fqsrJOr8qnwNbRzv6hSnG5wP+64C7h9lp30hKNtKdWjtdkbuPA19nJ7Tz3zR/ibgARbhb4AlhavcBebmTHcFl2fvYEnW0ox9xMxKBS8btJ+KiEbq9zA4RthQXDhPa0T9TEe69gWupwc6uBUphquXgf+/FrIjweHQS4/pduMe5ERUMHUd9xv8ZR98CxkS4F2n3EUrUZ10EYNw7BWm9x1GiPssi3GgiGRDKWRYZfXlON+dfNbM+GgIwYdwAAAAASUVORK5CYII=",a="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACkAAAApCAQAAAACach9AAACMUlEQVR4Ae3ShY7jQBAE0Aoz/f9/HTMzhg1zrdKUrJbdx+Kd2nD8VNudfsL/Th///dyQN2TH6f3y/BGpC379rV+S+qqetBOxImNQXL8JCAr2V4iMQXHGNJxeCfZXhSRBcQMfvkOWUdtfzlLgAENmZDcmo2TVmt8OSM2eXxBp3DjHSMFutqS7SbmemzBiR+xpKCNUIRkdkkYxhAkyGoBvyQFEJEefwSmmvBfJuJ6aKqKWnAkvGZOaZXTUgFqYULWNSHUckZuR1HIIimUExutRxwzOLROIG4vKmCKQt364mIlhSyzAf1m9lHZHJZrlAOMMztRRiKimp/rpdJDc9Awry5xTZCte7FHtuS8wJgeYGrex28xNTd086Dik7vUMscQOa8y4DoGtCCSkAKlNwpgNtphjrC6MIHUkR6YWxxs6Sc5xqn222mmCRFzIt8lEdKx+ikCtg91qS2WpwVfBelJCiQJwvzixfI9cxZQWgiSJelKnwBElKYtDOb2MFbhmUigbReQBV0Cg4+qMXSxXSyGUn4UbF8l+7qdSGnTC0XLCmahIgUHLhLOhpVCtw4CzYXvLQWQbJNmxoCsOKAxSgBJno75avolkRw8iIAFcsdc02e9iyCd8tHwmeSSoKTowIgvscSGZUOA7PuCN5b2BX9mQM7S0wYhMNU74zgsPBj3HU7wguAfnxxjFQGBE6pwN+GjME9zHY7zGp8wVxMShYX9NXvEWD3HbwJf4giO4CFIQxXScH1/TM+04kkBiAAAAAElFTkSuQmCC";f.a.Icon.prototype._createImg=function(t,e){return e=e||document.createElement("img"),t.includes("marker-icon.png")&&(t=_),t.includes("marker-shadow.png")&&(t=a),e.src=t,e},this.x=this.position.latitude,this.y=this.position.longitude,this.z=18;var n=document.getElementById("latitude"),i=document.getElementById("longitude"),s=document.getElementById("viewSize");n.setAttribute("value",this.x.toString()),i.setAttribute("value",this.y.toString()),s.setAttribute("value",this.z.toString())}}]),_}(l["c"]));Object(u["a"])([Object(l["b"])()],p.prototype,"position",void 0),Object(u["a"])([Object(l["b"])()],p.prototype,"addMap",void 0),p=Object(u["a"])([l["a"]],p);var d=p,g=d,E=(_("549a"),_("2877")),T=Object(E["a"])(g,m,A,!1,null,"f2808c1a",null),h=T.exports,b=(_("99af"),function(){function t(e,_,a){Object(s["a"])(this,t),this.latitude=e,this.longitude=_,this.altitude=a}return Object(r["a"])(t,[{key:"toString",value:function(){return"{ ".concat(this.latitude,"; ").concat(this.longitude,"; ").concat(this.altitude," }")}}]),t}()),v=function(){var t=this,e=t.$createElement,_=t._self._c||e;return _("div",{staticClass:"waypoint"},[_("input",{directives:[{name:"model",rawName:"v-model",value:t.waypoint.position.latitude,expression:"waypoint.position.latitude"}],attrs:{type:"text",placeholder:"latitude",id:"Waypoint"+t.waypoint.id+"_latitude"},domProps:{value:t.waypoint.position.latitude},on:{keypress:function(e){return t.checkCharacter(e)},keyup:function(e){return t.checkWaypoint()},input:function(e){e.target.composing||t.$set(t.waypoint.position,"latitude",e.target.value)}}}),_("input",{directives:[{name:"model",rawName:"v-model",value:t.waypoint.position.longitude,expression:"waypoint.position.longitude"}],attrs:{type:"text",placeholder:"longitude",id:"Waypoint"+t.waypoint.id+"_longitude"},domProps:{value:t.waypoint.position.longitude},on:{keypress:function(e){return t.checkCharacter(e)},keyup:function(e){return t.checkWaypoint()},input:function(e){e.target.composing||t.$set(t.waypoint.position,"longitude",e.target.value)}}}),_("input",{directives:[{name:"model",rawName:"v-model",value:t.waypoint.position.altitude,expression:"waypoint.position.altitude"}],attrs:{type:"text",placeholder:"altitude",id:"Waypoint"+t.waypoint.id+"_altitude"},domProps:{value:t.waypoint.position.altitude},on:{keypress:function(e){return t.checkCharacter(e)},keyup:function(e){return t.checkWaypoint()},input:function(e){e.target.composing||t.$set(t.waypoint.position,"altitude",e.target.value)}}}),_("input",{directives:[{name:"model",rawName:"v-model",value:t.waypoint.yaw,expression:"waypoint.yaw"}],attrs:{type:"text",placeholder:"yaw",id:"Waypoint"+t.waypoint.id+"_yaw"},domProps:{value:t.waypoint.yaw},on:{keypress:function(e){return t.checkCharacter(e)},keyup:function(e){return t.checkWaypoint()},input:function(e){e.target.composing||t.$set(t.waypoint,"yaw",e.target.value)}}}),_("input",{directives:[{name:"model",rawName:"v-model",value:t.waypoint.hold,expression:"waypoint.hold"}],attrs:{type:"text",placeholder:"hold",id:"Waypoint"+t.waypoint.id+"_hold"},domProps:{value:t.waypoint.hold},on:{keypress:function(e){return t.checkCharacter(e)},keyup:function(e){return t.checkWaypoint()},input:function(e){e.target.composing||t.$set(t.waypoint,"hold",e.target.value)}}}),_("input",{directives:[{name:"model",rawName:"v-model",value:t.waypoint.acceptRadius,expression:"waypoint.acceptRadius"}],attrs:{type:"text",placeholder:"accept radius",id:"Waypoint"+t.waypoint.id+"_acceptRadius"},domProps:{value:t.waypoint.acceptRadius},on:{keypress:function(e){return t.checkCharacter(e)},keyup:function(e){return t.checkWaypoint()},input:function(e){e.target.composing||t.$set(t.waypoint,"acceptRadius",e.target.value)}}}),_("input",{directives:[{name:"model",rawName:"v-model",value:t.waypoint.passRadius,expression:"waypoint.passRadius"}],attrs:{type:"text",placeholder:"pass radius",id:"Waypoint"+t.waypoint.id+"_passRadius"},domProps:{value:t.waypoint.passRadius},on:{keypress:function(e){return t.checkCharacter(e)},keyup:function(e){return t.checkWaypoint()},input:function(e){e.target.composing||t.$set(t.waypoint,"passRadius",e.target.value)}}}),t.hasUpperNeighbor()?_("div",{staticClass:"arrow up",on:{click:t.moveWaypointUp}}):t._e(),t.hasLowerNeighbor()?_("div",{staticClass:"arrow down",on:{click:t.moveWaypointDown}}):t._e(),_("button",{staticClass:"buttonWaypoint buttonRed buttonRemoveWaypoint",on:{click:t.removeComponent}},[t._v("Remove")])])},y=[],V=(_("4de4"),_("159b"),function(){function t(e){Object(s["a"])(this,t),this.position=e,this.id=t.getId(),this.hold=t.defaultOptions.hold,this.yaw=t.defaultOptions.yaw,this.acceptRadius=t.defaultOptions.acceptRadius,this.passRadius=t.defaultOptions.passRadius}return Object(r["a"])(t,[{key:"toString",value:function(){return"Waypoint: ".concat(this.position)}},{key:"isCorrect",value:function(){return 0==this.errorValues().length}},{key:"errorValues",value:function(){var e=[this.hold,this.acceptRadius,this.passRadius,this.yaw,this.position.latitude,this.position.longitude,this.position.altitude],_=[];return e.map((function(t,e){return{number:t,index:e}})).filter((function(t){return isNaN(t.number)})).forEach((function(t){_.push(t.index+1)})),(!_.includes(t.OPTIONS.latitude)&&e[t.OPTIONS.latitude-1]<-90||e[t.OPTIONS.latitude-1]>90)&&(_.push(t.OPTIONS.latitude),console.log(e[t.OPTIONS.latitude-1])),(!_.includes(t.OPTIONS.longitude)&&e[t.OPTIONS.longitude-1]<-180||e[t.OPTIONS.longitude-1]>180)&&_.push(t.OPTIONS.longitude),!_.includes(t.OPTIONS.hold)&&e[t.OPTIONS.hold-1]<0&&_.push(t.OPTIONS.hold),!_.includes(t.OPTIONS.acceptRadius)&&e[t.OPTIONS.acceptRadius-1]<0&&_.push(t.OPTIONS.acceptRadius),_}},{key:"toURI",value:function(){return"\n\t\t\tlat=".concat(encodeURIComponent(this.position.latitude),"&\n\t\t\tlon=").concat(encodeURIComponent(this.position.longitude),"&\n\t\t\talt=").concat(encodeURIComponent(this.position.altitude),"&\n\t\t\tid=").concat(encodeURIComponent(this.id),"&\n\t\t\thold=").concat(encodeURIComponent(this.hold),"&\n\t\t\tar=").concat(encodeURIComponent(this.acceptRadius),"&\n\t\t\tpr=").concat(encodeURIComponent(this.passRadius),"&\n\t\t\tyaw=").concat(encodeURIComponent(this.yaw),"\n\t\t")}}],[{key:"getId",value:function(){return t.curId++}}]),t}());V.OPTIONS={hold:1,acceptRadius:2,passRadius:3,yaw:4,latitude:5,longitude:6,altitude:7},V.defaultOptions={hold:0,yaw:0,acceptRadius:0,passRadius:0},V.curId=0;var j=function(t){Object(c["a"])(_,t);var e=Object(o["a"])(_);function _(){var t;return Object(s["a"])(this,_),t=e.apply(this,arguments),t.missionPlanner=t.$parent,t}return Object(r["a"])(_,[{key:"removeComponent",value:function(){this.removeWaypoint(),this.removeMarker(this.marker)}},{key:"hasUpperNeighbor",value:function(){return 0!=this.missionPlanner.getWaypointIndex(this.waypoint.id)}},{key:"hasLowerNeighbor",value:function(){return this.missionPlanner.getWaypointIndex(this.waypoint.id)!=this.missionPlanner.size-1}},{key:"checkWaypoint",value:function(){var t=this.waypoint.errorValues();0==t.length&&(this.updateMarker(),this.updateWaypoints());var e=[document.getElementById("Waypoint".concat(this.waypoint.id,"_latitude")),document.getElementById("Waypoint".concat(this.waypoint.id,"_longitude")),document.getElementById("Waypoint".concat(this.waypoint.id,"_altitude")),document.getElementById("Waypoint".concat(this.waypoint.id,"_yaw")),document.getElementById("Waypoint".concat(this.waypoint.id,"_hold")),document.getElementById("Waypoint".concat(this.waypoint.id,"_acceptRadius")),document.getElementById("Waypoint".concat(this.waypoint.id,"_passRadius"))];if(0!=e.filter((function(t){return null==t})).length)throw Error("Waypoint not found");var _=[t.includes(V.OPTIONS.latitude),t.includes(V.OPTIONS.longitude),t.includes(V.OPTIONS.altitude),t.includes(V.OPTIONS.yaw),t.includes(V.OPTIONS.hold),t.includes(V.OPTIONS.acceptRadius),t.includes(V.OPTIONS.passRadius)];_.forEach((function(t,_){var a,n;t?null===(a=e[_])||void 0===a||a.classList.add("inputTextNaN"):null===(n=e[_])||void 0===n||n.classList.remove("inputTextNaN")}))}},{key:"checkCharacter",value:function(t){if(t=t||window.event,t){var e=t,_=e.which?e.which:e.keyCode;45!=_&&_>31&&(_<48||_>57)&&46!==_&&e.preventDefault()}}},{key:"updateMarker",value:function(){this.marker.setLatLng(new f.a.LatLng(this.waypoint.position.latitude,this.waypoint.position.longitude,this.waypoint.position.altitude))}}]),_}(l["c"]);Object(u["a"])([Object(l["b"])()],j.prototype,"waypoint",void 0),Object(u["a"])([Object(l["b"])()],j.prototype,"removeWaypoint",void 0),Object(u["a"])([Object(l["b"])()],j.prototype,"moveWaypointUp",void 0),Object(u["a"])([Object(l["b"])()],j.prototype,"moveWaypointDown",void 0),Object(u["a"])([Object(l["b"])()],j.prototype,"marker",void 0),Object(u["a"])([Object(l["b"])()],j.prototype,"removeMarker",void 0),Object(u["a"])([Object(l["b"])()],j.prototype,"updateWaypoints",void 0),j=Object(u["a"])([l["a"]],j);var I=j,R=I,C=(_("908c"),Object(E["a"])(R,v,y,!1,null,"23a9cc93",null)),N=C.exports,D=function(){var t=this,e=t.$createElement,_=t._self._c||e;return _("ul",{staticClass:"menu"},[_("li",{attrs:{id:"mapButton"},on:{click:function(e){return t.select(0)}}},[t._v("Map")]),_("li",{attrs:{id:"cameraButton"},on:{click:function(e){return t.select(1)}}},[t._v("Camera")])])},L=[],S=_("2909"),P=function(t){Object(c["a"])(_,t);var e=Object(o["a"])(_);function _(){var t;return Object(s["a"])(this,_),t=e.apply(this,arguments),t.activeWindow=0,t}return Object(r["a"])(_,[{key:"mounted",value:function(){this.select(this.activeWindow)}},{key:"select",value:function(t){if(t<0)throw Error("Menu option is ".concat(t," < 0"));if(t>=this.windows.length)throw Error("Menu option is ".concat(t," >= numberOfMenuOptions"));this.activeWindow=t,this.changeActiveWindow(t),this.windows.forEach((function(e,_){var a,n=document.getElementById("".concat(e,"Button"));if(void 0==n)throw Error('Error: No menu element "'.concat(e,'" found'));(a=n.classList).remove.apply(a,Object(S["a"])(n.classList)),n.classList.add(_==t?"selected":"notSelected"),n.classList.add("noselect")}))}}]),_}(l["c"]);Object(u["a"])([Object(l["b"])()],P.prototype,"changeActiveWindow",void 0),Object(u["a"])([Object(l["b"])()],P.prototype,"windows",void 0),P=Object(u["a"])([l["a"]],P);var x,k,w,U=P,G=U,Y=(_("30dd"),Object(E["a"])(G,D,L,!1,null,"3ceb6146",null)),F=Y.exports,z=function(){var t=this,e=t.$createElement,_=t._self._c||e;return _("div",{attrs:{id:"waypoints"}},[_("div",{staticClass:"waypoint"},[_("label",[t._v("Latitude")]),_("label",[t._v("Longitude")]),_("label",[t._v("Altitude")]),_("label",[t._v("Yaw")]),_("label",[t._v("Hold")]),_("label",[t._v("Accept radius")]),_("label",[t._v("Pass radius")]),_("button",{staticClass:"buttonWaypoint buttonGreen",attrs:{id:"buttonAddWaypoint"},on:{click:function(e){return t.addWaypoint()}}},[t._v("Add a waypoint")])]),t._l(t.waypoints,(function(e){return _("WaypointComponent",{key:"Waypoint"+e.id,attrs:{waypoint:e,removeWaypoint:function(_){t.removeWaypoint(e.id)},moveWaypointUp:function(_){t.moveWaypointUp(e.id)},moveWaypointDown:function(_){t.moveWaypointDown(e.id)},marker:t.getMarker(e.id),updateWaypoints:t.updateWaypoints,removeMarker:t.removeMarker}})}))],2)},W=[],B=(_("a434"),_("6061")),H=_("1a7c"),q=function(t){Object(c["a"])(_,t);var e=Object(o["a"])(_);function _(){var t;return Object(s["a"])(this,_),t=e.apply(this,arguments),t._message_id=39,t._message_name="MISSION_ITEM",t._crc_extra=254,t._message_fields=[["param1","float",!1],["param2","float",!1],["param3","float",!1],["param4","float",!1],["x","float",!1],["y","float",!1],["z","float",!1],["seq","uint16_t",!1],["command","uint16_t",!1],["target_system","uint8_t",!1],["target_component","uint8_t",!1],["frame","uint8_t",!1],["current","uint8_t",!1],["autocontinue","uint8_t",!1],["mission_type","uint8_t",!0]],t}return _}(H["MAVLinkMessage"]),Q=function(t){Object(c["a"])(_,t);var e=Object(o["a"])(_);function _(){var t;return Object(s["a"])(this,_),t=e.apply(this,arguments),t._message_id=45,t._message_name="MISSION_CLEAR_ALL",t._crc_extra=232,t._message_fields=[["target_system","uint8_t",!1],["target_component","uint8_t",!1],["mission_type","uint8_t",!0]],t}return _}(H["MAVLinkMessage"]);(function(t){t[t["MAV_FRAME_GLOBAL"]=0]="MAV_FRAME_GLOBAL",t[t["MAV_FRAME_LOCAL_NED"]=1]="MAV_FRAME_LOCAL_NED",t[t["MAV_FRAME_MISSION"]=2]="MAV_FRAME_MISSION",t[t["MAV_FRAME_GLOBAL_RELATIVE_ALT"]=3]="MAV_FRAME_GLOBAL_RELATIVE_ALT",t[t["MAV_FRAME_LOCAL_ENU"]=4]="MAV_FRAME_LOCAL_ENU",t[t["MAV_FRAME_GLOBAL_INT"]=5]="MAV_FRAME_GLOBAL_INT",t[t["MAV_FRAME_GLOBAL_RELATIVE_ALT_INT"]=6]="MAV_FRAME_GLOBAL_RELATIVE_ALT_INT",t[t["MAV_FRAME_LOCAL_OFFSET_NED"]=7]="MAV_FRAME_LOCAL_OFFSET_NED",t[t["MAV_FRAME_BODY_NED"]=8]="MAV_FRAME_BODY_NED",t[t["MAV_FRAME_BODY_OFFSET_NED"]=9]="MAV_FRAME_BODY_OFFSET_NED",t[t["MAV_FRAME_GLOBAL_TERRAIN_ALT"]=10]="MAV_FRAME_GLOBAL_TERRAIN_ALT",t[t["MAV_FRAME_GLOBAL_TERRAIN_ALT_INT"]=11]="MAV_FRAME_GLOBAL_TERRAIN_ALT_INT",t[t["MAV_FRAME_BODY_FRD"]=12]="MAV_FRAME_BODY_FRD",t[t["MAV_FRAME_RESERVED_13"]=13]="MAV_FRAME_RESERVED_13",t[t["MAV_FRAME_RESERVED_14"]=14]="MAV_FRAME_RESERVED_14",t[t["MAV_FRAME_RESERVED_15"]=15]="MAV_FRAME_RESERVED_15",t[t["MAV_FRAME_RESERVED_16"]=16]="MAV_FRAME_RESERVED_16",t[t["MAV_FRAME_RESERVED_17"]=17]="MAV_FRAME_RESERVED_17",t[t["MAV_FRAME_RESERVED_18"]=18]="MAV_FRAME_RESERVED_18",t[t["MAV_FRAME_RESERVED_19"]=19]="MAV_FRAME_RESERVED_19",t[t["MAV_FRAME_LOCAL_FRD"]=20]="MAV_FRAME_LOCAL_FRD",t[t["MAV_FRAME_LOCAL_FLU"]=21]="MAV_FRAME_LOCAL_FLU",t[t["MAV_FRAME_ENUM_END"]=22]="MAV_FRAME_ENUM_END"})(x||(x={})),function(t){t[t["MAV_CMD_NAV_WAYPOINT"]=16]="MAV_CMD_NAV_WAYPOINT",t[t["MAV_CMD_NAV_LOITER_UNLIM"]=17]="MAV_CMD_NAV_LOITER_UNLIM",t[t["MAV_CMD_NAV_LOITER_TURNS"]=18]="MAV_CMD_NAV_LOITER_TURNS",t[t["MAV_CMD_NAV_LOITER_TIME"]=19]="MAV_CMD_NAV_LOITER_TIME",t[t["MAV_CMD_NAV_RETURN_TO_LAUNCH"]=20]="MAV_CMD_NAV_RETURN_TO_LAUNCH",t[t["MAV_CMD_NAV_LAND"]=21]="MAV_CMD_NAV_LAND",t[t["MAV_CMD_NAV_TAKEOFF"]=22]="MAV_CMD_NAV_TAKEOFF",t[t["MAV_CMD_NAV_LAND_LOCAL"]=23]="MAV_CMD_NAV_LAND_LOCAL",t[t["MAV_CMD_NAV_TAKEOFF_LOCAL"]=24]="MAV_CMD_NAV_TAKEOFF_LOCAL",t[t["MAV_CMD_NAV_FOLLOW"]=25]="MAV_CMD_NAV_FOLLOW",t[t["MAV_CMD_NAV_CONTINUE_AND_CHANGE_ALT"]=30]="MAV_CMD_NAV_CONTINUE_AND_CHANGE_ALT",t[t["MAV_CMD_NAV_LOITER_TO_ALT"]=31]="MAV_CMD_NAV_LOITER_TO_ALT",t[t["MAV_CMD_DO_FOLLOW"]=32]="MAV_CMD_DO_FOLLOW",t[t["MAV_CMD_DO_FOLLOW_REPOSITION"]=33]="MAV_CMD_DO_FOLLOW_REPOSITION",t[t["MAV_CMD_DO_ORBIT"]=34]="MAV_CMD_DO_ORBIT",t[t["MAV_CMD_NAV_ROI"]=80]="MAV_CMD_NAV_ROI",t[t["MAV_CMD_NAV_PATHPLANNING"]=81]="MAV_CMD_NAV_PATHPLANNING",t[t["MAV_CMD_NAV_SPLINE_WAYPOINT"]=82]="MAV_CMD_NAV_SPLINE_WAYPOINT",t[t["MAV_CMD_NAV_VTOL_TAKEOFF"]=84]="MAV_CMD_NAV_VTOL_TAKEOFF",t[t["MAV_CMD_NAV_VTOL_LAND"]=85]="MAV_CMD_NAV_VTOL_LAND",t[t["MAV_CMD_NAV_GUIDED_ENABLE"]=92]="MAV_CMD_NAV_GUIDED_ENABLE",t[t["MAV_CMD_NAV_DELAY"]=93]="MAV_CMD_NAV_DELAY",t[t["MAV_CMD_NAV_PAYLOAD_PLACE"]=94]="MAV_CMD_NAV_PAYLOAD_PLACE",t[t["MAV_CMD_NAV_LAST"]=95]="MAV_CMD_NAV_LAST",t[t["MAV_CMD_CONDITION_DELAY"]=112]="MAV_CMD_CONDITION_DELAY",t[t["MAV_CMD_CONDITION_CHANGE_ALT"]=113]="MAV_CMD_CONDITION_CHANGE_ALT",t[t["MAV_CMD_CONDITION_DISTANCE"]=114]="MAV_CMD_CONDITION_DISTANCE",t[t["MAV_CMD_CONDITION_YAW"]=115]="MAV_CMD_CONDITION_YAW",t[t["MAV_CMD_CONDITION_LAST"]=159]="MAV_CMD_CONDITION_LAST",t[t["MAV_CMD_DO_SET_MODE"]=176]="MAV_CMD_DO_SET_MODE",t[t["MAV_CMD_DO_JUMP"]=177]="MAV_CMD_DO_JUMP",t[t["MAV_CMD_DO_CHANGE_SPEED"]=178]="MAV_CMD_DO_CHANGE_SPEED",t[t["MAV_CMD_DO_SET_HOME"]=179]="MAV_CMD_DO_SET_HOME",t[t["MAV_CMD_DO_SET_PARAMETER"]=180]="MAV_CMD_DO_SET_PARAMETER",t[t["MAV_CMD_DO_SET_RELAY"]=181]="MAV_CMD_DO_SET_RELAY",t[t["MAV_CMD_DO_REPEAT_RELAY"]=182]="MAV_CMD_DO_REPEAT_RELAY",t[t["MAV_CMD_DO_SET_SERVO"]=183]="MAV_CMD_DO_SET_SERVO",t[t["MAV_CMD_DO_REPEAT_SERVO"]=184]="MAV_CMD_DO_REPEAT_SERVO",t[t["MAV_CMD_DO_FLIGHTTERMINATION"]=185]="MAV_CMD_DO_FLIGHTTERMINATION",t[t["MAV_CMD_DO_CHANGE_ALTITUDE"]=186]="MAV_CMD_DO_CHANGE_ALTITUDE",t[t["MAV_CMD_DO_SET_ACTUATOR"]=187]="MAV_CMD_DO_SET_ACTUATOR",t[t["MAV_CMD_DO_LAND_START"]=189]="MAV_CMD_DO_LAND_START",t[t["MAV_CMD_DO_RALLY_LAND"]=190]="MAV_CMD_DO_RALLY_LAND",t[t["MAV_CMD_DO_GO_AROUND"]=191]="MAV_CMD_DO_GO_AROUND",t[t["MAV_CMD_DO_REPOSITION"]=192]="MAV_CMD_DO_REPOSITION",t[t["MAV_CMD_DO_PAUSE_CONTINUE"]=193]="MAV_CMD_DO_PAUSE_CONTINUE",t[t["MAV_CMD_DO_SET_REVERSE"]=194]="MAV_CMD_DO_SET_REVERSE",t[t["MAV_CMD_DO_SET_ROI_LOCATION"]=195]="MAV_CMD_DO_SET_ROI_LOCATION",t[t["MAV_CMD_DO_SET_ROI_WPNEXT_OFFSET"]=196]="MAV_CMD_DO_SET_ROI_WPNEXT_OFFSET",t[t["MAV_CMD_DO_SET_ROI_NONE"]=197]="MAV_CMD_DO_SET_ROI_NONE",t[t["MAV_CMD_DO_SET_ROI_SYSID"]=198]="MAV_CMD_DO_SET_ROI_SYSID",t[t["MAV_CMD_DO_SPRAYER"]=199]="MAV_CMD_DO_SPRAYER",t[t["MAV_CMD_DO_CONTROL_VIDEO"]=200]="MAV_CMD_DO_CONTROL_VIDEO",t[t["MAV_CMD_DO_SET_ROI"]=201]="MAV_CMD_DO_SET_ROI",t[t["MAV_CMD_DO_DIGICAM_CONFIGURE"]=202]="MAV_CMD_DO_DIGICAM_CONFIGURE",t[t["MAV_CMD_DO_DIGICAM_CONTROL"]=203]="MAV_CMD_DO_DIGICAM_CONTROL",t[t["MAV_CMD_DO_MOUNT_CONFIGURE"]=204]="MAV_CMD_DO_MOUNT_CONFIGURE",t[t["MAV_CMD_DO_MOUNT_CONTROL"]=205]="MAV_CMD_DO_MOUNT_CONTROL",t[t["MAV_CMD_DO_SET_CAM_TRIGG_DIST"]=206]="MAV_CMD_DO_SET_CAM_TRIGG_DIST",t[t["MAV_CMD_DO_FENCE_ENABLE"]=207]="MAV_CMD_DO_FENCE_ENABLE",t[t["MAV_CMD_DO_PARACHUTE"]=208]="MAV_CMD_DO_PARACHUTE",t[t["MAV_CMD_DO_MOTOR_TEST"]=209]="MAV_CMD_DO_MOTOR_TEST",t[t["MAV_CMD_DO_INVERTED_FLIGHT"]=210]="MAV_CMD_DO_INVERTED_FLIGHT",t[t["MAV_CMD_DO_GRIPPER"]=211]="MAV_CMD_DO_GRIPPER",t[t["MAV_CMD_DO_AUTOTUNE_ENABLE"]=212]="MAV_CMD_DO_AUTOTUNE_ENABLE",t[t["MAV_CMD_NAV_SET_YAW_SPEED"]=213]="MAV_CMD_NAV_SET_YAW_SPEED",t[t["MAV_CMD_DO_SET_CAM_TRIGG_INTERVAL"]=214]="MAV_CMD_DO_SET_CAM_TRIGG_INTERVAL",t[t["MAV_CMD_DO_MOUNT_CONTROL_QUAT"]=220]="MAV_CMD_DO_MOUNT_CONTROL_QUAT",t[t["MAV_CMD_DO_GUIDED_MASTER"]=221]="MAV_CMD_DO_GUIDED_MASTER",t[t["MAV_CMD_DO_GUIDED_LIMITS"]=222]="MAV_CMD_DO_GUIDED_LIMITS",t[t["MAV_CMD_DO_ENGINE_CONTROL"]=223]="MAV_CMD_DO_ENGINE_CONTROL",t[t["MAV_CMD_DO_SET_MISSION_CURRENT"]=224]="MAV_CMD_DO_SET_MISSION_CURRENT",t[t["MAV_CMD_DO_LAST"]=240]="MAV_CMD_DO_LAST",t[t["MAV_CMD_PREFLIGHT_CALIBRATION"]=241]="MAV_CMD_PREFLIGHT_CALIBRATION",t[t["MAV_CMD_PREFLIGHT_SET_SENSOR_OFFSETS"]=242]="MAV_CMD_PREFLIGHT_SET_SENSOR_OFFSETS",t[t["MAV_CMD_PREFLIGHT_UAVCAN"]=243]="MAV_CMD_PREFLIGHT_UAVCAN",t[t["MAV_CMD_PREFLIGHT_STORAGE"]=245]="MAV_CMD_PREFLIGHT_STORAGE",t[t["MAV_CMD_PREFLIGHT_REBOOT_SHUTDOWN"]=246]="MAV_CMD_PREFLIGHT_REBOOT_SHUTDOWN",t[t["MAV_CMD_DO_UPGRADE"]=247]="MAV_CMD_DO_UPGRADE",t[t["MAV_CMD_OVERRIDE_GOTO"]=252]="MAV_CMD_OVERRIDE_GOTO",t[t["MAV_CMD_OBLIQUE_SURVEY"]=260]="MAV_CMD_OBLIQUE_SURVEY",t[t["MAV_CMD_MISSION_START"]=300]="MAV_CMD_MISSION_START",t[t["MAV_CMD_COMPONENT_ARM_DISARM"]=400]="MAV_CMD_COMPONENT_ARM_DISARM",t[t["MAV_CMD_ILLUMINATOR_ON_OFF"]=405]="MAV_CMD_ILLUMINATOR_ON_OFF",t[t["MAV_CMD_GET_HOME_POSITION"]=410]="MAV_CMD_GET_HOME_POSITION",t[t["MAV_CMD_INJECT_FAILURE"]=420]="MAV_CMD_INJECT_FAILURE",t[t["MAV_CMD_START_RX_PAIR"]=500]="MAV_CMD_START_RX_PAIR",t[t["MAV_CMD_GET_MESSAGE_INTERVAL"]=510]="MAV_CMD_GET_MESSAGE_INTERVAL",t[t["MAV_CMD_SET_MESSAGE_INTERVAL"]=511]="MAV_CMD_SET_MESSAGE_INTERVAL",t[t["MAV_CMD_REQUEST_MESSAGE"]=512]="MAV_CMD_REQUEST_MESSAGE",t[t["MAV_CMD_REQUEST_PROTOCOL_VERSION"]=519]="MAV_CMD_REQUEST_PROTOCOL_VERSION",t[t["MAV_CMD_REQUEST_AUTOPILOT_CAPABILITIES"]=520]="MAV_CMD_REQUEST_AUTOPILOT_CAPABILITIES",t[t["MAV_CMD_REQUEST_CAMERA_INFORMATION"]=521]="MAV_CMD_REQUEST_CAMERA_INFORMATION",t[t["MAV_CMD_REQUEST_CAMERA_SETTINGS"]=522]="MAV_CMD_REQUEST_CAMERA_SETTINGS",t[t["MAV_CMD_REQUEST_STORAGE_INFORMATION"]=525]="MAV_CMD_REQUEST_STORAGE_INFORMATION",t[t["MAV_CMD_STORAGE_FORMAT"]=526]="MAV_CMD_STORAGE_FORMAT",t[t["MAV_CMD_REQUEST_CAMERA_CAPTURE_STATUS"]=527]="MAV_CMD_REQUEST_CAMERA_CAPTURE_STATUS",t[t["MAV_CMD_REQUEST_FLIGHT_INFORMATION"]=528]="MAV_CMD_REQUEST_FLIGHT_INFORMATION",t[t["MAV_CMD_RESET_CAMERA_SETTINGS"]=529]="MAV_CMD_RESET_CAMERA_SETTINGS",t[t["MAV_CMD_SET_CAMERA_MODE"]=530]="MAV_CMD_SET_CAMERA_MODE",t[t["MAV_CMD_SET_CAMERA_ZOOM"]=531]="MAV_CMD_SET_CAMERA_ZOOM",t[t["MAV_CMD_SET_CAMERA_FOCUS"]=532]="MAV_CMD_SET_CAMERA_FOCUS",t[t["MAV_CMD_JUMP_TAG"]=600]="MAV_CMD_JUMP_TAG",t[t["MAV_CMD_DO_JUMP_TAG"]=601]="MAV_CMD_DO_JUMP_TAG",t[t["MAV_CMD_PARAM_TRANSACTION"]=900]="MAV_CMD_PARAM_TRANSACTION",t[t["MAV_CMD_DO_GIMBAL_MANAGER_PITCHYAW"]=1e3]="MAV_CMD_DO_GIMBAL_MANAGER_PITCHYAW",t[t["MAV_CMD_DO_GIMBAL_MANAGER_CONFIGURE"]=1001]="MAV_CMD_DO_GIMBAL_MANAGER_CONFIGURE",t[t["MAV_CMD_IMAGE_START_CAPTURE"]=2e3]="MAV_CMD_IMAGE_START_CAPTURE",t[t["MAV_CMD_IMAGE_STOP_CAPTURE"]=2001]="MAV_CMD_IMAGE_STOP_CAPTURE",t[t["MAV_CMD_REQUEST_CAMERA_IMAGE_CAPTURE"]=2002]="MAV_CMD_REQUEST_CAMERA_IMAGE_CAPTURE",t[t["MAV_CMD_DO_TRIGGER_CONTROL"]=2003]="MAV_CMD_DO_TRIGGER_CONTROL",t[t["MAV_CMD_CAMERA_TRACK_POINT"]=2004]="MAV_CMD_CAMERA_TRACK_POINT",t[t["MAV_CMD_CAMERA_TRACK_RECTANGLE"]=2005]="MAV_CMD_CAMERA_TRACK_RECTANGLE",t[t["MAV_CMD_CAMERA_STOP_TRACKING"]=2010]="MAV_CMD_CAMERA_STOP_TRACKING",t[t["MAV_CMD_VIDEO_START_CAPTURE"]=2500]="MAV_CMD_VIDEO_START_CAPTURE",t[t["MAV_CMD_VIDEO_STOP_CAPTURE"]=2501]="MAV_CMD_VIDEO_STOP_CAPTURE",t[t["MAV_CMD_VIDEO_START_STREAMING"]=2502]="MAV_CMD_VIDEO_START_STREAMING",t[t["MAV_CMD_VIDEO_STOP_STREAMING"]=2503]="MAV_CMD_VIDEO_STOP_STREAMING",t[t["MAV_CMD_REQUEST_VIDEO_STREAM_INFORMATION"]=2504]="MAV_CMD_REQUEST_VIDEO_STREAM_INFORMATION",t[t["MAV_CMD_REQUEST_VIDEO_STREAM_STATUS"]=2505]="MAV_CMD_REQUEST_VIDEO_STREAM_STATUS",t[t["MAV_CMD_LOGGING_START"]=2510]="MAV_CMD_LOGGING_START",t[t["MAV_CMD_LOGGING_STOP"]=2511]="MAV_CMD_LOGGING_STOP",t[t["MAV_CMD_AIRFRAME_CONFIGURATION"]=2520]="MAV_CMD_AIRFRAME_CONFIGURATION",t[t["MAV_CMD_CONTROL_HIGH_LATENCY"]=2600]="MAV_CMD_CONTROL_HIGH_LATENCY",t[t["MAV_CMD_PANORAMA_CREATE"]=2800]="MAV_CMD_PANORAMA_CREATE",t[t["MAV_CMD_DO_VTOL_TRANSITION"]=3e3]="MAV_CMD_DO_VTOL_TRANSITION",t[t["MAV_CMD_ARM_AUTHORIZATION_REQUEST"]=3001]="MAV_CMD_ARM_AUTHORIZATION_REQUEST",t[t["MAV_CMD_SET_GUIDED_SUBMODE_STANDARD"]=4e3]="MAV_CMD_SET_GUIDED_SUBMODE_STANDARD",t[t["MAV_CMD_SET_GUIDED_SUBMODE_CIRCLE"]=4001]="MAV_CMD_SET_GUIDED_SUBMODE_CIRCLE",t[t["MAV_CMD_CONDITION_GATE"]=4501]="MAV_CMD_CONDITION_GATE",t[t["MAV_CMD_NAV_FENCE_RETURN_POINT"]=5e3]="MAV_CMD_NAV_FENCE_RETURN_POINT",t[t["MAV_CMD_NAV_FENCE_POLYGON_VERTEX_INCLUSION"]=5001]="MAV_CMD_NAV_FENCE_POLYGON_VERTEX_INCLUSION",t[t["MAV_CMD_NAV_FENCE_POLYGON_VERTEX_EXCLUSION"]=5002]="MAV_CMD_NAV_FENCE_POLYGON_VERTEX_EXCLUSION",t[t["MAV_CMD_NAV_FENCE_CIRCLE_INCLUSION"]=5003]="MAV_CMD_NAV_FENCE_CIRCLE_INCLUSION",t[t["MAV_CMD_NAV_FENCE_CIRCLE_EXCLUSION"]=5004]="MAV_CMD_NAV_FENCE_CIRCLE_EXCLUSION",t[t["MAV_CMD_NAV_RALLY_POINT"]=5100]="MAV_CMD_NAV_RALLY_POINT",t[t["MAV_CMD_UAVCAN_GET_NODE_INFO"]=5200]="MAV_CMD_UAVCAN_GET_NODE_INFO",t[t["MAV_CMD_PAYLOAD_PREPARE_DEPLOY"]=30001]="MAV_CMD_PAYLOAD_PREPARE_DEPLOY",t[t["MAV_CMD_PAYLOAD_CONTROL_DEPLOY"]=30002]="MAV_CMD_PAYLOAD_CONTROL_DEPLOY",t[t["MAV_CMD_WAYPOINT_USER_1"]=31e3]="MAV_CMD_WAYPOINT_USER_1",t[t["MAV_CMD_WAYPOINT_USER_2"]=31001]="MAV_CMD_WAYPOINT_USER_2",t[t["MAV_CMD_WAYPOINT_USER_3"]=31002]="MAV_CMD_WAYPOINT_USER_3",t[t["MAV_CMD_WAYPOINT_USER_4"]=31003]="MAV_CMD_WAYPOINT_USER_4",t[t["MAV_CMD_WAYPOINT_USER_5"]=31004]="MAV_CMD_WAYPOINT_USER_5",t[t["MAV_CMD_SPATIAL_USER_1"]=31005]="MAV_CMD_SPATIAL_USER_1",t[t["MAV_CMD_SPATIAL_USER_2"]=31006]="MAV_CMD_SPATIAL_USER_2",t[t["MAV_CMD_SPATIAL_USER_3"]=31007]="MAV_CMD_SPATIAL_USER_3",t[t["MAV_CMD_SPATIAL_USER_4"]=31008]="MAV_CMD_SPATIAL_USER_4",t[t["MAV_CMD_SPATIAL_USER_5"]=31009]="MAV_CMD_SPATIAL_USER_5",t[t["MAV_CMD_USER_1"]=31010]="MAV_CMD_USER_1",t[t["MAV_CMD_USER_2"]=31011]="MAV_CMD_USER_2",t[t["MAV_CMD_USER_3"]=31012]="MAV_CMD_USER_3",t[t["MAV_CMD_USER_4"]=31013]="MAV_CMD_USER_4",t[t["MAV_CMD_USER_5"]=31014]="MAV_CMD_USER_5",t[t["MAV_CMD_FIXED_MAG_CAL_YAW"]=42006]="MAV_CMD_FIXED_MAG_CAL_YAW",t[t["MAV_CMD_DO_WINCH"]=42600]="MAV_CMD_DO_WINCH",t[t["MAV_CMD_ENUM_END"]=42601]="MAV_CMD_ENUM_END"}(k||(k={})),function(t){t[t["MAV_MISSION_TYPE_MISSION"]=0]="MAV_MISSION_TYPE_MISSION",t[t["MAV_MISSION_TYPE_FENCE"]=1]="MAV_MISSION_TYPE_FENCE",t[t["MAV_MISSION_TYPE_RALLY"]=2]="MAV_MISSION_TYPE_RALLY",t[t["MAV_MISSION_TYPE_ALL"]=255]="MAV_MISSION_TYPE_ALL",t[t["MAV_MISSION_TYPE_ENUM_END"]=256]="MAV_MISSION_TYPE_ENUM_END"}(w||(w={}));var K=_("1157"),X=function(t){Object(c["a"])(_,t);var e=Object(o["a"])(_);function _(){var t;return Object(s["a"])(this,_),t=e.apply(this,arguments),t._message_id=1,t._message_name="SYS_STATUS",t._crc_extra=124,t._message_fields=[["onboard_control_sensors_present","uint32_t",!1],["onboard_control_sensors_enabled","uint32_t",!1],["onboard_control_sensors_health","uint32_t",!1],["load","uint16_t",!1],["voltage_battery","uint16_t",!1],["current_battery","int16_t",!1],["drop_rate_comm","uint16_t",!1],["errors_comm","uint16_t",!1],["errors_count1","uint16_t",!1],["errors_count2","uint16_t",!1],["errors_count3","uint16_t",!1],["errors_count4","uint16_t",!1],["battery_remaining","int8_t",!1]],t}return _}(H["MAVLinkMessage"]),J=function(t){Object(c["a"])(_,t);var e=Object(o["a"])(_);function _(){var t;return Object(s["a"])(this,_),t=e.apply(this,arguments),t._message_id=2,t._message_name="SYSTEM_TIME",t._crc_extra=137,t._message_fields=[["time_unix_usec","uint64_t",!1],["time_boot_ms","uint32_t",!1]],t}return _}(H["MAVLinkMessage"]),Z=function(t){Object(c["a"])(_,t);var e=Object(o["a"])(_);function _(){var t;return Object(s["a"])(this,_),t=e.apply(this,arguments),t._message_id=4,t._message_name="PING",t._crc_extra=237,t._message_fields=[["time_usec","uint64_t",!1],["seq","uint32_t",!1],["target_system","uint8_t",!1],["target_component","uint8_t",!1]],t}return _}(H["MAVLinkMessage"]),$=function(t){Object(c["a"])(_,t);var e=Object(o["a"])(_);function _(){var t;return Object(s["a"])(this,_),t=e.apply(this,arguments),t._message_id=5,t._message_name="CHANGE_OPERATOR_CONTROL",t._crc_extra=217,t._message_fields=[["target_system","uint8_t",!1],["control_request","uint8_t",!1],["version","uint8_t",!1],["passkey","char",!1]],t}return _}(H["MAVLinkMessage"]),tt=function(t){Object(c["a"])(_,t);var e=Object(o["a"])(_);function _(){var t;return Object(s["a"])(this,_),t=e.apply(this,arguments),t._message_id=6,t._message_name="CHANGE_OPERATOR_CONTROL_ACK",t._crc_extra=104,t._message_fields=[["gcs_system_id","uint8_t",!1],["control_request","uint8_t",!1],["ack","uint8_t",!1]],t}return _}(H["MAVLinkMessage"]),et=function(t){Object(c["a"])(_,t);var e=Object(o["a"])(_);function _(){var t;return Object(s["a"])(this,_),t=e.apply(this,arguments),t._message_id=7,t._message_name="AUTH_KEY",t._crc_extra=119,t._message_fields=[["key","char",!1]],t}return _}(H["MAVLinkMessage"]),_t=function(t){Object(c["a"])(_,t);var e=Object(o["a"])(_);function _(){var t;return Object(s["a"])(this,_),t=e.apply(this,arguments),t._message_id=8,t._message_name="LINK_NODE_STATUS",t._crc_extra=117,t._message_fields=[["timestamp","uint64_t",!1],["tx_rate","uint32_t",!1],["rx_rate","uint32_t",!1],["messages_sent","uint32_t",!1],["messages_received","uint32_t",!1],["messages_lost","uint32_t",!1],["rx_parse_err","uint16_t",!1],["tx_overflows","uint16_t",!1],["rx_overflows","uint16_t",!1],["tx_buf","uint8_t",!1],["rx_buf","uint8_t",!1]],t}return _}(H["MAVLinkMessage"]),at=function(t){Object(c["a"])(_,t);var e=Object(o["a"])(_);function _(){var t;return Object(s["a"])(this,_),t=e.apply(this,arguments),t._message_id=11,t._message_name="SET_MODE",t._crc_extra=89,t._message_fields=[["custom_mode","uint32_t",!1],["target_system","uint8_t",!1],["base_mode","uint8_t",!1]],t}return _}(H["MAVLinkMessage"]),nt=function(t){Object(c["a"])(_,t);var e=Object(o["a"])(_);function _(){var t;return Object(s["a"])(this,_),t=e.apply(this,arguments),t._message_id=19,t._message_name="PARAM_ACK_TRANSACTION",t._crc_extra=137,t._message_fields=[["param_value","float",!1],["target_system","uint8_t",!1],["target_component","uint8_t",!1],["param_id","char",!1],["param_type","uint8_t",!1],["param_result","uint8_t",!1]],t}return _}(H["MAVLinkMessage"]),it=function(t){Object(c["a"])(_,t);var e=Object(o["a"])(_);function _(){var t;return Object(s["a"])(this,_),t=e.apply(this,arguments),t._message_id=20,t._message_name="PARAM_REQUEST_READ",t._crc_extra=214,t._message_fields=[["param_index","int16_t",!1],["target_system","uint8_t",!1],["target_component","uint8_t",!1],["param_id","char",!1]],t}return _}(H["MAVLinkMessage"]),st=function(t){Object(c["a"])(_,t);var e=Object(o["a"])(_);function _(){var t;return Object(s["a"])(this,_),t=e.apply(this,arguments),t._message_id=21,t._message_name="PARAM_REQUEST_LIST",t._crc_extra=159,t._message_fields=[["target_system","uint8_t",!1],["target_component","uint8_t",!1]],t}return _}(H["MAVLinkMessage"]),rt=function(t){Object(c["a"])(_,t);var e=Object(o["a"])(_);function _(){var t;return Object(s["a"])(this,_),t=e.apply(this,arguments),t._message_id=22,t._message_name="PARAM_VALUE",t._crc_extra=220,t._message_fields=[["param_value","float",!1],["param_count","uint16_t",!1],["param_index","uint16_t",!1],["param_id","char",!1],["param_type","uint8_t",!1]],t}return _}(H["MAVLinkMessage"]),ct=function(t){Object(c["a"])(_,t);var e=Object(o["a"])(_);function _(){var t;return Object(s["a"])(this,_),t=e.apply(this,arguments),t._message_id=23,t._message_name="PARAM_SET",t._crc_extra=168,t._message_fields=[["param_value","float",!1],["target_system","uint8_t",!1],["target_component","uint8_t",!1],["param_id","char",!1],["param_type","uint8_t",!1]],t}return _}(H["MAVLinkMessage"]),ot=function(t){Object(c["a"])(_,t);var e=Object(o["a"])(_);function _(){var t;return Object(s["a"])(this,_),t=e.apply(this,arguments),t._message_id=24,t._message_name="GPS_RAW_INT",t._crc_extra=24,t._message_fields=[["time_usec","uint64_t",!1],["lat","int32_t",!1],["lon","int32_t",!1],["alt","int32_t",!1],["eph","uint16_t",!1],["epv","uint16_t",!1],["vel","uint16_t",!1],["cog","uint16_t",!1],["fix_type","uint8_t",!1],["satellites_visible","uint8_t",!1],["alt_ellipsoid","int32_t",!0],["h_acc","uint32_t",!0],["v_acc","uint32_t",!0],["vel_acc","uint32_t",!0],["hdg_acc","uint32_t",!0],["yaw","uint16_t",!0]],t}return _}(H["MAVLinkMessage"]),ut=function(t){Object(c["a"])(_,t);var e=Object(o["a"])(_);function _(){var t;return Object(s["a"])(this,_),t=e.apply(this,arguments),t._message_id=25,t._message_name="GPS_STATUS",t._crc_extra=23,t._message_fields=[["satellites_visible","uint8_t",!1],["satellite_prn","uint8_t",!1],["satellite_used","uint8_t",!1],["satellite_elevation","uint8_t",!1],["satellite_azimuth","uint8_t",!1],["satellite_snr","uint8_t",!1]],t}return _}(H["MAVLinkMessage"]),lt=function(t){Object(c["a"])(_,t);var e=Object(o["a"])(_);function _(){var t;return Object(s["a"])(this,_),t=e.apply(this,arguments),t._message_id=26,t._message_name="SCALED_IMU",t._crc_extra=170,t._message_fields=[["time_boot_ms","uint32_t",!1],["xacc","int16_t",!1],["yacc","int16_t",!1],["zacc","int16_t",!1],["xgyro","int16_t",!1],["ygyro","int16_t",!1],["zgyro","int16_t",!1],["xmag","int16_t",!1],["ymag","int16_t",!1],["zmag","int16_t",!1],["temperature","int16_t",!0]],t}return _}(H["MAVLinkMessage"]),mt=function(t){Object(c["a"])(_,t);var e=Object(o["a"])(_);function _(){var t;return Object(s["a"])(this,_),t=e.apply(this,arguments),t._message_id=27,t._message_name="RAW_IMU",t._crc_extra=144,t._message_fields=[["time_usec","uint64_t",!1],["xacc","int16_t",!1],["yacc","int16_t",!1],["zacc","int16_t",!1],["xgyro","int16_t",!1],["ygyro","int16_t",!1],["zgyro","int16_t",!1],["xmag","int16_t",!1],["ymag","int16_t",!1],["zmag","int16_t",!1],["id","uint8_t",!0],["temperature","int16_t",!0]],t}return _}(H["MAVLinkMessage"]),At=function(t){Object(c["a"])(_,t);var e=Object(o["a"])(_);function _(){var t;return Object(s["a"])(this,_),t=e.apply(this,arguments),t._message_id=28,t._message_name="RAW_PRESSURE",t._crc_extra=67,t._message_fields=[["time_usec","uint64_t",!1],["press_abs","int16_t",!1],["press_diff1","int16_t",!1],["press_diff2","int16_t",!1],["temperature","int16_t",!1]],t}return _}(H["MAVLinkMessage"]),Ot=function(t){Object(c["a"])(_,t);var e=Object(o["a"])(_);function _(){var t;return Object(s["a"])(this,_),t=e.apply(this,arguments),t._message_id=29,t._message_name="SCALED_PRESSURE",t._crc_extra=115,t._message_fields=[["time_boot_ms","uint32_t",!1],["press_abs","float",!1],["press_diff","float",!1],["temperature","int16_t",!1],["temperature_press_diff","int16_t",!0]],t}return _}(H["MAVLinkMessage"]),Mt=function(t){Object(c["a"])(_,t);var e=Object(o["a"])(_);function _(){var t;return Object(s["a"])(this,_),t=e.apply(this,arguments),t._message_id=30,t._message_name="ATTITUDE",t._crc_extra=39,t._message_fields=[["time_boot_ms","uint32_t",!1],["roll","float",!1],["pitch","float",!1],["yaw","float",!1],["rollspeed","float",!1],["pitchspeed","float",!1],["yawspeed","float",!1]],t}return _}(H["MAVLinkMessage"]),ft=function(t){Object(c["a"])(_,t);var e=Object(o["a"])(_);function _(){var t;return Object(s["a"])(this,_),t=e.apply(this,arguments),t._message_id=31,t._message_name="ATTITUDE_QUATERNION",t._crc_extra=246,t._message_fields=[["time_boot_ms","uint32_t",!1],["q1","float",!1],["q2","float",!1],["q3","float",!1],["q4","float",!1],["rollspeed","float",!1],["pitchspeed","float",!1],["yawspeed","float",!1],["repr_offset_q","float",!0]],t}return _}(H["MAVLinkMessage"]),pt=function(t){Object(c["a"])(_,t);var e=Object(o["a"])(_);function _(){var t;return Object(s["a"])(this,_),t=e.apply(this,arguments),t._message_id=32,t._message_name="LOCAL_POSITION_NED",t._crc_extra=185,t._message_fields=[["time_boot_ms","uint32_t",!1],["x","float",!1],["y","float",!1],["z","float",!1],["vx","float",!1],["vy","float",!1],["vz","float",!1]],t}return _}(H["MAVLinkMessage"]),dt=function(t){Object(c["a"])(_,t);var e=Object(o["a"])(_);function _(){var t;return Object(s["a"])(this,_),t=e.apply(this,arguments),t._message_id=33,t._message_name="GLOBAL_POSITION_INT",t._crc_extra=104,t._message_fields=[["time_boot_ms","uint32_t",!1],["lat","int32_t",!1],["lon","int32_t",!1],["alt","int32_t",!1],["relative_alt","int32_t",!1],["vx","int16_t",!1],["vy","int16_t",!1],["vz","int16_t",!1],["hdg","uint16_t",!1]],t}return _}(H["MAVLinkMessage"]),gt=function(t){Object(c["a"])(_,t);var e=Object(o["a"])(_);function _(){var t;return Object(s["a"])(this,_),t=e.apply(this,arguments),t._message_id=34,t._message_name="RC_CHANNELS_SCALED",t._crc_extra=237,t._message_fields=[["time_boot_ms","uint32_t",!1],["chan1_scaled","int16_t",!1],["chan2_scaled","int16_t",!1],["chan3_scaled","int16_t",!1],["chan4_scaled","int16_t",!1],["chan5_scaled","int16_t",!1],["chan6_scaled","int16_t",!1],["chan7_scaled","int16_t",!1],["chan8_scaled","int16_t",!1],["port","uint8_t",!1],["rssi","uint8_t",!1]],t}return _}(H["MAVLinkMessage"]),Et=function(t){Object(c["a"])(_,t);var e=Object(o["a"])(_);function _(){var t;return Object(s["a"])(this,_),t=e.apply(this,arguments),t._message_id=35,t._message_name="RC_CHANNELS_RAW",t._crc_extra=244,t._message_fields=[["time_boot_ms","uint32_t",!1],["chan1_raw","uint16_t",!1],["chan2_raw","uint16_t",!1],["chan3_raw","uint16_t",!1],["chan4_raw","uint16_t",!1],["chan5_raw","uint16_t",!1],["chan6_raw","uint16_t",!1],["chan7_raw","uint16_t",!1],["chan8_raw","uint16_t",!1],["port","uint8_t",!1],["rssi","uint8_t",!1]],t}return _}(H["MAVLinkMessage"]),Tt=function(t){Object(c["a"])(_,t);var e=Object(o["a"])(_);function _(){var t;return Object(s["a"])(this,_),t=e.apply(this,arguments),t._message_id=36,t._message_name="SERVO_OUTPUT_RAW",t._crc_extra=222,t._message_fields=[["time_usec","uint32_t",!1],["servo1_raw","uint16_t",!1],["servo2_raw","uint16_t",!1],["servo3_raw","uint16_t",!1],["servo4_raw","uint16_t",!1],["servo5_raw","uint16_t",!1],["servo6_raw","uint16_t",!1],["servo7_raw","uint16_t",!1],["servo8_raw","uint16_t",!1],["port","uint8_t",!1],["servo9_raw","uint16_t",!0],["servo10_raw","uint16_t",!0],["servo11_raw","uint16_t",!0],["servo12_raw","uint16_t",!0],["servo13_raw","uint16_t",!0],["servo14_raw","uint16_t",!0],["servo15_raw","uint16_t",!0],["servo16_raw","uint16_t",!0]],t}return _}(H["MAVLinkMessage"]),ht=function(t){Object(c["a"])(_,t);var e=Object(o["a"])(_);function _(){var t;return Object(s["a"])(this,_),t=e.apply(this,arguments),t._message_id=37,t._message_name="MISSION_REQUEST_PARTIAL_LIST",t._crc_extra=212,t._message_fields=[["start_index","int16_t",!1],["end_index","int16_t",!1],["target_system","uint8_t",!1],["target_component","uint8_t",!1],["mission_type","uint8_t",!0]],t}return _}(H["MAVLinkMessage"]),bt=function(t){Object(c["a"])(_,t);var e=Object(o["a"])(_);function _(){var t;return Object(s["a"])(this,_),t=e.apply(this,arguments),t._message_id=38,t._message_name="MISSION_WRITE_PARTIAL_LIST",t._crc_extra=9,t._message_fields=[["start_index","int16_t",!1],["end_index","int16_t",!1],["target_system","uint8_t",!1],["target_component","uint8_t",!1],["mission_type","uint8_t",!0]],t}return _}(H["MAVLinkMessage"]),vt=function(t){Object(c["a"])(_,t);var e=Object(o["a"])(_);function _(){var t;return Object(s["a"])(this,_),t=e.apply(this,arguments),t._message_id=40,t._message_name="MISSION_REQUEST",t._crc_extra=230,t._message_fields=[["seq","uint16_t",!1],["target_system","uint8_t",!1],["target_component","uint8_t",!1],["mission_type","uint8_t",!0]],t}return _}(H["MAVLinkMessage"]),yt=function(t){Object(c["a"])(_,t);var e=Object(o["a"])(_);function _(){var t;return Object(s["a"])(this,_),t=e.apply(this,arguments),t._message_id=41,t._message_name="MISSION_SET_CURRENT",t._crc_extra=28,t._message_fields=[["seq","uint16_t",!1],["target_system","uint8_t",!1],["target_component","uint8_t",!1]],t}return _}(H["MAVLinkMessage"]),Vt=function(t){Object(c["a"])(_,t);var e=Object(o["a"])(_);function _(){var t;return Object(s["a"])(this,_),t=e.apply(this,arguments),t._message_id=42,t._message_name="MISSION_CURRENT",t._crc_extra=28,t._message_fields=[["seq","uint16_t",!1]],t}return _}(H["MAVLinkMessage"]),jt=function(t){Object(c["a"])(_,t);var e=Object(o["a"])(_);function _(){var t;return Object(s["a"])(this,_),t=e.apply(this,arguments),t._message_id=43,t._message_name="MISSION_REQUEST_LIST",t._crc_extra=132,t._message_fields=[["target_system","uint8_t",!1],["target_component","uint8_t",!1],["mission_type","uint8_t",!0]],t}return _}(H["MAVLinkMessage"]),It=function(t){Object(c["a"])(_,t);var e=Object(o["a"])(_);function _(){var t;return Object(s["a"])(this,_),t=e.apply(this,arguments),t._message_id=44,t._message_name="MISSION_COUNT",t._crc_extra=221,t._message_fields=[["count","uint16_t",!1],["target_system","uint8_t",!1],["target_component","uint8_t",!1],["mission_type","uint8_t",!0]],t}return _}(H["MAVLinkMessage"]),Rt=function(t){Object(c["a"])(_,t);var e=Object(o["a"])(_);function _(){var t;return Object(s["a"])(this,_),t=e.apply(this,arguments),t._message_id=46,t._message_name="MISSION_ITEM_REACHED",t._crc_extra=11,t._message_fields=[["seq","uint16_t",!1]],t}return _}(H["MAVLinkMessage"]),Ct=function(t){Object(c["a"])(_,t);var e=Object(o["a"])(_);function _(){var t;return Object(s["a"])(this,_),t=e.apply(this,arguments),t._message_id=47,t._message_name="MISSION_ACK",t._crc_extra=153,t._message_fields=[["target_system","uint8_t",!1],["target_component","uint8_t",!1],["type","uint8_t",!1],["mission_type","uint8_t",!0]],t}return _}(H["MAVLinkMessage"]),Nt=function(t){Object(c["a"])(_,t);var e=Object(o["a"])(_);function _(){var t;return Object(s["a"])(this,_),t=e.apply(this,arguments),t._message_id=48,t._message_name="SET_GPS_GLOBAL_ORIGIN",t._crc_extra=41,t._message_fields=[["latitude","int32_t",!1],["longitude","int32_t",!1],["altitude","int32_t",!1],["target_system","uint8_t",!1],["time_usec","uint64_t",!0]],t}return _}(H["MAVLinkMessage"]),Dt=function(t){Object(c["a"])(_,t);var e=Object(o["a"])(_);function _(){var t;return Object(s["a"])(this,_),t=e.apply(this,arguments),t._message_id=49,t._message_name="GPS_GLOBAL_ORIGIN",t._crc_extra=39,t._message_fields=[["latitude","int32_t",!1],["longitude","int32_t",!1],["altitude","int32_t",!1],["time_usec","uint64_t",!0]],t}return _}(H["MAVLinkMessage"]),Lt=function(t){Object(c["a"])(_,t);var e=Object(o["a"])(_);function _(){var t;return Object(s["a"])(this,_),t=e.apply(this,arguments),t._message_id=50,t._message_name="PARAM_MAP_RC",t._crc_extra=78,t._message_fields=[["param_value0","float",!1],["scale","float",!1],["param_value_min","float",!1],["param_value_max","float",!1],["param_index","int16_t",!1],["target_system","uint8_t",!1],["target_component","uint8_t",!1],["param_id","char",!1],["parameter_rc_channel_index","uint8_t",!1]],t}return _}(H["MAVLinkMessage"]),St=function(t){Object(c["a"])(_,t);var e=Object(o["a"])(_);function _(){var t;return Object(s["a"])(this,_),t=e.apply(this,arguments),t._message_id=51,t._message_name="MISSION_REQUEST_INT",t._crc_extra=196,t._message_fields=[["seq","uint16_t",!1],["target_system","uint8_t",!1],["target_component","uint8_t",!1],["mission_type","uint8_t",!0]],t}return _}(H["MAVLinkMessage"]),Pt=function(t){Object(c["a"])(_,t);var e=Object(o["a"])(_);function _(){var t;return Object(s["a"])(this,_),t=e.apply(this,arguments),t._message_id=52,t._message_name="MISSION_CHANGED",t._crc_extra=132,t._message_fields=[["start_index","int16_t",!1],["end_index","int16_t",!1],["origin_sysid","uint8_t",!1],["origin_compid","uint8_t",!1],["mission_type","uint8_t",!1]],t}return _}(H["MAVLinkMessage"]),xt=function(t){Object(c["a"])(_,t);var e=Object(o["a"])(_);function _(){var t;return Object(s["a"])(this,_),t=e.apply(this,arguments),t._message_id=54,t._message_name="SAFETY_SET_ALLOWED_AREA",t._crc_extra=15,t._message_fields=[["p1x","float",!1],["p1y","float",!1],["p1z","float",!1],["p2x","float",!1],["p2y","float",!1],["p2z","float",!1],["target_system","uint8_t",!1],["target_component","uint8_t",!1],["frame","uint8_t",!1]],t}return _}(H["MAVLinkMessage"]),kt=function(t){Object(c["a"])(_,t);var e=Object(o["a"])(_);function _(){var t;return Object(s["a"])(this,_),t=e.apply(this,arguments),t._message_id=55,t._message_name="SAFETY_ALLOWED_AREA",t._crc_extra=3,t._message_fields=[["p1x","float",!1],["p1y","float",!1],["p1z","float",!1],["p2x","float",!1],["p2y","float",!1],["p2z","float",!1],["frame","uint8_t",!1]],t}return _}(H["MAVLinkMessage"]),wt=function(t){Object(c["a"])(_,t);var e=Object(o["a"])(_);function _(){var t;return Object(s["a"])(this,_),t=e.apply(this,arguments),t._message_id=61,t._message_name="ATTITUDE_QUATERNION_COV",t._crc_extra=167,t._message_fields=[["time_usec","uint64_t",!1],["q","float",!1],["rollspeed","float",!1],["pitchspeed","float",!1],["yawspeed","float",!1],["covariance","float",!1]],t}return _}(H["MAVLinkMessage"]),Ut=function(t){Object(c["a"])(_,t);var e=Object(o["a"])(_);function _(){var t;return Object(s["a"])(this,_),t=e.apply(this,arguments),t._message_id=62,t._message_name="NAV_CONTROLLER_OUTPUT",t._crc_extra=183,t._message_fields=[["nav_roll","float",!1],["nav_pitch","float",!1],["alt_error","float",!1],["aspd_error","float",!1],["xtrack_error","float",!1],["nav_bearing","int16_t",!1],["target_bearing","int16_t",!1],["wp_dist","uint16_t",!1]],t}return _}(H["MAVLinkMessage"]),Gt=function(t){Object(c["a"])(_,t);var e=Object(o["a"])(_);function _(){var t;return Object(s["a"])(this,_),t=e.apply(this,arguments),t._message_id=63,t._message_name="GLOBAL_POSITION_INT_COV",t._crc_extra=119,t._message_fields=[["time_usec","uint64_t",!1],["lat","int32_t",!1],["lon","int32_t",!1],["alt","int32_t",!1],["relative_alt","int32_t",!1],["vx","float",!1],["vy","float",!1],["vz","float",!1],["covariance","float",!1],["estimator_type","uint8_t",!1]],t}return _}(H["MAVLinkMessage"]),Yt=function(t){Object(c["a"])(_,t);var e=Object(o["a"])(_);function _(){var t;return Object(s["a"])(this,_),t=e.apply(this,arguments),t._message_id=64,t._message_name="LOCAL_POSITION_NED_COV",t._crc_extra=191,t._message_fields=[["time_usec","uint64_t",!1],["x","float",!1],["y","float",!1],["z","float",!1],["vx","float",!1],["vy","float",!1],["vz","float",!1],["ax","float",!1],["ay","float",!1],["az","float",!1],["covariance","float",!1],["estimator_type","uint8_t",!1]],t}return _}(H["MAVLinkMessage"]),Ft=function(t){Object(c["a"])(_,t);var e=Object(o["a"])(_);function _(){var t;return Object(s["a"])(this,_),t=e.apply(this,arguments),t._message_id=65,t._message_name="RC_CHANNELS",t._crc_extra=118,t._message_fields=[["time_boot_ms","uint32_t",!1],["chan1_raw","uint16_t",!1],["chan2_raw","uint16_t",!1],["chan3_raw","uint16_t",!1],["chan4_raw","uint16_t",!1],["chan5_raw","uint16_t",!1],["chan6_raw","uint16_t",!1],["chan7_raw","uint16_t",!1],["chan8_raw","uint16_t",!1],["chan9_raw","uint16_t",!1],["chan10_raw","uint16_t",!1],["chan11_raw","uint16_t",!1],["chan12_raw","uint16_t",!1],["chan13_raw","uint16_t",!1],["chan14_raw","uint16_t",!1],["chan15_raw","uint16_t",!1],["chan16_raw","uint16_t",!1],["chan17_raw","uint16_t",!1],["chan18_raw","uint16_t",!1],["chancount","uint8_t",!1],["rssi","uint8_t",!1]],t}return _}(H["MAVLinkMessage"]),zt=function(t){Object(c["a"])(_,t);var e=Object(o["a"])(_);function _(){var t;return Object(s["a"])(this,_),t=e.apply(this,arguments),t._message_id=66,t._message_name="REQUEST_DATA_STREAM",t._crc_extra=148,t._message_fields=[["req_message_rate","uint16_t",!1],["target_system","uint8_t",!1],["target_component","uint8_t",!1],["req_stream_id","uint8_t",!1],["start_stop","uint8_t",!1]],t}return _}(H["MAVLinkMessage"]),Wt=function(t){Object(c["a"])(_,t);var e=Object(o["a"])(_);function _(){var t;return Object(s["a"])(this,_),t=e.apply(this,arguments),t._message_id=67,t._message_name="DATA_STREAM",t._crc_extra=21,t._message_fields=[["message_rate","uint16_t",!1],["stream_id","uint8_t",!1],["on_off","uint8_t",!1]],t}return _}(H["MAVLinkMessage"]),Bt=function(t){Object(c["a"])(_,t);var e=Object(o["a"])(_);function _(){var t;return Object(s["a"])(this,_),t=e.apply(this,arguments),t._message_id=69,t._message_name="MANUAL_CONTROL",t._crc_extra=243,t._message_fields=[["x","int16_t",!1],["y","int16_t",!1],["z","int16_t",!1],["r","int16_t",!1],["buttons","uint16_t",!1],["target","uint8_t",!1]],t}return _}(H["MAVLinkMessage"]),Ht=function(t){Object(c["a"])(_,t);var e=Object(o["a"])(_);function _(){var t;return Object(s["a"])(this,_),t=e.apply(this,arguments),t._message_id=70,t._message_name="RC_CHANNELS_OVERRIDE",t._crc_extra=124,t._message_fields=[["chan1_raw","uint16_t",!1],["chan2_raw","uint16_t",!1],["chan3_raw","uint16_t",!1],["chan4_raw","uint16_t",!1],["chan5_raw","uint16_t",!1],["chan6_raw","uint16_t",!1],["chan7_raw","uint16_t",!1],["chan8_raw","uint16_t",!1],["target_system","uint8_t",!1],["target_component","uint8_t",!1],["chan9_raw","uint16_t",!0],["chan10_raw","uint16_t",!0],["chan11_raw","uint16_t",!0],["chan12_raw","uint16_t",!0],["chan13_raw","uint16_t",!0],["chan14_raw","uint16_t",!0],["chan15_raw","uint16_t",!0],["chan16_raw","uint16_t",!0],["chan17_raw","uint16_t",!0],["chan18_raw","uint16_t",!0]],t}return _}(H["MAVLinkMessage"]),qt=function(t){Object(c["a"])(_,t);var e=Object(o["a"])(_);function _(){var t;return Object(s["a"])(this,_),t=e.apply(this,arguments),t._message_id=73,t._message_name="MISSION_ITEM_INT",t._crc_extra=38,t._message_fields=[["param1","float",!1],["param2","float",!1],["param3","float",!1],["param4","float",!1],["x","int32_t",!1],["y","int32_t",!1],["z","float",!1],["seq","uint16_t",!1],["command","uint16_t",!1],["target_system","uint8_t",!1],["target_component","uint8_t",!1],["frame","uint8_t",!1],["current","uint8_t",!1],["autocontinue","uint8_t",!1],["mission_type","uint8_t",!0]],t}return _}(H["MAVLinkMessage"]),Qt=function(t){Object(c["a"])(_,t);var e=Object(o["a"])(_);function _(){var t;return Object(s["a"])(this,_),t=e.apply(this,arguments),t._message_id=74,t._message_name="VFR_HUD",t._crc_extra=20,t._message_fields=[["airspeed","float",!1],["groundspeed","float",!1],["alt","float",!1],["climb","float",!1],["heading","int16_t",!1],["throttle","uint16_t",!1]],t}return _}(H["MAVLinkMessage"]),Kt=function(t){Object(c["a"])(_,t);var e=Object(o["a"])(_);function _(){var t;return Object(s["a"])(this,_),t=e.apply(this,arguments),t._message_id=75,t._message_name="COMMAND_INT",t._crc_extra=158,t._message_fields=[["param1","float",!1],["param2","float",!1],["param3","float",!1],["param4","float",!1],["x","int32_t",!1],["y","int32_t",!1],["z","float",!1],["command","uint16_t",!1],["target_system","uint8_t",!1],["target_component","uint8_t",!1],["frame","uint8_t",!1],["current","uint8_t",!1],["autocontinue","uint8_t",!1]],t}return _}(H["MAVLinkMessage"]),Xt=function(t){Object(c["a"])(_,t);var e=Object(o["a"])(_);function _(){var t;return Object(s["a"])(this,_),t=e.apply(this,arguments),t._message_id=76,t._message_name="COMMAND_LONG",t._crc_extra=152,t._message_fields=[["param1","float",!1],["param2","float",!1],["param3","float",!1],["param4","float",!1],["param5","float",!1],["param6","float",!1],["param7","float",!1],["command","uint16_t",!1],["target_system","uint8_t",!1],["target_component","uint8_t",!1],["confirmation","uint8_t",!1]],t}return _}(H["MAVLinkMessage"]),Jt=function(t){Object(c["a"])(_,t);var e=Object(o["a"])(_);function _(){var t;return Object(s["a"])(this,_),t=e.apply(this,arguments),t._message_id=77,t._message_name="COMMAND_ACK",t._crc_extra=143,t._message_fields=[["command","uint16_t",!1],["result","uint8_t",!1],["progress","uint8_t",!0],["result_param2","int32_t",!0],["target_system","uint8_t",!0],["target_component","uint8_t",!0]],t}return _}(H["MAVLinkMessage"]),Zt=function(t){Object(c["a"])(_,t);var e=Object(o["a"])(_);function _(){var t;return Object(s["a"])(this,_),t=e.apply(this,arguments),t._message_id=80,t._message_name="COMMAND_CANCEL",t._crc_extra=14,t._message_fields=[["command","uint16_t",!1],["target_system","uint8_t",!1],["target_component","uint8_t",!1]],t}return _}(H["MAVLinkMessage"]),$t=function(t){Object(c["a"])(_,t);var e=Object(o["a"])(_);function _(){var t;return Object(s["a"])(this,_),t=e.apply(this,arguments),t._message_id=81,t._message_name="MANUAL_SETPOINT",t._crc_extra=106,t._message_fields=[["time_boot_ms","uint32_t",!1],["roll","float",!1],["pitch","float",!1],["yaw","float",!1],["thrust","float",!1],["mode_switch","uint8_t",!1],["manual_override_switch","uint8_t",!1]],t}return _}(H["MAVLinkMessage"]),te=function(t){Object(c["a"])(_,t);var e=Object(o["a"])(_);function _(){var t;return Object(s["a"])(this,_),t=e.apply(this,arguments),t._message_id=82,t._message_name="SET_ATTITUDE_TARGET",t._crc_extra=49,t._message_fields=[["time_boot_ms","uint32_t",!1],["q","float",!1],["body_roll_rate","float",!1],["body_pitch_rate","float",!1],["body_yaw_rate","float",!1],["thrust","float",!1],["target_system","uint8_t",!1],["target_component","uint8_t",!1],["type_mask","uint8_t",!1]],t}return _}(H["MAVLinkMessage"]),ee=function(t){Object(c["a"])(_,t);var e=Object(o["a"])(_);function _(){var t;return Object(s["a"])(this,_),t=e.apply(this,arguments),t._message_id=83,t._message_name="ATTITUDE_TARGET",t._crc_extra=22,t._message_fields=[["time_boot_ms","uint32_t",!1],["q","float",!1],["body_roll_rate","float",!1],["body_pitch_rate","float",!1],["body_yaw_rate","float",!1],["thrust","float",!1],["type_mask","uint8_t",!1]],t}return _}(H["MAVLinkMessage"]),_e=function(t){Object(c["a"])(_,t);var e=Object(o["a"])(_);function _(){var t;return Object(s["a"])(this,_),t=e.apply(this,arguments),t._message_id=84,t._message_name="SET_POSITION_TARGET_LOCAL_NED",t._crc_extra=143,t._message_fields=[["time_boot_ms","uint32_t",!1],["x","float",!1],["y","float",!1],["z","float",!1],["vx","float",!1],["vy","float",!1],["vz","float",!1],["afx","float",!1],["afy","float",!1],["afz","float",!1],["yaw","float",!1],["yaw_rate","float",!1],["type_mask","uint16_t",!1],["target_system","uint8_t",!1],["target_component","uint8_t",!1],["coordinate_frame","uint8_t",!1]],t}return _}(H["MAVLinkMessage"]),ae=function(t){Object(c["a"])(_,t);var e=Object(o["a"])(_);function _(){var t;return Object(s["a"])(this,_),t=e.apply(this,arguments),t._message_id=85,t._message_name="POSITION_TARGET_LOCAL_NED",t._crc_extra=140,t._message_fields=[["time_boot_ms","uint32_t",!1],["x","float",!1],["y","float",!1],["z","float",!1],["vx","float",!1],["vy","float",!1],["vz","float",!1],["afx","float",!1],["afy","float",!1],["afz","float",!1],["yaw","float",!1],["yaw_rate","float",!1],["type_mask","uint16_t",!1],["coordinate_frame","uint8_t",!1]],t}return _}(H["MAVLinkMessage"]),ne=function(t){Object(c["a"])(_,t);var e=Object(o["a"])(_);function _(){var t;return Object(s["a"])(this,_),t=e.apply(this,arguments),t._message_id=86,t._message_name="SET_POSITION_TARGET_GLOBAL_INT",t._crc_extra=5,t._message_fields=[["time_boot_ms","uint32_t",!1],["lat_int","int32_t",!1],["lon_int","int32_t",!1],["alt","float",!1],["vx","float",!1],["vy","float",!1],["vz","float",!1],["afx","float",!1],["afy","float",!1],["afz","float",!1],["yaw","float",!1],["yaw_rate","float",!1],["type_mask","uint16_t",!1],["target_system","uint8_t",!1],["target_component","uint8_t",!1],["coordinate_frame","uint8_t",!1]],t}return _}(H["MAVLinkMessage"]),ie=function(t){Object(c["a"])(_,t);var e=Object(o["a"])(_);function _(){var t;return Object(s["a"])(this,_),t=e.apply(this,arguments),t._message_id=87,t._message_name="POSITION_TARGET_GLOBAL_INT",t._crc_extra=150,t._message_fields=[["time_boot_ms","uint32_t",!1],["lat_int","int32_t",!1],["lon_int","int32_t",!1],["alt","float",!1],["vx","float",!1],["vy","float",!1],["vz","float",!1],["afx","float",!1],["afy","float",!1],["afz","float",!1],["yaw","float",!1],["yaw_rate","float",!1],["type_mask","uint16_t",!1],["coordinate_frame","uint8_t",!1]],t}return _}(H["MAVLinkMessage"]),se=function(t){Object(c["a"])(_,t);var e=Object(o["a"])(_);function _(){var t;return Object(s["a"])(this,_),t=e.apply(this,arguments),t._message_id=89,t._message_name="LOCAL_POSITION_NED_SYSTEM_GLOBAL_OFFSET",t._crc_extra=231,t._message_fields=[["time_boot_ms","uint32_t",!1],["x","float",!1],["y","float",!1],["z","float",!1],["roll","float",!1],["pitch","float",!1],["yaw","float",!1]],t}return _}(H["MAVLinkMessage"]),re=function(t){Object(c["a"])(_,t);var e=Object(o["a"])(_);function _(){var t;return Object(s["a"])(this,_),t=e.apply(this,arguments),t._message_id=90,t._message_name="HIL_STATE",t._crc_extra=183,t._message_fields=[["time_usec","uint64_t",!1],["roll","float",!1],["pitch","float",!1],["yaw","float",!1],["rollspeed","float",!1],["pitchspeed","float",!1],["yawspeed","float",!1],["lat","int32_t",!1],["lon","int32_t",!1],["alt","int32_t",!1],["vx","int16_t",!1],["vy","int16_t",!1],["vz","int16_t",!1],["xacc","int16_t",!1],["yacc","int16_t",!1],["zacc","int16_t",!1]],t}return _}(H["MAVLinkMessage"]),ce=function(t){Object(c["a"])(_,t);var e=Object(o["a"])(_);function _(){var t;return Object(s["a"])(this,_),t=e.apply(this,arguments),t._message_id=91,t._message_name="HIL_CONTROLS",t._crc_extra=63,t._message_fields=[["time_usec","uint64_t",!1],["roll_ailerons","float",!1],["pitch_elevator","float",!1],["yaw_rudder","float",!1],["throttle","float",!1],["aux1","float",!1],["aux2","float",!1],["aux3","float",!1],["aux4","float",!1],["mode","uint8_t",!1],["nav_mode","uint8_t",!1]],t}return _}(H["MAVLinkMessage"]),oe=function(t){Object(c["a"])(_,t);var e=Object(o["a"])(_);function _(){var t;return Object(s["a"])(this,_),t=e.apply(this,arguments),t._message_id=92,t._message_name="HIL_RC_INPUTS_RAW",t._crc_extra=54,t._message_fields=[["time_usec","uint64_t",!1],["chan1_raw","uint16_t",!1],["chan2_raw","uint16_t",!1],["chan3_raw","uint16_t",!1],["chan4_raw","uint16_t",!1],["chan5_raw","uint16_t",!1],["chan6_raw","uint16_t",!1],["chan7_raw","uint16_t",!1],["chan8_raw","uint16_t",!1],["chan9_raw","uint16_t",!1],["chan10_raw","uint16_t",!1],["chan11_raw","uint16_t",!1],["chan12_raw","uint16_t",!1],["rssi","uint8_t",!1]],t}return _}(H["MAVLinkMessage"]),ue=function(t){Object(c["a"])(_,t);var e=Object(o["a"])(_);function _(){var t;return Object(s["a"])(this,_),t=e.apply(this,arguments),t._message_id=93,t._message_name="HIL_ACTUATOR_CONTROLS",t._crc_extra=47,t._message_fields=[["time_usec","uint64_t",!1],["flags","uint64_t",!1],["controls","float",!1],["mode","uint8_t",!1]],t}return _}(H["MAVLinkMessage"]),le=function(t){Object(c["a"])(_,t);var e=Object(o["a"])(_);function _(){var t;return Object(s["a"])(this,_),t=e.apply(this,arguments),t._message_id=100,t._message_name="OPTICAL_FLOW",t._crc_extra=175,t._message_fields=[["time_usec","uint64_t",!1],["flow_comp_m_x","float",!1],["flow_comp_m_y","float",!1],["ground_distance","float",!1],["flow_x","int16_t",!1],["flow_y","int16_t",!1],["sensor_id","uint8_t",!1],["quality","uint8_t",!1],["flow_rate_x","float",!0],["flow_rate_y","float",!0]],t}return _}(H["MAVLinkMessage"]),me=function(t){Object(c["a"])(_,t);var e=Object(o["a"])(_);function _(){var t;return Object(s["a"])(this,_),t=e.apply(this,arguments),t._message_id=101,t._message_name="GLOBAL_VISION_POSITION_ESTIMATE",t._crc_extra=102,t._message_fields=[["usec","uint64_t",!1],["x","float",!1],["y","float",!1],["z","float",!1],["roll","float",!1],["pitch","float",!1],["yaw","float",!1],["covariance","float",!0],["reset_counter","uint8_t",!0]],t}return _}(H["MAVLinkMessage"]),Ae=function(t){Object(c["a"])(_,t);var e=Object(o["a"])(_);function _(){var t;return Object(s["a"])(this,_),t=e.apply(this,arguments),t._message_id=102,t._message_name="VISION_POSITION_ESTIMATE",t._crc_extra=158,t._message_fields=[["usec","uint64_t",!1],["x","float",!1],["y","float",!1],["z","float",!1],["roll","float",!1],["pitch","float",!1],["yaw","float",!1],["covariance","float",!0],["reset_counter","uint8_t",!0]],t}return _}(H["MAVLinkMessage"]),Oe=function(t){Object(c["a"])(_,t);var e=Object(o["a"])(_);function _(){var t;return Object(s["a"])(this,_),t=e.apply(this,arguments),t._message_id=103,t._message_name="VISION_SPEED_ESTIMATE",t._crc_extra=208,t._message_fields=[["usec","uint64_t",!1],["x","float",!1],["y","float",!1],["z","float",!1],["covariance","float",!0],["reset_counter","uint8_t",!0]],t}return _}(H["MAVLinkMessage"]),Me=function(t){Object(c["a"])(_,t);var e=Object(o["a"])(_);function _(){var t;return Object(s["a"])(this,_),t=e.apply(this,arguments),t._message_id=104,t._message_name="VICON_POSITION_ESTIMATE",t._crc_extra=56,t._message_fields=[["usec","uint64_t",!1],["x","float",!1],["y","float",!1],["z","float",!1],["roll","float",!1],["pitch","float",!1],["yaw","float",!1],["covariance","float",!0]],t}return _}(H["MAVLinkMessage"]),fe=function(t){Object(c["a"])(_,t);var e=Object(o["a"])(_);function _(){var t;return Object(s["a"])(this,_),t=e.apply(this,arguments),t._message_id=105,t._message_name="HIGHRES_IMU",t._crc_extra=93,t._message_fields=[["time_usec","uint64_t",!1],["xacc","float",!1],["yacc","float",!1],["zacc","float",!1],["xgyro","float",!1],["ygyro","float",!1],["zgyro","float",!1],["xmag","float",!1],["ymag","float",!1],["zmag","float",!1],["abs_pressure","float",!1],["diff_pressure","float",!1],["pressure_alt","float",!1],["temperature","float",!1],["fields_updated","uint16_t",!1],["id","uint8_t",!0]],t}return _}(H["MAVLinkMessage"]),pe=function(t){Object(c["a"])(_,t);var e=Object(o["a"])(_);function _(){var t;return Object(s["a"])(this,_),t=e.apply(this,arguments),t._message_id=106,t._message_name="OPTICAL_FLOW_RAD",t._crc_extra=138,t._message_fields=[["time_usec","uint64_t",!1],["integration_time_us","uint32_t",!1],["integrated_x","float",!1],["integrated_y","float",!1],["integrated_xgyro","float",!1],["integrated_ygyro","float",!1],["integrated_zgyro","float",!1],["time_delta_distance_us","uint32_t",!1],["distance","float",!1],["temperature","int16_t",!1],["sensor_id","uint8_t",!1],["quality","uint8_t",!1]],t}return _}(H["MAVLinkMessage"]),de=function(t){Object(c["a"])(_,t);var e=Object(o["a"])(_);function _(){var t;return Object(s["a"])(this,_),t=e.apply(this,arguments),t._message_id=107,t._message_name="HIL_SENSOR",t._crc_extra=108,t._message_fields=[["time_usec","uint64_t",!1],["xacc","float",!1],["yacc","float",!1],["zacc","float",!1],["xgyro","float",!1],["ygyro","float",!1],["zgyro","float",!1],["xmag","float",!1],["ymag","float",!1],["zmag","float",!1],["abs_pressure","float",!1],["diff_pressure","float",!1],["pressure_alt","float",!1],["temperature","float",!1],["fields_updated","uint32_t",!1],["id","uint8_t",!0]],t}return _}(H["MAVLinkMessage"]),ge=function(t){Object(c["a"])(_,t);var e=Object(o["a"])(_);function _(){var t;return Object(s["a"])(this,_),t=e.apply(this,arguments),t._message_id=108,t._message_name="SIM_STATE",t._crc_extra=32,t._message_fields=[["q1","float",!1],["q2","float",!1],["q3","float",!1],["q4","float",!1],["roll","float",!1],["pitch","float",!1],["yaw","float",!1],["xacc","float",!1],["yacc","float",!1],["zacc","float",!1],["xgyro","float",!1],["ygyro","float",!1],["zgyro","float",!1],["lat","float",!1],["lon","float",!1],["alt","float",!1],["std_dev_horz","float",!1],["std_dev_vert","float",!1],["vn","float",!1],["ve","float",!1],["vd","float",!1]],t}return _}(H["MAVLinkMessage"]),Ee=function(t){Object(c["a"])(_,t);var e=Object(o["a"])(_);function _(){var t;return Object(s["a"])(this,_),t=e.apply(this,arguments),t._message_id=109,t._message_name="RADIO_STATUS",t._crc_extra=185,t._message_fields=[["rxerrors","uint16_t",!1],["fixed","uint16_t",!1],["rssi","uint8_t",!1],["remrssi","uint8_t",!1],["txbuf","uint8_t",!1],["noise","uint8_t",!1],["remnoise","uint8_t",!1]],t}return _}(H["MAVLinkMessage"]),Te=function(t){Object(c["a"])(_,t);var e=Object(o["a"])(_);function _(){var t;return Object(s["a"])(this,_),t=e.apply(this,arguments),t._message_id=110,t._message_name="FILE_TRANSFER_PROTOCOL",t._crc_extra=84,t._message_fields=[["target_network","uint8_t",!1],["target_system","uint8_t",!1],["target_component","uint8_t",!1],["payload","uint8_t",!1]],t}return _}(H["MAVLinkMessage"]),he=function(t){Object(c["a"])(_,t);var e=Object(o["a"])(_);function _(){var t;return Object(s["a"])(this,_),t=e.apply(this,arguments),t._message_id=111,t._message_name="TIMESYNC",t._crc_extra=34,t._message_fields=[["tc1","int64_t",!1],["ts1","int64_t",!1]],t}return _}(H["MAVLinkMessage"]),be=function(t){Object(c["a"])(_,t);var e=Object(o["a"])(_);function _(){var t;return Object(s["a"])(this,_),t=e.apply(this,arguments),t._message_id=112,t._message_name="CAMERA_TRIGGER",t._crc_extra=174,t._message_fields=[["time_usec","uint64_t",!1],["seq","uint32_t",!1]],t}return _}(H["MAVLinkMessage"]),ve=function(t){Object(c["a"])(_,t);var e=Object(o["a"])(_);function _(){var t;return Object(s["a"])(this,_),t=e.apply(this,arguments),t._message_id=113,t._message_name="HIL_GPS",t._crc_extra=124,t._message_fields=[["time_usec","uint64_t",!1],["lat","int32_t",!1],["lon","int32_t",!1],["alt","int32_t",!1],["eph","uint16_t",!1],["epv","uint16_t",!1],["vel","uint16_t",!1],["vn","int16_t",!1],["ve","int16_t",!1],["vd","int16_t",!1],["cog","uint16_t",!1],["fix_type","uint8_t",!1],["satellites_visible","uint8_t",!1],["id","uint8_t",!0],["yaw","uint16_t",!0]],t}return _}(H["MAVLinkMessage"]),ye=function(t){Object(c["a"])(_,t);var e=Object(o["a"])(_);function _(){var t;return Object(s["a"])(this,_),t=e.apply(this,arguments),t._message_id=114,t._message_name="HIL_OPTICAL_FLOW",t._crc_extra=237,t._message_fields=[["time_usec","uint64_t",!1],["integration_time_us","uint32_t",!1],["integrated_x","float",!1],["integrated_y","float",!1],["integrated_xgyro","float",!1],["integrated_ygyro","float",!1],["integrated_zgyro","float",!1],["time_delta_distance_us","uint32_t",!1],["distance","float",!1],["temperature","int16_t",!1],["sensor_id","uint8_t",!1],["quality","uint8_t",!1]],t}return _}(H["MAVLinkMessage"]),Ve=function(t){Object(c["a"])(_,t);var e=Object(o["a"])(_);function _(){var t;return Object(s["a"])(this,_),t=e.apply(this,arguments),t._message_id=115,t._message_name="HIL_STATE_QUATERNION",t._crc_extra=4,t._message_fields=[["time_usec","uint64_t",!1],["attitude_quaternion","float",!1],["rollspeed","float",!1],["pitchspeed","float",!1],["yawspeed","float",!1],["lat","int32_t",!1],["lon","int32_t",!1],["alt","int32_t",!1],["vx","int16_t",!1],["vy","int16_t",!1],["vz","int16_t",!1],["ind_airspeed","uint16_t",!1],["true_airspeed","uint16_t",!1],["xacc","int16_t",!1],["yacc","int16_t",!1],["zacc","int16_t",!1]],t}return _}(H["MAVLinkMessage"]),je=function(t){Object(c["a"])(_,t);var e=Object(o["a"])(_);function _(){var t;return Object(s["a"])(this,_),t=e.apply(this,arguments),t._message_id=116,t._message_name="SCALED_IMU2",t._crc_extra=76,t._message_fields=[["time_boot_ms","uint32_t",!1],["xacc","int16_t",!1],["yacc","int16_t",!1],["zacc","int16_t",!1],["xgyro","int16_t",!1],["ygyro","int16_t",!1],["zgyro","int16_t",!1],["xmag","int16_t",!1],["ymag","int16_t",!1],["zmag","int16_t",!1],["temperature","int16_t",!0]],t}return _}(H["MAVLinkMessage"]),Ie=function(t){Object(c["a"])(_,t);var e=Object(o["a"])(_);function _(){var t;return Object(s["a"])(this,_),t=e.apply(this,arguments),t._message_id=117,t._message_name="LOG_REQUEST_LIST",t._crc_extra=128,t._message_fields=[["start","uint16_t",!1],["end","uint16_t",!1],["target_system","uint8_t",!1],["target_component","uint8_t",!1]],t}return _}(H["MAVLinkMessage"]),Re=function(t){Object(c["a"])(_,t);var e=Object(o["a"])(_);function _(){var t;return Object(s["a"])(this,_),t=e.apply(this,arguments),t._message_id=118,t._message_name="LOG_ENTRY",t._crc_extra=56,t._message_fields=[["time_utc","uint32_t",!1],["size","uint32_t",!1],["id","uint16_t",!1],["num_logs","uint16_t",!1],["last_log_num","uint16_t",!1]],t}return _}(H["MAVLinkMessage"]),Ce=function(t){Object(c["a"])(_,t);var e=Object(o["a"])(_);function _(){var t;return Object(s["a"])(this,_),t=e.apply(this,arguments),t._message_id=119,t._message_name="LOG_REQUEST_DATA",t._crc_extra=116,t._message_fields=[["ofs","uint32_t",!1],["count","uint32_t",!1],["id","uint16_t",!1],["target_system","uint8_t",!1],["target_component","uint8_t",!1]],t}return _}(H["MAVLinkMessage"]),Ne=function(t){Object(c["a"])(_,t);var e=Object(o["a"])(_);function _(){var t;return Object(s["a"])(this,_),t=e.apply(this,arguments),t._message_id=120,t._message_name="LOG_DATA",t._crc_extra=134,t._message_fields=[["ofs","uint32_t",!1],["id","uint16_t",!1],["count","uint8_t",!1],["data","uint8_t",!1]],t}return _}(H["MAVLinkMessage"]),De=function(t){Object(c["a"])(_,t);var e=Object(o["a"])(_);function _(){var t;return Object(s["a"])(this,_),t=e.apply(this,arguments),t._message_id=121,t._message_name="LOG_ERASE",t._crc_extra=237,t._message_fields=[["target_system","uint8_t",!1],["target_component","uint8_t",!1]],t}return _}(H["MAVLinkMessage"]),Le=function(t){Object(c["a"])(_,t);var e=Object(o["a"])(_);function _(){var t;return Object(s["a"])(this,_),t=e.apply(this,arguments),t._message_id=122,t._message_name="LOG_REQUEST_END",t._crc_extra=203,t._message_fields=[["target_system","uint8_t",!1],["target_component","uint8_t",!1]],t}return _}(H["MAVLinkMessage"]),Se=function(t){Object(c["a"])(_,t);var e=Object(o["a"])(_);function _(){var t;return Object(s["a"])(this,_),t=e.apply(this,arguments),t._message_id=123,t._message_name="GPS_INJECT_DATA",t._crc_extra=250,t._message_fields=[["target_system","uint8_t",!1],["target_component","uint8_t",!1],["len","uint8_t",!1],["data","uint8_t",!1]],t}return _}(H["MAVLinkMessage"]),Pe=function(t){Object(c["a"])(_,t);var e=Object(o["a"])(_);function _(){var t;return Object(s["a"])(this,_),t=e.apply(this,arguments),t._message_id=124,t._message_name="GPS2_RAW",t._crc_extra=87,t._message_fields=[["time_usec","uint64_t",!1],["lat","int32_t",!1],["lon","int32_t",!1],["alt","int32_t",!1],["dgps_age","uint32_t",!1],["eph","uint16_t",!1],["epv","uint16_t",!1],["vel","uint16_t",!1],["cog","uint16_t",!1],["fix_type","uint8_t",!1],["satellites_visible","uint8_t",!1],["dgps_numch","uint8_t",!1],["yaw","uint16_t",!0]],t}return _}(H["MAVLinkMessage"]),xe=function(t){Object(c["a"])(_,t);var e=Object(o["a"])(_);function _(){var t;return Object(s["a"])(this,_),t=e.apply(this,arguments),t._message_id=125,t._message_name="POWER_STATUS",t._crc_extra=203,t._message_fields=[["Vcc","uint16_t",!1],["Vservo","uint16_t",!1],["flags","uint16_t",!1]],t}return _}(H["MAVLinkMessage"]),ke=function(t){Object(c["a"])(_,t);var e=Object(o["a"])(_);function _(){var t;return Object(s["a"])(this,_),t=e.apply(this,arguments),t._message_id=126,t._message_name="SERIAL_CONTROL",t._crc_extra=220,t._message_fields=[["baudrate","uint32_t",!1],["timeout","uint16_t",!1],["device","uint8_t",!1],["flags","uint8_t",!1],["count","uint8_t",!1],["data","uint8_t",!1]],t}return _}(H["MAVLinkMessage"]),we=function(t){Object(c["a"])(_,t);var e=Object(o["a"])(_);function _(){var t;return Object(s["a"])(this,_),t=e.apply(this,arguments),t._message_id=127,t._message_name="GPS_RTK",t._crc_extra=25,t._message_fields=[["time_last_baseline_ms","uint32_t",!1],["tow","uint32_t",!1],["baseline_a_mm","int32_t",!1],["baseline_b_mm","int32_t",!1],["baseline_c_mm","int32_t",!1],["accuracy","uint32_t",!1],["iar_num_hypotheses","int32_t",!1],["wn","uint16_t",!1],["rtk_receiver_id","uint8_t",!1],["rtk_health","uint8_t",!1],["rtk_rate","uint8_t",!1],["nsats","uint8_t",!1],["baseline_coords_type","uint8_t",!1]],t}return _}(H["MAVLinkMessage"]),Ue=function(t){Object(c["a"])(_,t);var e=Object(o["a"])(_);function _(){var t;return Object(s["a"])(this,_),t=e.apply(this,arguments),t._message_id=128,t._message_name="GPS2_RTK",t._crc_extra=226,t._message_fields=[["time_last_baseline_ms","uint32_t",!1],["tow","uint32_t",!1],["baseline_a_mm","int32_t",!1],["baseline_b_mm","int32_t",!1],["baseline_c_mm","int32_t",!1],["accuracy","uint32_t",!1],["iar_num_hypotheses","int32_t",!1],["wn","uint16_t",!1],["rtk_receiver_id","uint8_t",!1],["rtk_health","uint8_t",!1],["rtk_rate","uint8_t",!1],["nsats","uint8_t",!1],["baseline_coords_type","uint8_t",!1]],t}return _}(H["MAVLinkMessage"]),Ge=function(t){Object(c["a"])(_,t);var e=Object(o["a"])(_);function _(){var t;return Object(s["a"])(this,_),t=e.apply(this,arguments),t._message_id=129,t._message_name="SCALED_IMU3",t._crc_extra=46,t._message_fields=[["time_boot_ms","uint32_t",!1],["xacc","int16_t",!1],["yacc","int16_t",!1],["zacc","int16_t",!1],["xgyro","int16_t",!1],["ygyro","int16_t",!1],["zgyro","int16_t",!1],["xmag","int16_t",!1],["ymag","int16_t",!1],["zmag","int16_t",!1],["temperature","int16_t",!0]],t}return _}(H["MAVLinkMessage"]),Ye=function(t){Object(c["a"])(_,t);var e=Object(o["a"])(_);function _(){var t;return Object(s["a"])(this,_),t=e.apply(this,arguments),t._message_id=130,t._message_name="DATA_TRANSMISSION_HANDSHAKE",t._crc_extra=29,t._message_fields=[["size","uint32_t",!1],["width","uint16_t",!1],["height","uint16_t",!1],["packets","uint16_t",!1],["type","uint8_t",!1],["payload","uint8_t",!1],["jpg_quality","uint8_t",!1]],t}return _}(H["MAVLinkMessage"]),Fe=function(t){Object(c["a"])(_,t);var e=Object(o["a"])(_);function _(){var t;return Object(s["a"])(this,_),t=e.apply(this,arguments),t._message_id=131,t._message_name="ENCAPSULATED_DATA",t._crc_extra=223,t._message_fields=[["seqnr","uint16_t",!1],["data","uint8_t",!1]],t}return _}(H["MAVLinkMessage"]),ze=function(t){Object(c["a"])(_,t);var e=Object(o["a"])(_);function _(){var t;return Object(s["a"])(this,_),t=e.apply(this,arguments),t._message_id=132,t._message_name="DISTANCE_SENSOR",t._crc_extra=85,t._message_fields=[["time_boot_ms","uint32_t",!1],["min_distance","uint16_t",!1],["max_distance","uint16_t",!1],["current_distance","uint16_t",!1],["type","uint8_t",!1],["id","uint8_t",!1],["orientation","uint8_t",!1],["covariance","uint8_t",!1],["horizontal_fov","float",!0],["vertical_fov","float",!0],["quaternion","float",!0],["signal_quality","uint8_t",!0]],t}return _}(H["MAVLinkMessage"]),We=function(t){Object(c["a"])(_,t);var e=Object(o["a"])(_);function _(){var t;return Object(s["a"])(this,_),t=e.apply(this,arguments),t._message_id=133,t._message_name="TERRAIN_REQUEST",t._crc_extra=6,t._message_fields=[["mask","uint64_t",!1],["lat","int32_t",!1],["lon","int32_t",!1],["grid_spacing","uint16_t",!1]],t}return _}(H["MAVLinkMessage"]),Be=function(t){Object(c["a"])(_,t);var e=Object(o["a"])(_);function _(){var t;return Object(s["a"])(this,_),t=e.apply(this,arguments),t._message_id=134,t._message_name="TERRAIN_DATA",t._crc_extra=229,t._message_fields=[["lat","int32_t",!1],["lon","int32_t",!1],["grid_spacing","uint16_t",!1],["data","int16_t",!1],["gridbit","uint8_t",!1]],t}return _}(H["MAVLinkMessage"]),He=function(t){Object(c["a"])(_,t);var e=Object(o["a"])(_);function _(){var t;return Object(s["a"])(this,_),t=e.apply(this,arguments),t._message_id=135,t._message_name="TERRAIN_CHECK",t._crc_extra=203,t._message_fields=[["lat","int32_t",!1],["lon","int32_t",!1]],t}return _}(H["MAVLinkMessage"]),qe=function(t){Object(c["a"])(_,t);var e=Object(o["a"])(_);function _(){var t;return Object(s["a"])(this,_),t=e.apply(this,arguments),t._message_id=136,t._message_name="TERRAIN_REPORT",t._crc_extra=1,t._message_fields=[["lat","int32_t",!1],["lon","int32_t",!1],["terrain_height","float",!1],["current_height","float",!1],["spacing","uint16_t",!1],["pending","uint16_t",!1],["loaded","uint16_t",!1]],t}return _}(H["MAVLinkMessage"]),Qe=function(t){Object(c["a"])(_,t);var e=Object(o["a"])(_);function _(){var t;return Object(s["a"])(this,_),t=e.apply(this,arguments),t._message_id=137,t._message_name="SCALED_PRESSURE2",t._crc_extra=195,t._message_fields=[["time_boot_ms","uint32_t",!1],["press_abs","float",!1],["press_diff","float",!1],["temperature","int16_t",!1],["temperature_press_diff","int16_t",!0]],t}return _}(H["MAVLinkMessage"]),Ke=function(t){Object(c["a"])(_,t);var e=Object(o["a"])(_);function _(){var t;return Object(s["a"])(this,_),t=e.apply(this,arguments),t._message_id=138,t._message_name="ATT_POS_MOCAP",t._crc_extra=109,t._message_fields=[["time_usec","uint64_t",!1],["q","float",!1],["x","float",!1],["y","float",!1],["z","float",!1],["covariance","float",!0]],t}return _}(H["MAVLinkMessage"]),Xe=function(t){Object(c["a"])(_,t);var e=Object(o["a"])(_);function _(){var t;return Object(s["a"])(this,_),t=e.apply(this,arguments),t._message_id=139,t._message_name="SET_ACTUATOR_CONTROL_TARGET",t._crc_extra=168,t._message_fields=[["time_usec","uint64_t",!1],["controls","float",!1],["group_mlx","uint8_t",!1],["target_system","uint8_t",!1],["target_component","uint8_t",!1]],t}return _}(H["MAVLinkMessage"]),Je=function(t){Object(c["a"])(_,t);var e=Object(o["a"])(_);function _(){var t;return Object(s["a"])(this,_),t=e.apply(this,arguments),t._message_id=140,t._message_name="ACTUATOR_CONTROL_TARGET",t._crc_extra=181,t._message_fields=[["time_usec","uint64_t",!1],["controls","float",!1],["group_mlx","uint8_t",!1]],t}return _}(H["MAVLinkMessage"]),Ze=function(t){Object(c["a"])(_,t);var e=Object(o["a"])(_);function _(){var t;return Object(s["a"])(this,_),t=e.apply(this,arguments),t._message_id=141,t._message_name="ALTITUDE",t._crc_extra=47,t._message_fields=[["time_usec","uint64_t",!1],["altitude_monotonic","float",!1],["altitude_amsl","float",!1],["altitude_local","float",!1],["altitude_relative","float",!1],["altitude_terrain","float",!1],["bottom_clearance","float",!1]],t}return _}(H["MAVLinkMessage"]),$e=function(t){Object(c["a"])(_,t);var e=Object(o["a"])(_);function _(){var t;return Object(s["a"])(this,_),t=e.apply(this,arguments),t._message_id=142,t._message_name="RESOURCE_REQUEST",t._crc_extra=72,t._message_fields=[["request_id","uint8_t",!1],["uri_type","uint8_t",!1],["uri","uint8_t",!1],["transfer_type","uint8_t",!1],["storage","uint8_t",!1]],t}return _}(H["MAVLinkMessage"]),t_=function(t){Object(c["a"])(_,t);var e=Object(o["a"])(_);function _(){var t;return Object(s["a"])(this,_),t=e.apply(this,arguments),t._message_id=143,t._message_name="SCALED_PRESSURE3",t._crc_extra=131,t._message_fields=[["time_boot_ms","uint32_t",!1],["press_abs","float",!1],["press_diff","float",!1],["temperature","int16_t",!1],["temperature_press_diff","int16_t",!0]],t}return _}(H["MAVLinkMessage"]),e_=function(t){Object(c["a"])(_,t);var e=Object(o["a"])(_);function _(){var t;return Object(s["a"])(this,_),t=e.apply(this,arguments),t._message_id=144,t._message_name="FOLLOW_TARGET",t._crc_extra=127,t._message_fields=[["timestamp","uint64_t",!1],["custom_state","uint64_t",!1],["lat","int32_t",!1],["lon","int32_t",!1],["alt","float",!1],["vel","float",!1],["acc","float",!1],["attitude_q","float",!1],["rates","float",!1],["position_cov","float",!1],["est_capabilities","uint8_t",!1]],t}return _}(H["MAVLinkMessage"]),__=function(t){Object(c["a"])(_,t);var e=Object(o["a"])(_);function _(){var t;return Object(s["a"])(this,_),t=e.apply(this,arguments),t._message_id=146,t._message_name="CONTROL_SYSTEM_STATE",t._crc_extra=103,t._message_fields=[["time_usec","uint64_t",!1],["x_acc","float",!1],["y_acc","float",!1],["z_acc","float",!1],["x_vel","float",!1],["y_vel","float",!1],["z_vel","float",!1],["x_pos","float",!1],["y_pos","float",!1],["z_pos","float",!1],["airspeed","float",!1],["vel_variance","float",!1],["pos_variance","float",!1],["q","float",!1],["roll_rate","float",!1],["pitch_rate","float",!1],["yaw_rate","float",!1]],t}return _}(H["MAVLinkMessage"]),a_=function(t){Object(c["a"])(_,t);var e=Object(o["a"])(_);function _(){var t;return Object(s["a"])(this,_),t=e.apply(this,arguments),t._message_id=147,t._message_name="BATTERY_STATUS",t._crc_extra=154,t._message_fields=[["current_consumed","int32_t",!1],["energy_consumed","int32_t",!1],["temperature","int16_t",!1],["voltages","uint16_t",!1],["current_battery","int16_t",!1],["id","uint8_t",!1],["battery_function","uint8_t",!1],["type","uint8_t",!1],["battery_remaining","int8_t",!1],["time_remaining","int32_t",!0],["charge_state","uint8_t",!0],["voltages_ext","uint16_t",!0],["mode","uint8_t",!0],["fault_bitmask","uint32_t",!0]],t}return _}(H["MAVLinkMessage"]),n_=function(t){Object(c["a"])(_,t);var e=Object(o["a"])(_);function _(){var t;return Object(s["a"])(this,_),t=e.apply(this,arguments),t._message_id=148,t._message_name="AUTOPILOT_VERSION",t._crc_extra=178,t._message_fields=[["capabilities","uint64_t",!1],["uid","uint64_t",!1],["flight_sw_version","uint32_t",!1],["middleware_sw_version","uint32_t",!1],["os_sw_version","uint32_t",!1],["board_version","uint32_t",!1],["vendor_id","uint16_t",!1],["product_id","uint16_t",!1],["flight_custom_version","uint8_t",!1],["middleware_custom_version","uint8_t",!1],["os_custom_version","uint8_t",!1],["uid2","uint8_t",!0]],t}return _}(H["MAVLinkMessage"]),i_=function(t){Object(c["a"])(_,t);var e=Object(o["a"])(_);function _(){var t;return Object(s["a"])(this,_),t=e.apply(this,arguments),t._message_id=149,t._message_name="LANDING_TARGET",t._crc_extra=200,t._message_fields=[["time_usec","uint64_t",!1],["angle_x","float",!1],["angle_y","float",!1],["distance","float",!1],["size_x","float",!1],["size_y","float",!1],["target_num","uint8_t",!1],["frame","uint8_t",!1],["x","float",!0],["y","float",!0],["z","float",!0],["q","float",!0],["type","uint8_t",!0],["position_valid","uint8_t",!0]],t}return _}(H["MAVLinkMessage"]),s_=function(t){Object(c["a"])(_,t);var e=Object(o["a"])(_);function _(){var t;return Object(s["a"])(this,_),t=e.apply(this,arguments),t._message_id=162,t._message_name="FENCE_STATUS",t._crc_extra=189,t._message_fields=[["breach_time","uint32_t",!1],["breach_count","uint16_t",!1],["breach_status","uint8_t",!1],["breach_type","uint8_t",!1],["breach_mitigation","uint8_t",!0]],t}return _}(H["MAVLinkMessage"]),r_=function(t){Object(c["a"])(_,t);var e=Object(o["a"])(_);function _(){var t;return Object(s["a"])(this,_),t=e.apply(this,arguments),t._message_id=192,t._message_name="MAG_CAL_REPORT",t._crc_extra=36,t._message_fields=[["fitness","float",!1],["ofs_x","float",!1],["ofs_y","float",!1],["ofs_z","float",!1],["diag_x","float",!1],["diag_y","float",!1],["diag_z","float",!1],["offdiag_x","float",!1],["offdiag_y","float",!1],["offdiag_z","float",!1],["compass_id","uint8_t",!1],["cal_mask","uint8_t",!1],["cal_status","uint8_t",!1],["autosaved","uint8_t",!1],["orientation_confidence","float",!0],["old_orientation","uint8_t",!0],["new_orientation","uint8_t",!0],["scale_factor","float",!0]],t}return _}(H["MAVLinkMessage"]),c_=function(t){Object(c["a"])(_,t);var e=Object(o["a"])(_);function _(){var t;return Object(s["a"])(this,_),t=e.apply(this,arguments),t._message_id=225,t._message_name="EFI_STATUS",t._crc_extra=208,t._message_fields=[["ecu_index","float",!1],["rpm","float",!1],["fuel_consumed","float",!1],["fuel_flow","float",!1],["engine_load","float",!1],["throttle_position","float",!1],["spark_dwell_time","float",!1],["barometric_pressure","float",!1],["intake_manifold_pressure","float",!1],["intake_manifold_temperature","float",!1],["cylinder_head_temperature","float",!1],["ignition_timing","float",!1],["injection_time","float",!1],["exhaust_gas_temperature","float",!1],["throttle_out","float",!1],["pt_compensation","float",!1],["health","uint8_t",!1]],t}return _}(H["MAVLinkMessage"]),o_=function(t){Object(c["a"])(_,t);var e=Object(o["a"])(_);function _(){var t;return Object(s["a"])(this,_),t=e.apply(this,arguments),t._message_id=230,t._message_name="ESTIMATOR_STATUS",t._crc_extra=163,t._message_fields=[["time_usec","uint64_t",!1],["vel_ratio","float",!1],["pos_horiz_ratio","float",!1],["pos_vert_ratio","float",!1],["mag_ratio","float",!1],["hagl_ratio","float",!1],["tas_ratio","float",!1],["pos_horiz_accuracy","float",!1],["pos_vert_accuracy","float",!1],["flags","uint16_t",!1]],t}return _}(H["MAVLinkMessage"]),u_=function(t){Object(c["a"])(_,t);var e=Object(o["a"])(_);function _(){var t;return Object(s["a"])(this,_),t=e.apply(this,arguments),t._message_id=231,t._message_name="WIND_COV",t._crc_extra=105,t._message_fields=[["time_usec","uint64_t",!1],["wind_x","float",!1],["wind_y","float",!1],["wind_z","float",!1],["var_horiz","float",!1],["var_vert","float",!1],["wind_alt","float",!1],["horiz_accuracy","float",!1],["vert_accuracy","float",!1]],t}return _}(H["MAVLinkMessage"]),l_=function(t){Object(c["a"])(_,t);var e=Object(o["a"])(_);function _(){var t;return Object(s["a"])(this,_),t=e.apply(this,arguments),t._message_id=232,t._message_name="GPS_INPUT",t._crc_extra=151,t._message_fields=[["time_usec","uint64_t",!1],["time_week_ms","uint32_t",!1],["lat","int32_t",!1],["lon","int32_t",!1],["alt","float",!1],["hdop","float",!1],["vdop","float",!1],["vn","float",!1],["ve","float",!1],["vd","float",!1],["speed_accuracy","float",!1],["horiz_accuracy","float",!1],["vert_accuracy","float",!1],["ignore_flags","uint16_t",!1],["time_week","uint16_t",!1],["gps_id","uint8_t",!1],["fix_type","uint8_t",!1],["satellites_visible","uint8_t",!1],["yaw","uint16_t",!0]],t}return _}(H["MAVLinkMessage"]),m_=function(t){Object(c["a"])(_,t);var e=Object(o["a"])(_);function _(){var t;return Object(s["a"])(this,_),t=e.apply(this,arguments),t._message_id=233,t._message_name="GPS_RTCM_DATA",t._crc_extra=35,t._message_fields=[["flags","uint8_t",!1],["len","uint8_t",!1],["data","uint8_t",!1]],t}return _}(H["MAVLinkMessage"]),A_=function(t){Object(c["a"])(_,t);var e=Object(o["a"])(_);function _(){var t;return Object(s["a"])(this,_),t=e.apply(this,arguments),t._message_id=234,t._message_name="HIGH_LATENCY",t._crc_extra=150,t._message_fields=[["custom_mode","uint32_t",!1],["latitude","int32_t",!1],["longitude","int32_t",!1],["roll","int16_t",!1],["pitch","int16_t",!1],["heading","uint16_t",!1],["heading_sp","int16_t",!1],["altitude_amsl","int16_t",!1],["altitude_sp","int16_t",!1],["wp_distance","uint16_t",!1],["base_mode","uint8_t",!1],["landed_state","uint8_t",!1],["throttle","int8_t",!1],["airspeed","uint8_t",!1],["airspeed_sp","uint8_t",!1],["groundspeed","uint8_t",!1],["climb_rate","int8_t",!1],["gps_nsat","uint8_t",!1],["gps_fix_type","uint8_t",!1],["battery_remaining","uint8_t",!1],["temperature","int8_t",!1],["temperature_air","int8_t",!1],["failsafe","uint8_t",!1],["wp_num","uint8_t",!1]],t}return _}(H["MAVLinkMessage"]),O_=function(t){Object(c["a"])(_,t);var e=Object(o["a"])(_);function _(){var t;return Object(s["a"])(this,_),t=e.apply(this,arguments),t._message_id=235,t._message_name="HIGH_LATENCY2",t._crc_extra=179,t._message_fields=[["timestamp","uint32_t",!1],["latitude","int32_t",!1],["longitude","int32_t",!1],["custom_mode","uint16_t",!1],["altitude","int16_t",!1],["target_altitude","int16_t",!1],["target_distance","uint16_t",!1],["wp_num","uint16_t",!1],["failure_flags","uint16_t",!1],["type","uint8_t",!1],["autopilot","uint8_t",!1],["heading","uint8_t",!1],["target_heading","uint8_t",!1],["throttle","uint8_t",!1],["airspeed","uint8_t",!1],["airspeed_sp","uint8_t",!1],["groundspeed","uint8_t",!1],["windspeed","uint8_t",!1],["wind_heading","uint8_t",!1],["eph","uint8_t",!1],["epv","uint8_t",!1],["temperature_air","int8_t",!1],["climb_rate","int8_t",!1],["battery","int8_t",!1],["custom0","int8_t",!1],["custom1","int8_t",!1],["custom2","int8_t",!1]],t}return _}(H["MAVLinkMessage"]),M_=function(t){Object(c["a"])(_,t);var e=Object(o["a"])(_);function _(){var t;return Object(s["a"])(this,_),t=e.apply(this,arguments),t._message_id=241,t._message_name="VIBRATION",t._crc_extra=90,t._message_fields=[["time_usec","uint64_t",!1],["vibration_x","float",!1],["vibration_y","float",!1],["vibration_z","float",!1],["clipping_0","uint32_t",!1],["clipping_1","uint32_t",!1],["clipping_2","uint32_t",!1]],t}return _}(H["MAVLinkMessage"]),f_=function(t){Object(c["a"])(_,t);var e=Object(o["a"])(_);function _(){var t;return Object(s["a"])(this,_),t=e.apply(this,arguments),t._message_id=242,t._message_name="HOME_POSITION",t._crc_extra=104,t._message_fields=[["latitude","int32_t",!1],["longitude","int32_t",!1],["altitude","int32_t",!1],["x","float",!1],["y","float",!1],["z","float",!1],["q","float",!1],["approach_x","float",!1],["approach_y","float",!1],["approach_z","float",!1],["time_usec","uint64_t",!0]],t}return _}(H["MAVLinkMessage"]),p_=function(t){Object(c["a"])(_,t);var e=Object(o["a"])(_);function _(){var t;return Object(s["a"])(this,_),t=e.apply(this,arguments),t._message_id=243,t._message_name="SET_HOME_POSITION",t._crc_extra=85,t._message_fields=[["latitude","int32_t",!1],["longitude","int32_t",!1],["altitude","int32_t",!1],["x","float",!1],["y","float",!1],["z","float",!1],["q","float",!1],["approach_x","float",!1],["approach_y","float",!1],["approach_z","float",!1],["target_system","uint8_t",!1],["time_usec","uint64_t",!0]],t}return _}(H["MAVLinkMessage"]),d_=function(t){Object(c["a"])(_,t);var e=Object(o["a"])(_);function _(){var t;return Object(s["a"])(this,_),t=e.apply(this,arguments),t._message_id=244,t._message_name="MESSAGE_INTERVAL",t._crc_extra=95,t._message_fields=[["interval_us","int32_t",!1],["message_id","uint16_t",!1]],t}return _}(H["MAVLinkMessage"]),g_=function(t){Object(c["a"])(_,t);var e=Object(o["a"])(_);function _(){var t;return Object(s["a"])(this,_),t=e.apply(this,arguments),t._message_id=245,t._message_name="EXTENDED_SYS_STATE",t._crc_extra=130,t._message_fields=[["vtol_state","uint8_t",!1],["landed_state","uint8_t",!1]],t}return _}(H["MAVLinkMessage"]),E_=function(t){Object(c["a"])(_,t);var e=Object(o["a"])(_);function _(){var t;return Object(s["a"])(this,_),t=e.apply(this,arguments),t._message_id=246,t._message_name="ADSB_VEHICLE",t._crc_extra=184,t._message_fields=[["ICAO_address","uint32_t",!1],["lat","int32_t",!1],["lon","int32_t",!1],["altitude","int32_t",!1],["heading","uint16_t",!1],["hor_velocity","uint16_t",!1],["ver_velocity","int16_t",!1],["flags","uint16_t",!1],["squawk","uint16_t",!1],["altitude_type","uint8_t",!1],["callsign","char",!1],["emitter_type","uint8_t",!1],["tslc","uint8_t",!1]],t}return _}(H["MAVLinkMessage"]),T_=function(t){Object(c["a"])(_,t);var e=Object(o["a"])(_);function _(){var t;return Object(s["a"])(this,_),t=e.apply(this,arguments),t._message_id=247,t._message_name="COLLISION",t._crc_extra=81,t._message_fields=[["id","uint32_t",!1],["time_to_minimum_delta","float",!1],["altitude_minimum_delta","float",!1],["horizontal_minimum_delta","float",!1],["src","uint8_t",!1],["action","uint8_t",!1],["threat_level","uint8_t",!1]],t}return _}(H["MAVLinkMessage"]),h_=function(t){Object(c["a"])(_,t);var e=Object(o["a"])(_);function _(){var t;return Object(s["a"])(this,_),t=e.apply(this,arguments),t._message_id=248,t._message_name="V2_EXTENSION",t._crc_extra=8,t._message_fields=[["message_type","uint16_t",!1],["target_network","uint8_t",!1],["target_system","uint8_t",!1],["target_component","uint8_t",!1],["payload","uint8_t",!1]],t}return _}(H["MAVLinkMessage"]),b_=function(t){Object(c["a"])(_,t);var e=Object(o["a"])(_);function _(){var t;return Object(s["a"])(this,_),t=e.apply(this,arguments),t._message_id=249,t._message_name="MEMORY_VECT",t._crc_extra=204,t._message_fields=[["address","uint16_t",!1],["ver","uint8_t",!1],["type","uint8_t",!1],["value","int8_t",!1]],t}return _}(H["MAVLinkMessage"]),v_=function(t){Object(c["a"])(_,t);var e=Object(o["a"])(_);function _(){var t;return Object(s["a"])(this,_),t=e.apply(this,arguments),t._message_id=250,t._message_name="DEBUG_VECT",t._crc_extra=49,t._message_fields=[["time_usec","uint64_t",!1],["x","float",!1],["y","float",!1],["z","float",!1],["name","char",!1]],t}return _}(H["MAVLinkMessage"]),y_=function(t){Object(c["a"])(_,t);var e=Object(o["a"])(_);function _(){var t;return Object(s["a"])(this,_),t=e.apply(this,arguments),t._message_id=251,t._message_name="NAMED_VALUE_FLOAT",t._crc_extra=170,t._message_fields=[["time_boot_ms","uint32_t",!1],["value","float",!1],["name","char",!1]],t}return _}(H["MAVLinkMessage"]),V_=function(t){Object(c["a"])(_,t);var e=Object(o["a"])(_);function _(){var t;return Object(s["a"])(this,_),t=e.apply(this,arguments),t._message_id=252,t._message_name="NAMED_VALUE_INT",t._crc_extra=44,t._message_fields=[["time_boot_ms","uint32_t",!1],["value","int32_t",!1],["name","char",!1]],t}return _}(H["MAVLinkMessage"]),j_=function(t){Object(c["a"])(_,t);var e=Object(o["a"])(_);function _(){var t;return Object(s["a"])(this,_),t=e.apply(this,arguments),t._message_id=253,t._message_name="STATUSTEXT",t._crc_extra=83,t._message_fields=[["severity","uint8_t",!1],["text","char",!1],["id","uint16_t",!0],["chunk_seq","uint8_t",!0]],t}return _}(H["MAVLinkMessage"]),I_=function(t){Object(c["a"])(_,t);var e=Object(o["a"])(_);function _(){var t;return Object(s["a"])(this,_),t=e.apply(this,arguments),t._message_id=254,t._message_name="DEBUG",t._crc_extra=46,t._message_fields=[["time_boot_ms","uint32_t",!1],["value","float",!1],["ind","uint8_t",!1]],t}return _}(H["MAVLinkMessage"]),R_=function(t){Object(c["a"])(_,t);var e=Object(o["a"])(_);function _(){var t;return Object(s["a"])(this,_),t=e.apply(this,arguments),t._message_id=256,t._message_name="SETUP_SIGNING",t._crc_extra=71,t._message_fields=[["initial_timestamp","uint64_t",!1],["target_system","uint8_t",!1],["target_component","uint8_t",!1],["secret_key","uint8_t",!1]],t}return _}(H["MAVLinkMessage"]),C_=function(t){Object(c["a"])(_,t);var e=Object(o["a"])(_);function _(){var t;return Object(s["a"])(this,_),t=e.apply(this,arguments),t._message_id=257,t._message_name="BUTTON_CHANGE",t._crc_extra=131,t._message_fields=[["time_boot_ms","uint32_t",!1],["last_change_ms","uint32_t",!1],["state","uint8_t",!1]],t}return _}(H["MAVLinkMessage"]),N_=function(t){Object(c["a"])(_,t);var e=Object(o["a"])(_);function _(){var t;return Object(s["a"])(this,_),t=e.apply(this,arguments),t._message_id=258,t._message_name="PLAY_TUNE",t._crc_extra=187,t._message_fields=[["target_system","uint8_t",!1],["target_component","uint8_t",!1],["tune","char",!1],["tune2","char",!0]],t}return _}(H["MAVLinkMessage"]),D_=function(t){Object(c["a"])(_,t);var e=Object(o["a"])(_);function _(){var t;return Object(s["a"])(this,_),t=e.apply(this,arguments),t._message_id=259,t._message_name="CAMERA_INFORMATION",t._crc_extra=92,t._message_fields=[["time_boot_ms","uint32_t",!1],["firmware_version","uint32_t",!1],["focal_length","float",!1],["sensor_size_h","float",!1],["sensor_size_v","float",!1],["flags","uint32_t",!1],["resolution_h","uint16_t",!1],["resolution_v","uint16_t",!1],["cam_definition_version","uint16_t",!1],["vendor_name","uint8_t",!1],["model_name","uint8_t",!1],["lens_id","uint8_t",!1],["cam_definition_uri","char",!1]],t}return _}(H["MAVLinkMessage"]),L_=function(t){Object(c["a"])(_,t);var e=Object(o["a"])(_);function _(){var t;return Object(s["a"])(this,_),t=e.apply(this,arguments),t._message_id=260,t._message_name="CAMERA_SETTINGS",t._crc_extra=146,t._message_fields=[["time_boot_ms","uint32_t",!1],["mode_id","uint8_t",!1],["zoomLevel","float",!0],["focusLevel","float",!0]],t}return _}(H["MAVLinkMessage"]),S_=function(t){Object(c["a"])(_,t);var e=Object(o["a"])(_);function _(){var t;return Object(s["a"])(this,_),t=e.apply(this,arguments),t._message_id=261,t._message_name="STORAGE_INFORMATION",t._crc_extra=179,t._message_fields=[["time_boot_ms","uint32_t",!1],["total_capacity","float",!1],["used_capacity","float",!1],["available_capacity","float",!1],["read_speed","float",!1],["write_speed","float",!1],["storage_id","uint8_t",!1],["storage_count","uint8_t",!1],["status","uint8_t",!1],["type","uint8_t",!0],["name","char",!0]],t}return _}(H["MAVLinkMessage"]),P_=function(t){Object(c["a"])(_,t);var e=Object(o["a"])(_);function _(){var t;return Object(s["a"])(this,_),t=e.apply(this,arguments),t._message_id=262,t._message_name="CAMERA_CAPTURE_STATUS",t._crc_extra=12,t._message_fields=[["time_boot_ms","uint32_t",!1],["image_interval","float",!1],["recording_time_ms","uint32_t",!1],["available_capacity","float",!1],["image_status","uint8_t",!1],["video_status","uint8_t",!1],["image_count","int32_t",!0]],t}return _}(H["MAVLinkMessage"]),x_=function(t){Object(c["a"])(_,t);var e=Object(o["a"])(_);function _(){var t;return Object(s["a"])(this,_),t=e.apply(this,arguments),t._message_id=263,t._message_name="CAMERA_IMAGE_CAPTURED",t._crc_extra=133,t._message_fields=[["time_utc","uint64_t",!1],["time_boot_ms","uint32_t",!1],["lat","int32_t",!1],["lon","int32_t",!1],["alt","int32_t",!1],["relative_alt","int32_t",!1],["q","float",!1],["image_index","int32_t",!1],["camera_id","uint8_t",!1],["capture_result","int8_t",!1],["file_url","char",!1]],t}return _}(H["MAVLinkMessage"]),k_=function(t){Object(c["a"])(_,t);var e=Object(o["a"])(_);function _(){var t;return Object(s["a"])(this,_),t=e.apply(this,arguments),t._message_id=264,t._message_name="FLIGHT_INFORMATION",t._crc_extra=49,t._message_fields=[["arming_time_utc","uint64_t",!1],["takeoff_time_utc","uint64_t",!1],["flight_uuid","uint64_t",!1],["time_boot_ms","uint32_t",!1]],t}return _}(H["MAVLinkMessage"]),w_=function(t){Object(c["a"])(_,t);var e=Object(o["a"])(_);function _(){var t;return Object(s["a"])(this,_),t=e.apply(this,arguments),t._message_id=265,t._message_name="MOUNT_ORIENTATION",t._crc_extra=26,t._message_fields=[["time_boot_ms","uint32_t",!1],["roll","float",!1],["pitch","float",!1],["yaw","float",!1],["yaw_absolute","float",!0]],t}return _}(H["MAVLinkMessage"]),U_=function(t){Object(c["a"])(_,t);var e=Object(o["a"])(_);function _(){var t;return Object(s["a"])(this,_),t=e.apply(this,arguments),t._message_id=266,t._message_name="LOGGING_DATA",t._crc_extra=193,t._message_fields=[["sequence","uint16_t",!1],["target_system","uint8_t",!1],["target_component","uint8_t",!1],["length","uint8_t",!1],["first_message_offset","uint8_t",!1],["data","uint8_t",!1]],t}return _}(H["MAVLinkMessage"]),G_=function(t){Object(c["a"])(_,t);var e=Object(o["a"])(_);function _(){var t;return Object(s["a"])(this,_),t=e.apply(this,arguments),t._message_id=267,t._message_name="LOGGING_DATA_ACKED",t._crc_extra=35,t._message_fields=[["sequence","uint16_t",!1],["target_system","uint8_t",!1],["target_component","uint8_t",!1],["length","uint8_t",!1],["first_message_offset","uint8_t",!1],["data","uint8_t",!1]],t}return _}(H["MAVLinkMessage"]),Y_=function(t){Object(c["a"])(_,t);var e=Object(o["a"])(_);function _(){var t;return Object(s["a"])(this,_),t=e.apply(this,arguments),t._message_id=268,t._message_name="LOGGING_ACK",t._crc_extra=14,t._message_fields=[["sequence","uint16_t",!1],["target_system","uint8_t",!1],["target_component","uint8_t",!1]],t}return _}(H["MAVLinkMessage"]),F_=function(t){Object(c["a"])(_,t);var e=Object(o["a"])(_);function _(){var t;return Object(s["a"])(this,_),t=e.apply(this,arguments),t._message_id=269,t._message_name="VIDEO_STREAM_INFORMATION",t._crc_extra=109,t._message_fields=[["framerate","float",!1],["bitrate","uint32_t",!1],["flags","uint16_t",!1],["resolution_h","uint16_t",!1],["resolution_v","uint16_t",!1],["rotation","uint16_t",!1],["hfov","uint16_t",!1],["stream_id","uint8_t",!1],["count","uint8_t",!1],["type","uint8_t",!1],["name","char",!1],["uri","char",!1]],t}return _}(H["MAVLinkMessage"]),z_=function(t){Object(c["a"])(_,t);var e=Object(o["a"])(_);function _(){var t;return Object(s["a"])(this,_),t=e.apply(this,arguments),t._message_id=270,t._message_name="VIDEO_STREAM_STATUS",t._crc_extra=59,t._message_fields=[["framerate","float",!1],["bitrate","uint32_t",!1],["flags","uint16_t",!1],["resolution_h","uint16_t",!1],["resolution_v","uint16_t",!1],["rotation","uint16_t",!1],["hfov","uint16_t",!1],["stream_id","uint8_t",!1]],t}return _}(H["MAVLinkMessage"]),W_=function(t){Object(c["a"])(_,t);var e=Object(o["a"])(_);function _(){var t;return Object(s["a"])(this,_),t=e.apply(this,arguments),t._message_id=271,t._message_name="CAMERA_FOV_STATUS",t._crc_extra=22,t._message_fields=[["time_boot_ms","uint32_t",!1],["lat_camera","int32_t",!1],["lon_camera","int32_t",!1],["alt_camera","int32_t",!1],["lat_image","int32_t",!1],["lon_image","int32_t",!1],["alt_image","int32_t",!1],["q","float",!1],["hfov","float",!1],["vfov","float",!1]],t}return _}(H["MAVLinkMessage"]),B_=function(t){Object(c["a"])(_,t);var e=Object(o["a"])(_);function _(){var t;return Object(s["a"])(this,_),t=e.apply(this,arguments),t._message_id=275,t._message_name="CAMERA_TRACKING_IMAGE_STATUS",t._crc_extra=126,t._message_fields=[["point_x","float",!1],["point_y","float",!1],["radius","float",!1],["rec_top_x","float",!1],["rec_top_y","float",!1],["rec_bottom_x","float",!1],["rec_bottom_y","float",!1],["tracking_status","uint8_t",!1],["tracking_mode","uint8_t",!1],["target_data","uint8_t",!1]],t}return _}(H["MAVLinkMessage"]),H_=function(t){Object(c["a"])(_,t);var e=Object(o["a"])(_);function _(){var t;return Object(s["a"])(this,_),t=e.apply(this,arguments),t._message_id=276,t._message_name="CAMERA_TRACKING_GEO_STATUS",t._crc_extra=18,t._message_fields=[["lat","int32_t",!1],["lon","int32_t",!1],["alt","float",!1],["h_acc","float",!1],["v_acc","float",!1],["vel_n","float",!1],["vel_e","float",!1],["vel_d","float",!1],["vel_acc","float",!1],["dist","float",!1],["hdg","float",!1],["hdg_acc","float",!1],["tracking_status","uint8_t",!1]],t}return _}(H["MAVLinkMessage"]),q_=function(t){Object(c["a"])(_,t);var e=Object(o["a"])(_);function _(){var t;return Object(s["a"])(this,_),t=e.apply(this,arguments),t._message_id=280,t._message_name="GIMBAL_MANAGER_INFORMATION",t._crc_extra=70,t._message_fields=[["time_boot_ms","uint32_t",!1],["cap_flags","uint32_t",!1],["roll_min","float",!1],["roll_max","float",!1],["pitch_min","float",!1],["pitch_max","float",!1],["yaw_min","float",!1],["yaw_max","float",!1],["gimbal_device_id","uint8_t",!1]],t}return _}(H["MAVLinkMessage"]),Q_=function(t){Object(c["a"])(_,t);var e=Object(o["a"])(_);function _(){var t;return Object(s["a"])(this,_),t=e.apply(this,arguments),t._message_id=281,t._message_name="GIMBAL_MANAGER_STATUS",t._crc_extra=48,t._message_fields=[["time_boot_ms","uint32_t",!1],["flags","uint32_t",!1],["gimbal_device_id","uint8_t",!1],["primary_control_sysid","uint8_t",!1],["primary_control_compid","uint8_t",!1],["secondary_control_sysid","uint8_t",!1],["secondary_control_compid","uint8_t",!1]],t}return _}(H["MAVLinkMessage"]),K_=function(t){Object(c["a"])(_,t);var e=Object(o["a"])(_);function _(){var t;return Object(s["a"])(this,_),t=e.apply(this,arguments),t._message_id=282,t._message_name="GIMBAL_MANAGER_SET_ATTITUDE",t._crc_extra=123,t._message_fields=[["flags","uint32_t",!1],["q","float",!1],["angular_velocity_x","float",!1],["angular_velocity_y","float",!1],["angular_velocity_z","float",!1],["target_system","uint8_t",!1],["target_component","uint8_t",!1],["gimbal_device_id","uint8_t",!1]],t}return _}(H["MAVLinkMessage"]),X_=function(t){Object(c["a"])(_,t);var e=Object(o["a"])(_);function _(){var t;return Object(s["a"])(this,_),t=e.apply(this,arguments),t._message_id=283,t._message_name="GIMBAL_DEVICE_INFORMATION",t._crc_extra=74,t._message_fields=[["uid","uint64_t",!1],["time_boot_ms","uint32_t",!1],["firmware_version","uint32_t",!1],["hardware_version","uint32_t",!1],["roll_min","float",!1],["roll_max","float",!1],["pitch_min","float",!1],["pitch_max","float",!1],["yaw_min","float",!1],["yaw_max","float",!1],["cap_flags","uint16_t",!1],["custom_cap_flags","uint16_t",!1],["vendor_name","char",!1],["model_name","char",!1],["custom_name","char",!1]],t}return _}(H["MAVLinkMessage"]),J_=function(t){Object(c["a"])(_,t);var e=Object(o["a"])(_);function _(){var t;return Object(s["a"])(this,_),t=e.apply(this,arguments),t._message_id=284,t._message_name="GIMBAL_DEVICE_SET_ATTITUDE",t._crc_extra=99,t._message_fields=[["q","float",!1],["angular_velocity_x","float",!1],["angular_velocity_y","float",!1],["angular_velocity_z","float",!1],["flags","uint16_t",!1],["target_system","uint8_t",!1],["target_component","uint8_t",!1]],t}return _}(H["MAVLinkMessage"]),Z_=function(t){Object(c["a"])(_,t);var e=Object(o["a"])(_);function _(){var t;return Object(s["a"])(this,_),t=e.apply(this,arguments),t._message_id=285,t._message_name="GIMBAL_DEVICE_ATTITUDE_STATUS",t._crc_extra=137,t._message_fields=[["time_boot_ms","uint32_t",!1],["q","float",!1],["angular_velocity_x","float",!1],["angular_velocity_y","float",!1],["angular_velocity_z","float",!1],["failure_flags","uint32_t",!1],["flags","uint16_t",!1],["target_system","uint8_t",!1],["target_component","uint8_t",!1]],t}return _}(H["MAVLinkMessage"]),$_=function(t){Object(c["a"])(_,t);var e=Object(o["a"])(_);function _(){var t;return Object(s["a"])(this,_),t=e.apply(this,arguments),t._message_id=286,t._message_name="AUTOPILOT_STATE_FOR_GIMBAL_DEVICE",t._crc_extra=210,t._message_fields=[["time_boot_us","uint64_t",!1],["q","float",!1],["q_estimated_delay_us","uint32_t",!1],["vx","float",!1],["vy","float",!1],["vz","float",!1],["v_estimated_delay_us","uint32_t",!1],["feed_forward_angular_velocity_z","float",!1],["estimator_status","uint16_t",!1],["target_system","uint8_t",!1],["target_component","uint8_t",!1],["landed_state","uint8_t",!1]],t}return _}(H["MAVLinkMessage"]),ta=function(t){Object(c["a"])(_,t);var e=Object(o["a"])(_);function _(){var t;return Object(s["a"])(this,_),t=e.apply(this,arguments),t._message_id=287,t._message_name="GIMBAL_MANAGER_SET_PITCHYAW",t._crc_extra=1,t._message_fields=[["flags","uint32_t",!1],["pitch","float",!1],["yaw","float",!1],["pitch_rate","float",!1],["yaw_rate","float",!1],["target_system","uint8_t",!1],["target_component","uint8_t",!1],["gimbal_device_id","uint8_t",!1]],t}return _}(H["MAVLinkMessage"]),ea=function(t){Object(c["a"])(_,t);var e=Object(o["a"])(_);function _(){var t;return Object(s["a"])(this,_),t=e.apply(this,arguments),t._message_id=288,t._message_name="GIMBAL_MANAGER_SET_MANUAL_CONTROL",t._crc_extra=20,t._message_fields=[["flags","uint32_t",!1],["pitch","float",!1],["yaw","float",!1],["pitch_rate","float",!1],["yaw_rate","float",!1],["target_system","uint8_t",!1],["target_component","uint8_t",!1],["gimbal_device_id","uint8_t",!1]],t}return _}(H["MAVLinkMessage"]),_a=function(t){Object(c["a"])(_,t);var e=Object(o["a"])(_);function _(){var t;return Object(s["a"])(this,_),t=e.apply(this,arguments),t._message_id=290,t._message_name="ESC_INFO",t._crc_extra=221,t._message_fields=[["time_usec","uint64_t",!1],["error_count","uint32_t",!1],["counter","uint16_t",!1],["failure_flags","uint16_t",!1],["index","uint8_t",!1],["count","uint8_t",!1],["connection_type","uint8_t",!1],["info","uint8_t",!1],["temperature","uint8_t",!1]],t}return _}(H["MAVLinkMessage"]),aa=function(t){Object(c["a"])(_,t);var e=Object(o["a"])(_);function _(){var t;return Object(s["a"])(this,_),t=e.apply(this,arguments),t._message_id=291,t._message_name="ESC_STATUS",t._crc_extra=10,t._message_fields=[["time_usec","uint64_t",!1],["rpm","int32_t",!1],["voltage","float",!1],["current","float",!1],["index","uint8_t",!1]],t}return _}(H["MAVLinkMessage"]),na=function(t){Object(c["a"])(_,t);var e=Object(o["a"])(_);function _(){var t;return Object(s["a"])(this,_),t=e.apply(this,arguments),t._message_id=299,t._message_name="WIFI_CONFIG_AP",t._crc_extra=19,t._message_fields=[["ssid","char",!1],["password","char",!1],["mode","int8_t",!0],["response","int8_t",!0]],t}return _}(H["MAVLinkMessage"]),ia=function(t){Object(c["a"])(_,t);var e=Object(o["a"])(_);function _(){var t;return Object(s["a"])(this,_),t=e.apply(this,arguments),t._message_id=301,t._message_name="AIS_VESSEL",t._crc_extra=243,t._message_fields=[["MMSI","uint32_t",!1],["lat","int32_t",!1],["lon","int32_t",!1],["COG","uint16_t",!1],["heading","uint16_t",!1],["velocity","uint16_t",!1],["dimension_bow","uint16_t",!1],["dimension_stern","uint16_t",!1],["tslc","uint16_t",!1],["flags","uint16_t",!1],["turn_rate","int8_t",!1],["navigational_status","uint8_t",!1],["type","uint8_t",!1],["dimension_port","uint8_t",!1],["dimension_starboard","uint8_t",!1],["callsign","char",!1],["name","char",!1]],t}return _}(H["MAVLinkMessage"]),sa=function(t){Object(c["a"])(_,t);var e=Object(o["a"])(_);function _(){var t;return Object(s["a"])(this,_),t=e.apply(this,arguments),t._message_id=310,t._message_name="UAVCAN_NODE_STATUS",t._crc_extra=28,t._message_fields=[["time_usec","uint64_t",!1],["uptime_sec","uint32_t",!1],["vendor_specific_status_code","uint16_t",!1],["health","uint8_t",!1],["mode","uint8_t",!1],["sub_mode","uint8_t",!1]],t}return _}(H["MAVLinkMessage"]),ra=function(t){Object(c["a"])(_,t);var e=Object(o["a"])(_);function _(){var t;return Object(s["a"])(this,_),t=e.apply(this,arguments),t._message_id=311,t._message_name="UAVCAN_NODE_INFO",t._crc_extra=95,t._message_fields=[["time_usec","uint64_t",!1],["uptime_sec","uint32_t",!1],["sw_vcs_commit","uint32_t",!1],["name","char",!1],["hw_version_major","uint8_t",!1],["hw_version_minor","uint8_t",!1],["hw_unique_id","uint8_t",!1],["sw_version_major","uint8_t",!1],["sw_version_minor","uint8_t",!1]],t}return _}(H["MAVLinkMessage"]),ca=function(t){Object(c["a"])(_,t);var e=Object(o["a"])(_);function _(){var t;return Object(s["a"])(this,_),t=e.apply(this,arguments),t._message_id=320,t._message_name="PARAM_EXT_REQUEST_READ",t._crc_extra=243,t._message_fields=[["param_index","int16_t",!1],["target_system","uint8_t",!1],["target_component","uint8_t",!1],["param_id","char",!1]],t}return _}(H["MAVLinkMessage"]),oa=function(t){Object(c["a"])(_,t);var e=Object(o["a"])(_);function _(){var t;return Object(s["a"])(this,_),t=e.apply(this,arguments),t._message_id=321,t._message_name="PARAM_EXT_REQUEST_LIST",t._crc_extra=88,t._message_fields=[["target_system","uint8_t",!1],["target_component","uint8_t",!1]],t}return _}(H["MAVLinkMessage"]),ua=function(t){Object(c["a"])(_,t);var e=Object(o["a"])(_);function _(){var t;return Object(s["a"])(this,_),t=e.apply(this,arguments),t._message_id=322,t._message_name="PARAM_EXT_VALUE",t._crc_extra=243,t._message_fields=[["param_count","uint16_t",!1],["param_index","uint16_t",!1],["param_id","char",!1],["param_value","char",!1],["param_type","uint8_t",!1]],t}return _}(H["MAVLinkMessage"]),la=function(t){Object(c["a"])(_,t);var e=Object(o["a"])(_);function _(){var t;return Object(s["a"])(this,_),t=e.apply(this,arguments),t._message_id=323,t._message_name="PARAM_EXT_SET",t._crc_extra=78,t._message_fields=[["target_system","uint8_t",!1],["target_component","uint8_t",!1],["param_id","char",!1],["param_value","char",!1],["param_type","uint8_t",!1]],t}return _}(H["MAVLinkMessage"]),ma=function(t){Object(c["a"])(_,t);var e=Object(o["a"])(_);function _(){var t;return Object(s["a"])(this,_),t=e.apply(this,arguments),t._message_id=324,t._message_name="PARAM_EXT_ACK",t._crc_extra=132,t._message_fields=[["param_id","char",!1],["param_value","char",!1],["param_type","uint8_t",!1],["param_result","uint8_t",!1]],t}return _}(H["MAVLinkMessage"]),Aa=function(t){Object(c["a"])(_,t);var e=Object(o["a"])(_);function _(){var t;return Object(s["a"])(this,_),t=e.apply(this,arguments),t._message_id=330,t._message_name="OBSTACLE_DISTANCE",t._crc_extra=23,t._message_fields=[["time_usec","uint64_t",!1],["distances","uint16_t",!1],["min_distance","uint16_t",!1],["max_distance","uint16_t",!1],["sensor_type","uint8_t",!1],["increment","uint8_t",!1],["increment_f","float",!0],["angle_offset","float",!0],["frame","uint8_t",!0]],t}return _}(H["MAVLinkMessage"]),Oa=function(t){Object(c["a"])(_,t);var e=Object(o["a"])(_);function _(){var t;return Object(s["a"])(this,_),t=e.apply(this,arguments),t._message_id=331,t._message_name="ODOMETRY",t._crc_extra=91,t._message_fields=[["time_usec","uint64_t",!1],["x","float",!1],["y","float",!1],["z","float",!1],["q","float",!1],["vx","float",!1],["vy","float",!1],["vz","float",!1],["rollspeed","float",!1],["pitchspeed","float",!1],["yawspeed","float",!1],["pose_covariance","float",!1],["velocity_covariance","float",!1],["frame_id","uint8_t",!1],["child_frame_id","uint8_t",!1],["reset_counter","uint8_t",!0],["estimator_type","uint8_t",!0]],t}return _}(H["MAVLinkMessage"]),Ma=function(t){Object(c["a"])(_,t);var e=Object(o["a"])(_);function _(){var t;return Object(s["a"])(this,_),t=e.apply(this,arguments),t._message_id=332,t._message_name="TRAJECTORY_REPRESENTATION_WAYPOINTS",t._crc_extra=236,t._message_fields=[["time_usec","uint64_t",!1],["pos_x","float",!1],["pos_y","float",!1],["pos_z","float",!1],["vel_x","float",!1],["vel_y","float",!1],["vel_z","float",!1],["acc_x","float",!1],["acc_y","float",!1],["acc_z","float",!1],["pos_yaw","float",!1],["vel_yaw","float",!1],["command","uint16_t",!1],["valid_points","uint8_t",!1]],t}return _}(H["MAVLinkMessage"]),fa=function(t){Object(c["a"])(_,t);var e=Object(o["a"])(_);function _(){var t;return Object(s["a"])(this,_),t=e.apply(this,arguments),t._message_id=333,t._message_name="TRAJECTORY_REPRESENTATION_BEZIER",t._crc_extra=231,t._message_fields=[["time_usec","uint64_t",!1],["pos_x","float",!1],["pos_y","float",!1],["pos_z","float",!1],["delta","float",!1],["pos_yaw","float",!1],["valid_points","uint8_t",!1]],t}return _}(H["MAVLinkMessage"]),pa=function(t){Object(c["a"])(_,t);var e=Object(o["a"])(_);function _(){var t;return Object(s["a"])(this,_),t=e.apply(this,arguments),t._message_id=334,t._message_name="CELLULAR_STATUS",t._crc_extra=72,t._message_fields=[["mcc","uint16_t",!1],["mnc","uint16_t",!1],["lac","uint16_t",!1],["status","uint8_t",!1],["failure_reason","uint8_t",!1],["type","uint8_t",!1],["quality","uint8_t",!1]],t}return _}(H["MAVLinkMessage"]),da=function(t){Object(c["a"])(_,t);var e=Object(o["a"])(_);function _(){var t;return Object(s["a"])(this,_),t=e.apply(this,arguments),t._message_id=335,t._message_name="ISBD_LINK_STATUS",t._crc_extra=225,t._message_fields=[["timestamp","uint64_t",!1],["last_heartbeat","uint64_t",!1],["failed_sessions","uint16_t",!1],["successful_sessions","uint16_t",!1],["signal_quality","uint8_t",!1],["ring_pending","uint8_t",!1],["tx_session_pending","uint8_t",!1],["rx_session_pending","uint8_t",!1]],t}return _}(H["MAVLinkMessage"]),ga=function(t){Object(c["a"])(_,t);var e=Object(o["a"])(_);function _(){var t;return Object(s["a"])(this,_),t=e.apply(this,arguments),t._message_id=336,t._message_name="CELLULAR_CONFIG",t._crc_extra=245,t._message_fields=[["enable_lte","uint8_t",!1],["enable_pin","uint8_t",!1],["pin","char",!1],["new_pin","char",!1],["apn","char",!1],["puk","char",!1],["roaming","uint8_t",!1],["response","uint8_t",!1]],t}return _}(H["MAVLinkMessage"]),Ea=function(t){Object(c["a"])(_,t);var e=Object(o["a"])(_);function _(){var t;return Object(s["a"])(this,_),t=e.apply(this,arguments),t._message_id=339,t._message_name="RAW_RPM",t._crc_extra=199,t._message_fields=[["frequency","float",!1],["index","uint8_t",!1]],t}return _}(H["MAVLinkMessage"]),Ta=function(t){Object(c["a"])(_,t);var e=Object(o["a"])(_);function _(){var t;return Object(s["a"])(this,_),t=e.apply(this,arguments),t._message_id=340,t._message_name="UTM_GLOBAL_POSITION",t._crc_extra=99,t._message_fields=[["time","uint64_t",!1],["lat","int32_t",!1],["lon","int32_t",!1],["alt","int32_t",!1],["relative_alt","int32_t",!1],["next_lat","int32_t",!1],["next_lon","int32_t",!1],["next_alt","int32_t",!1],["vx","int16_t",!1],["vy","int16_t",!1],["vz","int16_t",!1],["h_acc","uint16_t",!1],["v_acc","uint16_t",!1],["vel_acc","uint16_t",!1],["update_rate","uint16_t",!1],["uas_id","uint8_t",!1],["flight_state","uint8_t",!1],["flags","uint8_t",!1]],t}return _}(H["MAVLinkMessage"]),ha=function(t){Object(c["a"])(_,t);var e=Object(o["a"])(_);function _(){var t;return Object(s["a"])(this,_),t=e.apply(this,arguments),t._message_id=350,t._message_name="DEBUG_FLOAT_ARRAY",t._crc_extra=232,t._message_fields=[["time_usec","uint64_t",!1],["array_id","uint16_t",!1],["name","char",!1],["data","float",!0]],t}return _}(H["MAVLinkMessage"]),ba=function(t){Object(c["a"])(_,t);var e=Object(o["a"])(_);function _(){var t;return Object(s["a"])(this,_),t=e.apply(this,arguments),t._message_id=360,t._message_name="ORBIT_EXECUTION_STATUS",t._crc_extra=11,t._message_fields=[["time_usec","uint64_t",!1],["radius","float",!1],["x","int32_t",!1],["y","int32_t",!1],["z","float",!1],["frame","uint8_t",!1]],t}return _}(H["MAVLinkMessage"]),va=function(t){Object(c["a"])(_,t);var e=Object(o["a"])(_);function _(){var t;return Object(s["a"])(this,_),t=e.apply(this,arguments),t._message_id=370,t._message_name="SMART_BATTERY_INFO",t._crc_extra=75,t._message_fields=[["capacity_full_specification","int32_t",!1],["capacity_full","int32_t",!1],["cycle_count","uint16_t",!1],["weight","uint16_t",!1],["discharge_minimum_voltage","uint16_t",!1],["charging_minimum_voltage","uint16_t",!1],["resting_minimum_voltage","uint16_t",!1],["id","uint8_t",!1],["battery_function","uint8_t",!1],["type","uint8_t",!1],["serial_number","char",!1],["device_name","char",!1]],t}return _}(H["MAVLinkMessage"]),ya=function(t){Object(c["a"])(_,t);var e=Object(o["a"])(_);function _(){var t;return Object(s["a"])(this,_),t=e.apply(this,arguments),t._message_id=373,t._message_name="GENERATOR_STATUS",t._crc_extra=117,t._message_fields=[["status","uint64_t",!1],["battery_current","float",!1],["load_current","float",!1],["power_generated","float",!1],["bus_voltage","float",!1],["bat_current_setpoint","float",!1],["runtime","uint32_t",!1],["time_until_maintenance","int32_t",!1],["generator_speed","uint16_t",!1],["rectifier_temperature","int16_t",!1],["generator_temperature","int16_t",!1]],t}return _}(H["MAVLinkMessage"]),Va=function(t){Object(c["a"])(_,t);var e=Object(o["a"])(_);function _(){var t;return Object(s["a"])(this,_),t=e.apply(this,arguments),t._message_id=375,t._message_name="ACTUATOR_OUTPUT_STATUS",t._crc_extra=251,t._message_fields=[["time_usec","uint64_t",!1],["active","uint32_t",!1],["actuator","float",!1]],t}return _}(H["MAVLinkMessage"]),ja=function(t){Object(c["a"])(_,t);var e=Object(o["a"])(_);function _(){var t;return Object(s["a"])(this,_),t=e.apply(this,arguments),t._message_id=380,t._message_name="TIME_ESTIMATE_TO_TARGET",t._crc_extra=232,t._message_fields=[["safe_return","int32_t",!1],["land","int32_t",!1],["mission_next_item","int32_t",!1],["mission_end","int32_t",!1],["commanded_action","int32_t",!1]],t}return _}(H["MAVLinkMessage"]),Ia=function(t){Object(c["a"])(_,t);var e=Object(o["a"])(_);function _(){var t;return Object(s["a"])(this,_),t=e.apply(this,arguments),t._message_id=385,t._message_name="TUNNEL",t._crc_extra=147,t._message_fields=[["payload_type","uint16_t",!1],["target_system","uint8_t",!1],["target_component","uint8_t",!1],["payload_length","uint8_t",!1],["payload","uint8_t",!1]],t}return _}(H["MAVLinkMessage"]),Ra=function(t){Object(c["a"])(_,t);var e=Object(o["a"])(_);function _(){var t;return Object(s["a"])(this,_),t=e.apply(this,arguments),t._message_id=390,t._message_name="ONBOARD_COMPUTER_STATUS",t._crc_extra=156,t._message_fields=[["time_usec","uint64_t",!1],["uptime","uint32_t",!1],["ram_usage","uint32_t",!1],["ram_total","uint32_t",!1],["storage_type","uint32_t",!1],["storage_usage","uint32_t",!1],["storage_total","uint32_t",!1],["link_type","uint32_t",!1],["link_tx_rate","uint32_t",!1],["link_rx_rate","uint32_t",!1],["link_tx_max","uint32_t",!1],["link_rx_max","uint32_t",!1],["fan_speed","int16_t",!1],["type","uint8_t",!1],["cpu_cores","uint8_t",!1],["cpu_combined","uint8_t",!1],["gpu_cores","uint8_t",!1],["gpu_combined","uint8_t",!1],["temperature_board","int8_t",!1],["temperature_core","int8_t",!1]],t}return _}(H["MAVLinkMessage"]),Ca=function(t){Object(c["a"])(_,t);var e=Object(o["a"])(_);function _(){var t;return Object(s["a"])(this,_),t=e.apply(this,arguments),t._message_id=395,t._message_name="COMPONENT_INFORMATION",t._crc_extra=163,t._message_fields=[["time_boot_ms","uint32_t",!1],["metadata_type","uint32_t",!1],["metadata_uid","uint32_t",!1],["translation_uid","uint32_t",!1],["metadata_uri","char",!1],["translation_uri","char",!1]],t}return _}(H["MAVLinkMessage"]),Na=function(t){Object(c["a"])(_,t);var e=Object(o["a"])(_);function _(){var t;return Object(s["a"])(this,_),t=e.apply(this,arguments),t._message_id=400,t._message_name="PLAY_TUNE_V2",t._crc_extra=110,t._message_fields=[["format","uint32_t",!1],["target_system","uint8_t",!1],["target_component","uint8_t",!1],["tune","char",!1]],t}return _}(H["MAVLinkMessage"]),Da=function(t){Object(c["a"])(_,t);var e=Object(o["a"])(_);function _(){var t;return Object(s["a"])(this,_),t=e.apply(this,arguments),t._message_id=401,t._message_name="SUPPORTED_TUNES",t._crc_extra=183,t._message_fields=[["format","uint32_t",!1],["target_system","uint8_t",!1],["target_component","uint8_t",!1]],t}return _}(H["MAVLinkMessage"]),La=function(t){Object(c["a"])(_,t);var e=Object(o["a"])(_);function _(){var t;return Object(s["a"])(this,_),t=e.apply(this,arguments),t._message_id=9e3,t._message_name="WHEEL_DISTANCE",t._crc_extra=113,t._message_fields=[["time_usec","uint64_t",!1],["distance","double",!1],["count","uint8_t",!1]],t}return _}(H["MAVLinkMessage"]),Sa=function(t){Object(c["a"])(_,t);var e=Object(o["a"])(_);function _(){var t;return Object(s["a"])(this,_),t=e.apply(this,arguments),t._message_id=9005,t._message_name="WINCH_STATUS",t._crc_extra=117,t._message_fields=[["time_usec","uint64_t",!1],["line_length","float",!1],["speed","float",!1],["tension","float",!1],["voltage","float",!1],["current","float",!1],["status","uint32_t",!1],["temperature","int16_t",!1]],t}return _}(H["MAVLinkMessage"]),Pa=function(t){Object(c["a"])(_,t);var e=Object(o["a"])(_);function _(){var t;return Object(s["a"])(this,_),t=e.apply(this,arguments),t._message_id=12900,t._message_name="OPEN_DRONE_ID_BASIC_ID",t._crc_extra=114,t._message_fields=[["target_system","uint8_t",!1],["target_component","uint8_t",!1],["id_or_mac","uint8_t",!1],["id_type","uint8_t",!1],["ua_type","uint8_t",!1],["uas_id","uint8_t",!1]],t}return _}(H["MAVLinkMessage"]),xa=function(t){Object(c["a"])(_,t);var e=Object(o["a"])(_);function _(){var t;return Object(s["a"])(this,_),t=e.apply(this,arguments),t._message_id=12901,t._message_name="OPEN_DRONE_ID_LOCATION",t._crc_extra=254,t._message_fields=[["latitude","int32_t",!1],["longitude","int32_t",!1],["altitude_barometric","float",!1],["altitude_geodetic","float",!1],["height","float",!1],["timestamp","float",!1],["direction","uint16_t",!1],["speed_horizontal","uint16_t",!1],["speed_vertical","int16_t",!1],["target_system","uint8_t",!1],["target_component","uint8_t",!1],["id_or_mac","uint8_t",!1],["status","uint8_t",!1],["height_reference","uint8_t",!1],["horizontal_accuracy","uint8_t",!1],["vertical_accuracy","uint8_t",!1],["barometer_accuracy","uint8_t",!1],["speed_accuracy","uint8_t",!1],["timestamp_accuracy","uint8_t",!1]],t}return _}(H["MAVLinkMessage"]),ka=function(t){Object(c["a"])(_,t);var e=Object(o["a"])(_);function _(){var t;return Object(s["a"])(this,_),t=e.apply(this,arguments),t._message_id=12902,t._message_name="OPEN_DRONE_ID_AUTHENTICATION",t._crc_extra=49,t._message_fields=[["timestamp","uint32_t",!1],["target_system","uint8_t",!1],["target_component","uint8_t",!1],["id_or_mac","uint8_t",!1],["authentication_type","uint8_t",!1],["data_page","uint8_t",!1],["page_count","uint8_t",!1],["length","uint8_t",!1],["authentication_data","uint8_t",!1]],t}return _}(H["MAVLinkMessage"]),wa=function(t){Object(c["a"])(_,t);var e=Object(o["a"])(_);function _(){var t;return Object(s["a"])(this,_),t=e.apply(this,arguments),t._message_id=12903,t._message_name="OPEN_DRONE_ID_SELF_ID",t._crc_extra=249,t._message_fields=[["target_system","uint8_t",!1],["target_component","uint8_t",!1],["id_or_mac","uint8_t",!1],["description_type","uint8_t",!1],["description","char",!1]],t}return _}(H["MAVLinkMessage"]),Ua=function(t){Object(c["a"])(_,t);var e=Object(o["a"])(_);function _(){var t;return Object(s["a"])(this,_),t=e.apply(this,arguments),t._message_id=12904,t._message_name="OPEN_DRONE_ID_SYSTEM",t._crc_extra=203,t._message_fields=[["operator_latitude","int32_t",!1],["operator_longitude","int32_t",!1],["area_ceiling","float",!1],["area_floor","float",!1],["area_count","uint16_t",!1],["area_radius","uint16_t",!1],["target_system","uint8_t",!1],["target_component","uint8_t",!1],["id_or_mac","uint8_t",!1],["operator_location_type","uint8_t",!1],["classification_type","uint8_t",!1],["category_eu","uint8_t",!1],["class_eu","uint8_t",!1]],t}return _}(H["MAVLinkMessage"]),Ga=function(t){Object(c["a"])(_,t);var e=Object(o["a"])(_);function _(){var t;return Object(s["a"])(this,_),t=e.apply(this,arguments),t._message_id=12905,t._message_name="OPEN_DRONE_ID_OPERATOR_ID",t._crc_extra=49,t._message_fields=[["target_system","uint8_t",!1],["target_component","uint8_t",!1],["id_or_mac","uint8_t",!1],["operator_id_type","uint8_t",!1],["operator_id","char",!1]],t}return _}(H["MAVLinkMessage"]),Ya=function(t){Object(c["a"])(_,t);var e=Object(o["a"])(_);function _(){var t;return Object(s["a"])(this,_),t=e.apply(this,arguments),t._message_id=12915,t._message_name="OPEN_DRONE_ID_MESSAGE_PACK",t._crc_extra=62,t._message_fields=[["target_system","uint8_t",!1],["target_component","uint8_t",!1],["single_message_size","uint8_t",!1],["msg_pack_size","uint8_t",!1],["messages","uint8_t",!1]],t}return _}(H["MAVLinkMessage"]),Fa=function(t){Object(c["a"])(_,t);var e=Object(o["a"])(_);function _(){var t;return Object(s["a"])(this,_),t=e.apply(this,arguments),t._message_id=0,t._message_name="HEARTBEAT",t._crc_extra=50,t._message_fields=[["custom_mode","uint32_t",!1],["type","uint8_t",!1],["autopilot","uint8_t",!1],["base_mode","uint8_t",!1],["system_status","uint8_t",!1],["mavlink_version","uint8_t",!1]],t}return _}(H["MAVLinkMessage"]),za=function(t){Object(c["a"])(_,t);var e=Object(o["a"])(_);function _(){var t;return Object(s["a"])(this,_),t=e.apply(this,arguments),t._message_id=300,t._message_name="PROTOCOL_VERSION",t._crc_extra=217,t._message_fields=[["version","uint16_t",!1],["min_version","uint16_t",!1],["max_version","uint16_t",!1],["spec_version_hash","uint8_t",!1],["library_version_hash","uint8_t",!1]],t}return _}(H["MAVLinkMessage"]),Wa=[[1,X],[2,J],[4,Z],[5,$],[6,tt],[7,et],[8,_t],[11,at],[19,nt],[20,it],[21,st],[22,rt],[23,ct],[24,ot],[25,ut],[26,lt],[27,mt],[28,At],[29,Ot],[30,Mt],[31,ft],[32,pt],[33,dt],[34,gt],[35,Et],[36,Tt],[37,ht],[38,bt],[39,q],[40,vt],[41,yt],[42,Vt],[43,jt],[44,It],[45,Q],[46,Rt],[47,Ct],[48,Nt],[49,Dt],[50,Lt],[51,St],[52,Pt],[54,xt],[55,kt],[61,wt],[62,Ut],[63,Gt],[64,Yt],[65,Ft],[66,zt],[67,Wt],[69,Bt],[70,Ht],[73,qt],[74,Qt],[75,Kt],[76,Xt],[77,Jt],[80,Zt],[81,$t],[82,te],[83,ee],[84,_e],[85,ae],[86,ne],[87,ie],[89,se],[90,re],[91,ce],[92,oe],[93,ue],[100,le],[101,me],[102,Ae],[103,Oe],[104,Me],[105,fe],[106,pe],[107,de],[108,ge],[109,Ee],[110,Te],[111,he],[112,be],[113,ve],[114,ye],[115,Ve],[116,je],[117,Ie],[118,Re],[119,Ce],[120,Ne],[121,De],[122,Le],[123,Se],[124,Pe],[125,xe],[126,ke],[127,we],[128,Ue],[129,Ge],[130,Ye],[131,Fe],[132,ze],[133,We],[134,Be],[135,He],[136,qe],[137,Qe],[138,Ke],[139,Xe],[140,Je],[141,Ze],[142,$e],[143,t_],[144,e_],[146,__],[147,a_],[148,n_],[149,i_],[162,s_],[192,r_],[225,c_],[230,o_],[231,u_],[232,l_],[233,m_],[234,A_],[235,O_],[241,M_],[242,f_],[243,p_],[244,d_],[245,g_],[246,E_],[247,T_],[248,h_],[249,b_],[250,v_],[251,y_],[252,V_],[253,j_],[254,I_],[256,R_],[257,C_],[258,N_],[259,D_],[260,L_],[261,S_],[262,P_],[263,x_],[264,k_],[265,w_],[266,U_],[267,G_],[268,Y_],[269,F_],[270,z_],[271,W_],[275,B_],[276,H_],[280,q_],[281,Q_],[282,K_],[283,X_],[284,J_],[285,Z_],[286,$_],[287,ta],[288,ea],[290,_a],[291,aa],[299,na],[301,ia],[310,sa],[311,ra],[320,ca],[321,oa],[322,ua],[323,la],[324,ma],[330,Aa],[331,Oa],[332,Ma],[333,fa],[334,pa],[335,da],[336,ga],[339,Ea],[340,Ta],[350,ha],[360,ba],[370,va],[373,ya],[375,Va],[380,ja],[385,Ia],[390,Ra],[395,Ca],[400,Na],[401,Da],[9e3,La],[9005,Sa],[12900,Pa],[12901,xa],[12902,ka],[12903,wa],[12904,Ua],[12905,Ga],[12915,Ya],[0,Fa],[300,za]],Ba=new H["MAVLinkModule"](Wa);function Ha(t,e){var _=arguments.length>2&&void 0!==arguments[2]?arguments[2]:null;K["ajax"]({url:"".concat(window.location.href).concat(t),data:Ba.pack([e]).toString("hex"),success:null!=_?function(t){_(t)}:function(t){}})}var qa=function(t){Object(c["a"])(_,t);var e=Object(o["a"])(_);function _(){var t;return Object(s["a"])(this,_),t=e.apply(this,arguments),t.markers=Object(B["a"])(),t.waypoints=Object(S["a"])(t.startingWaypoints),t}return Object(r["a"])(_,[{key:"size",get:function(){return this.waypoints.length}},{key:"getWaypointLocation",value:function(){return new b(this.position.latitude+Math.random()%100*.001,this.position.longitude+Math.random()%100*.001,this.position.altitude)}},{key:"addWaypoint",value:function(){var t=new V(this.getWaypointLocation()),e=new f.a.Marker(f.a.latLng(t.position.latitude,t.position.longitude));this.addMarker(e),this.markers=Object(B["c"])(t.id,e,this.markers),this.waypoints.push(t);var _=new q(this.SYSTEM_ID(),this.COMPONENT_ID());_.seq=this.waypoints.length-1,_.frame=x.MAV_FRAME_GLOBAL,_.command=k.MAV_CMD_NAV_WAYPOINT,_.current=0,_.autocontinue=1,_.x=t.position.latitude,_.y=t.position.longitude,_.z=t.position.altitude,_.mission_type=w.MAV_MISSION_TYPE_MISSION,Ha("mavlink/missionItem",_)}},{key:"getMarker",value:function(t){return Object(B["b"])(t,this.markers)}},{key:"removeWaypoint",value:function(t){this.waypoints=this.waypoints.filter((function(e){return e.id!=t})),this.updateWaypoints()}},{key:"getWaypointIndex",value:function(t){var e=this.waypoints.map((function(t,e){return{waypoint:t,ind:e}})).filter((function(e){return e.waypoint.id==t}));return 0==e.length?-1:e[0].ind}},{key:"moveWaypointUp",value:function(t){if(!(this.waypoints.length<2)){var e=this.getWaypointIndex(t);if(!(e<1)){var _=[this.waypoints[e],this.waypoints[e-1]];this.waypoints.splice(e-1,2,_[0],_[1]),this.updateWaypoints()}}}},{key:"moveWaypointDown",value:function(t){if(!(this.waypoints.length<2)){var e=this.getWaypointIndex(t);if(!(e<0)&&!(e>=this.waypoints.length-1)){var _=[this.waypoints[e+1],this.waypoints[e]];this.waypoints.splice(e,2,_[0],_[1]),this.updateWaypoints()}}}},{key:"updateWaypoints",value:function(){var t=new Q(this.SYSTEM_ID(),this.COMPONENT_ID());t.mission_type=w.MAV_MISSION_TYPE_MISSION;for(var e=[],_=0;_ void;\n\n\tmap: L.Map|undefined;\n\tx = 0\n\ty = 0\n\tz = 0\n\n\tcopterMarker: L.Marker|undefined\n\n\tupdatePosition(coordinates: number[] = []) {\n\t\tconst latitude = document.getElementById('latitude') as HTMLInputElement\n\t\tconst longitude = document.getElementById('longitude') as HTMLInputElement\n\t\tconst viewSize = document.getElementById('viewSize') as HTMLInputElement\n\n\t\tif (coordinates.length == 0) {\n\t\t\tthis.x = Number(latitude.value)\n\t\t\tthis.y = Number(longitude.value)\n\t\t\tthis.z = Number(viewSize.value)\n\t\t}\n\t\tif (coordinates.length == 3) {\n\t\t\t[ this.x, this.y, this.z ] = coordinates\n\t\t\tlatitude.value = coordinates[0].toString()\n\t\t\tlongitude.value = coordinates[1].toString()\n\t\t\tviewSize.value = coordinates[2].toString()\n\t\t}\n\n\t\tlatitude.classList.replace(latitude.classList[0], isNaN(this.x) || latitude.value.trim() == '' ? 'red': 'green')\n\t\tlongitude.classList.replace(longitude.classList[0], isNaN(this.y) || longitude.value.trim() == '' ? 'red': 'green')\n\t\tviewSize.classList.replace(viewSize.classList[0], isNaN(this.z) || viewSize.value.trim() == '' ? 'red': 'green')\n\n\t\tthis.map!.flyTo([this.x, this.y], this.z);\n\t}\n\n\tmounted() {\n\t\t// Initializing a map that displays area around starting coordinates\n\t\tthis.map = L.map('map').setView([this.position.latitude, this.position.longitude], 18);\n\n\t\tthis.map.on('moveend', event => {\n\t\t\tconst map = this.map!\n\t\t\tconst pos = map.getCenter();\n\t\t\tif (this.x != pos.lat || this.y != pos.lng || this.z != map.getZoom()) {\n\t\t\t\tthis.x = pos.lat\n\t\t\t\tthis.y = pos.lng\n\t\t\t\tthis.z = map.getZoom()\n\t\t\t\tthis.updatePosition([this.x, this.y, this.z])\n\t\t\t}\n\t\t});\n\n\t\tconst copterIcon = L.icon({\n\t\t\ticonUrl: 'https://www.freeiconspng.com/uploads/helicopter-icon-11.png',\n\n\t\t\ticonSize: [50, 40], // size of the icon\n\t\t\ticonAnchor: [25, 20], // point of the icon which will correspond to marker's location\n\t\t});\n\t\t\n\t\tthis.copterMarker = L.marker([this.position.latitude, this.position.longitude], {icon: copterIcon});\n\t\tthis.copterMarker!.addTo(this.map)\n\n\t\tthis.addMap(this.map)\n\n\t\tL.tileLayer('https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png', {\n\t\t\tattribution: '© OpenStreetMap contributors'\n\t\t}).addTo(this.map)\n\n\t\t// https://github.com/Leaflet/Leaflet/issues/6822\n\n\t\tconst defaultMarker = 'data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABkAAAApCAYAAADAk4LOAAAFgUlEQVR4Aa1XA5BjWRTN2oW17d3YaZtr2962HUzbDNpjszW24mRt28p47v7zq/bXZtrp/lWnXr337j3nPCe85NcypgSFdugCpW5YoDAMRaIMqRi6aKq5E3YqDQO3qAwjVWrD8Ncq/RBpykd8oZUb/kaJutow8r1aP9II0WmLKLIsJyv1w/kqw9Ch2MYdB++12Onxee/QMwvf4/Dk/Lfp/i4nxTXtOoQ4pW5Aj7wpici1A9erdAN2OH64x8OSP9j3Ft3b7aWkTg/Fm91siTra0f9on5sQr9INejH6CUUUpavjFNq1B+Oadhxmnfa8RfEmN8VNAsQhPqF55xHkMzz3jSmChWU6f7/XZKNH+9+hBLOHYozuKQPxyMPUKkrX/K0uWnfFaJGS1QPRtZsOPtr3NsW0uyh6NNCOkU3Yz+bXbT3I8G3xE5EXLXtCXbbqwCO9zPQYPRTZ5vIDXD7U+w7rFDEoUUf7ibHIR4y6bLVPXrz8JVZEql13trxwue/uDivd3fkWRbS6/IA2bID4uk0UpF1N8qLlbBlXs4Ee7HLTfV1j54APvODnSfOWBqtKVvjgLKzF5YdEk5ewRkGlK0i33Eofffc7HT56jD7/6U+qH3Cx7SBLNntH5YIPvODnyfIXZYRVDPqgHtLs5ABHD3YzLuespb7t79FY34DjMwrVrcTuwlT55YMPvOBnRrJ4VXTdNnYug5ucHLBjEpt30701A3Ts+HEa73u6dT3FNWwflY86eMHPk+Yu+i6pzUpRrW7SNDg5JHR4KapmM5Wv2E8Tfcb1HoqqHMHU+uWDD7zg54mz5/2BSnizi9T1Dg4QQXLToGNCkb6tb1NU+QAlGr1++eADrzhn/u8Q2YZhQVlZ5+CAOtqfbhmaUCS1ezNFVm2imDbPmPng5wmz+gwh+oHDce0eUtQ6OGDIyR0uUhUsoO3vfDmmgOezH0mZN59x7MBi++WDL1g/eEiU3avlidO671bkLfwbw5XV2P8Pzo0ydy4t2/0eu33xYSOMOD8hTf4CrBtGMSoXfPLchX+J0ruSePw3LZeK0juPJbYzrhkH0io7B3k164hiGvawhOKMLkrQLyVpZg8rHFW7E2uHOL888IBPlNZ1FPzstSJM694fWr6RwpvcJK60+0HCILTBzZLFNdtAzJaohze60T8qBzyh5ZuOg5e7uwQppofEmf2++DYvmySqGBuKaicF1blQjhuHdvCIMvp8whTTfZzI7RldpwtSzL+F1+wkdZ2TBOW2gIF88PBTzD/gpeREAMEbxnJcaJHNHrpzji0gQCS6hdkEeYt9DF/2qPcEC8RM28Hwmr3sdNyht00byAut2k3gufWNtgtOEOFGUwcXWNDbdNbpgBGxEvKkOQsxivJx33iow0Vw5S6SVTrpVq11ysA2Rp7gTfPfktc6zhtXBBC+adRLshf6sG2RfHPZ5EAc4sVZ83yCN00Fk/4kggu40ZTvIEm5g24qtU4KjBrx/BTTH8ifVASAG7gKrnWxJDcU7x8X6Ecczhm3o6YicvsLXWfh3Ch1W0k8x0nXF+0fFxgt4phz8QvypiwCCFKMqXCnqXExjq10beH+UUA7+nG6mdG/Pu0f3LgFcGrl2s0kNNjpmoJ9o4B29CMO8dMT4Q5ox8uitF6fqsrJOr8qnwNbRzv6hSnG5wP+64C7h9lp30hKNtKdWjtdkbuPA19nJ7Tz3zR/ibgARbhb4AlhavcBebmTHcFl2fvYEnW0ox9xMxKBS8btJ+KiEbq9zA4RthQXDhPa0T9TEe69gWupwc6uBUphquXgf+/FrIjweHQS4/pduMe5ERUMHUd9xv8ZR98CxkS4F2n3EUrUZ10EYNw7BWm9x1GiPssi3GgiGRDKWRYZfXlON+dfNbM+GgIwYdwAAAAASUVORK5CYII=';\n\n\t\tconst defaultMarkerShadow = 'data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACkAAAApCAQAAAACach9AAACMUlEQVR4Ae3ShY7jQBAE0Aoz/f9/HTMzhg1zrdKUrJbdx+Kd2nD8VNudfsL/Th///dyQN2TH6f3y/BGpC379rV+S+qqetBOxImNQXL8JCAr2V4iMQXHGNJxeCfZXhSRBcQMfvkOWUdtfzlLgAENmZDcmo2TVmt8OSM2eXxBp3DjHSMFutqS7SbmemzBiR+xpKCNUIRkdkkYxhAkyGoBvyQFEJEefwSmmvBfJuJ6aKqKWnAkvGZOaZXTUgFqYULWNSHUckZuR1HIIimUExutRxwzOLROIG4vKmCKQt364mIlhSyzAf1m9lHZHJZrlAOMMztRRiKimp/rpdJDc9Awry5xTZCte7FHtuS8wJgeYGrex28xNTd086Dik7vUMscQOa8y4DoGtCCSkAKlNwpgNtphjrC6MIHUkR6YWxxs6Sc5xqn222mmCRFzIt8lEdKx+ikCtg91qS2WpwVfBelJCiQJwvzixfI9cxZQWgiSJelKnwBElKYtDOb2MFbhmUigbReQBV0Cg4+qMXSxXSyGUn4UbF8l+7qdSGnTC0XLCmahIgUHLhLOhpVCtw4CzYXvLQWQbJNmxoCsOKAxSgBJno75avolkRw8iIAFcsdc02e9iyCd8tHwmeSSoKTowIgvscSGZUOA7PuCN5b2BX9mQM7S0wYhMNU74zgsPBj3HU7wguAfnxxjFQGBE6pwN+GjME9zHY7zGp8wVxMShYX9NXvEWD3HbwJf4giO4CFIQxXScH1/TM+04kkBiAAAAAElFTkSuQmCC';\n\n\t\t(L.Icon.prototype as any)._createImg = (src: string, el: HTMLImageElement) => {\n\t\t\tel = el || document.createElement('img');\n\t\t\tif (src.includes('marker-icon.png')) {\n\t\t\t\tsrc = defaultMarker;\n\t\t\t}\n\t\t\tif (src.includes('marker-shadow.png')) {\n\t\t\t\tsrc = defaultMarkerShadow;\n\t\t\t}\n\t\t\tel.src = src;\n\t\t\treturn el;\n\t\t};\n\n\t\tthis.x = this.position.latitude\n\t\tthis.y = this.position.longitude\n\t\tthis.z = 18\n\n\t\tconst latitude = document.getElementById('latitude') as HTMLInputElement\n\t\tconst longitude = document.getElementById('longitude') as HTMLInputElement\n\t\tconst viewSize = document.getElementById('viewSize') as HTMLInputElement\n\n\t\tlatitude.setAttribute('value', this.x.toString())\n\t\tlongitude.setAttribute('value', this.y.toString())\n\t\tviewSize.setAttribute('value', this.z.toString())\n\t}\n}\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--14-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/ts-loader/index.js??ref--14-3!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./Map.vue?vue&type=script&lang=ts&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--14-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/ts-loader/index.js??ref--14-3!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./Map.vue?vue&type=script&lang=ts&\"","import { render, staticRenderFns } from \"./Map.vue?vue&type=template&id=f2808c1a&scoped=true&\"\nimport script from \"./Map.vue?vue&type=script&lang=ts&\"\nexport * from \"./Map.vue?vue&type=script&lang=ts&\"\nimport style0 from \"./Map.vue?vue&type=style&index=0&id=f2808c1a&scoped=true&lang=css&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n \"f2808c1a\",\n null\n \n)\n\nexport default component.exports","\nexport default class Position {\n\tlatitude: number;\n\tlongitude: number;\n\taltitude: number;\n\n\tconstructor(latitude: number, longitude: number, altitude: number) {\n\t\tthis.latitude = latitude\n\t\tthis.longitude = longitude\n\t\tthis.altitude = altitude\n\t}\n\n\ttoString() {\n\t\treturn `{ ${this.latitude}; ${this.longitude}; ${this.altitude} }`\n\t}\n}\n","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:\"waypoint\"},[_c('input',{directives:[{name:\"model\",rawName:\"v-model\",value:(_vm.waypoint.position.latitude),expression:\"waypoint.position.latitude\"}],attrs:{\"type\":\"text\",\"placeholder\":\"latitude\",\"id\":(\"Waypoint\" + (_vm.waypoint.id) + \"_latitude\")},domProps:{\"value\":(_vm.waypoint.position.latitude)},on:{\"keypress\":function($event){return _vm.checkCharacter($event)},\"keyup\":function($event){return _vm.checkWaypoint()},\"input\":function($event){if($event.target.composing){ return; }_vm.$set(_vm.waypoint.position, \"latitude\", $event.target.value)}}}),_c('input',{directives:[{name:\"model\",rawName:\"v-model\",value:(_vm.waypoint.position.longitude),expression:\"waypoint.position.longitude\"}],attrs:{\"type\":\"text\",\"placeholder\":\"longitude\",\"id\":(\"Waypoint\" + (_vm.waypoint.id) + \"_longitude\")},domProps:{\"value\":(_vm.waypoint.position.longitude)},on:{\"keypress\":function($event){return _vm.checkCharacter($event)},\"keyup\":function($event){return _vm.checkWaypoint()},\"input\":function($event){if($event.target.composing){ return; }_vm.$set(_vm.waypoint.position, \"longitude\", $event.target.value)}}}),_c('input',{directives:[{name:\"model\",rawName:\"v-model\",value:(_vm.waypoint.position.altitude),expression:\"waypoint.position.altitude\"}],attrs:{\"type\":\"text\",\"placeholder\":\"altitude\",\"id\":(\"Waypoint\" + (_vm.waypoint.id) + \"_altitude\")},domProps:{\"value\":(_vm.waypoint.position.altitude)},on:{\"keypress\":function($event){return _vm.checkCharacter($event)},\"keyup\":function($event){return _vm.checkWaypoint()},\"input\":function($event){if($event.target.composing){ return; }_vm.$set(_vm.waypoint.position, \"altitude\", $event.target.value)}}}),_c('input',{directives:[{name:\"model\",rawName:\"v-model\",value:(_vm.waypoint.yaw),expression:\"waypoint.yaw\"}],attrs:{\"type\":\"text\",\"placeholder\":\"yaw\",\"id\":(\"Waypoint\" + (_vm.waypoint.id) + \"_yaw\")},domProps:{\"value\":(_vm.waypoint.yaw)},on:{\"keypress\":function($event){return _vm.checkCharacter($event)},\"keyup\":function($event){return _vm.checkWaypoint()},\"input\":function($event){if($event.target.composing){ return; }_vm.$set(_vm.waypoint, \"yaw\", $event.target.value)}}}),_c('input',{directives:[{name:\"model\",rawName:\"v-model\",value:(_vm.waypoint.hold),expression:\"waypoint.hold\"}],attrs:{\"type\":\"text\",\"placeholder\":\"hold\",\"id\":(\"Waypoint\" + (_vm.waypoint.id) + \"_hold\")},domProps:{\"value\":(_vm.waypoint.hold)},on:{\"keypress\":function($event){return _vm.checkCharacter($event)},\"keyup\":function($event){return _vm.checkWaypoint()},\"input\":function($event){if($event.target.composing){ return; }_vm.$set(_vm.waypoint, \"hold\", $event.target.value)}}}),_c('input',{directives:[{name:\"model\",rawName:\"v-model\",value:(_vm.waypoint.acceptRadius),expression:\"waypoint.acceptRadius\"}],attrs:{\"type\":\"text\",\"placeholder\":\"accept radius\",\"id\":(\"Waypoint\" + (_vm.waypoint.id) + \"_acceptRadius\")},domProps:{\"value\":(_vm.waypoint.acceptRadius)},on:{\"keypress\":function($event){return _vm.checkCharacter($event)},\"keyup\":function($event){return _vm.checkWaypoint()},\"input\":function($event){if($event.target.composing){ return; }_vm.$set(_vm.waypoint, \"acceptRadius\", $event.target.value)}}}),_c('input',{directives:[{name:\"model\",rawName:\"v-model\",value:(_vm.waypoint.passRadius),expression:\"waypoint.passRadius\"}],attrs:{\"type\":\"text\",\"placeholder\":\"pass radius\",\"id\":(\"Waypoint\" + (_vm.waypoint.id) + \"_passRadius\")},domProps:{\"value\":(_vm.waypoint.passRadius)},on:{\"keypress\":function($event){return _vm.checkCharacter($event)},\"keyup\":function($event){return _vm.checkWaypoint()},\"input\":function($event){if($event.target.composing){ return; }_vm.$set(_vm.waypoint, \"passRadius\", $event.target.value)}}}),(_vm.hasUpperNeighbor())?_c('div',{staticClass:\"arrow up\",on:{\"click\":_vm.moveWaypointUp}}):_vm._e(),(_vm.hasLowerNeighbor())?_c('div',{staticClass:\"arrow down\",on:{\"click\":_vm.moveWaypointDown}}):_vm._e(),_c('button',{staticClass:\"buttonWaypoint buttonRed buttonRemoveWaypoint\",on:{\"click\":_vm.removeComponent}},[_vm._v(\"Remove\")])])}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\nimport Position from './Position'\n\nexport default class Waypoint {\n\n\tstatic OPTIONS = {\n\t\thold: 1,\n\t\tacceptRadius: 2,\n\t\tpassRadius: 3,\n\t\tyaw: 4,\n\t\tlatitude: 5,\n\t\tlongitude: 6,\n\t\taltitude: 7\n\t}\n\n\t// MAV_CMD_NAV_WAYPOINT\n\t/*\n\tParam (:Label)\t\t\tValues\t\tUnits\n\t1: Hold\t\t\t\t\tmin:0\t\ts\n\t2: Accept Radius\t\tmin:0\t\tm\n\t3: Pass Radius\t\t\t\t\t\tm\n\t4: Yaw\t\t\t\t\t\t\t\tdeg\n\t5: Latitude\n\t6: Longitude\n\t7: Altitude\tAltitude\t\t\t\tm\n\t*/\n\n\tstatic defaultOptions = {\n\t\thold: 0,\n\t\tyaw: 0,\n\t\tacceptRadius: 0,\n\t\tpassRadius: 0\n\t}\n\n\tposition: Position;\n\tid: number;\n\n\thold: number;\n\tyaw: number;\n\tacceptRadius: number;\n\tpassRadius: number;\n\n\tstatic curId = 0;\n\n\tconstructor(position: Position) {\n\t\tthis.position = position\n\t\tthis.id = Waypoint.getId();\n\n\t\tthis.hold =\t\t\tWaypoint.defaultOptions.hold\n\t\tthis.yaw =\t\t\tWaypoint.defaultOptions.yaw\n\t\tthis.acceptRadius =\tWaypoint.defaultOptions.acceptRadius\n\t\tthis.passRadius =\tWaypoint.defaultOptions.passRadius\n\t}\n\n\ttoString() {\n\t\treturn `Waypoint: ${this.position}`\n\t}\n\n\tstatic getId() {\n\t\treturn Waypoint.curId++;\n\t}\n\n\tisCorrect() {\n\t\treturn (this.errorValues().length == 0)\n\t}\n\n\terrorValues() {\n\t\tconst vars = [\n\t\t\tthis.hold,\n\t\t\tthis.acceptRadius,\n\t\t\tthis.passRadius,\n\t\t\tthis.yaw,\n\n\t\t\tthis.position.latitude,\n\t\t\tthis.position.longitude,\n\t\t\tthis.position.altitude\n\t\t]\n\n\t\tconst res: number[] = []\n\n\t\tvars.map((number, index) => ({\n\t\t\tnumber, index\n\t\t})).filter(item => {\n\t\t\treturn isNaN(item.number)\n\t\t}).forEach(item => {\n\t\t\tres.push(item.index + 1)\n\t\t})\n\n\t\tif ((!(res.includes(Waypoint.OPTIONS.latitude)) &&\n\t\t\t(vars[Waypoint.OPTIONS.latitude - 1] < -90) || vars[Waypoint.OPTIONS.latitude - 1] > 90)) {\n\t\t\tres.push(Waypoint.OPTIONS.latitude)\n\t\t\tconsole.log(vars[Waypoint.OPTIONS.latitude - 1])\n\t\t}\n\n\t\tif ((!(res.includes(Waypoint.OPTIONS.longitude)) &&\n\t\t\t(vars[Waypoint.OPTIONS.longitude - 1] < -180) || vars[Waypoint.OPTIONS.longitude - 1] > 180)) {\n\t\t\tres.push(Waypoint.OPTIONS.longitude)\n\t\t}\n\n\t\tif ((!(res.includes(Waypoint.OPTIONS.hold))) && vars[Waypoint.OPTIONS.hold - 1] < 0) {\n\t\t\tres.push(Waypoint.OPTIONS.hold)\n\t\t}\n\n\t\tif ((!(res.includes(Waypoint.OPTIONS.acceptRadius))) && vars[Waypoint.OPTIONS.acceptRadius - 1] < 0) {\n\t\t\tres.push(Waypoint.OPTIONS.acceptRadius)\n\t\t}\n\n\t\treturn res\n\t}\n\n\ttoURI(): string {\n\t\treturn `\n\t\t\tlat=${encodeURIComponent(this.position.latitude)}&\n\t\t\tlon=${encodeURIComponent(this.position.longitude)}&\n\t\t\talt=${encodeURIComponent(this.position.altitude)}&\n\t\t\tid=${encodeURIComponent(this.id)}&\n\t\t\thold=${encodeURIComponent(this.hold)}&\n\t\t\tar=${encodeURIComponent(this.acceptRadius)}&\n\t\t\tpr=${encodeURIComponent(this.passRadius)}&\n\t\t\tyaw=${encodeURIComponent(this.yaw)}\n\t\t`\n\t}\n}\n","\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nimport Waypoint from '../classes/Waypoint'\nimport { Component, Prop, Vue } from 'vue-property-decorator';\nimport MissionPlanner from './MissionPlanner.vue';\n\nimport L from 'leaflet';\n\n// A component that represents a mission item and allows a user to change its properties\n\n@Component\nexport default class WaypointComponent extends Vue {\n\t@Prop() private waypoint!: Waypoint\n\t@Prop() private removeWaypoint!: () => void\n\t@Prop() private moveWaypointUp!: () => void\n\t@Prop() private moveWaypointDown!: () => void\n\t@Prop() private marker!: L.Marker\n\t@Prop() private removeMarker!: (marker: L.Marker) => void\n\t@Prop() private updateWaypoints!: () => void\n\n\tmissionPlanner = this.$parent as MissionPlanner\n\n\tprivate removeComponent() {\n\t\tthis.removeWaypoint()\n\t\tthis.removeMarker(this.marker)\n\t}\n\n\tprivate hasUpperNeighbor() {\n\t\treturn this.missionPlanner.getWaypointIndex(this.waypoint.id) != 0;\n\t}\n\n\tprivate hasLowerNeighbor() {\n\t\treturn this.missionPlanner.getWaypointIndex(this.waypoint.id) != this.missionPlanner.size - 1;\n\t}\n\n\t// This function highlights fields that have either type or constraint errors in them\n\tprivate checkWaypoint() {\n\t\tconst fields = this.waypoint.errorValues()\n\n\t\tif (fields.length == 0) {\n\t\t\tthis.updateMarker();\n\t\t\tthis.updateWaypoints();\n\t\t}\n\n\t\tconst waypointComponents = [\n\t\t\tdocument.getElementById(`Waypoint${this.waypoint.id}_latitude`),\n\t\t\tdocument.getElementById(`Waypoint${this.waypoint.id}_longitude`),\n\t\t\tdocument.getElementById(`Waypoint${this.waypoint.id}_altitude`),\n\t\t\tdocument.getElementById(`Waypoint${this.waypoint.id}_yaw`),\n\t\t\tdocument.getElementById(`Waypoint${this.waypoint.id}_hold`),\n\t\t\tdocument.getElementById(`Waypoint${this.waypoint.id}_acceptRadius`),\n\t\t\tdocument.getElementById(`Waypoint${this.waypoint.id}_passRadius`)\n\t\t]\n\n\t\tif (waypointComponents.filter(item => item == null).length != 0) {\n\t\t\tthrow Error(\"Waypoint not found\")\n\t\t}\n\n\t\tconst position = [\n\t\t\tfields.includes(Waypoint.OPTIONS.latitude),\n\t\t\tfields.includes(Waypoint.OPTIONS.longitude),\n\t\t\tfields.includes(Waypoint.OPTIONS.altitude),\n\t\t\tfields.includes(Waypoint.OPTIONS.yaw),\n\t\t\tfields.includes(Waypoint.OPTIONS.hold),\n\t\t\tfields.includes(Waypoint.OPTIONS.acceptRadius),\n\t\t\tfields.includes(Waypoint.OPTIONS.passRadius)\n\t\t\t]\n\n\t\tposition.forEach((value, index) => {\n\t\t\tif (value) {\n\t\t\t\twaypointComponents[index]?.classList.add(\"inputTextNaN\")\n\t\t\t} else {\n\t\t\t\twaypointComponents[index]?.classList.remove(\"inputTextNaN\")\n\t\t\t}\n\t\t})\n\t}\n\n\t// This function prevents any inputs other than [ '0', '1', ... , '9', '.', '-' ]\n private checkCharacter(event: Event | undefined) {\n\t\t// Modified code from:\n\t\t//\thttps://stackoverflow.com/questions/39782176/filter-input-text-only-accept-number-and-dot-vue-js\n\n\t\tevent = (event) ? event : window.event;\n\t\tif (!event) return\n\n\t\tconst evt = event as KeyboardEvent\n\t\tvar charCode = (evt.which) ? evt.which : evt.keyCode;\n\t\tif ((charCode != 45) && (charCode > 31 && (charCode < 48 || charCode > 57)) && charCode !== 46) {\n\t\t\tevt.preventDefault();\n\t\t}\n }\n\n\tprivate updateMarker() {\n\t\tthis.marker.setLatLng(\n\t\t\tnew L.LatLng(this.waypoint.position.latitude, this.waypoint.position.longitude, this.waypoint.position.altitude)\n\t\t)\n\t}\n}\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--14-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/ts-loader/index.js??ref--14-3!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./Waypoint.vue?vue&type=script&lang=ts&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--14-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/ts-loader/index.js??ref--14-3!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./Waypoint.vue?vue&type=script&lang=ts&\"","import { render, staticRenderFns } from \"./Waypoint.vue?vue&type=template&id=23a9cc93&scoped=true&\"\nimport script from \"./Waypoint.vue?vue&type=script&lang=ts&\"\nexport * from \"./Waypoint.vue?vue&type=script&lang=ts&\"\nimport style0 from \"./Waypoint.vue?vue&type=style&index=0&id=23a9cc93&scoped=true&lang=css&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n \"23a9cc93\",\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('ul',{staticClass:\"menu\"},[_c('li',{attrs:{\"id\":\"mapButton\"},on:{\"click\":function($event){return _vm.select(0)}}},[_vm._v(\"Map\")]),_c('li',{attrs:{\"id\":\"cameraButton\"},on:{\"click\":function($event){return _vm.select(1)}}},[_vm._v(\"Camera\")])])}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n\n\n\n\n\n\nimport { Component, Prop, Vue } from 'vue-property-decorator';\n\n// A component that displays buttons which switch elements displayed in the web application\n\n@Component\nexport default class Menu extends Vue {\n\tactiveWindow = 0;\n\n\t@Prop() private changeActiveWindow!: (windowIndex: number) => void\n\t@Prop() private windows!: number[];\n\n\tmounted() {\n\t\tthis.select(this.activeWindow)\n\t}\n\n\t// A method that changes \"activeWindow\" property and menu button's styles to show which option is currently selected\n\tselect(menuOption: number) {\n\t\tif (menuOption < 0) throw Error(`Menu option is ${menuOption} < 0`)\n\t\tif (menuOption >= this.windows.length) throw Error(`Menu option is ${menuOption} >= numberOfMenuOptions`)\n\t\tthis.activeWindow = menuOption;\n\t\tthis.changeActiveWindow(menuOption)\n\n\t\tthis.windows.forEach((window, index) => {\n\t\t\tconst button = document.getElementById(`${window}Button`)\n\t\t\tif (button == undefined) throw Error(`Error: No menu element \"${window}\" found`)\n\t\t\tbutton.classList.remove(...button.classList)\n\t\t\tbutton.classList.add(index == menuOption ? \"selected\" : \"notSelected\")\n\t\t\tbutton.classList.add('noselect')\n\t\t})\n\t}\n}\n","export enum MavFrame {\n\tMAV_FRAME_GLOBAL = 0, // Global (WGS84) coordinate frame + MSL altitude. First value / x: latitude, second value / y: longitude, third value / z: positive altitude over mean sea level (MSL).\n\tMAV_FRAME_LOCAL_NED = 1, // Local coordinate frame, Z-down (x: North, y: East, z: Down).\n\tMAV_FRAME_MISSION = 2, // NOT a coordinate frame, indicates a mission command.\n\tMAV_FRAME_GLOBAL_RELATIVE_ALT = 3, // Global (WGS84) coordinate frame + altitude relative to the home position. First value / x: latitude, second value / y: longitude, third value / z: positive altitude with 0 being at the altitude of the home location.\n\tMAV_FRAME_LOCAL_ENU = 4, // Local coordinate frame, Z-up (x: East, y: North, z: Up).\n\tMAV_FRAME_GLOBAL_INT = 5, // Global (WGS84) coordinate frame (scaled) + MSL altitude. First value / x: latitude in degrees*1.0e-7, second value / y: longitude in degrees*1.0e-7, third value / z: positive altitude over mean sea level (MSL).\n\tMAV_FRAME_GLOBAL_RELATIVE_ALT_INT = 6, // Global (WGS84) coordinate frame (scaled) + altitude relative to the home position. First value / x: latitude in degrees*10e-7, second value / y: longitude in degrees*10e-7, third value / z: positive altitude with 0 being at the altitude of the home location.\n\tMAV_FRAME_LOCAL_OFFSET_NED = 7, // Offset to the current local frame. Anything expressed in this frame should be added to the current local frame position.\n\tMAV_FRAME_BODY_NED = 8, // Setpoint in body NED frame. This makes sense if all position control is externalized - e.g. useful to command 2 m/s^2 acceleration to the right.\n\tMAV_FRAME_BODY_OFFSET_NED = 9, // Offset in body NED frame. This makes sense if adding setpoints to the current flight path, to avoid an obstacle - e.g. useful to command 2 m/s^2 acceleration to the east.\n\tMAV_FRAME_GLOBAL_TERRAIN_ALT = 10, // Global (WGS84) coordinate frame with AGL altitude (at the waypoint coordinate). First value / x: latitude in degrees, second value / y: longitude in degrees, third value / z: positive altitude in meters with 0 being at ground level in terrain model.\n\tMAV_FRAME_GLOBAL_TERRAIN_ALT_INT = 11, // Global (WGS84) coordinate frame (scaled) with AGL altitude (at the waypoint coordinate). First value / x: latitude in degrees*10e-7, second value / y: longitude in degrees*10e-7, third value / z: positive altitude in meters with 0 being at ground level in terrain model.\n\tMAV_FRAME_BODY_FRD = 12, // Body fixed frame of reference, Z-down (x: Forward, y: Right, z: Down).\n\tMAV_FRAME_RESERVED_13 = 13, // MAV_FRAME_BODY_FLU - Body fixed frame of reference, Z-up (x: Forward, y: Left, z: Up).\n\tMAV_FRAME_RESERVED_14 = 14, // MAV_FRAME_MOCAP_NED - Odometry local coordinate frame of data given by a motion capture system, Z-down (x: North, y: East, z: Down).\n\tMAV_FRAME_RESERVED_15 = 15, // MAV_FRAME_MOCAP_ENU - Odometry local coordinate frame of data given by a motion capture system, Z-up (x: East, y: North, z: Up).\n\tMAV_FRAME_RESERVED_16 = 16, // MAV_FRAME_VISION_NED - Odometry local coordinate frame of data given by a vision estimation system, Z-down (x: North, y: East, z: Down).\n\tMAV_FRAME_RESERVED_17 = 17, // MAV_FRAME_VISION_ENU - Odometry local coordinate frame of data given by a vision estimation system, Z-up (x: East, y: North, z: Up).\n\tMAV_FRAME_RESERVED_18 = 18, // MAV_FRAME_ESTIM_NED - Odometry local coordinate frame of data given by an estimator running onboard the vehicle, Z-down (x: North, y: East, z: Down).\n\tMAV_FRAME_RESERVED_19 = 19, // MAV_FRAME_ESTIM_ENU - Odometry local coordinate frame of data given by an estimator running onboard the vehicle, Z-up (x: East, y: North, z: Up).\n\tMAV_FRAME_LOCAL_FRD = 20, // Forward, Right, Down coordinate frame. This is a local frame with Z-down and arbitrary F/R alignment (i.e. not aligned with NED/earth frame).\n\tMAV_FRAME_LOCAL_FLU = 21, // Forward, Left, Up coordinate frame. This is a local frame with Z-up and arbitrary F/L alignment (i.e. not aligned with ENU/earth frame).\n\tMAV_FRAME_ENUM_END = 22, // \n}","export enum MavCmd {\n\tMAV_CMD_NAV_WAYPOINT = 16, // Navigate to waypoint.\n\tMAV_CMD_NAV_LOITER_UNLIM = 17, // Loiter around this waypoint an unlimited amount of time\n\tMAV_CMD_NAV_LOITER_TURNS = 18, // Loiter around this waypoint for X turns\n\tMAV_CMD_NAV_LOITER_TIME = 19, // Loiter at the specified latitude, longitude and altitude for a certain amount of time. Multicopter vehicles stop at the point (within a vehicle-specific acceptance radius). Forward-only moving vehicles (e.g. fixed-wing) circle the point with the specified radius/direction. If the Heading Required parameter (2) is non-zero forward moving aircraft will only leave the loiter circle once heading towards the next waypoint.\n\tMAV_CMD_NAV_RETURN_TO_LAUNCH = 20, // Return to launch location\n\tMAV_CMD_NAV_LAND = 21, // Land at location.\n\tMAV_CMD_NAV_TAKEOFF = 22, // Takeoff from ground / hand. Vehicles that support multiple takeoff modes (e.g. VTOL quadplane) should take off using the currently configured mode.\n\tMAV_CMD_NAV_LAND_LOCAL = 23, // Land at local position (local frame only)\n\tMAV_CMD_NAV_TAKEOFF_LOCAL = 24, // Takeoff from local position (local frame only)\n\tMAV_CMD_NAV_FOLLOW = 25, // Vehicle following, i.e. this waypoint represents the position of a moving vehicle\n\tMAV_CMD_NAV_CONTINUE_AND_CHANGE_ALT = 30, // Continue on the current course and climb/descend to specified altitude. When the altitude is reached continue to the next command (i.e., don't proceed to the next command until the desired altitude is reached.\n\tMAV_CMD_NAV_LOITER_TO_ALT = 31, // Begin loiter at the specified Latitude and Longitude. If Lat=Lon=0, then loiter at the current position. Don't consider the navigation command complete (don't leave loiter) until the altitude has been reached. Additionally, if the Heading Required parameter is non-zero the aircraft will not leave the loiter until heading toward the next waypoint.\n\tMAV_CMD_DO_FOLLOW = 32, // Begin following a target\n\tMAV_CMD_DO_FOLLOW_REPOSITION = 33, // Reposition the MAV after a follow target command has been sent\n\tMAV_CMD_DO_ORBIT = 34, // Start orbiting on the circumference of a circle defined by the parameters. Setting any value NaN results in using defaults.\n\tMAV_CMD_NAV_ROI = 80, // Sets the region of interest (ROI) for a sensor set or the vehicle itself. This can then be used by the vehicle's control system to control the vehicle attitude and the attitude of various sensors such as cameras.\n\tMAV_CMD_NAV_PATHPLANNING = 81, // Control autonomous path planning on the MAV.\n\tMAV_CMD_NAV_SPLINE_WAYPOINT = 82, // Navigate to waypoint using a spline path.\n\tMAV_CMD_NAV_VTOL_TAKEOFF = 84, // Takeoff from ground using VTOL mode, and transition to forward flight with specified heading. The command should be ignored by vehicles that dont support both VTOL and fixed-wing flight (multicopters, boats,etc.).\n\tMAV_CMD_NAV_VTOL_LAND = 85, // Land using VTOL mode\n\tMAV_CMD_NAV_GUIDED_ENABLE = 92, // hand control over to an external controller\n\tMAV_CMD_NAV_DELAY = 93, // Delay the next navigation command a number of seconds or until a specified time\n\tMAV_CMD_NAV_PAYLOAD_PLACE = 94, // Descend and place payload. Vehicle moves to specified location, descends until it detects a hanging payload has reached the ground, and then releases the payload. If ground is not detected before the reaching the maximum descent value (param1), the command will complete without releasing the payload.\n\tMAV_CMD_NAV_LAST = 95, // NOP - This command is only used to mark the upper limit of the NAV/ACTION commands in the enumeration\n\tMAV_CMD_CONDITION_DELAY = 112, // Delay mission state machine.\n\tMAV_CMD_CONDITION_CHANGE_ALT = 113, // Ascend/descend to target altitude at specified rate. Delay mission state machine until desired altitude reached.\n\tMAV_CMD_CONDITION_DISTANCE = 114, // Delay mission state machine until within desired distance of next NAV point.\n\tMAV_CMD_CONDITION_YAW = 115, // Reach a certain target angle.\n\tMAV_CMD_CONDITION_LAST = 159, // NOP - This command is only used to mark the upper limit of the CONDITION commands in the enumeration\n\tMAV_CMD_DO_SET_MODE = 176, // Set system mode.\n\tMAV_CMD_DO_JUMP = 177, // Jump to the desired command in the mission list. Repeat this action only the specified number of times\n\tMAV_CMD_DO_CHANGE_SPEED = 178, // Change speed and/or throttle set points.\n\tMAV_CMD_DO_SET_HOME = 179, // Changes the home location either to the current location or a specified location.\n\tMAV_CMD_DO_SET_PARAMETER = 180, // Set a system parameter. Caution! Use of this command requires knowledge of the numeric enumeration value of the parameter.\n\tMAV_CMD_DO_SET_RELAY = 181, // Set a relay to a condition.\n\tMAV_CMD_DO_REPEAT_RELAY = 182, // Cycle a relay on and off for a desired number of cycles with a desired period.\n\tMAV_CMD_DO_SET_SERVO = 183, // Set a servo to a desired PWM value.\n\tMAV_CMD_DO_REPEAT_SERVO = 184, // Cycle a between its nominal setting and a desired PWM for a desired number of cycles with a desired period.\n\tMAV_CMD_DO_FLIGHTTERMINATION = 185, // Terminate flight immediately\n\tMAV_CMD_DO_CHANGE_ALTITUDE = 186, // Change altitude set point.\n\tMAV_CMD_DO_SET_ACTUATOR = 187, // Sets actuators (e.g. servos) to a desired value. The actuator numbers are mapped to specific outputs (e.g. on any MAIN or AUX PWM or UAVCAN) using a flight-stack specific mechanism (i.e. a parameter).\n\tMAV_CMD_DO_LAND_START = 189, // Mission command to perform a landing. This is used as a marker in a mission to tell the autopilot where a sequence of mission items that represents a landing starts. It may also be sent via a COMMAND_LONG to trigger a landing, in which case the nearest (geographically) landing sequence in the mission will be used. The Latitude/Longitude is optional, and may be set to 0 if not needed. If specified then it will be used to help find the closest landing sequence.\n\tMAV_CMD_DO_RALLY_LAND = 190, // Mission command to perform a landing from a rally point.\n\tMAV_CMD_DO_GO_AROUND = 191, // Mission command to safely abort an autonomous landing.\n\tMAV_CMD_DO_REPOSITION = 192, // Reposition the vehicle to a specific WGS84 global position.\n\tMAV_CMD_DO_PAUSE_CONTINUE = 193, // If in a GPS controlled position mode, hold the current position or continue.\n\tMAV_CMD_DO_SET_REVERSE = 194, // Set moving direction to forward or reverse.\n\tMAV_CMD_DO_SET_ROI_LOCATION = 195, // Sets the region of interest (ROI) to a location. This can then be used by the vehicle's control system to control the vehicle attitude and the attitude of various sensors such as cameras. This command can be sent to a gimbal manager but not to a gimbal device. A gimbal is not to react to this message.\n\tMAV_CMD_DO_SET_ROI_WPNEXT_OFFSET = 196, // Sets the region of interest (ROI) to be toward next waypoint, with optional pitch/roll/yaw offset. This can then be used by the vehicle's control system to control the vehicle attitude and the attitude of various sensors such as cameras. This command can be sent to a gimbal manager but not to a gimbal device. A gimbal device is not to react to this message.\n\tMAV_CMD_DO_SET_ROI_NONE = 197, // Cancels any previous ROI command returning the vehicle/sensors to default flight characteristics. This can then be used by the vehicle's control system to control the vehicle attitude and the attitude of various sensors such as cameras. This command can be sent to a gimbal manager but not to a gimbal device. A gimbal device is not to react to this message. After this command the gimbal manager should go back to manual input if available, and otherwise assume a neutral position.\n\tMAV_CMD_DO_SET_ROI_SYSID = 198, // Mount tracks system with specified system ID. Determination of target vehicle position may be done with GLOBAL_POSITION_INT or any other means. This command can be sent to a gimbal manager but not to a gimbal device. A gimbal device is not to react to this message.\n\tMAV_CMD_DO_SPRAYER = 199, // Control attached liquid sprayer\n\tMAV_CMD_DO_CONTROL_VIDEO = 200, // Control onboard camera system.\n\tMAV_CMD_DO_SET_ROI = 201, // Sets the region of interest (ROI) for a sensor set or the vehicle itself. This can then be used by the vehicle's control system to control the vehicle attitude and the attitude of various sensors such as cameras.\n\tMAV_CMD_DO_DIGICAM_CONFIGURE = 202, // Configure digital camera. This is a fallback message for systems that have not yet implemented PARAM_EXT_XXX messages and camera definition files (see https://mavlink.io/en/services/camera_def.html ).\n\tMAV_CMD_DO_DIGICAM_CONTROL = 203, // Control digital camera. This is a fallback message for systems that have not yet implemented PARAM_EXT_XXX messages and camera definition files (see https://mavlink.io/en/services/camera_def.html ).\n\tMAV_CMD_DO_MOUNT_CONFIGURE = 204, // Mission command to configure a camera or antenna mount\n\tMAV_CMD_DO_MOUNT_CONTROL = 205, // Mission command to control a camera or antenna mount\n\tMAV_CMD_DO_SET_CAM_TRIGG_DIST = 206, // Mission command to set camera trigger distance for this flight. The camera is triggered each time this distance is exceeded. This command can also be used to set the shutter integration time for the camera.\n\tMAV_CMD_DO_FENCE_ENABLE = 207, // Mission command to enable the geofence\n\tMAV_CMD_DO_PARACHUTE = 208, // Mission item/command to release a parachute or enable/disable auto release.\n\tMAV_CMD_DO_MOTOR_TEST = 209, // Mission command to perform motor test.\n\tMAV_CMD_DO_INVERTED_FLIGHT = 210, // Change to/from inverted flight.\n\tMAV_CMD_DO_GRIPPER = 211, // Mission command to operate a gripper.\n\tMAV_CMD_DO_AUTOTUNE_ENABLE = 212, // Enable/disable autotune.\n\tMAV_CMD_NAV_SET_YAW_SPEED = 213, // Sets a desired vehicle turn angle and speed change.\n\tMAV_CMD_DO_SET_CAM_TRIGG_INTERVAL = 214, // Mission command to set camera trigger interval for this flight. If triggering is enabled, the camera is triggered each time this interval expires. This command can also be used to set the shutter integration time for the camera.\n\tMAV_CMD_DO_MOUNT_CONTROL_QUAT = 220, // Mission command to control a camera or antenna mount, using a quaternion as reference.\n\tMAV_CMD_DO_GUIDED_MASTER = 221, // set id of master controller\n\tMAV_CMD_DO_GUIDED_LIMITS = 222, // Set limits for external control\n\tMAV_CMD_DO_ENGINE_CONTROL = 223, // Control vehicle engine. This is interpreted by the vehicles engine controller to change the target engine state. It is intended for vehicles with internal combustion engines\n\tMAV_CMD_DO_SET_MISSION_CURRENT = 224, // Set the mission item with sequence number seq as current item. This means that the MAV will continue to this mission item on the shortest path (not following the mission items in-between).\n\tMAV_CMD_DO_LAST = 240, // NOP - This command is only used to mark the upper limit of the DO commands in the enumeration\n\tMAV_CMD_PREFLIGHT_CALIBRATION = 241, // Trigger calibration. This command will be only accepted if in pre-flight mode. Except for Temperature Calibration, only one sensor should be set in a single message and all others should be zero.\n\tMAV_CMD_PREFLIGHT_SET_SENSOR_OFFSETS = 242, // Set sensor offsets. This command will be only accepted if in pre-flight mode.\n\tMAV_CMD_PREFLIGHT_UAVCAN = 243, // Trigger UAVCAN configuration (actuator ID assignment and direction mapping). Note that this maps to the legacy UAVCAN v0 function UAVCAN_ENUMERATE, which is intended to be executed just once during initial vehicle configuration (it is not a normal pre-flight command and has been poorly named).\n\tMAV_CMD_PREFLIGHT_STORAGE = 245, // Request storage of different parameter values and logs. This command will be only accepted if in pre-flight mode.\n\tMAV_CMD_PREFLIGHT_REBOOT_SHUTDOWN = 246, // Request the reboot or shutdown of system components.\n\tMAV_CMD_DO_UPGRADE = 247, // Request a target system to start an upgrade of one (or all) of its components. For example, the command might be sent to a companion computer to cause it to upgrade a connected flight controller. The system doing the upgrade will report progress using the normal command protocol sequence for a long running operation. Command protocol information: https://mavlink.io/en/services/command.html.\n\tMAV_CMD_OVERRIDE_GOTO = 252, // Override current mission with command to pause mission, pause mission and move to position, continue/resume mission. When param 1 indicates that the mission is paused (MAV_GOTO_DO_HOLD), param 2 defines whether it holds in place or moves to another position.\n\tMAV_CMD_OBLIQUE_SURVEY = 260, // Mission command to set a Camera Auto Mount Pivoting Oblique Survey (Replaces CAM_TRIGG_DIST for this purpose). The camera is triggered each time this distance is exceeded, then the mount moves to the next position. Params 4~6 set-up the angle limits and number of positions for oblique survey, where mount-enabled vehicles automatically roll the camera between shots to emulate an oblique camera setup (providing an increased HFOV). This command can also be used to set the shutter integration time for the camera.\n\tMAV_CMD_MISSION_START = 300, // start running a mission\n\tMAV_CMD_COMPONENT_ARM_DISARM = 400, // Arms / Disarms a component\n\tMAV_CMD_ILLUMINATOR_ON_OFF = 405, // Turns illuminators ON/OFF. An illuminator is a light source that is used for lighting up dark areas external to the sytstem: e.g. a torch or searchlight (as opposed to a light source for illuminating the system itself, e.g. an indicator light).\n\tMAV_CMD_GET_HOME_POSITION = 410, // Request the home position from the vehicle.\n\tMAV_CMD_INJECT_FAILURE = 420, // Inject artificial failure for testing purposes. Note that autopilots should implement an additional protection before accepting this command such as a specific param setting.\n\tMAV_CMD_START_RX_PAIR = 500, // Starts receiver pairing.\n\tMAV_CMD_GET_MESSAGE_INTERVAL = 510, // Request the interval between messages for a particular MAVLink message ID. The receiver should ACK the command and then emit its response in a MESSAGE_INTERVAL message.\n\tMAV_CMD_SET_MESSAGE_INTERVAL = 511, // Set the interval between messages for a particular MAVLink message ID. This interface replaces REQUEST_DATA_STREAM.\n\tMAV_CMD_REQUEST_MESSAGE = 512, // Request the target system(s) emit a single instance of a specified message (i.e. a \"one-shot\" version of MAV_CMD_SET_MESSAGE_INTERVAL).\n\tMAV_CMD_REQUEST_PROTOCOL_VERSION = 519, // Request MAVLink protocol version compatibility. All receivers should ACK the command and then emit their capabilities in an PROTOCOL_VERSION message\n\tMAV_CMD_REQUEST_AUTOPILOT_CAPABILITIES = 520, // Request autopilot capabilities. The receiver should ACK the command and then emit its capabilities in an AUTOPILOT_VERSION message\n\tMAV_CMD_REQUEST_CAMERA_INFORMATION = 521, // Request camera information (CAMERA_INFORMATION).\n\tMAV_CMD_REQUEST_CAMERA_SETTINGS = 522, // Request camera settings (CAMERA_SETTINGS).\n\tMAV_CMD_REQUEST_STORAGE_INFORMATION = 525, // Request storage information (STORAGE_INFORMATION). Use the command's target_component to target a specific component's storage.\n\tMAV_CMD_STORAGE_FORMAT = 526, // Format a storage medium. Once format is complete, a STORAGE_INFORMATION message is sent. Use the command's target_component to target a specific component's storage.\n\tMAV_CMD_REQUEST_CAMERA_CAPTURE_STATUS = 527, // Request camera capture status (CAMERA_CAPTURE_STATUS)\n\tMAV_CMD_REQUEST_FLIGHT_INFORMATION = 528, // Request flight information (FLIGHT_INFORMATION)\n\tMAV_CMD_RESET_CAMERA_SETTINGS = 529, // Reset all camera settings to Factory Default\n\tMAV_CMD_SET_CAMERA_MODE = 530, // Set camera running mode. Use NaN for reserved values. GCS will send a MAV_CMD_REQUEST_VIDEO_STREAM_STATUS command after a mode change if the camera supports video streaming.\n\tMAV_CMD_SET_CAMERA_ZOOM = 531, // Set camera zoom. Camera must respond with a CAMERA_SETTINGS message (on success).\n\tMAV_CMD_SET_CAMERA_FOCUS = 532, // Set camera focus. Camera must respond with a CAMERA_SETTINGS message (on success).\n\tMAV_CMD_JUMP_TAG = 600, // Tagged jump target. Can be jumped to with MAV_CMD_DO_JUMP_TAG.\n\tMAV_CMD_DO_JUMP_TAG = 601, // Jump to the matching tag in the mission list. Repeat this action for the specified number of times. A mission should contain a single matching tag for each jump. If this is not the case then a jump to a missing tag should complete the mission, and a jump where there are multiple matching tags should always select the one with the lowest mission sequence number.\n\tMAV_CMD_PARAM_TRANSACTION = 900, // Request to start or end a parameter transaction. Multiple kinds of transport layers can be used to exchange parameters in the transaction (param, param_ext and mavftp). The command response can either be a success/failure or an in progress in case the receiving side takes some time to apply the parameters.\n\tMAV_CMD_DO_GIMBAL_MANAGER_PITCHYAW = 1000, // High level setpoint to be sent to a gimbal manager to set a gimbal attitude. It is possible to set combinations of the values below. E.g. an angle as well as a desired angular rate can be used to get to this angle at a certain angular rate, or an angular rate only will result in continuous turning. NaN is to be used to signal unset. Note: a gimbal is never to react to this command but only the gimbal manager.\n\tMAV_CMD_DO_GIMBAL_MANAGER_CONFIGURE = 1001, // Gimbal configuration to set which sysid/compid is in primary and secondary control.\n\tMAV_CMD_IMAGE_START_CAPTURE = 2000, // Start image capture sequence. Sends CAMERA_IMAGE_CAPTURED after each capture. Use NaN for reserved values.\n\tMAV_CMD_IMAGE_STOP_CAPTURE = 2001, // Stop image capture sequence Use NaN for reserved values.\n\tMAV_CMD_REQUEST_CAMERA_IMAGE_CAPTURE = 2002, // Re-request a CAMERA_IMAGE_CAPTURED message.\n\tMAV_CMD_DO_TRIGGER_CONTROL = 2003, // Enable or disable on-board camera triggering system.\n\tMAV_CMD_CAMERA_TRACK_POINT = 2004, // If the camera supports point visual tracking (CAMERA_CAP_FLAGS_HAS_TRACKING_POINT is set), this command allows to initiate the tracking.\n\tMAV_CMD_CAMERA_TRACK_RECTANGLE = 2005, // If the camera supports rectangle visual tracking (CAMERA_CAP_FLAGS_HAS_TRACKING_RECTANGLE is set), this command allows to initiate the tracking.\n\tMAV_CMD_CAMERA_STOP_TRACKING = 2010, // Stops ongoing tracking.\n\tMAV_CMD_VIDEO_START_CAPTURE = 2500, // Starts video capture (recording).\n\tMAV_CMD_VIDEO_STOP_CAPTURE = 2501, // Stop the current video capture (recording).\n\tMAV_CMD_VIDEO_START_STREAMING = 2502, // Start video streaming\n\tMAV_CMD_VIDEO_STOP_STREAMING = 2503, // Stop the given video stream\n\tMAV_CMD_REQUEST_VIDEO_STREAM_INFORMATION = 2504, // Request video stream information (VIDEO_STREAM_INFORMATION)\n\tMAV_CMD_REQUEST_VIDEO_STREAM_STATUS = 2505, // Request video stream status (VIDEO_STREAM_STATUS)\n\tMAV_CMD_LOGGING_START = 2510, // Request to start streaming logging data over MAVLink (see also LOGGING_DATA message)\n\tMAV_CMD_LOGGING_STOP = 2511, // Request to stop streaming log data over MAVLink\n\tMAV_CMD_AIRFRAME_CONFIGURATION = 2520, // \n\tMAV_CMD_CONTROL_HIGH_LATENCY = 2600, // Request to start/stop transmitting over the high latency telemetry\n\tMAV_CMD_PANORAMA_CREATE = 2800, // Create a panorama at the current position\n\tMAV_CMD_DO_VTOL_TRANSITION = 3000, // Request VTOL transition\n\tMAV_CMD_ARM_AUTHORIZATION_REQUEST = 3001, // Request authorization to arm the vehicle to a external entity, the arm authorizer is responsible to request all data that is needs from the vehicle before authorize or deny the request. If approved the progress of command_ack message should be set with period of time that this authorization is valid in seconds or in case it was denied it should be set with one of the reasons in ARM_AUTH_DENIED_REASON.\n \n\tMAV_CMD_SET_GUIDED_SUBMODE_STANDARD = 4000, // This command sets the submode to standard guided when vehicle is in guided mode. The vehicle holds position and altitude and the user can input the desired velocities along all three axes.\n \n\tMAV_CMD_SET_GUIDED_SUBMODE_CIRCLE = 4001, // This command sets submode circle when vehicle is in guided mode. Vehicle flies along a circle facing the center of the circle. The user can input the velocity along the circle and change the radius. If no input is given the vehicle will hold position.\n \n\tMAV_CMD_CONDITION_GATE = 4501, // Delay mission state machine until gate has been reached.\n\tMAV_CMD_NAV_FENCE_RETURN_POINT = 5000, // Fence return point (there can only be one such point in a geofence definition). If rally points are supported they should be used instead.\n\tMAV_CMD_NAV_FENCE_POLYGON_VERTEX_INCLUSION = 5001, // Fence vertex for an inclusion polygon (the polygon must not be self-intersecting). The vehicle must stay within this area. Minimum of 3 vertices required.\n \n\tMAV_CMD_NAV_FENCE_POLYGON_VERTEX_EXCLUSION = 5002, // Fence vertex for an exclusion polygon (the polygon must not be self-intersecting). The vehicle must stay outside this area. Minimum of 3 vertices required.\n \n\tMAV_CMD_NAV_FENCE_CIRCLE_INCLUSION = 5003, // Circular fence area. The vehicle must stay inside this area.\n \n\tMAV_CMD_NAV_FENCE_CIRCLE_EXCLUSION = 5004, // Circular fence area. The vehicle must stay outside this area.\n \n\tMAV_CMD_NAV_RALLY_POINT = 5100, // Rally point. You can have multiple rally points defined.\n \n\tMAV_CMD_UAVCAN_GET_NODE_INFO = 5200, // Commands the vehicle to respond with a sequence of messages UAVCAN_NODE_INFO, one message per every UAVCAN node that is online. Note that some of the response messages can be lost, which the receiver can detect easily by checking whether every received UAVCAN_NODE_STATUS has a matching message UAVCAN_NODE_INFO received earlier; if not, this command should be sent again in order to request re-transmission of the node information messages.\n\tMAV_CMD_PAYLOAD_PREPARE_DEPLOY = 30001, // Deploy payload on a Lat / Lon / Alt position. This includes the navigation to reach the required release position and velocity.\n\tMAV_CMD_PAYLOAD_CONTROL_DEPLOY = 30002, // Control the payload deployment.\n\tMAV_CMD_WAYPOINT_USER_1 = 31000, // User defined waypoint item. Ground Station will show the Vehicle as flying through this item.\n\tMAV_CMD_WAYPOINT_USER_2 = 31001, // User defined waypoint item. Ground Station will show the Vehicle as flying through this item.\n\tMAV_CMD_WAYPOINT_USER_3 = 31002, // User defined waypoint item. Ground Station will show the Vehicle as flying through this item.\n\tMAV_CMD_WAYPOINT_USER_4 = 31003, // User defined waypoint item. Ground Station will show the Vehicle as flying through this item.\n\tMAV_CMD_WAYPOINT_USER_5 = 31004, // User defined waypoint item. Ground Station will show the Vehicle as flying through this item.\n\tMAV_CMD_SPATIAL_USER_1 = 31005, // User defined spatial item. Ground Station will not show the Vehicle as flying through this item. Example: ROI item.\n\tMAV_CMD_SPATIAL_USER_2 = 31006, // User defined spatial item. Ground Station will not show the Vehicle as flying through this item. Example: ROI item.\n\tMAV_CMD_SPATIAL_USER_3 = 31007, // User defined spatial item. Ground Station will not show the Vehicle as flying through this item. Example: ROI item.\n\tMAV_CMD_SPATIAL_USER_4 = 31008, // User defined spatial item. Ground Station will not show the Vehicle as flying through this item. Example: ROI item.\n\tMAV_CMD_SPATIAL_USER_5 = 31009, // User defined spatial item. Ground Station will not show the Vehicle as flying through this item. Example: ROI item.\n\tMAV_CMD_USER_1 = 31010, // User defined command. Ground Station will not show the Vehicle as flying through this item. Example: MAV_CMD_DO_SET_PARAMETER item.\n\tMAV_CMD_USER_2 = 31011, // User defined command. Ground Station will not show the Vehicle as flying through this item. Example: MAV_CMD_DO_SET_PARAMETER item.\n\tMAV_CMD_USER_3 = 31012, // User defined command. Ground Station will not show the Vehicle as flying through this item. Example: MAV_CMD_DO_SET_PARAMETER item.\n\tMAV_CMD_USER_4 = 31013, // User defined command. Ground Station will not show the Vehicle as flying through this item. Example: MAV_CMD_DO_SET_PARAMETER item.\n\tMAV_CMD_USER_5 = 31014, // User defined command. Ground Station will not show the Vehicle as flying through this item. Example: MAV_CMD_DO_SET_PARAMETER item.\n\tMAV_CMD_FIXED_MAG_CAL_YAW = 42006, // Magnetometer calibration based on provided known yaw. This allows for fast calibration using WMM field tables in the vehicle, given only the known yaw of the vehicle. If Latitude and longitude are both zero then use the current vehicle location.\n\tMAV_CMD_DO_WINCH = 42600, // Command to operate winch.\n\tMAV_CMD_ENUM_END = 42601, // \n}","export enum MavMissionType {\n\tMAV_MISSION_TYPE_MISSION = 0, // Items are mission commands for main mission.\n\tMAV_MISSION_TYPE_FENCE = 1, // Specifies GeoFence area(s). Items are MAV_CMD_NAV_FENCE_ GeoFence items.\n\tMAV_MISSION_TYPE_RALLY = 2, // Specifies the rally points for the vehicle. Rally points are alternative RTL points. Items are MAV_CMD_NAV_RALLY_POINT rally point items.\n\tMAV_MISSION_TYPE_ALL = 255, // Only used in MISSION_CLEAR_ALL to clear all mission types.\n\tMAV_MISSION_TYPE_ENUM_END = 256, // \n}","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--14-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/ts-loader/index.js??ref--14-3!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./Menu.vue?vue&type=script&lang=ts&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--14-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/ts-loader/index.js??ref--14-3!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./Menu.vue?vue&type=script&lang=ts&\"","import { render, staticRenderFns } from \"./Menu.vue?vue&type=template&id=3ceb6146&scoped=true&\"\nimport script from \"./Menu.vue?vue&type=script&lang=ts&\"\nexport * from \"./Menu.vue?vue&type=script&lang=ts&\"\nimport style0 from \"./Menu.vue?vue&type=style&index=0&id=3ceb6146&scoped=true&lang=css&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n \"3ceb6146\",\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{attrs:{\"id\":\"waypoints\"}},[_c('div',{staticClass:\"waypoint\"},[_c('label',[_vm._v(\"Latitude\")]),_c('label',[_vm._v(\"Longitude\")]),_c('label',[_vm._v(\"Altitude\")]),_c('label',[_vm._v(\"Yaw\")]),_c('label',[_vm._v(\"Hold\")]),_c('label',[_vm._v(\"Accept radius\")]),_c('label',[_vm._v(\"Pass radius\")]),_c('button',{staticClass:\"buttonWaypoint buttonGreen\",attrs:{\"id\":\"buttonAddWaypoint\"},on:{\"click\":function($event){return _vm.addWaypoint()}}},[_vm._v(\"Add a waypoint\")])]),_vm._l((_vm.waypoints),function(waypoint){return _c('WaypointComponent',{key:(\"Waypoint\" + (waypoint.id)),attrs:{\"waypoint\":waypoint,\"removeWaypoint\":function (_) { _vm.removeWaypoint(waypoint.id) },\"moveWaypointUp\":function (_) { _vm.moveWaypointUp(waypoint.id) },\"moveWaypointDown\":function (_) { _vm.moveWaypointDown(waypoint.id) },\"marker\":_vm.getMarker(waypoint.id),\"updateWaypoints\":_vm.updateWaypoints,\"removeMarker\":_vm.removeMarker}})})],2)}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","import {MAVLinkMessage} from '@ifrunistuttgart/node-mavlink';\nimport {readInt64LE, readUInt64LE} from '@ifrunistuttgart/node-mavlink';\nimport {MavFrame} from '../enums/mav-frame';\nimport {MavCmd} from '../enums/mav-cmd';\nimport {MavMissionType} from '../enums/mav-mission-type';\n/*\nMessage encoding a mission item. This message is emitted to announce\n the presence of a mission item and to set a mission item on the system. The mission item can be either in x, y, z meters (type: LOCAL) or x:lat, y:lon, z:altitude. Local frame is Z-down, right handed (NED), global frame is Z-up, right handed (ENU). NaN may be used to indicate an optional/default value (e.g. to use the system's current latitude or yaw rather than a specific value). See also https://mavlink.io/en/services/mission.html.\n*/\n// target_system System ID uint8_t\n// target_component Component ID uint8_t\n// seq Sequence uint16_t\n// frame The coordinate system of the waypoint. uint8_t\n// command The scheduled action for the waypoint. uint16_t\n// current false:0, true:1 uint8_t\n// autocontinue Autocontinue to next waypoint uint8_t\n// param1 PARAM1, see MAV_CMD enum float\n// param2 PARAM2, see MAV_CMD enum float\n// param3 PARAM3, see MAV_CMD enum float\n// param4 PARAM4, see MAV_CMD enum float\n// x PARAM5 / local: X coordinate, global: latitude float\n// y PARAM6 / local: Y coordinate, global: longitude float\n// z PARAM7 / local: Z coordinate, global: altitude (relative or absolute, depending on frame). float\n// mission_type Mission type. uint8_t\nexport class MissionItem extends MAVLinkMessage {\n\tpublic target_system!: number;\n\tpublic target_component!: number;\n\tpublic seq!: number;\n\tpublic frame!: MavFrame;\n\tpublic command!: MavCmd;\n\tpublic current!: number;\n\tpublic autocontinue!: number;\n\tpublic param1!: number;\n\tpublic param2!: number;\n\tpublic param3!: number;\n\tpublic param4!: number;\n\tpublic x!: number;\n\tpublic y!: number;\n\tpublic z!: number;\n\tpublic mission_type!: MavMissionType;\n\tpublic _message_id: number = 39;\n\tpublic _message_name: string = 'MISSION_ITEM';\n\tpublic _crc_extra: number = 254;\n\tpublic _message_fields: [string, string, boolean][] = [\n\t\t['param1', 'float', false],\n\t\t['param2', 'float', false],\n\t\t['param3', 'float', false],\n\t\t['param4', 'float', false],\n\t\t['x', 'float', false],\n\t\t['y', 'float', false],\n\t\t['z', 'float', false],\n\t\t['seq', 'uint16_t', false],\n\t\t['command', 'uint16_t', false],\n\t\t['target_system', 'uint8_t', false],\n\t\t['target_component', 'uint8_t', false],\n\t\t['frame', 'uint8_t', false],\n\t\t['current', 'uint8_t', false],\n\t\t['autocontinue', 'uint8_t', false],\n\t\t['mission_type', 'uint8_t', true],\n\t];\n}","import {MAVLinkMessage} from '@ifrunistuttgart/node-mavlink';\nimport {readInt64LE, readUInt64LE} from '@ifrunistuttgart/node-mavlink';\nimport {MavMissionType} from '../enums/mav-mission-type';\n/*\nDelete all mission items at once.\n*/\n// target_system System ID uint8_t\n// target_component Component ID uint8_t\n// mission_type Mission type. uint8_t\nexport class MissionClearAll extends MAVLinkMessage {\n\tpublic target_system!: number;\n\tpublic target_component!: number;\n\tpublic mission_type!: MavMissionType;\n\tpublic _message_id: number = 45;\n\tpublic _message_name: string = 'MISSION_CLEAR_ALL';\n\tpublic _crc_extra: number = 232;\n\tpublic _message_fields: [string, string, boolean][] = [\n\t\t['target_system', 'uint8_t', false],\n\t\t['target_component', 'uint8_t', false],\n\t\t['mission_type', 'uint8_t', true],\n\t];\n}","import {MAVLinkMessage} from '@ifrunistuttgart/node-mavlink';\nimport {readInt64LE, readUInt64LE} from '@ifrunistuttgart/node-mavlink';\nimport {MavSysStatusSensor} from '../enums/mav-sys-status-sensor';\n/*\nThe general system state. If the system is following the MAVLink standard, the system state is mainly defined by three orthogonal states/modes: The system mode, which is either LOCKED (motors shut down and locked), MANUAL (system under RC control), GUIDED (system with autonomous position control, position setpoint controlled manually) or AUTO (system guided by path/waypoint planner). The NAV_MODE defined the current flight state: LIFTOFF (often an open-loop maneuver), LANDING, WAYPOINTS or VECTOR. This represents the internal navigation state machine. The system status shows whether the system is currently active or not and if an emergency occurred. During the CRITICAL and EMERGENCY states the MAV is still considered to be active, but should start emergency procedures autonomously. After a failure occurred it should first move from active to critical to allow manual intervention and then move to emergency after a certain timeout.\n*/\n// onboard_control_sensors_present Bitmap showing which onboard controllers and sensors are present. Value of 0: not present. Value of 1: present. uint32_t\n// onboard_control_sensors_enabled Bitmap showing which onboard controllers and sensors are enabled: Value of 0: not enabled. Value of 1: enabled. uint32_t\n// onboard_control_sensors_health Bitmap showing which onboard controllers and sensors have an error (or are operational). Value of 0: error. Value of 1: healthy. uint32_t\n// load Maximum usage in percent of the mainloop time. Values: [0-1000] - should always be below 1000 uint16_t\n// voltage_battery Battery voltage, UINT16_MAX: Voltage not sent by autopilot uint16_t\n// current_battery Battery current, -1: Current not sent by autopilot int16_t\n// battery_remaining Battery energy remaining, -1: Battery remaining energy not sent by autopilot int8_t\n// drop_rate_comm Communication drop rate, (UART, I2C, SPI, CAN), dropped packets on all links (packets that were corrupted on reception on the MAV) uint16_t\n// errors_comm Communication errors (UART, I2C, SPI, CAN), dropped packets on all links (packets that were corrupted on reception on the MAV) uint16_t\n// errors_count1 Autopilot-specific errors uint16_t\n// errors_count2 Autopilot-specific errors uint16_t\n// errors_count3 Autopilot-specific errors uint16_t\n// errors_count4 Autopilot-specific errors uint16_t\nexport class SysStatus extends MAVLinkMessage {\n\tpublic onboard_control_sensors_present!: MavSysStatusSensor;\n\tpublic onboard_control_sensors_enabled!: MavSysStatusSensor;\n\tpublic onboard_control_sensors_health!: MavSysStatusSensor;\n\tpublic load!: number;\n\tpublic voltage_battery!: number;\n\tpublic current_battery!: number;\n\tpublic battery_remaining!: number;\n\tpublic drop_rate_comm!: number;\n\tpublic errors_comm!: number;\n\tpublic errors_count1!: number;\n\tpublic errors_count2!: number;\n\tpublic errors_count3!: number;\n\tpublic errors_count4!: number;\n\tpublic _message_id: number = 1;\n\tpublic _message_name: string = 'SYS_STATUS';\n\tpublic _crc_extra: number = 124;\n\tpublic _message_fields: [string, string, boolean][] = [\n\t\t['onboard_control_sensors_present', 'uint32_t', false],\n\t\t['onboard_control_sensors_enabled', 'uint32_t', false],\n\t\t['onboard_control_sensors_health', 'uint32_t', false],\n\t\t['load', 'uint16_t', false],\n\t\t['voltage_battery', 'uint16_t', false],\n\t\t['current_battery', 'int16_t', false],\n\t\t['drop_rate_comm', 'uint16_t', false],\n\t\t['errors_comm', 'uint16_t', false],\n\t\t['errors_count1', 'uint16_t', false],\n\t\t['errors_count2', 'uint16_t', false],\n\t\t['errors_count3', 'uint16_t', false],\n\t\t['errors_count4', 'uint16_t', false],\n\t\t['battery_remaining', 'int8_t', false],\n\t];\n}","import {MAVLinkMessage} from '@ifrunistuttgart/node-mavlink';\nimport {readInt64LE, readUInt64LE} from '@ifrunistuttgart/node-mavlink';\n/*\nThe system time is the time of the master clock, typically the computer clock of the main onboard computer.\n*/\n// time_unix_usec Timestamp (UNIX epoch time). uint64_t\n// time_boot_ms Timestamp (time since system boot). uint32_t\nexport class SystemTime extends MAVLinkMessage {\n\tpublic time_unix_usec!: number;\n\tpublic time_boot_ms!: number;\n\tpublic _message_id: number = 2;\n\tpublic _message_name: string = 'SYSTEM_TIME';\n\tpublic _crc_extra: number = 137;\n\tpublic _message_fields: [string, string, boolean][] = [\n\t\t['time_unix_usec', 'uint64_t', false],\n\t\t['time_boot_ms', 'uint32_t', false],\n\t];\n}","import {MAVLinkMessage} from '@ifrunistuttgart/node-mavlink';\nimport {readInt64LE, readUInt64LE} from '@ifrunistuttgart/node-mavlink';\n/*\nA ping message either requesting or responding to a ping. This allows to measure the system latencies, including serial port, radio modem and UDP connections. The ping microservice is documented at https://mavlink.io/en/services/ping.html\n*/\n// time_usec Timestamp (UNIX Epoch time or time since system boot). The receiving end can infer timestamp format (since 1.1.1970 or since system boot) by checking for the magnitude of the number. uint64_t\n// seq PING sequence uint32_t\n// target_system 0: request ping from all receiving systems. If greater than 0: message is a ping response and number is the system id of the requesting system uint8_t\n// target_component 0: request ping from all receiving components. If greater than 0: message is a ping response and number is the component id of the requesting component. uint8_t\nexport class Ping extends MAVLinkMessage {\n\tpublic time_usec!: number;\n\tpublic seq!: number;\n\tpublic target_system!: number;\n\tpublic target_component!: number;\n\tpublic _message_id: number = 4;\n\tpublic _message_name: string = 'PING';\n\tpublic _crc_extra: number = 237;\n\tpublic _message_fields: [string, string, boolean][] = [\n\t\t['time_usec', 'uint64_t', false],\n\t\t['seq', 'uint32_t', false],\n\t\t['target_system', 'uint8_t', false],\n\t\t['target_component', 'uint8_t', false],\n\t];\n}","import {MAVLinkMessage} from '@ifrunistuttgart/node-mavlink';\nimport {readInt64LE, readUInt64LE} from '@ifrunistuttgart/node-mavlink';\n/*\nRequest to control this MAV\n*/\n// target_system System the GCS requests control for uint8_t\n// control_request 0: request control of this MAV, 1: Release control of this MAV uint8_t\n// version 0: key as plaintext, 1-255: future, different hashing/encryption variants. The GCS should in general use the safest mode possible initially and then gradually move down the encryption level if it gets a NACK message indicating an encryption mismatch. uint8_t\n// passkey Password / Key, depending on version plaintext or encrypted. 25 or less characters, NULL terminated. The characters may involve A-Z, a-z, 0-9, and \"!?,.-\" char\nexport class ChangeOperatorControl extends MAVLinkMessage {\n\tpublic target_system!: number;\n\tpublic control_request!: number;\n\tpublic version!: number;\n\tpublic passkey!: string;\n\tpublic _message_id: number = 5;\n\tpublic _message_name: string = 'CHANGE_OPERATOR_CONTROL';\n\tpublic _crc_extra: number = 217;\n\tpublic _message_fields: [string, string, boolean][] = [\n\t\t['target_system', 'uint8_t', false],\n\t\t['control_request', 'uint8_t', false],\n\t\t['version', 'uint8_t', false],\n\t\t['passkey', 'char', false],\n\t];\n}","import {MAVLinkMessage} from '@ifrunistuttgart/node-mavlink';\nimport {readInt64LE, readUInt64LE} from '@ifrunistuttgart/node-mavlink';\n/*\nAccept / deny control of this MAV\n*/\n// gcs_system_id ID of the GCS this message uint8_t\n// control_request 0: request control of this MAV, 1: Release control of this MAV uint8_t\n// ack 0: ACK, 1: NACK: Wrong passkey, 2: NACK: Unsupported passkey encryption method, 3: NACK: Already under control uint8_t\nexport class ChangeOperatorControlAck extends MAVLinkMessage {\n\tpublic gcs_system_id!: number;\n\tpublic control_request!: number;\n\tpublic ack!: number;\n\tpublic _message_id: number = 6;\n\tpublic _message_name: string = 'CHANGE_OPERATOR_CONTROL_ACK';\n\tpublic _crc_extra: number = 104;\n\tpublic _message_fields: [string, string, boolean][] = [\n\t\t['gcs_system_id', 'uint8_t', false],\n\t\t['control_request', 'uint8_t', false],\n\t\t['ack', 'uint8_t', false],\n\t];\n}","import {MAVLinkMessage} from '@ifrunistuttgart/node-mavlink';\nimport {readInt64LE, readUInt64LE} from '@ifrunistuttgart/node-mavlink';\n/*\nEmit an encrypted signature / key identifying this system. PLEASE NOTE: This protocol has been kept simple, so transmitting the key requires an encrypted channel for true safety.\n*/\n// key key char\nexport class AuthKey extends MAVLinkMessage {\n\tpublic key!: string;\n\tpublic _message_id: number = 7;\n\tpublic _message_name: string = 'AUTH_KEY';\n\tpublic _crc_extra: number = 119;\n\tpublic _message_fields: [string, string, boolean][] = [\n\t\t['key', 'char', false],\n\t];\n}","import {MAVLinkMessage} from '@ifrunistuttgart/node-mavlink';\nimport {readInt64LE, readUInt64LE} from '@ifrunistuttgart/node-mavlink';\n/*\nStatus generated in each node in the communication chain and injected into MAVLink stream.\n*/\n// timestamp Timestamp (time since system boot). uint64_t\n// tx_buf Remaining free transmit buffer space uint8_t\n// rx_buf Remaining free receive buffer space uint8_t\n// tx_rate Transmit rate uint32_t\n// rx_rate Receive rate uint32_t\n// rx_parse_err Number of bytes that could not be parsed correctly. uint16_t\n// tx_overflows Transmit buffer overflows. This number wraps around as it reaches UINT16_MAX uint16_t\n// rx_overflows Receive buffer overflows. This number wraps around as it reaches UINT16_MAX uint16_t\n// messages_sent Messages sent uint32_t\n// messages_received Messages received (estimated from counting seq) uint32_t\n// messages_lost Messages lost (estimated from counting seq) uint32_t\nexport class LinkNodeStatus extends MAVLinkMessage {\n\tpublic timestamp!: number;\n\tpublic tx_buf!: number;\n\tpublic rx_buf!: number;\n\tpublic tx_rate!: number;\n\tpublic rx_rate!: number;\n\tpublic rx_parse_err!: number;\n\tpublic tx_overflows!: number;\n\tpublic rx_overflows!: number;\n\tpublic messages_sent!: number;\n\tpublic messages_received!: number;\n\tpublic messages_lost!: number;\n\tpublic _message_id: number = 8;\n\tpublic _message_name: string = 'LINK_NODE_STATUS';\n\tpublic _crc_extra: number = 117;\n\tpublic _message_fields: [string, string, boolean][] = [\n\t\t['timestamp', 'uint64_t', false],\n\t\t['tx_rate', 'uint32_t', false],\n\t\t['rx_rate', 'uint32_t', false],\n\t\t['messages_sent', 'uint32_t', false],\n\t\t['messages_received', 'uint32_t', false],\n\t\t['messages_lost', 'uint32_t', false],\n\t\t['rx_parse_err', 'uint16_t', false],\n\t\t['tx_overflows', 'uint16_t', false],\n\t\t['rx_overflows', 'uint16_t', false],\n\t\t['tx_buf', 'uint8_t', false],\n\t\t['rx_buf', 'uint8_t', false],\n\t];\n}","import {MAVLinkMessage} from '@ifrunistuttgart/node-mavlink';\nimport {readInt64LE, readUInt64LE} from '@ifrunistuttgart/node-mavlink';\nimport {MavMode} from '../enums/mav-mode';\n/*\nSet the system mode, as defined by enum MAV_MODE. There is no target component id as the mode is by definition for the overall aircraft, not only for one component.\n*/\n// target_system The system setting the mode uint8_t\n// base_mode The new base mode. uint8_t\n// custom_mode The new autopilot-specific mode. This field can be ignored by an autopilot. uint32_t\nexport class SetMode extends MAVLinkMessage {\n\tpublic target_system!: number;\n\tpublic base_mode!: MavMode;\n\tpublic custom_mode!: number;\n\tpublic _message_id: number = 11;\n\tpublic _message_name: string = 'SET_MODE';\n\tpublic _crc_extra: number = 89;\n\tpublic _message_fields: [string, string, boolean][] = [\n\t\t['custom_mode', 'uint32_t', false],\n\t\t['target_system', 'uint8_t', false],\n\t\t['base_mode', 'uint8_t', false],\n\t];\n}","import {MAVLinkMessage} from '@ifrunistuttgart/node-mavlink';\nimport {readInt64LE, readUInt64LE} from '@ifrunistuttgart/node-mavlink';\nimport {MavParamType} from '../enums/mav-param-type';\nimport {ParamAck} from '../enums/param-ack';\n/*\nResponse from a PARAM_SET message when it is used in a transaction.\n*/\n// target_system Id of system that sent PARAM_SET message. uint8_t\n// target_component Id of system that sent PARAM_SET message. uint8_t\n// param_id Parameter id, terminated by NULL if the length is less than 16 human-readable chars and WITHOUT null termination (NULL) byte if the length is exactly 16 chars - applications have to provide 16+1 bytes storage if the ID is stored as string char\n// param_value Parameter value (new value if PARAM_ACCEPTED, current value otherwise) float\n// param_type Parameter type. uint8_t\n// param_result Result code. uint8_t\nexport class ParamAckTransaction extends MAVLinkMessage {\n\tpublic target_system!: number;\n\tpublic target_component!: number;\n\tpublic param_id!: string;\n\tpublic param_value!: number;\n\tpublic param_type!: MavParamType;\n\tpublic param_result!: ParamAck;\n\tpublic _message_id: number = 19;\n\tpublic _message_name: string = 'PARAM_ACK_TRANSACTION';\n\tpublic _crc_extra: number = 137;\n\tpublic _message_fields: [string, string, boolean][] = [\n\t\t['param_value', 'float', false],\n\t\t['target_system', 'uint8_t', false],\n\t\t['target_component', 'uint8_t', false],\n\t\t['param_id', 'char', false],\n\t\t['param_type', 'uint8_t', false],\n\t\t['param_result', 'uint8_t', false],\n\t];\n}","import {MAVLinkMessage} from '@ifrunistuttgart/node-mavlink';\nimport {readInt64LE, readUInt64LE} from '@ifrunistuttgart/node-mavlink';\n/*\nRequest to read the onboard parameter with the param_id string id. Onboard parameters are stored as key[const char*] -> value[float]. This allows to send a parameter to any other component (such as the GCS) without the need of previous knowledge of possible parameter names. Thus the same GCS can store different parameters for different autopilots. See also https://mavlink.io/en/services/parameter.html for a full documentation of QGroundControl and IMU code.\n*/\n// target_system System ID uint8_t\n// target_component Component ID uint8_t\n// param_id Onboard parameter id, terminated by NULL if the length is less than 16 human-readable chars and WITHOUT null termination (NULL) byte if the length is exactly 16 chars - applications have to provide 16+1 bytes storage if the ID is stored as string char\n// param_index Parameter index. Send -1 to use the param ID field as identifier (else the param id will be ignored) int16_t\nexport class ParamRequestRead extends MAVLinkMessage {\n\tpublic target_system!: number;\n\tpublic target_component!: number;\n\tpublic param_id!: string;\n\tpublic param_index!: number;\n\tpublic _message_id: number = 20;\n\tpublic _message_name: string = 'PARAM_REQUEST_READ';\n\tpublic _crc_extra: number = 214;\n\tpublic _message_fields: [string, string, boolean][] = [\n\t\t['param_index', 'int16_t', false],\n\t\t['target_system', 'uint8_t', false],\n\t\t['target_component', 'uint8_t', false],\n\t\t['param_id', 'char', false],\n\t];\n}","import {MAVLinkMessage} from '@ifrunistuttgart/node-mavlink';\nimport {readInt64LE, readUInt64LE} from '@ifrunistuttgart/node-mavlink';\n/*\nRequest all parameters of this component. After this request, all parameters are emitted. The parameter microservice is documented at https://mavlink.io/en/services/parameter.html\n*/\n// target_system System ID uint8_t\n// target_component Component ID uint8_t\nexport class ParamRequestList extends MAVLinkMessage {\n\tpublic target_system!: number;\n\tpublic target_component!: number;\n\tpublic _message_id: number = 21;\n\tpublic _message_name: string = 'PARAM_REQUEST_LIST';\n\tpublic _crc_extra: number = 159;\n\tpublic _message_fields: [string, string, boolean][] = [\n\t\t['target_system', 'uint8_t', false],\n\t\t['target_component', 'uint8_t', false],\n\t];\n}","import {MAVLinkMessage} from '@ifrunistuttgart/node-mavlink';\nimport {readInt64LE, readUInt64LE} from '@ifrunistuttgart/node-mavlink';\nimport {MavParamType} from '../enums/mav-param-type';\n/*\nEmit the value of a onboard parameter. The inclusion of param_count and param_index in the message allows the recipient to keep track of received parameters and allows him to re-request missing parameters after a loss or timeout. The parameter microservice is documented at https://mavlink.io/en/services/parameter.html\n*/\n// param_id Onboard parameter id, terminated by NULL if the length is less than 16 human-readable chars and WITHOUT null termination (NULL) byte if the length is exactly 16 chars - applications have to provide 16+1 bytes storage if the ID is stored as string char\n// param_value Onboard parameter value float\n// param_type Onboard parameter type. uint8_t\n// param_count Total number of onboard parameters uint16_t\n// param_index Index of this onboard parameter uint16_t\nexport class ParamValue extends MAVLinkMessage {\n\tpublic param_id!: string;\n\tpublic param_value!: number;\n\tpublic param_type!: MavParamType;\n\tpublic param_count!: number;\n\tpublic param_index!: number;\n\tpublic _message_id: number = 22;\n\tpublic _message_name: string = 'PARAM_VALUE';\n\tpublic _crc_extra: number = 220;\n\tpublic _message_fields: [string, string, boolean][] = [\n\t\t['param_value', 'float', false],\n\t\t['param_count', 'uint16_t', false],\n\t\t['param_index', 'uint16_t', false],\n\t\t['param_id', 'char', false],\n\t\t['param_type', 'uint8_t', false],\n\t];\n}","import {MAVLinkMessage} from '@ifrunistuttgart/node-mavlink';\nimport {readInt64LE, readUInt64LE} from '@ifrunistuttgart/node-mavlink';\nimport {MavParamType} from '../enums/mav-param-type';\n/*\nSet a parameter value (write new value to permanent storage).\n The receiving component should acknowledge the new parameter value by broadcasting a PARAM_VALUE message (broadcasting ensures that multiple GCS all have an up-to-date list of all parameters). If the sending GCS did not receive a PARAM_VALUE within its timeout time, it should re-send the PARAM_SET message. The parameter microservice is documented at https://mavlink.io/en/services/parameter.html.\n PARAM_SET may also be called within the context of a transaction (started with MAV_CMD_PARAM_TRANSACTION). Within a transaction the receiving component should respond with PARAM_ACK_TRANSACTION to the setter component (instead of broadcasting PARAM_VALUE), and PARAM_SET should be re-sent if this is ACK not received.\n*/\n// target_system System ID uint8_t\n// target_component Component ID uint8_t\n// param_id Onboard parameter id, terminated by NULL if the length is less than 16 human-readable chars and WITHOUT null termination (NULL) byte if the length is exactly 16 chars - applications have to provide 16+1 bytes storage if the ID is stored as string char\n// param_value Onboard parameter value float\n// param_type Onboard parameter type. uint8_t\nexport class ParamSet extends MAVLinkMessage {\n\tpublic target_system!: number;\n\tpublic target_component!: number;\n\tpublic param_id!: string;\n\tpublic param_value!: number;\n\tpublic param_type!: MavParamType;\n\tpublic _message_id: number = 23;\n\tpublic _message_name: string = 'PARAM_SET';\n\tpublic _crc_extra: number = 168;\n\tpublic _message_fields: [string, string, boolean][] = [\n\t\t['param_value', 'float', false],\n\t\t['target_system', 'uint8_t', false],\n\t\t['target_component', 'uint8_t', false],\n\t\t['param_id', 'char', false],\n\t\t['param_type', 'uint8_t', false],\n\t];\n}","import {MAVLinkMessage} from '@ifrunistuttgart/node-mavlink';\nimport {readInt64LE, readUInt64LE} from '@ifrunistuttgart/node-mavlink';\nimport {GpsFixType} from '../enums/gps-fix-type';\n/*\nThe global position, as returned by the Global Positioning System (GPS). This is\n NOT the global position estimate of the system, but rather a RAW sensor value. See message GLOBAL_POSITION for the global position estimate.\n*/\n// time_usec Timestamp (UNIX Epoch time or time since system boot). The receiving end can infer timestamp format (since 1.1.1970 or since system boot) by checking for the magnitude of the number. uint64_t\n// fix_type GPS fix type. uint8_t\n// lat Latitude (WGS84, EGM96 ellipsoid) int32_t\n// lon Longitude (WGS84, EGM96 ellipsoid) int32_t\n// alt Altitude (MSL). Positive for up. Note that virtually all GPS modules provide the MSL altitude in addition to the WGS84 altitude. int32_t\n// eph GPS HDOP horizontal dilution of position (unitless). If unknown, set to: UINT16_MAX uint16_t\n// epv GPS VDOP vertical dilution of position (unitless). If unknown, set to: UINT16_MAX uint16_t\n// vel GPS ground speed. If unknown, set to: UINT16_MAX uint16_t\n// cog Course over ground (NOT heading, but direction of movement) in degrees * 100, 0.0..359.99 degrees. If unknown, set to: UINT16_MAX uint16_t\n// satellites_visible Number of satellites visible. If unknown, set to 255 uint8_t\n// alt_ellipsoid Altitude (above WGS84, EGM96 ellipsoid). Positive for up. int32_t\n// h_acc Position uncertainty. uint32_t\n// v_acc Altitude uncertainty. uint32_t\n// vel_acc Speed uncertainty. uint32_t\n// hdg_acc Heading / track uncertainty uint32_t\n// yaw Yaw in earth frame from north. Use 0 if this GPS does not provide yaw. Use 65535 if this GPS is configured to provide yaw and is currently unable to provide it. Use 36000 for north. uint16_t\nexport class GpsRawInt extends MAVLinkMessage {\n\tpublic time_usec!: number;\n\tpublic fix_type!: GpsFixType;\n\tpublic lat!: number;\n\tpublic lon!: number;\n\tpublic alt!: number;\n\tpublic eph!: number;\n\tpublic epv!: number;\n\tpublic vel!: number;\n\tpublic cog!: number;\n\tpublic satellites_visible!: number;\n\tpublic alt_ellipsoid!: number;\n\tpublic h_acc!: number;\n\tpublic v_acc!: number;\n\tpublic vel_acc!: number;\n\tpublic hdg_acc!: number;\n\tpublic yaw!: number;\n\tpublic _message_id: number = 24;\n\tpublic _message_name: string = 'GPS_RAW_INT';\n\tpublic _crc_extra: number = 24;\n\tpublic _message_fields: [string, string, boolean][] = [\n\t\t['time_usec', 'uint64_t', false],\n\t\t['lat', 'int32_t', false],\n\t\t['lon', 'int32_t', false],\n\t\t['alt', 'int32_t', false],\n\t\t['eph', 'uint16_t', false],\n\t\t['epv', 'uint16_t', false],\n\t\t['vel', 'uint16_t', false],\n\t\t['cog', 'uint16_t', false],\n\t\t['fix_type', 'uint8_t', false],\n\t\t['satellites_visible', 'uint8_t', false],\n\t\t['alt_ellipsoid', 'int32_t', true],\n\t\t['h_acc', 'uint32_t', true],\n\t\t['v_acc', 'uint32_t', true],\n\t\t['vel_acc', 'uint32_t', true],\n\t\t['hdg_acc', 'uint32_t', true],\n\t\t['yaw', 'uint16_t', true],\n\t];\n}","import {MAVLinkMessage} from '@ifrunistuttgart/node-mavlink';\nimport {readInt64LE, readUInt64LE} from '@ifrunistuttgart/node-mavlink';\n/*\nThe positioning status, as reported by GPS. This message is intended to display status information about each satellite visible to the receiver. See message GLOBAL_POSITION for the global position estimate. This message can contain information for up to 20 satellites.\n*/\n// satellites_visible Number of satellites visible uint8_t\n// satellite_prn Global satellite ID uint8_t\n// satellite_used 0: Satellite not used, 1: used for localization uint8_t\n// satellite_elevation Elevation (0: right on top of receiver, 90: on the horizon) of satellite uint8_t\n// satellite_azimuth Direction of satellite, 0: 0 deg, 255: 360 deg. uint8_t\n// satellite_snr Signal to noise ratio of satellite uint8_t\nexport class GpsStatus extends MAVLinkMessage {\n\tpublic satellites_visible!: number;\n\tpublic satellite_prn!: number;\n\tpublic satellite_used!: number;\n\tpublic satellite_elevation!: number;\n\tpublic satellite_azimuth!: number;\n\tpublic satellite_snr!: number;\n\tpublic _message_id: number = 25;\n\tpublic _message_name: string = 'GPS_STATUS';\n\tpublic _crc_extra: number = 23;\n\tpublic _message_fields: [string, string, boolean][] = [\n\t\t['satellites_visible', 'uint8_t', false],\n\t\t['satellite_prn', 'uint8_t', false],\n\t\t['satellite_used', 'uint8_t', false],\n\t\t['satellite_elevation', 'uint8_t', false],\n\t\t['satellite_azimuth', 'uint8_t', false],\n\t\t['satellite_snr', 'uint8_t', false],\n\t];\n}","import {MAVLinkMessage} from '@ifrunistuttgart/node-mavlink';\nimport {readInt64LE, readUInt64LE} from '@ifrunistuttgart/node-mavlink';\n/*\nThe RAW IMU readings for the usual 9DOF sensor setup. This message should contain the scaled values to the described units\n*/\n// time_boot_ms Timestamp (time since system boot). uint32_t\n// xacc X acceleration int16_t\n// yacc Y acceleration int16_t\n// zacc Z acceleration int16_t\n// xgyro Angular speed around X axis int16_t\n// ygyro Angular speed around Y axis int16_t\n// zgyro Angular speed around Z axis int16_t\n// xmag X Magnetic field int16_t\n// ymag Y Magnetic field int16_t\n// zmag Z Magnetic field int16_t\n// temperature Temperature, 0: IMU does not provide temperature values. If the IMU is at 0C it must send 1 (0.01C). int16_t\nexport class ScaledImu extends MAVLinkMessage {\n\tpublic time_boot_ms!: number;\n\tpublic xacc!: number;\n\tpublic yacc!: number;\n\tpublic zacc!: number;\n\tpublic xgyro!: number;\n\tpublic ygyro!: number;\n\tpublic zgyro!: number;\n\tpublic xmag!: number;\n\tpublic ymag!: number;\n\tpublic zmag!: number;\n\tpublic temperature!: number;\n\tpublic _message_id: number = 26;\n\tpublic _message_name: string = 'SCALED_IMU';\n\tpublic _crc_extra: number = 170;\n\tpublic _message_fields: [string, string, boolean][] = [\n\t\t['time_boot_ms', 'uint32_t', false],\n\t\t['xacc', 'int16_t', false],\n\t\t['yacc', 'int16_t', false],\n\t\t['zacc', 'int16_t', false],\n\t\t['xgyro', 'int16_t', false],\n\t\t['ygyro', 'int16_t', false],\n\t\t['zgyro', 'int16_t', false],\n\t\t['xmag', 'int16_t', false],\n\t\t['ymag', 'int16_t', false],\n\t\t['zmag', 'int16_t', false],\n\t\t['temperature', 'int16_t', true],\n\t];\n}","import {MAVLinkMessage} from '@ifrunistuttgart/node-mavlink';\nimport {readInt64LE, readUInt64LE} from '@ifrunistuttgart/node-mavlink';\n/*\nThe RAW IMU readings for a 9DOF sensor, which is identified by the id (default IMU1). This message should always contain the true raw values without any scaling to allow data capture and system debugging.\n*/\n// time_usec Timestamp (UNIX Epoch time or time since system boot). The receiving end can infer timestamp format (since 1.1.1970 or since system boot) by checking for the magnitude of the number. uint64_t\n// xacc X acceleration (raw) int16_t\n// yacc Y acceleration (raw) int16_t\n// zacc Z acceleration (raw) int16_t\n// xgyro Angular speed around X axis (raw) int16_t\n// ygyro Angular speed around Y axis (raw) int16_t\n// zgyro Angular speed around Z axis (raw) int16_t\n// xmag X Magnetic field (raw) int16_t\n// ymag Y Magnetic field (raw) int16_t\n// zmag Z Magnetic field (raw) int16_t\n// id Id. Ids are numbered from 0 and map to IMUs numbered from 1 (e.g. IMU1 will have a message with id=0) uint8_t\n// temperature Temperature, 0: IMU does not provide temperature values. If the IMU is at 0C it must send 1 (0.01C). int16_t\nexport class RawImu extends MAVLinkMessage {\n\tpublic time_usec!: number;\n\tpublic xacc!: number;\n\tpublic yacc!: number;\n\tpublic zacc!: number;\n\tpublic xgyro!: number;\n\tpublic ygyro!: number;\n\tpublic zgyro!: number;\n\tpublic xmag!: number;\n\tpublic ymag!: number;\n\tpublic zmag!: number;\n\tpublic id!: number;\n\tpublic temperature!: number;\n\tpublic _message_id: number = 27;\n\tpublic _message_name: string = 'RAW_IMU';\n\tpublic _crc_extra: number = 144;\n\tpublic _message_fields: [string, string, boolean][] = [\n\t\t['time_usec', 'uint64_t', false],\n\t\t['xacc', 'int16_t', false],\n\t\t['yacc', 'int16_t', false],\n\t\t['zacc', 'int16_t', false],\n\t\t['xgyro', 'int16_t', false],\n\t\t['ygyro', 'int16_t', false],\n\t\t['zgyro', 'int16_t', false],\n\t\t['xmag', 'int16_t', false],\n\t\t['ymag', 'int16_t', false],\n\t\t['zmag', 'int16_t', false],\n\t\t['id', 'uint8_t', true],\n\t\t['temperature', 'int16_t', true],\n\t];\n}","import {MAVLinkMessage} from '@ifrunistuttgart/node-mavlink';\nimport {readInt64LE, readUInt64LE} from '@ifrunistuttgart/node-mavlink';\n/*\nThe RAW pressure readings for the typical setup of one absolute pressure and one differential pressure sensor. The sensor values should be the raw, UNSCALED ADC values.\n*/\n// time_usec Timestamp (UNIX Epoch time or time since system boot). The receiving end can infer timestamp format (since 1.1.1970 or since system boot) by checking for the magnitude of the number. uint64_t\n// press_abs Absolute pressure (raw) int16_t\n// press_diff1 Differential pressure 1 (raw, 0 if nonexistent) int16_t\n// press_diff2 Differential pressure 2 (raw, 0 if nonexistent) int16_t\n// temperature Raw Temperature measurement (raw) int16_t\nexport class RawPressure extends MAVLinkMessage {\n\tpublic time_usec!: number;\n\tpublic press_abs!: number;\n\tpublic press_diff1!: number;\n\tpublic press_diff2!: number;\n\tpublic temperature!: number;\n\tpublic _message_id: number = 28;\n\tpublic _message_name: string = 'RAW_PRESSURE';\n\tpublic _crc_extra: number = 67;\n\tpublic _message_fields: [string, string, boolean][] = [\n\t\t['time_usec', 'uint64_t', false],\n\t\t['press_abs', 'int16_t', false],\n\t\t['press_diff1', 'int16_t', false],\n\t\t['press_diff2', 'int16_t', false],\n\t\t['temperature', 'int16_t', false],\n\t];\n}","import {MAVLinkMessage} from '@ifrunistuttgart/node-mavlink';\nimport {readInt64LE, readUInt64LE} from '@ifrunistuttgart/node-mavlink';\n/*\nThe pressure readings for the typical setup of one absolute and differential pressure sensor. The units are as specified in each field.\n*/\n// time_boot_ms Timestamp (time since system boot). uint32_t\n// press_abs Absolute pressure float\n// press_diff Differential pressure 1 float\n// temperature Absolute pressure temperature int16_t\n// temperature_press_diff Differential pressure temperature (0, if not available). Report values of 0 (or 1) as 1 cdegC. int16_t\nexport class ScaledPressure extends MAVLinkMessage {\n\tpublic time_boot_ms!: number;\n\tpublic press_abs!: number;\n\tpublic press_diff!: number;\n\tpublic temperature!: number;\n\tpublic temperature_press_diff!: number;\n\tpublic _message_id: number = 29;\n\tpublic _message_name: string = 'SCALED_PRESSURE';\n\tpublic _crc_extra: number = 115;\n\tpublic _message_fields: [string, string, boolean][] = [\n\t\t['time_boot_ms', 'uint32_t', false],\n\t\t['press_abs', 'float', false],\n\t\t['press_diff', 'float', false],\n\t\t['temperature', 'int16_t', false],\n\t\t['temperature_press_diff', 'int16_t', true],\n\t];\n}","import {MAVLinkMessage} from '@ifrunistuttgart/node-mavlink';\nimport {readInt64LE, readUInt64LE} from '@ifrunistuttgart/node-mavlink';\n/*\nThe attitude in the aeronautical frame (right-handed, Z-down, X-front, Y-right).\n*/\n// time_boot_ms Timestamp (time since system boot). uint32_t\n// roll Roll angle (-pi..+pi) float\n// pitch Pitch angle (-pi..+pi) float\n// yaw Yaw angle (-pi..+pi) float\n// rollspeed Roll angular speed float\n// pitchspeed Pitch angular speed float\n// yawspeed Yaw angular speed float\nexport class Attitude extends MAVLinkMessage {\n\tpublic time_boot_ms!: number;\n\tpublic roll!: number;\n\tpublic pitch!: number;\n\tpublic yaw!: number;\n\tpublic rollspeed!: number;\n\tpublic pitchspeed!: number;\n\tpublic yawspeed!: number;\n\tpublic _message_id: number = 30;\n\tpublic _message_name: string = 'ATTITUDE';\n\tpublic _crc_extra: number = 39;\n\tpublic _message_fields: [string, string, boolean][] = [\n\t\t['time_boot_ms', 'uint32_t', false],\n\t\t['roll', 'float', false],\n\t\t['pitch', 'float', false],\n\t\t['yaw', 'float', false],\n\t\t['rollspeed', 'float', false],\n\t\t['pitchspeed', 'float', false],\n\t\t['yawspeed', 'float', false],\n\t];\n}","import {MAVLinkMessage} from '@ifrunistuttgart/node-mavlink';\nimport {readInt64LE, readUInt64LE} from '@ifrunistuttgart/node-mavlink';\n/*\nThe attitude in the aeronautical frame (right-handed, Z-down, X-front, Y-right), expressed as quaternion. Quaternion order is w, x, y, z and a zero rotation would be expressed as (1 0 0 0).\n*/\n// time_boot_ms Timestamp (time since system boot). uint32_t\n// q1 Quaternion component 1, w (1 in null-rotation) float\n// q2 Quaternion component 2, x (0 in null-rotation) float\n// q3 Quaternion component 3, y (0 in null-rotation) float\n// q4 Quaternion component 4, z (0 in null-rotation) float\n// rollspeed Roll angular speed float\n// pitchspeed Pitch angular speed float\n// yawspeed Yaw angular speed float\n// repr_offset_q Rotation offset by which the attitude quaternion and angular speed vector should be rotated for user display (quaternion with [w, x, y, z] order, zero-rotation is [1, 0, 0, 0], send [0, 0, 0, 0] if field not supported). This field is intended for systems in which the reference attitude may change during flight. For example, tailsitters VTOLs rotate their reference attitude by 90 degrees between hover mode and fixed wing mode, thus repr_offset_q is equal to [1, 0, 0, 0] in hover mode and equal to [0.7071, 0, 0.7071, 0] in fixed wing mode. float\nexport class AttitudeQuaternion extends MAVLinkMessage {\n\tpublic time_boot_ms!: number;\n\tpublic q1!: number;\n\tpublic q2!: number;\n\tpublic q3!: number;\n\tpublic q4!: number;\n\tpublic rollspeed!: number;\n\tpublic pitchspeed!: number;\n\tpublic yawspeed!: number;\n\tpublic repr_offset_q!: number;\n\tpublic _message_id: number = 31;\n\tpublic _message_name: string = 'ATTITUDE_QUATERNION';\n\tpublic _crc_extra: number = 246;\n\tpublic _message_fields: [string, string, boolean][] = [\n\t\t['time_boot_ms', 'uint32_t', false],\n\t\t['q1', 'float', false],\n\t\t['q2', 'float', false],\n\t\t['q3', 'float', false],\n\t\t['q4', 'float', false],\n\t\t['rollspeed', 'float', false],\n\t\t['pitchspeed', 'float', false],\n\t\t['yawspeed', 'float', false],\n\t\t['repr_offset_q', 'float', true],\n\t];\n}","import {MAVLinkMessage} from '@ifrunistuttgart/node-mavlink';\nimport {readInt64LE, readUInt64LE} from '@ifrunistuttgart/node-mavlink';\n/*\nThe filtered local position (e.g. fused computer vision and accelerometers). Coordinate frame is right-handed, Z-axis down (aeronautical frame, NED / north-east-down convention)\n*/\n// time_boot_ms Timestamp (time since system boot). uint32_t\n// x X Position float\n// y Y Position float\n// z Z Position float\n// vx X Speed float\n// vy Y Speed float\n// vz Z Speed float\nexport class LocalPositionNed extends MAVLinkMessage {\n\tpublic time_boot_ms!: number;\n\tpublic x!: number;\n\tpublic y!: number;\n\tpublic z!: number;\n\tpublic vx!: number;\n\tpublic vy!: number;\n\tpublic vz!: number;\n\tpublic _message_id: number = 32;\n\tpublic _message_name: string = 'LOCAL_POSITION_NED';\n\tpublic _crc_extra: number = 185;\n\tpublic _message_fields: [string, string, boolean][] = [\n\t\t['time_boot_ms', 'uint32_t', false],\n\t\t['x', 'float', false],\n\t\t['y', 'float', false],\n\t\t['z', 'float', false],\n\t\t['vx', 'float', false],\n\t\t['vy', 'float', false],\n\t\t['vz', 'float', false],\n\t];\n}","import {MAVLinkMessage} from '@ifrunistuttgart/node-mavlink';\nimport {readInt64LE, readUInt64LE} from '@ifrunistuttgart/node-mavlink';\n/*\nThe filtered global position (e.g. fused GPS and accelerometers). The position is in GPS-frame (right-handed, Z-up). It\n is designed as scaled integer message since the resolution of float is not sufficient.\n*/\n// time_boot_ms Timestamp (time since system boot). uint32_t\n// lat Latitude, expressed int32_t\n// lon Longitude, expressed int32_t\n// alt Altitude (MSL). Note that virtually all GPS modules provide both WGS84 and MSL. int32_t\n// relative_alt Altitude above ground int32_t\n// vx Ground X Speed (Latitude, positive north) int16_t\n// vy Ground Y Speed (Longitude, positive east) int16_t\n// vz Ground Z Speed (Altitude, positive down) int16_t\n// hdg Vehicle heading (yaw angle), 0.0..359.99 degrees. If unknown, set to: UINT16_MAX uint16_t\nexport class GlobalPositionInt extends MAVLinkMessage {\n\tpublic time_boot_ms!: number;\n\tpublic lat!: number;\n\tpublic lon!: number;\n\tpublic alt!: number;\n\tpublic relative_alt!: number;\n\tpublic vx!: number;\n\tpublic vy!: number;\n\tpublic vz!: number;\n\tpublic hdg!: number;\n\tpublic _message_id: number = 33;\n\tpublic _message_name: string = 'GLOBAL_POSITION_INT';\n\tpublic _crc_extra: number = 104;\n\tpublic _message_fields: [string, string, boolean][] = [\n\t\t['time_boot_ms', 'uint32_t', false],\n\t\t['lat', 'int32_t', false],\n\t\t['lon', 'int32_t', false],\n\t\t['alt', 'int32_t', false],\n\t\t['relative_alt', 'int32_t', false],\n\t\t['vx', 'int16_t', false],\n\t\t['vy', 'int16_t', false],\n\t\t['vz', 'int16_t', false],\n\t\t['hdg', 'uint16_t', false],\n\t];\n}","import {MAVLinkMessage} from '@ifrunistuttgart/node-mavlink';\nimport {readInt64LE, readUInt64LE} from '@ifrunistuttgart/node-mavlink';\n/*\nThe scaled values of the RC channels received: (-100%) -10000, (0%) 0, (100%) 10000. Channels that are inactive should be set to UINT16_MAX.\n*/\n// time_boot_ms Timestamp (time since system boot). uint32_t\n// port Servo output port (set of 8 outputs = 1 port). Flight stacks running on Pixhawk should use: 0 = MAIN, 1 = AUX. uint8_t\n// chan1_scaled RC channel 1 value scaled. int16_t\n// chan2_scaled RC channel 2 value scaled. int16_t\n// chan3_scaled RC channel 3 value scaled. int16_t\n// chan4_scaled RC channel 4 value scaled. int16_t\n// chan5_scaled RC channel 5 value scaled. int16_t\n// chan6_scaled RC channel 6 value scaled. int16_t\n// chan7_scaled RC channel 7 value scaled. int16_t\n// chan8_scaled RC channel 8 value scaled. int16_t\n// rssi Receive signal strength indicator in device-dependent units/scale. Values: [0-254], 255: invalid/unknown. uint8_t\nexport class RcChannelsScaled extends MAVLinkMessage {\n\tpublic time_boot_ms!: number;\n\tpublic port!: number;\n\tpublic chan1_scaled!: number;\n\tpublic chan2_scaled!: number;\n\tpublic chan3_scaled!: number;\n\tpublic chan4_scaled!: number;\n\tpublic chan5_scaled!: number;\n\tpublic chan6_scaled!: number;\n\tpublic chan7_scaled!: number;\n\tpublic chan8_scaled!: number;\n\tpublic rssi!: number;\n\tpublic _message_id: number = 34;\n\tpublic _message_name: string = 'RC_CHANNELS_SCALED';\n\tpublic _crc_extra: number = 237;\n\tpublic _message_fields: [string, string, boolean][] = [\n\t\t['time_boot_ms', 'uint32_t', false],\n\t\t['chan1_scaled', 'int16_t', false],\n\t\t['chan2_scaled', 'int16_t', false],\n\t\t['chan3_scaled', 'int16_t', false],\n\t\t['chan4_scaled', 'int16_t', false],\n\t\t['chan5_scaled', 'int16_t', false],\n\t\t['chan6_scaled', 'int16_t', false],\n\t\t['chan7_scaled', 'int16_t', false],\n\t\t['chan8_scaled', 'int16_t', false],\n\t\t['port', 'uint8_t', false],\n\t\t['rssi', 'uint8_t', false],\n\t];\n}","import {MAVLinkMessage} from '@ifrunistuttgart/node-mavlink';\nimport {readInt64LE, readUInt64LE} from '@ifrunistuttgart/node-mavlink';\n/*\nThe RAW values of the RC channels received. The standard PPM modulation is as follows: 1000 microseconds: 0%, 2000 microseconds: 100%. A value of UINT16_MAX implies the channel is unused. Individual receivers/transmitters might violate this specification.\n*/\n// time_boot_ms Timestamp (time since system boot). uint32_t\n// port Servo output port (set of 8 outputs = 1 port). Flight stacks running on Pixhawk should use: 0 = MAIN, 1 = AUX. uint8_t\n// chan1_raw RC channel 1 value. uint16_t\n// chan2_raw RC channel 2 value. uint16_t\n// chan3_raw RC channel 3 value. uint16_t\n// chan4_raw RC channel 4 value. uint16_t\n// chan5_raw RC channel 5 value. uint16_t\n// chan6_raw RC channel 6 value. uint16_t\n// chan7_raw RC channel 7 value. uint16_t\n// chan8_raw RC channel 8 value. uint16_t\n// rssi Receive signal strength indicator in device-dependent units/scale. Values: [0-254], 255: invalid/unknown. uint8_t\nexport class RcChannelsRaw extends MAVLinkMessage {\n\tpublic time_boot_ms!: number;\n\tpublic port!: number;\n\tpublic chan1_raw!: number;\n\tpublic chan2_raw!: number;\n\tpublic chan3_raw!: number;\n\tpublic chan4_raw!: number;\n\tpublic chan5_raw!: number;\n\tpublic chan6_raw!: number;\n\tpublic chan7_raw!: number;\n\tpublic chan8_raw!: number;\n\tpublic rssi!: number;\n\tpublic _message_id: number = 35;\n\tpublic _message_name: string = 'RC_CHANNELS_RAW';\n\tpublic _crc_extra: number = 244;\n\tpublic _message_fields: [string, string, boolean][] = [\n\t\t['time_boot_ms', 'uint32_t', false],\n\t\t['chan1_raw', 'uint16_t', false],\n\t\t['chan2_raw', 'uint16_t', false],\n\t\t['chan3_raw', 'uint16_t', false],\n\t\t['chan4_raw', 'uint16_t', false],\n\t\t['chan5_raw', 'uint16_t', false],\n\t\t['chan6_raw', 'uint16_t', false],\n\t\t['chan7_raw', 'uint16_t', false],\n\t\t['chan8_raw', 'uint16_t', false],\n\t\t['port', 'uint8_t', false],\n\t\t['rssi', 'uint8_t', false],\n\t];\n}","import {MAVLinkMessage} from '@ifrunistuttgart/node-mavlink';\nimport {readInt64LE, readUInt64LE} from '@ifrunistuttgart/node-mavlink';\n/*\nSuperseded by ACTUATOR_OUTPUT_STATUS. The RAW values of the servo outputs (for RC input from the remote, use the RC_CHANNELS messages). The standard PPM modulation is as follows: 1000 microseconds: 0%, 2000 microseconds: 100%.\n*/\n// time_usec Timestamp (UNIX Epoch time or time since system boot). The receiving end can infer timestamp format (since 1.1.1970 or since system boot) by checking for the magnitude of the number. uint32_t\n// port Servo output port (set of 8 outputs = 1 port). Flight stacks running on Pixhawk should use: 0 = MAIN, 1 = AUX. uint8_t\n// servo1_raw Servo output 1 value uint16_t\n// servo2_raw Servo output 2 value uint16_t\n// servo3_raw Servo output 3 value uint16_t\n// servo4_raw Servo output 4 value uint16_t\n// servo5_raw Servo output 5 value uint16_t\n// servo6_raw Servo output 6 value uint16_t\n// servo7_raw Servo output 7 value uint16_t\n// servo8_raw Servo output 8 value uint16_t\n// servo9_raw Servo output 9 value uint16_t\n// servo10_raw Servo output 10 value uint16_t\n// servo11_raw Servo output 11 value uint16_t\n// servo12_raw Servo output 12 value uint16_t\n// servo13_raw Servo output 13 value uint16_t\n// servo14_raw Servo output 14 value uint16_t\n// servo15_raw Servo output 15 value uint16_t\n// servo16_raw Servo output 16 value uint16_t\nexport class ServoOutputRaw extends MAVLinkMessage {\n\tpublic time_usec!: number;\n\tpublic port!: number;\n\tpublic servo1_raw!: number;\n\tpublic servo2_raw!: number;\n\tpublic servo3_raw!: number;\n\tpublic servo4_raw!: number;\n\tpublic servo5_raw!: number;\n\tpublic servo6_raw!: number;\n\tpublic servo7_raw!: number;\n\tpublic servo8_raw!: number;\n\tpublic servo9_raw!: number;\n\tpublic servo10_raw!: number;\n\tpublic servo11_raw!: number;\n\tpublic servo12_raw!: number;\n\tpublic servo13_raw!: number;\n\tpublic servo14_raw!: number;\n\tpublic servo15_raw!: number;\n\tpublic servo16_raw!: number;\n\tpublic _message_id: number = 36;\n\tpublic _message_name: string = 'SERVO_OUTPUT_RAW';\n\tpublic _crc_extra: number = 222;\n\tpublic _message_fields: [string, string, boolean][] = [\n\t\t['time_usec', 'uint32_t', false],\n\t\t['servo1_raw', 'uint16_t', false],\n\t\t['servo2_raw', 'uint16_t', false],\n\t\t['servo3_raw', 'uint16_t', false],\n\t\t['servo4_raw', 'uint16_t', false],\n\t\t['servo5_raw', 'uint16_t', false],\n\t\t['servo6_raw', 'uint16_t', false],\n\t\t['servo7_raw', 'uint16_t', false],\n\t\t['servo8_raw', 'uint16_t', false],\n\t\t['port', 'uint8_t', false],\n\t\t['servo9_raw', 'uint16_t', true],\n\t\t['servo10_raw', 'uint16_t', true],\n\t\t['servo11_raw', 'uint16_t', true],\n\t\t['servo12_raw', 'uint16_t', true],\n\t\t['servo13_raw', 'uint16_t', true],\n\t\t['servo14_raw', 'uint16_t', true],\n\t\t['servo15_raw', 'uint16_t', true],\n\t\t['servo16_raw', 'uint16_t', true],\n\t];\n}","import {MAVLinkMessage} from '@ifrunistuttgart/node-mavlink';\nimport {readInt64LE, readUInt64LE} from '@ifrunistuttgart/node-mavlink';\nimport {MavMissionType} from '../enums/mav-mission-type';\n/*\nRequest a partial list of mission items from the system/component. https://mavlink.io/en/services/mission.html. If start and end index are the same, just send one waypoint.\n*/\n// target_system System ID uint8_t\n// target_component Component ID uint8_t\n// start_index Start index int16_t\n// end_index End index, -1 by default (-1: send list to end). Else a valid index of the list int16_t\n// mission_type Mission type. uint8_t\nexport class MissionRequestPartialList extends MAVLinkMessage {\n\tpublic target_system!: number;\n\tpublic target_component!: number;\n\tpublic start_index!: number;\n\tpublic end_index!: number;\n\tpublic mission_type!: MavMissionType;\n\tpublic _message_id: number = 37;\n\tpublic _message_name: string = 'MISSION_REQUEST_PARTIAL_LIST';\n\tpublic _crc_extra: number = 212;\n\tpublic _message_fields: [string, string, boolean][] = [\n\t\t['start_index', 'int16_t', false],\n\t\t['end_index', 'int16_t', false],\n\t\t['target_system', 'uint8_t', false],\n\t\t['target_component', 'uint8_t', false],\n\t\t['mission_type', 'uint8_t', true],\n\t];\n}","import {MAVLinkMessage} from '@ifrunistuttgart/node-mavlink';\nimport {readInt64LE, readUInt64LE} from '@ifrunistuttgart/node-mavlink';\nimport {MavMissionType} from '../enums/mav-mission-type';\n/*\nThis message is sent to the MAV to write a partial list. If start index == end index, only one item will be transmitted / updated. If the start index is NOT 0 and above the current list size, this request should be REJECTED!\n*/\n// target_system System ID uint8_t\n// target_component Component ID uint8_t\n// start_index Start index. Must be smaller / equal to the largest index of the current onboard list. int16_t\n// end_index End index, equal or greater than start index. int16_t\n// mission_type Mission type. uint8_t\nexport class MissionWritePartialList extends MAVLinkMessage {\n\tpublic target_system!: number;\n\tpublic target_component!: number;\n\tpublic start_index!: number;\n\tpublic end_index!: number;\n\tpublic mission_type!: MavMissionType;\n\tpublic _message_id: number = 38;\n\tpublic _message_name: string = 'MISSION_WRITE_PARTIAL_LIST';\n\tpublic _crc_extra: number = 9;\n\tpublic _message_fields: [string, string, boolean][] = [\n\t\t['start_index', 'int16_t', false],\n\t\t['end_index', 'int16_t', false],\n\t\t['target_system', 'uint8_t', false],\n\t\t['target_component', 'uint8_t', false],\n\t\t['mission_type', 'uint8_t', true],\n\t];\n}","import {MAVLinkMessage} from '@ifrunistuttgart/node-mavlink';\nimport {readInt64LE, readUInt64LE} from '@ifrunistuttgart/node-mavlink';\nimport {MavMissionType} from '../enums/mav-mission-type';\n/*\nRequest the information of the mission item with the sequence number seq. The response of the system to this message should be a MISSION_ITEM message. https://mavlink.io/en/services/mission.html\n*/\n// target_system System ID uint8_t\n// target_component Component ID uint8_t\n// seq Sequence uint16_t\n// mission_type Mission type. uint8_t\nexport class MissionRequest extends MAVLinkMessage {\n\tpublic target_system!: number;\n\tpublic target_component!: number;\n\tpublic seq!: number;\n\tpublic mission_type!: MavMissionType;\n\tpublic _message_id: number = 40;\n\tpublic _message_name: string = 'MISSION_REQUEST';\n\tpublic _crc_extra: number = 230;\n\tpublic _message_fields: [string, string, boolean][] = [\n\t\t['seq', 'uint16_t', false],\n\t\t['target_system', 'uint8_t', false],\n\t\t['target_component', 'uint8_t', false],\n\t\t['mission_type', 'uint8_t', true],\n\t];\n}","import {MAVLinkMessage} from '@ifrunistuttgart/node-mavlink';\nimport {readInt64LE, readUInt64LE} from '@ifrunistuttgart/node-mavlink';\n/*\nSet the mission item with sequence number seq as current item. This means that the MAV will continue to this mission item on the shortest path (not following the mission items in-between).\n*/\n// target_system System ID uint8_t\n// target_component Component ID uint8_t\n// seq Sequence uint16_t\nexport class MissionSetCurrent extends MAVLinkMessage {\n\tpublic target_system!: number;\n\tpublic target_component!: number;\n\tpublic seq!: number;\n\tpublic _message_id: number = 41;\n\tpublic _message_name: string = 'MISSION_SET_CURRENT';\n\tpublic _crc_extra: number = 28;\n\tpublic _message_fields: [string, string, boolean][] = [\n\t\t['seq', 'uint16_t', false],\n\t\t['target_system', 'uint8_t', false],\n\t\t['target_component', 'uint8_t', false],\n\t];\n}","import {MAVLinkMessage} from '@ifrunistuttgart/node-mavlink';\nimport {readInt64LE, readUInt64LE} from '@ifrunistuttgart/node-mavlink';\n/*\nMessage that announces the sequence number of the current active mission item. The MAV will fly towards this mission item.\n*/\n// seq Sequence uint16_t\nexport class MissionCurrent extends MAVLinkMessage {\n\tpublic seq!: number;\n\tpublic _message_id: number = 42;\n\tpublic _message_name: string = 'MISSION_CURRENT';\n\tpublic _crc_extra: number = 28;\n\tpublic _message_fields: [string, string, boolean][] = [\n\t\t['seq', 'uint16_t', false],\n\t];\n}","import {MAVLinkMessage} from '@ifrunistuttgart/node-mavlink';\nimport {readInt64LE, readUInt64LE} from '@ifrunistuttgart/node-mavlink';\nimport {MavMissionType} from '../enums/mav-mission-type';\n/*\nRequest the overall list of mission items from the system/component.\n*/\n// target_system System ID uint8_t\n// target_component Component ID uint8_t\n// mission_type Mission type. uint8_t\nexport class MissionRequestList extends MAVLinkMessage {\n\tpublic target_system!: number;\n\tpublic target_component!: number;\n\tpublic mission_type!: MavMissionType;\n\tpublic _message_id: number = 43;\n\tpublic _message_name: string = 'MISSION_REQUEST_LIST';\n\tpublic _crc_extra: number = 132;\n\tpublic _message_fields: [string, string, boolean][] = [\n\t\t['target_system', 'uint8_t', false],\n\t\t['target_component', 'uint8_t', false],\n\t\t['mission_type', 'uint8_t', true],\n\t];\n}","import {MAVLinkMessage} from '@ifrunistuttgart/node-mavlink';\nimport {readInt64LE, readUInt64LE} from '@ifrunistuttgart/node-mavlink';\nimport {MavMissionType} from '../enums/mav-mission-type';\n/*\nThis message is emitted as response to MISSION_REQUEST_LIST by the MAV and to initiate a write transaction. The GCS can then request the individual mission item based on the knowledge of the total number of waypoints.\n*/\n// target_system System ID uint8_t\n// target_component Component ID uint8_t\n// count Number of mission items in the sequence uint16_t\n// mission_type Mission type. uint8_t\nexport class MissionCount extends MAVLinkMessage {\n\tpublic target_system!: number;\n\tpublic target_component!: number;\n\tpublic count!: number;\n\tpublic mission_type!: MavMissionType;\n\tpublic _message_id: number = 44;\n\tpublic _message_name: string = 'MISSION_COUNT';\n\tpublic _crc_extra: number = 221;\n\tpublic _message_fields: [string, string, boolean][] = [\n\t\t['count', 'uint16_t', false],\n\t\t['target_system', 'uint8_t', false],\n\t\t['target_component', 'uint8_t', false],\n\t\t['mission_type', 'uint8_t', true],\n\t];\n}","import {MAVLinkMessage} from '@ifrunistuttgart/node-mavlink';\nimport {readInt64LE, readUInt64LE} from '@ifrunistuttgart/node-mavlink';\n/*\nA certain mission item has been reached. The system will either hold this position (or circle on the orbit) or (if the autocontinue on the WP was set) continue to the next waypoint.\n*/\n// seq Sequence uint16_t\nexport class MissionItemReached extends MAVLinkMessage {\n\tpublic seq!: number;\n\tpublic _message_id: number = 46;\n\tpublic _message_name: string = 'MISSION_ITEM_REACHED';\n\tpublic _crc_extra: number = 11;\n\tpublic _message_fields: [string, string, boolean][] = [\n\t\t['seq', 'uint16_t', false],\n\t];\n}","import {MAVLinkMessage} from '@ifrunistuttgart/node-mavlink';\nimport {readInt64LE, readUInt64LE} from '@ifrunistuttgart/node-mavlink';\nimport {MavMissionResult} from '../enums/mav-mission-result';\nimport {MavMissionType} from '../enums/mav-mission-type';\n/*\nAcknowledgment message during waypoint handling. The type field states if this message is a positive ack (type=0) or if an error happened (type=non-zero).\n*/\n// target_system System ID uint8_t\n// target_component Component ID uint8_t\n// type Mission result. uint8_t\n// mission_type Mission type. uint8_t\nexport class MissionAck extends MAVLinkMessage {\n\tpublic target_system!: number;\n\tpublic target_component!: number;\n\tpublic type!: MavMissionResult;\n\tpublic mission_type!: MavMissionType;\n\tpublic _message_id: number = 47;\n\tpublic _message_name: string = 'MISSION_ACK';\n\tpublic _crc_extra: number = 153;\n\tpublic _message_fields: [string, string, boolean][] = [\n\t\t['target_system', 'uint8_t', false],\n\t\t['target_component', 'uint8_t', false],\n\t\t['type', 'uint8_t', false],\n\t\t['mission_type', 'uint8_t', true],\n\t];\n}","import {MAVLinkMessage} from '@ifrunistuttgart/node-mavlink';\nimport {readInt64LE, readUInt64LE} from '@ifrunistuttgart/node-mavlink';\n/*\nSets the GPS co-ordinates of the vehicle local origin (0,0,0) position. Vehicle should emit GPS_GLOBAL_ORIGIN irrespective of whether the origin is changed. This enables transform between the local coordinate frame and the global (GPS) coordinate frame, which may be necessary when (for example) indoor and outdoor settings are connected and the MAV should move from in- to outdoor.\n*/\n// target_system System ID uint8_t\n// latitude Latitude (WGS84) int32_t\n// longitude Longitude (WGS84) int32_t\n// altitude Altitude (MSL). Positive for up. int32_t\n// time_usec Timestamp (UNIX Epoch time or time since system boot). The receiving end can infer timestamp format (since 1.1.1970 or since system boot) by checking for the magnitude of the number. uint64_t\nexport class SetGpsGlobalOrigin extends MAVLinkMessage {\n\tpublic target_system!: number;\n\tpublic latitude!: number;\n\tpublic longitude!: number;\n\tpublic altitude!: number;\n\tpublic time_usec!: number;\n\tpublic _message_id: number = 48;\n\tpublic _message_name: string = 'SET_GPS_GLOBAL_ORIGIN';\n\tpublic _crc_extra: number = 41;\n\tpublic _message_fields: [string, string, boolean][] = [\n\t\t['latitude', 'int32_t', false],\n\t\t['longitude', 'int32_t', false],\n\t\t['altitude', 'int32_t', false],\n\t\t['target_system', 'uint8_t', false],\n\t\t['time_usec', 'uint64_t', true],\n\t];\n}","import {MAVLinkMessage} from '@ifrunistuttgart/node-mavlink';\nimport {readInt64LE, readUInt64LE} from '@ifrunistuttgart/node-mavlink';\n/*\nPublishes the GPS co-ordinates of the vehicle local origin (0,0,0) position. Emitted whenever a new GPS-Local position mapping is requested or set - e.g. following SET_GPS_GLOBAL_ORIGIN message.\n*/\n// latitude Latitude (WGS84) int32_t\n// longitude Longitude (WGS84) int32_t\n// altitude Altitude (MSL). Positive for up. int32_t\n// time_usec Timestamp (UNIX Epoch time or time since system boot). The receiving end can infer timestamp format (since 1.1.1970 or since system boot) by checking for the magnitude of the number. uint64_t\nexport class GpsGlobalOrigin extends MAVLinkMessage {\n\tpublic latitude!: number;\n\tpublic longitude!: number;\n\tpublic altitude!: number;\n\tpublic time_usec!: number;\n\tpublic _message_id: number = 49;\n\tpublic _message_name: string = 'GPS_GLOBAL_ORIGIN';\n\tpublic _crc_extra: number = 39;\n\tpublic _message_fields: [string, string, boolean][] = [\n\t\t['latitude', 'int32_t', false],\n\t\t['longitude', 'int32_t', false],\n\t\t['altitude', 'int32_t', false],\n\t\t['time_usec', 'uint64_t', true],\n\t];\n}","import {MAVLinkMessage} from '@ifrunistuttgart/node-mavlink';\nimport {readInt64LE, readUInt64LE} from '@ifrunistuttgart/node-mavlink';\n/*\nBind a RC channel to a parameter. The parameter should change according to the RC channel value.\n*/\n// target_system System ID uint8_t\n// target_component Component ID uint8_t\n// param_id Onboard parameter id, terminated by NULL if the length is less than 16 human-readable chars and WITHOUT null termination (NULL) byte if the length is exactly 16 chars - applications have to provide 16+1 bytes storage if the ID is stored as string char\n// param_index Parameter index. Send -1 to use the param ID field as identifier (else the param id will be ignored), send -2 to disable any existing map for this rc_channel_index. int16_t\n// parameter_rc_channel_index Index of parameter RC channel. Not equal to the RC channel id. Typically corresponds to a potentiometer-knob on the RC. uint8_t\n// param_value0 Initial parameter value float\n// scale Scale, maps the RC range [-1, 1] to a parameter value float\n// param_value_min Minimum param value. The protocol does not define if this overwrites an onboard minimum value. (Depends on implementation) float\n// param_value_max Maximum param value. The protocol does not define if this overwrites an onboard maximum value. (Depends on implementation) float\nexport class ParamMapRc extends MAVLinkMessage {\n\tpublic target_system!: number;\n\tpublic target_component!: number;\n\tpublic param_id!: string;\n\tpublic param_index!: number;\n\tpublic parameter_rc_channel_index!: number;\n\tpublic param_value0!: number;\n\tpublic scale!: number;\n\tpublic param_value_min!: number;\n\tpublic param_value_max!: number;\n\tpublic _message_id: number = 50;\n\tpublic _message_name: string = 'PARAM_MAP_RC';\n\tpublic _crc_extra: number = 78;\n\tpublic _message_fields: [string, string, boolean][] = [\n\t\t['param_value0', 'float', false],\n\t\t['scale', 'float', false],\n\t\t['param_value_min', 'float', false],\n\t\t['param_value_max', 'float', false],\n\t\t['param_index', 'int16_t', false],\n\t\t['target_system', 'uint8_t', false],\n\t\t['target_component', 'uint8_t', false],\n\t\t['param_id', 'char', false],\n\t\t['parameter_rc_channel_index', 'uint8_t', false],\n\t];\n}","import {MAVLinkMessage} from '@ifrunistuttgart/node-mavlink';\nimport {readInt64LE, readUInt64LE} from '@ifrunistuttgart/node-mavlink';\nimport {MavMissionType} from '../enums/mav-mission-type';\n/*\nRequest the information of the mission item with the sequence number seq. The response of the system to this message should be a MISSION_ITEM_INT message. https://mavlink.io/en/services/mission.html\n*/\n// target_system System ID uint8_t\n// target_component Component ID uint8_t\n// seq Sequence uint16_t\n// mission_type Mission type. uint8_t\nexport class MissionRequestInt extends MAVLinkMessage {\n\tpublic target_system!: number;\n\tpublic target_component!: number;\n\tpublic seq!: number;\n\tpublic mission_type!: MavMissionType;\n\tpublic _message_id: number = 51;\n\tpublic _message_name: string = 'MISSION_REQUEST_INT';\n\tpublic _crc_extra: number = 196;\n\tpublic _message_fields: [string, string, boolean][] = [\n\t\t['seq', 'uint16_t', false],\n\t\t['target_system', 'uint8_t', false],\n\t\t['target_component', 'uint8_t', false],\n\t\t['mission_type', 'uint8_t', true],\n\t];\n}","import {MAVLinkMessage} from '@ifrunistuttgart/node-mavlink';\nimport {readInt64LE, readUInt64LE} from '@ifrunistuttgart/node-mavlink';\nimport {MavComponent} from '../enums/mav-component';\nimport {MavMissionType} from '../enums/mav-mission-type';\n/*\nA broadcast message to notify any ground station or SDK if a mission, geofence or safe points have changed on the vehicle.\n*/\n// start_index Start index for partial mission change (-1 for all items). int16_t\n// end_index End index of a partial mission change. -1 is a synonym for the last mission item (i.e. selects all items from start_index). Ignore field if start_index=-1. int16_t\n// origin_sysid System ID of the author of the new mission. uint8_t\n// origin_compid Compnent ID of the author of the new mission. uint8_t\n// mission_type Mission type. uint8_t\nexport class MissionChanged extends MAVLinkMessage {\n\tpublic start_index!: number;\n\tpublic end_index!: number;\n\tpublic origin_sysid!: number;\n\tpublic origin_compid!: MavComponent;\n\tpublic mission_type!: MavMissionType;\n\tpublic _message_id: number = 52;\n\tpublic _message_name: string = 'MISSION_CHANGED';\n\tpublic _crc_extra: number = 132;\n\tpublic _message_fields: [string, string, boolean][] = [\n\t\t['start_index', 'int16_t', false],\n\t\t['end_index', 'int16_t', false],\n\t\t['origin_sysid', 'uint8_t', false],\n\t\t['origin_compid', 'uint8_t', false],\n\t\t['mission_type', 'uint8_t', false],\n\t];\n}","import {MAVLinkMessage} from '@ifrunistuttgart/node-mavlink';\nimport {readInt64LE, readUInt64LE} from '@ifrunistuttgart/node-mavlink';\nimport {MavFrame} from '../enums/mav-frame';\n/*\nSet a safety zone (volume), which is defined by two corners of a cube. This message can be used to tell the MAV which setpoints/waypoints to accept and which to reject. Safety areas are often enforced by national or competition regulations.\n*/\n// target_system System ID uint8_t\n// target_component Component ID uint8_t\n// frame Coordinate frame. Can be either global, GPS, right-handed with Z axis up or local, right handed, Z axis down. uint8_t\n// p1x x position 1 / Latitude 1 float\n// p1y y position 1 / Longitude 1 float\n// p1z z position 1 / Altitude 1 float\n// p2x x position 2 / Latitude 2 float\n// p2y y position 2 / Longitude 2 float\n// p2z z position 2 / Altitude 2 float\nexport class SafetySetAllowedArea extends MAVLinkMessage {\n\tpublic target_system!: number;\n\tpublic target_component!: number;\n\tpublic frame!: MavFrame;\n\tpublic p1x!: number;\n\tpublic p1y!: number;\n\tpublic p1z!: number;\n\tpublic p2x!: number;\n\tpublic p2y!: number;\n\tpublic p2z!: number;\n\tpublic _message_id: number = 54;\n\tpublic _message_name: string = 'SAFETY_SET_ALLOWED_AREA';\n\tpublic _crc_extra: number = 15;\n\tpublic _message_fields: [string, string, boolean][] = [\n\t\t['p1x', 'float', false],\n\t\t['p1y', 'float', false],\n\t\t['p1z', 'float', false],\n\t\t['p2x', 'float', false],\n\t\t['p2y', 'float', false],\n\t\t['p2z', 'float', false],\n\t\t['target_system', 'uint8_t', false],\n\t\t['target_component', 'uint8_t', false],\n\t\t['frame', 'uint8_t', false],\n\t];\n}","import {MAVLinkMessage} from '@ifrunistuttgart/node-mavlink';\nimport {readInt64LE, readUInt64LE} from '@ifrunistuttgart/node-mavlink';\nimport {MavFrame} from '../enums/mav-frame';\n/*\nRead out the safety zone the MAV currently assumes.\n*/\n// frame Coordinate frame. Can be either global, GPS, right-handed with Z axis up or local, right handed, Z axis down. uint8_t\n// p1x x position 1 / Latitude 1 float\n// p1y y position 1 / Longitude 1 float\n// p1z z position 1 / Altitude 1 float\n// p2x x position 2 / Latitude 2 float\n// p2y y position 2 / Longitude 2 float\n// p2z z position 2 / Altitude 2 float\nexport class SafetyAllowedArea extends MAVLinkMessage {\n\tpublic frame!: MavFrame;\n\tpublic p1x!: number;\n\tpublic p1y!: number;\n\tpublic p1z!: number;\n\tpublic p2x!: number;\n\tpublic p2y!: number;\n\tpublic p2z!: number;\n\tpublic _message_id: number = 55;\n\tpublic _message_name: string = 'SAFETY_ALLOWED_AREA';\n\tpublic _crc_extra: number = 3;\n\tpublic _message_fields: [string, string, boolean][] = [\n\t\t['p1x', 'float', false],\n\t\t['p1y', 'float', false],\n\t\t['p1z', 'float', false],\n\t\t['p2x', 'float', false],\n\t\t['p2y', 'float', false],\n\t\t['p2z', 'float', false],\n\t\t['frame', 'uint8_t', false],\n\t];\n}","import {MAVLinkMessage} from '@ifrunistuttgart/node-mavlink';\nimport {readInt64LE, readUInt64LE} from '@ifrunistuttgart/node-mavlink';\n/*\nThe attitude in the aeronautical frame (right-handed, Z-down, X-front, Y-right), expressed as quaternion. Quaternion order is w, x, y, z and a zero rotation would be expressed as (1 0 0 0).\n*/\n// time_usec Timestamp (UNIX Epoch time or time since system boot). The receiving end can infer timestamp format (since 1.1.1970 or since system boot) by checking for the magnitude of the number. uint64_t\n// q Quaternion components, w, x, y, z (1 0 0 0 is the null-rotation) float\n// rollspeed Roll angular speed float\n// pitchspeed Pitch angular speed float\n// yawspeed Yaw angular speed float\n// covariance Row-major representation of a 3x3 attitude covariance matrix (states: roll, pitch, yaw; first three entries are the first ROW, next three entries are the second row, etc.). If unknown, assign NaN value to first element in the array. float\nexport class AttitudeQuaternionCov extends MAVLinkMessage {\n\tpublic time_usec!: number;\n\tpublic q!: number;\n\tpublic rollspeed!: number;\n\tpublic pitchspeed!: number;\n\tpublic yawspeed!: number;\n\tpublic covariance!: number;\n\tpublic _message_id: number = 61;\n\tpublic _message_name: string = 'ATTITUDE_QUATERNION_COV';\n\tpublic _crc_extra: number = 167;\n\tpublic _message_fields: [string, string, boolean][] = [\n\t\t['time_usec', 'uint64_t', false],\n\t\t['q', 'float', false],\n\t\t['rollspeed', 'float', false],\n\t\t['pitchspeed', 'float', false],\n\t\t['yawspeed', 'float', false],\n\t\t['covariance', 'float', false],\n\t];\n}","import {MAVLinkMessage} from '@ifrunistuttgart/node-mavlink';\nimport {readInt64LE, readUInt64LE} from '@ifrunistuttgart/node-mavlink';\n/*\nThe state of the fixed wing navigation and position controller.\n*/\n// nav_roll Current desired roll float\n// nav_pitch Current desired pitch float\n// nav_bearing Current desired heading int16_t\n// target_bearing Bearing to current waypoint/target int16_t\n// wp_dist Distance to active waypoint uint16_t\n// alt_error Current altitude error float\n// aspd_error Current airspeed error float\n// xtrack_error Current crosstrack error on x-y plane float\nexport class NavControllerOutput extends MAVLinkMessage {\n\tpublic nav_roll!: number;\n\tpublic nav_pitch!: number;\n\tpublic nav_bearing!: number;\n\tpublic target_bearing!: number;\n\tpublic wp_dist!: number;\n\tpublic alt_error!: number;\n\tpublic aspd_error!: number;\n\tpublic xtrack_error!: number;\n\tpublic _message_id: number = 62;\n\tpublic _message_name: string = 'NAV_CONTROLLER_OUTPUT';\n\tpublic _crc_extra: number = 183;\n\tpublic _message_fields: [string, string, boolean][] = [\n\t\t['nav_roll', 'float', false],\n\t\t['nav_pitch', 'float', false],\n\t\t['alt_error', 'float', false],\n\t\t['aspd_error', 'float', false],\n\t\t['xtrack_error', 'float', false],\n\t\t['nav_bearing', 'int16_t', false],\n\t\t['target_bearing', 'int16_t', false],\n\t\t['wp_dist', 'uint16_t', false],\n\t];\n}","import {MAVLinkMessage} from '@ifrunistuttgart/node-mavlink';\nimport {readInt64LE, readUInt64LE} from '@ifrunistuttgart/node-mavlink';\nimport {MavEstimatorType} from '../enums/mav-estimator-type';\n/*\nThe filtered global position (e.g. fused GPS and accelerometers). The position is in GPS-frame (right-handed, Z-up). It is designed as scaled integer message since the resolution of float is not sufficient. NOTE: This message is intended for onboard networks / companion computers and higher-bandwidth links and optimized for accuracy and completeness. Please use the GLOBAL_POSITION_INT message for a minimal subset.\n*/\n// time_usec Timestamp (UNIX Epoch time or time since system boot). The receiving end can infer timestamp format (since 1.1.1970 or since system boot) by checking for the magnitude of the number. uint64_t\n// estimator_type Class id of the estimator this estimate originated from. uint8_t\n// lat Latitude int32_t\n// lon Longitude int32_t\n// alt Altitude in meters above MSL int32_t\n// relative_alt Altitude above ground int32_t\n// vx Ground X Speed (Latitude) float\n// vy Ground Y Speed (Longitude) float\n// vz Ground Z Speed (Altitude) float\n// covariance Row-major representation of a 6x6 position and velocity 6x6 cross-covariance matrix (states: lat, lon, alt, vx, vy, vz; first six entries are the first ROW, next six entries are the second row, etc.). If unknown, assign NaN value to first element in the array. float\nexport class GlobalPositionIntCov extends MAVLinkMessage {\n\tpublic time_usec!: number;\n\tpublic estimator_type!: MavEstimatorType;\n\tpublic lat!: number;\n\tpublic lon!: number;\n\tpublic alt!: number;\n\tpublic relative_alt!: number;\n\tpublic vx!: number;\n\tpublic vy!: number;\n\tpublic vz!: number;\n\tpublic covariance!: number;\n\tpublic _message_id: number = 63;\n\tpublic _message_name: string = 'GLOBAL_POSITION_INT_COV';\n\tpublic _crc_extra: number = 119;\n\tpublic _message_fields: [string, string, boolean][] = [\n\t\t['time_usec', 'uint64_t', false],\n\t\t['lat', 'int32_t', false],\n\t\t['lon', 'int32_t', false],\n\t\t['alt', 'int32_t', false],\n\t\t['relative_alt', 'int32_t', false],\n\t\t['vx', 'float', false],\n\t\t['vy', 'float', false],\n\t\t['vz', 'float', false],\n\t\t['covariance', 'float', false],\n\t\t['estimator_type', 'uint8_t', false],\n\t];\n}","import {MAVLinkMessage} from '@ifrunistuttgart/node-mavlink';\nimport {readInt64LE, readUInt64LE} from '@ifrunistuttgart/node-mavlink';\nimport {MavEstimatorType} from '../enums/mav-estimator-type';\n/*\nThe filtered local position (e.g. fused computer vision and accelerometers). Coordinate frame is right-handed, Z-axis down (aeronautical frame, NED / north-east-down convention)\n*/\n// time_usec Timestamp (UNIX Epoch time or time since system boot). The receiving end can infer timestamp format (since 1.1.1970 or since system boot) by checking for the magnitude of the number. uint64_t\n// estimator_type Class id of the estimator this estimate originated from. uint8_t\n// x X Position float\n// y Y Position float\n// z Z Position float\n// vx X Speed float\n// vy Y Speed float\n// vz Z Speed float\n// ax X Acceleration float\n// ay Y Acceleration float\n// az Z Acceleration float\n// covariance Row-major representation of position, velocity and acceleration 9x9 cross-covariance matrix upper right triangle (states: x, y, z, vx, vy, vz, ax, ay, az; first nine entries are the first ROW, next eight entries are the second row, etc.). If unknown, assign NaN value to first element in the array. float\nexport class LocalPositionNedCov extends MAVLinkMessage {\n\tpublic time_usec!: number;\n\tpublic estimator_type!: MavEstimatorType;\n\tpublic x!: number;\n\tpublic y!: number;\n\tpublic z!: number;\n\tpublic vx!: number;\n\tpublic vy!: number;\n\tpublic vz!: number;\n\tpublic ax!: number;\n\tpublic ay!: number;\n\tpublic az!: number;\n\tpublic covariance!: number;\n\tpublic _message_id: number = 64;\n\tpublic _message_name: string = 'LOCAL_POSITION_NED_COV';\n\tpublic _crc_extra: number = 191;\n\tpublic _message_fields: [string, string, boolean][] = [\n\t\t['time_usec', 'uint64_t', false],\n\t\t['x', 'float', false],\n\t\t['y', 'float', false],\n\t\t['z', 'float', false],\n\t\t['vx', 'float', false],\n\t\t['vy', 'float', false],\n\t\t['vz', 'float', false],\n\t\t['ax', 'float', false],\n\t\t['ay', 'float', false],\n\t\t['az', 'float', false],\n\t\t['covariance', 'float', false],\n\t\t['estimator_type', 'uint8_t', false],\n\t];\n}","import {MAVLinkMessage} from '@ifrunistuttgart/node-mavlink';\nimport {readInt64LE, readUInt64LE} from '@ifrunistuttgart/node-mavlink';\n/*\nThe PPM values of the RC channels received. The standard PPM modulation is as follows: 1000 microseconds: 0%, 2000 microseconds: 100%. A value of UINT16_MAX implies the channel is unused. Individual receivers/transmitters might violate this specification.\n*/\n// time_boot_ms Timestamp (time since system boot). uint32_t\n// chancount Total number of RC channels being received. This can be larger than 18, indicating that more channels are available but not given in this message. This value should be 0 when no RC channels are available. uint8_t\n// chan1_raw RC channel 1 value. uint16_t\n// chan2_raw RC channel 2 value. uint16_t\n// chan3_raw RC channel 3 value. uint16_t\n// chan4_raw RC channel 4 value. uint16_t\n// chan5_raw RC channel 5 value. uint16_t\n// chan6_raw RC channel 6 value. uint16_t\n// chan7_raw RC channel 7 value. uint16_t\n// chan8_raw RC channel 8 value. uint16_t\n// chan9_raw RC channel 9 value. uint16_t\n// chan10_raw RC channel 10 value. uint16_t\n// chan11_raw RC channel 11 value. uint16_t\n// chan12_raw RC channel 12 value. uint16_t\n// chan13_raw RC channel 13 value. uint16_t\n// chan14_raw RC channel 14 value. uint16_t\n// chan15_raw RC channel 15 value. uint16_t\n// chan16_raw RC channel 16 value. uint16_t\n// chan17_raw RC channel 17 value. uint16_t\n// chan18_raw RC channel 18 value. uint16_t\n// rssi Receive signal strength indicator in device-dependent units/scale. Values: [0-254], 255: invalid/unknown. uint8_t\nexport class RcChannels extends MAVLinkMessage {\n\tpublic time_boot_ms!: number;\n\tpublic chancount!: number;\n\tpublic chan1_raw!: number;\n\tpublic chan2_raw!: number;\n\tpublic chan3_raw!: number;\n\tpublic chan4_raw!: number;\n\tpublic chan5_raw!: number;\n\tpublic chan6_raw!: number;\n\tpublic chan7_raw!: number;\n\tpublic chan8_raw!: number;\n\tpublic chan9_raw!: number;\n\tpublic chan10_raw!: number;\n\tpublic chan11_raw!: number;\n\tpublic chan12_raw!: number;\n\tpublic chan13_raw!: number;\n\tpublic chan14_raw!: number;\n\tpublic chan15_raw!: number;\n\tpublic chan16_raw!: number;\n\tpublic chan17_raw!: number;\n\tpublic chan18_raw!: number;\n\tpublic rssi!: number;\n\tpublic _message_id: number = 65;\n\tpublic _message_name: string = 'RC_CHANNELS';\n\tpublic _crc_extra: number = 118;\n\tpublic _message_fields: [string, string, boolean][] = [\n\t\t['time_boot_ms', 'uint32_t', false],\n\t\t['chan1_raw', 'uint16_t', false],\n\t\t['chan2_raw', 'uint16_t', false],\n\t\t['chan3_raw', 'uint16_t', false],\n\t\t['chan4_raw', 'uint16_t', false],\n\t\t['chan5_raw', 'uint16_t', false],\n\t\t['chan6_raw', 'uint16_t', false],\n\t\t['chan7_raw', 'uint16_t', false],\n\t\t['chan8_raw', 'uint16_t', false],\n\t\t['chan9_raw', 'uint16_t', false],\n\t\t['chan10_raw', 'uint16_t', false],\n\t\t['chan11_raw', 'uint16_t', false],\n\t\t['chan12_raw', 'uint16_t', false],\n\t\t['chan13_raw', 'uint16_t', false],\n\t\t['chan14_raw', 'uint16_t', false],\n\t\t['chan15_raw', 'uint16_t', false],\n\t\t['chan16_raw', 'uint16_t', false],\n\t\t['chan17_raw', 'uint16_t', false],\n\t\t['chan18_raw', 'uint16_t', false],\n\t\t['chancount', 'uint8_t', false],\n\t\t['rssi', 'uint8_t', false],\n\t];\n}","import {MAVLinkMessage} from '@ifrunistuttgart/node-mavlink';\nimport {readInt64LE, readUInt64LE} from '@ifrunistuttgart/node-mavlink';\n/*\nRequest a data stream.\n*/\n// target_system The target requested to send the message stream. uint8_t\n// target_component The target requested to send the message stream. uint8_t\n// req_stream_id The ID of the requested data stream uint8_t\n// req_message_rate The requested message rate uint16_t\n// start_stop 1 to start sending, 0 to stop sending. uint8_t\nexport class RequestDataStream extends MAVLinkMessage {\n\tpublic target_system!: number;\n\tpublic target_component!: number;\n\tpublic req_stream_id!: number;\n\tpublic req_message_rate!: number;\n\tpublic start_stop!: number;\n\tpublic _message_id: number = 66;\n\tpublic _message_name: string = 'REQUEST_DATA_STREAM';\n\tpublic _crc_extra: number = 148;\n\tpublic _message_fields: [string, string, boolean][] = [\n\t\t['req_message_rate', 'uint16_t', false],\n\t\t['target_system', 'uint8_t', false],\n\t\t['target_component', 'uint8_t', false],\n\t\t['req_stream_id', 'uint8_t', false],\n\t\t['start_stop', 'uint8_t', false],\n\t];\n}","import {MAVLinkMessage} from '@ifrunistuttgart/node-mavlink';\nimport {readInt64LE, readUInt64LE} from '@ifrunistuttgart/node-mavlink';\n/*\nData stream status information.\n*/\n// stream_id The ID of the requested data stream uint8_t\n// message_rate The message rate uint16_t\n// on_off 1 stream is enabled, 0 stream is stopped. uint8_t\nexport class DataStream extends MAVLinkMessage {\n\tpublic stream_id!: number;\n\tpublic message_rate!: number;\n\tpublic on_off!: number;\n\tpublic _message_id: number = 67;\n\tpublic _message_name: string = 'DATA_STREAM';\n\tpublic _crc_extra: number = 21;\n\tpublic _message_fields: [string, string, boolean][] = [\n\t\t['message_rate', 'uint16_t', false],\n\t\t['stream_id', 'uint8_t', false],\n\t\t['on_off', 'uint8_t', false],\n\t];\n}","import {MAVLinkMessage} from '@ifrunistuttgart/node-mavlink';\nimport {readInt64LE, readUInt64LE} from '@ifrunistuttgart/node-mavlink';\n/*\nThis message provides an API for manually controlling the vehicle using standard joystick axes nomenclature, along with a joystick-like input device. Unused axes can be disabled an buttons are also transmit as boolean values of their\n*/\n// target The system to be controlled. uint8_t\n// x X-axis, normalized to the range [-1000,1000]. A value of INT16_MAX indicates that this axis is invalid. Generally corresponds to forward(1000)-backward(-1000) movement on a joystick and the pitch of a vehicle. int16_t\n// y Y-axis, normalized to the range [-1000,1000]. A value of INT16_MAX indicates that this axis is invalid. Generally corresponds to left(-1000)-right(1000) movement on a joystick and the roll of a vehicle. int16_t\n// z Z-axis, normalized to the range [-1000,1000]. A value of INT16_MAX indicates that this axis is invalid. Generally corresponds to a separate slider movement with maximum being 1000 and minimum being -1000 on a joystick and the thrust of a vehicle. Positive values are positive thrust, negative values are negative thrust. int16_t\n// r R-axis, normalized to the range [-1000,1000]. A value of INT16_MAX indicates that this axis is invalid. Generally corresponds to a twisting of the joystick, with counter-clockwise being 1000 and clockwise being -1000, and the yaw of a vehicle. int16_t\n// buttons A bitfield corresponding to the joystick buttons' current state, 1 for pressed, 0 for released. The lowest bit corresponds to Button 1. uint16_t\nexport class ManualControl extends MAVLinkMessage {\n\tpublic target!: number;\n\tpublic x!: number;\n\tpublic y!: number;\n\tpublic z!: number;\n\tpublic r!: number;\n\tpublic buttons!: number;\n\tpublic _message_id: number = 69;\n\tpublic _message_name: string = 'MANUAL_CONTROL';\n\tpublic _crc_extra: number = 243;\n\tpublic _message_fields: [string, string, boolean][] = [\n\t\t['x', 'int16_t', false],\n\t\t['y', 'int16_t', false],\n\t\t['z', 'int16_t', false],\n\t\t['r', 'int16_t', false],\n\t\t['buttons', 'uint16_t', false],\n\t\t['target', 'uint8_t', false],\n\t];\n}","import {MAVLinkMessage} from '@ifrunistuttgart/node-mavlink';\nimport {readInt64LE, readUInt64LE} from '@ifrunistuttgart/node-mavlink';\n/*\nThe RAW values of the RC channels sent to the MAV to override info received from the RC radio. The standard PPM modulation is as follows: 1000 microseconds: 0%, 2000 microseconds: 100%. Individual receivers/transmitters might violate this specification. Note carefully the semantic differences between the first 8 channels and the subsequent channels\n*/\n// target_system System ID uint8_t\n// target_component Component ID uint8_t\n// chan1_raw RC channel 1 value. A value of UINT16_MAX means to ignore this field. A value of 0 means to release this channel back to the RC radio. uint16_t\n// chan2_raw RC channel 2 value. A value of UINT16_MAX means to ignore this field. A value of 0 means to release this channel back to the RC radio. uint16_t\n// chan3_raw RC channel 3 value. A value of UINT16_MAX means to ignore this field. A value of 0 means to release this channel back to the RC radio. uint16_t\n// chan4_raw RC channel 4 value. A value of UINT16_MAX means to ignore this field. A value of 0 means to release this channel back to the RC radio. uint16_t\n// chan5_raw RC channel 5 value. A value of UINT16_MAX means to ignore this field. A value of 0 means to release this channel back to the RC radio. uint16_t\n// chan6_raw RC channel 6 value. A value of UINT16_MAX means to ignore this field. A value of 0 means to release this channel back to the RC radio. uint16_t\n// chan7_raw RC channel 7 value. A value of UINT16_MAX means to ignore this field. A value of 0 means to release this channel back to the RC radio. uint16_t\n// chan8_raw RC channel 8 value. A value of UINT16_MAX means to ignore this field. A value of 0 means to release this channel back to the RC radio. uint16_t\n// chan9_raw RC channel 9 value. A value of 0 or UINT16_MAX means to ignore this field. A value of UINT16_MAX-1 means to release this channel back to the RC radio. uint16_t\n// chan10_raw RC channel 10 value. A value of 0 or UINT16_MAX means to ignore this field. A value of UINT16_MAX-1 means to release this channel back to the RC radio. uint16_t\n// chan11_raw RC channel 11 value. A value of 0 or UINT16_MAX means to ignore this field. A value of UINT16_MAX-1 means to release this channel back to the RC radio. uint16_t\n// chan12_raw RC channel 12 value. A value of 0 or UINT16_MAX means to ignore this field. A value of UINT16_MAX-1 means to release this channel back to the RC radio. uint16_t\n// chan13_raw RC channel 13 value. A value of 0 or UINT16_MAX means to ignore this field. A value of UINT16_MAX-1 means to release this channel back to the RC radio. uint16_t\n// chan14_raw RC channel 14 value. A value of 0 or UINT16_MAX means to ignore this field. A value of UINT16_MAX-1 means to release this channel back to the RC radio. uint16_t\n// chan15_raw RC channel 15 value. A value of 0 or UINT16_MAX means to ignore this field. A value of UINT16_MAX-1 means to release this channel back to the RC radio. uint16_t\n// chan16_raw RC channel 16 value. A value of 0 or UINT16_MAX means to ignore this field. A value of UINT16_MAX-1 means to release this channel back to the RC radio. uint16_t\n// chan17_raw RC channel 17 value. A value of 0 or UINT16_MAX means to ignore this field. A value of UINT16_MAX-1 means to release this channel back to the RC radio. uint16_t\n// chan18_raw RC channel 18 value. A value of 0 or UINT16_MAX means to ignore this field. A value of UINT16_MAX-1 means to release this channel back to the RC radio. uint16_t\nexport class RcChannelsOverride extends MAVLinkMessage {\n\tpublic target_system!: number;\n\tpublic target_component!: number;\n\tpublic chan1_raw!: number;\n\tpublic chan2_raw!: number;\n\tpublic chan3_raw!: number;\n\tpublic chan4_raw!: number;\n\tpublic chan5_raw!: number;\n\tpublic chan6_raw!: number;\n\tpublic chan7_raw!: number;\n\tpublic chan8_raw!: number;\n\tpublic chan9_raw!: number;\n\tpublic chan10_raw!: number;\n\tpublic chan11_raw!: number;\n\tpublic chan12_raw!: number;\n\tpublic chan13_raw!: number;\n\tpublic chan14_raw!: number;\n\tpublic chan15_raw!: number;\n\tpublic chan16_raw!: number;\n\tpublic chan17_raw!: number;\n\tpublic chan18_raw!: number;\n\tpublic _message_id: number = 70;\n\tpublic _message_name: string = 'RC_CHANNELS_OVERRIDE';\n\tpublic _crc_extra: number = 124;\n\tpublic _message_fields: [string, string, boolean][] = [\n\t\t['chan1_raw', 'uint16_t', false],\n\t\t['chan2_raw', 'uint16_t', false],\n\t\t['chan3_raw', 'uint16_t', false],\n\t\t['chan4_raw', 'uint16_t', false],\n\t\t['chan5_raw', 'uint16_t', false],\n\t\t['chan6_raw', 'uint16_t', false],\n\t\t['chan7_raw', 'uint16_t', false],\n\t\t['chan8_raw', 'uint16_t', false],\n\t\t['target_system', 'uint8_t', false],\n\t\t['target_component', 'uint8_t', false],\n\t\t['chan9_raw', 'uint16_t', true],\n\t\t['chan10_raw', 'uint16_t', true],\n\t\t['chan11_raw', 'uint16_t', true],\n\t\t['chan12_raw', 'uint16_t', true],\n\t\t['chan13_raw', 'uint16_t', true],\n\t\t['chan14_raw', 'uint16_t', true],\n\t\t['chan15_raw', 'uint16_t', true],\n\t\t['chan16_raw', 'uint16_t', true],\n\t\t['chan17_raw', 'uint16_t', true],\n\t\t['chan18_raw', 'uint16_t', true],\n\t];\n}","import {MAVLinkMessage} from '@ifrunistuttgart/node-mavlink';\nimport {readInt64LE, readUInt64LE} from '@ifrunistuttgart/node-mavlink';\nimport {MavFrame} from '../enums/mav-frame';\nimport {MavCmd} from '../enums/mav-cmd';\nimport {MavMissionType} from '../enums/mav-mission-type';\n/*\nMessage encoding a mission item. This message is emitted to announce\n the presence of a mission item and to set a mission item on the system. The mission item can be either in x, y, z meters (type: LOCAL) or x:lat, y:lon, z:altitude. Local frame is Z-down, right handed (NED), global frame is Z-up, right handed (ENU). NaN or INT32_MAX may be used in float/integer params (respectively) to indicate optional/default values (e.g. to use the component's current latitude, yaw rather than a specific value). See also https://mavlink.io/en/services/mission.html.\n*/\n// target_system System ID uint8_t\n// target_component Component ID uint8_t\n// seq Waypoint ID (sequence number). Starts at zero. Increases monotonically for each waypoint, no gaps in the sequence (0,1,2,3,4). uint16_t\n// frame The coordinate system of the waypoint. uint8_t\n// command The scheduled action for the waypoint. uint16_t\n// current false:0, true:1 uint8_t\n// autocontinue Autocontinue to next waypoint uint8_t\n// param1 PARAM1, see MAV_CMD enum float\n// param2 PARAM2, see MAV_CMD enum float\n// param3 PARAM3, see MAV_CMD enum float\n// param4 PARAM4, see MAV_CMD enum float\n// x PARAM5 / local: x position in meters * 1e4, global: latitude in degrees * 10^7 int32_t\n// y PARAM6 / y position: local: x position in meters * 1e4, global: longitude in degrees *10^7 int32_t\n// z PARAM7 / z position: global: altitude in meters (relative or absolute, depending on frame. float\n// mission_type Mission type. uint8_t\nexport class MissionItemInt extends MAVLinkMessage {\n\tpublic target_system!: number;\n\tpublic target_component!: number;\n\tpublic seq!: number;\n\tpublic frame!: MavFrame;\n\tpublic command!: MavCmd;\n\tpublic current!: number;\n\tpublic autocontinue!: number;\n\tpublic param1!: number;\n\tpublic param2!: number;\n\tpublic param3!: number;\n\tpublic param4!: number;\n\tpublic x!: number;\n\tpublic y!: number;\n\tpublic z!: number;\n\tpublic mission_type!: MavMissionType;\n\tpublic _message_id: number = 73;\n\tpublic _message_name: string = 'MISSION_ITEM_INT';\n\tpublic _crc_extra: number = 38;\n\tpublic _message_fields: [string, string, boolean][] = [\n\t\t['param1', 'float', false],\n\t\t['param2', 'float', false],\n\t\t['param3', 'float', false],\n\t\t['param4', 'float', false],\n\t\t['x', 'int32_t', false],\n\t\t['y', 'int32_t', false],\n\t\t['z', 'float', false],\n\t\t['seq', 'uint16_t', false],\n\t\t['command', 'uint16_t', false],\n\t\t['target_system', 'uint8_t', false],\n\t\t['target_component', 'uint8_t', false],\n\t\t['frame', 'uint8_t', false],\n\t\t['current', 'uint8_t', false],\n\t\t['autocontinue', 'uint8_t', false],\n\t\t['mission_type', 'uint8_t', true],\n\t];\n}","import {MAVLinkMessage} from '@ifrunistuttgart/node-mavlink';\nimport {readInt64LE, readUInt64LE} from '@ifrunistuttgart/node-mavlink';\n/*\nMetrics typically displayed on a HUD for fixed wing aircraft.\n*/\n// airspeed Vehicle speed in form appropriate for vehicle type. For standard aircraft this is typically calibrated airspeed (CAS) or indicated airspeed (IAS) - either of which can be used by a pilot to estimate stall speed. float\n// groundspeed Current ground speed. float\n// heading Current heading in compass units (0-360, 0=north). int16_t\n// throttle Current throttle setting (0 to 100). uint16_t\n// alt Current altitude (MSL). float\n// climb Current climb rate. float\nexport class VfrHud extends MAVLinkMessage {\n\tpublic airspeed!: number;\n\tpublic groundspeed!: number;\n\tpublic heading!: number;\n\tpublic throttle!: number;\n\tpublic alt!: number;\n\tpublic climb!: number;\n\tpublic _message_id: number = 74;\n\tpublic _message_name: string = 'VFR_HUD';\n\tpublic _crc_extra: number = 20;\n\tpublic _message_fields: [string, string, boolean][] = [\n\t\t['airspeed', 'float', false],\n\t\t['groundspeed', 'float', false],\n\t\t['alt', 'float', false],\n\t\t['climb', 'float', false],\n\t\t['heading', 'int16_t', false],\n\t\t['throttle', 'uint16_t', false],\n\t];\n}","import {MAVLinkMessage} from '@ifrunistuttgart/node-mavlink';\nimport {readInt64LE, readUInt64LE} from '@ifrunistuttgart/node-mavlink';\nimport {MavFrame} from '../enums/mav-frame';\nimport {MavCmd} from '../enums/mav-cmd';\n/*\nMessage encoding a command with parameters as scaled integers. Scaling depends on the actual command value. The command microservice is documented at https://mavlink.io/en/services/command.html\n*/\n// target_system System ID uint8_t\n// target_component Component ID uint8_t\n// frame The coordinate system of the COMMAND. uint8_t\n// command The scheduled action for the mission item. uint16_t\n// current Not used. uint8_t\n// autocontinue Not used (set 0). uint8_t\n// param1 PARAM1, see MAV_CMD enum float\n// param2 PARAM2, see MAV_CMD enum float\n// param3 PARAM3, see MAV_CMD enum float\n// param4 PARAM4, see MAV_CMD enum float\n// x PARAM5 / local: x position in meters * 1e4, global: latitude in degrees * 10^7 int32_t\n// y PARAM6 / local: y position in meters * 1e4, global: longitude in degrees * 10^7 int32_t\n// z PARAM7 / z position: global: altitude in meters (relative or absolute, depending on frame). float\nexport class CommandInt extends MAVLinkMessage {\n\tpublic target_system!: number;\n\tpublic target_component!: number;\n\tpublic frame!: MavFrame;\n\tpublic command!: MavCmd;\n\tpublic current!: number;\n\tpublic autocontinue!: number;\n\tpublic param1!: number;\n\tpublic param2!: number;\n\tpublic param3!: number;\n\tpublic param4!: number;\n\tpublic x!: number;\n\tpublic y!: number;\n\tpublic z!: number;\n\tpublic _message_id: number = 75;\n\tpublic _message_name: string = 'COMMAND_INT';\n\tpublic _crc_extra: number = 158;\n\tpublic _message_fields: [string, string, boolean][] = [\n\t\t['param1', 'float', false],\n\t\t['param2', 'float', false],\n\t\t['param3', 'float', false],\n\t\t['param4', 'float', false],\n\t\t['x', 'int32_t', false],\n\t\t['y', 'int32_t', false],\n\t\t['z', 'float', false],\n\t\t['command', 'uint16_t', false],\n\t\t['target_system', 'uint8_t', false],\n\t\t['target_component', 'uint8_t', false],\n\t\t['frame', 'uint8_t', false],\n\t\t['current', 'uint8_t', false],\n\t\t['autocontinue', 'uint8_t', false],\n\t];\n}","import {MAVLinkMessage} from '@ifrunistuttgart/node-mavlink';\nimport {readInt64LE, readUInt64LE} from '@ifrunistuttgart/node-mavlink';\nimport {MavCmd} from '../enums/mav-cmd';\n/*\nSend a command with up to seven parameters to the MAV. The command microservice is documented at https://mavlink.io/en/services/command.html\n*/\n// target_system System which should execute the command uint8_t\n// target_component Component which should execute the command, 0 for all components uint8_t\n// command Command ID (of command to send). uint16_t\n// confirmation 0: First transmission of this command. 1-255: Confirmation transmissions (e.g. for kill command) uint8_t\n// param1 Parameter 1 (for the specific command). float\n// param2 Parameter 2 (for the specific command). float\n// param3 Parameter 3 (for the specific command). float\n// param4 Parameter 4 (for the specific command). float\n// param5 Parameter 5 (for the specific command). float\n// param6 Parameter 6 (for the specific command). float\n// param7 Parameter 7 (for the specific command). float\nexport class CommandLong extends MAVLinkMessage {\n\tpublic target_system!: number;\n\tpublic target_component!: number;\n\tpublic command!: MavCmd;\n\tpublic confirmation!: number;\n\tpublic param1!: number;\n\tpublic param2!: number;\n\tpublic param3!: number;\n\tpublic param4!: number;\n\tpublic param5!: number;\n\tpublic param6!: number;\n\tpublic param7!: number;\n\tpublic _message_id: number = 76;\n\tpublic _message_name: string = 'COMMAND_LONG';\n\tpublic _crc_extra: number = 152;\n\tpublic _message_fields: [string, string, boolean][] = [\n\t\t['param1', 'float', false],\n\t\t['param2', 'float', false],\n\t\t['param3', 'float', false],\n\t\t['param4', 'float', false],\n\t\t['param5', 'float', false],\n\t\t['param6', 'float', false],\n\t\t['param7', 'float', false],\n\t\t['command', 'uint16_t', false],\n\t\t['target_system', 'uint8_t', false],\n\t\t['target_component', 'uint8_t', false],\n\t\t['confirmation', 'uint8_t', false],\n\t];\n}","import {MAVLinkMessage} from '@ifrunistuttgart/node-mavlink';\nimport {readInt64LE, readUInt64LE} from '@ifrunistuttgart/node-mavlink';\nimport {MavCmd} from '../enums/mav-cmd';\nimport {MavResult} from '../enums/mav-result';\n/*\nReport status of a command. Includes feedback whether the command was executed. The command microservice is documented at https://mavlink.io/en/services/command.html\n*/\n// command Command ID (of acknowledged command). uint16_t\n// result Result of command. uint8_t\n// progress WIP: Also used as result_param1, it can be set with an enum containing the errors reasons of why the command was denied, or the progress percentage when result is MAV_RESULT_IN_PROGRESS (255 if the progress is unknown). uint8_t\n// result_param2 WIP: Additional parameter of the result, example: which parameter of MAV_CMD_NAV_WAYPOINT caused it to be denied. int32_t\n// target_system WIP: System ID of the target recipient. This is the ID of the system that sent the command for which this COMMAND_ACK is an acknowledgement. uint8_t\n// target_component WIP: Component ID of the target recipient. This is the ID of the system that sent the command for which this COMMAND_ACK is an acknowledgement. uint8_t\nexport class CommandAck extends MAVLinkMessage {\n\tpublic command!: MavCmd;\n\tpublic result!: MavResult;\n\tpublic progress!: number;\n\tpublic result_param2!: number;\n\tpublic target_system!: number;\n\tpublic target_component!: number;\n\tpublic _message_id: number = 77;\n\tpublic _message_name: string = 'COMMAND_ACK';\n\tpublic _crc_extra: number = 143;\n\tpublic _message_fields: [string, string, boolean][] = [\n\t\t['command', 'uint16_t', false],\n\t\t['result', 'uint8_t', false],\n\t\t['progress', 'uint8_t', true],\n\t\t['result_param2', 'int32_t', true],\n\t\t['target_system', 'uint8_t', true],\n\t\t['target_component', 'uint8_t', true],\n\t];\n}","import {MAVLinkMessage} from '@ifrunistuttgart/node-mavlink';\nimport {readInt64LE, readUInt64LE} from '@ifrunistuttgart/node-mavlink';\nimport {MavCmd} from '../enums/mav-cmd';\n/*\nCancel a long running command. The target system should respond with a COMMAND_ACK to the original command with result=MAV_RESULT_CANCELLED if the long running process was cancelled. If it has already completed, the cancel action can be ignored. The cancel action can be retried until some sort of acknowledgement to the original command has been received. The command microservice is documented at https://mavlink.io/en/services/command.html\n*/\n// target_system System executing long running command. Should not be broadcast (0). uint8_t\n// target_component Component executing long running command. uint8_t\n// command Command ID (of command to cancel). uint16_t\nexport class CommandCancel extends MAVLinkMessage {\n\tpublic target_system!: number;\n\tpublic target_component!: number;\n\tpublic command!: MavCmd;\n\tpublic _message_id: number = 80;\n\tpublic _message_name: string = 'COMMAND_CANCEL';\n\tpublic _crc_extra: number = 14;\n\tpublic _message_fields: [string, string, boolean][] = [\n\t\t['command', 'uint16_t', false],\n\t\t['target_system', 'uint8_t', false],\n\t\t['target_component', 'uint8_t', false],\n\t];\n}","import {MAVLinkMessage} from '@ifrunistuttgart/node-mavlink';\nimport {readInt64LE, readUInt64LE} from '@ifrunistuttgart/node-mavlink';\n/*\nSetpoint in roll, pitch, yaw and thrust from the operator\n*/\n// time_boot_ms Timestamp (time since system boot). uint32_t\n// roll Desired roll rate float\n// pitch Desired pitch rate float\n// yaw Desired yaw rate float\n// thrust Collective thrust, normalized to 0 .. 1 float\n// mode_switch Flight mode switch position, 0.. 255 uint8_t\n// manual_override_switch Override mode switch position, 0.. 255 uint8_t\nexport class ManualSetpoint extends MAVLinkMessage {\n\tpublic time_boot_ms!: number;\n\tpublic roll!: number;\n\tpublic pitch!: number;\n\tpublic yaw!: number;\n\tpublic thrust!: number;\n\tpublic mode_switch!: number;\n\tpublic manual_override_switch!: number;\n\tpublic _message_id: number = 81;\n\tpublic _message_name: string = 'MANUAL_SETPOINT';\n\tpublic _crc_extra: number = 106;\n\tpublic _message_fields: [string, string, boolean][] = [\n\t\t['time_boot_ms', 'uint32_t', false],\n\t\t['roll', 'float', false],\n\t\t['pitch', 'float', false],\n\t\t['yaw', 'float', false],\n\t\t['thrust', 'float', false],\n\t\t['mode_switch', 'uint8_t', false],\n\t\t['manual_override_switch', 'uint8_t', false],\n\t];\n}","import {MAVLinkMessage} from '@ifrunistuttgart/node-mavlink';\nimport {readInt64LE, readUInt64LE} from '@ifrunistuttgart/node-mavlink';\nimport {AttitudeTargetTypemask} from '../enums/attitude-target-typemask';\n/*\nSets a desired vehicle attitude. Used by an external controller to command the vehicle (manual controller or other system).\n*/\n// time_boot_ms Timestamp (time since system boot). uint32_t\n// target_system System ID uint8_t\n// target_component Component ID uint8_t\n// type_mask Bitmap to indicate which dimensions should be ignored by the vehicle. uint8_t\n// q Attitude quaternion (w, x, y, z order, zero-rotation is 1, 0, 0, 0) float\n// body_roll_rate Body roll rate float\n// body_pitch_rate Body pitch rate float\n// body_yaw_rate Body yaw rate float\n// thrust Collective thrust, normalized to 0 .. 1 (-1 .. 1 for vehicles capable of reverse trust) float\nexport class SetAttitudeTarget extends MAVLinkMessage {\n\tpublic time_boot_ms!: number;\n\tpublic target_system!: number;\n\tpublic target_component!: number;\n\tpublic type_mask!: AttitudeTargetTypemask;\n\tpublic q!: number;\n\tpublic body_roll_rate!: number;\n\tpublic body_pitch_rate!: number;\n\tpublic body_yaw_rate!: number;\n\tpublic thrust!: number;\n\tpublic _message_id: number = 82;\n\tpublic _message_name: string = 'SET_ATTITUDE_TARGET';\n\tpublic _crc_extra: number = 49;\n\tpublic _message_fields: [string, string, boolean][] = [\n\t\t['time_boot_ms', 'uint32_t', false],\n\t\t['q', 'float', false],\n\t\t['body_roll_rate', 'float', false],\n\t\t['body_pitch_rate', 'float', false],\n\t\t['body_yaw_rate', 'float', false],\n\t\t['thrust', 'float', false],\n\t\t['target_system', 'uint8_t', false],\n\t\t['target_component', 'uint8_t', false],\n\t\t['type_mask', 'uint8_t', false],\n\t];\n}","import {MAVLinkMessage} from '@ifrunistuttgart/node-mavlink';\nimport {readInt64LE, readUInt64LE} from '@ifrunistuttgart/node-mavlink';\nimport {AttitudeTargetTypemask} from '../enums/attitude-target-typemask';\n/*\nReports the current commanded attitude of the vehicle as specified by the autopilot. This should match the commands sent in a SET_ATTITUDE_TARGET message if the vehicle is being controlled this way.\n*/\n// time_boot_ms Timestamp (time since system boot). uint32_t\n// type_mask Bitmap to indicate which dimensions should be ignored by the vehicle. uint8_t\n// q Attitude quaternion (w, x, y, z order, zero-rotation is 1, 0, 0, 0) float\n// body_roll_rate Body roll rate float\n// body_pitch_rate Body pitch rate float\n// body_yaw_rate Body yaw rate float\n// thrust Collective thrust, normalized to 0 .. 1 (-1 .. 1 for vehicles capable of reverse trust) float\nexport class AttitudeTarget extends MAVLinkMessage {\n\tpublic time_boot_ms!: number;\n\tpublic type_mask!: AttitudeTargetTypemask;\n\tpublic q!: number;\n\tpublic body_roll_rate!: number;\n\tpublic body_pitch_rate!: number;\n\tpublic body_yaw_rate!: number;\n\tpublic thrust!: number;\n\tpublic _message_id: number = 83;\n\tpublic _message_name: string = 'ATTITUDE_TARGET';\n\tpublic _crc_extra: number = 22;\n\tpublic _message_fields: [string, string, boolean][] = [\n\t\t['time_boot_ms', 'uint32_t', false],\n\t\t['q', 'float', false],\n\t\t['body_roll_rate', 'float', false],\n\t\t['body_pitch_rate', 'float', false],\n\t\t['body_yaw_rate', 'float', false],\n\t\t['thrust', 'float', false],\n\t\t['type_mask', 'uint8_t', false],\n\t];\n}","import {MAVLinkMessage} from '@ifrunistuttgart/node-mavlink';\nimport {readInt64LE, readUInt64LE} from '@ifrunistuttgart/node-mavlink';\nimport {MavFrame} from '../enums/mav-frame';\nimport {PositionTargetTypemask} from '../enums/position-target-typemask';\n/*\nSets a desired vehicle position in a local north-east-down coordinate frame. Used by an external controller to command the vehicle (manual controller or other system).\n*/\n// time_boot_ms Timestamp (time since system boot). uint32_t\n// target_system System ID uint8_t\n// target_component Component ID uint8_t\n// coordinate_frame Valid options are: MAV_FRAME_LOCAL_NED = 1, MAV_FRAME_LOCAL_OFFSET_NED = 7, MAV_FRAME_BODY_NED = 8, MAV_FRAME_BODY_OFFSET_NED = 9 uint8_t\n// type_mask Bitmap to indicate which dimensions should be ignored by the vehicle. uint16_t\n// x X Position in NED frame float\n// y Y Position in NED frame float\n// z Z Position in NED frame (note, altitude is negative in NED) float\n// vx X velocity in NED frame float\n// vy Y velocity in NED frame float\n// vz Z velocity in NED frame float\n// afx X acceleration or force (if bit 10 of type_mask is set) in NED frame in meter / s^2 or N float\n// afy Y acceleration or force (if bit 10 of type_mask is set) in NED frame in meter / s^2 or N float\n// afz Z acceleration or force (if bit 10 of type_mask is set) in NED frame in meter / s^2 or N float\n// yaw yaw setpoint float\n// yaw_rate yaw rate setpoint float\nexport class SetPositionTargetLocalNed extends MAVLinkMessage {\n\tpublic time_boot_ms!: number;\n\tpublic target_system!: number;\n\tpublic target_component!: number;\n\tpublic coordinate_frame!: MavFrame;\n\tpublic type_mask!: PositionTargetTypemask;\n\tpublic x!: number;\n\tpublic y!: number;\n\tpublic z!: number;\n\tpublic vx!: number;\n\tpublic vy!: number;\n\tpublic vz!: number;\n\tpublic afx!: number;\n\tpublic afy!: number;\n\tpublic afz!: number;\n\tpublic yaw!: number;\n\tpublic yaw_rate!: number;\n\tpublic _message_id: number = 84;\n\tpublic _message_name: string = 'SET_POSITION_TARGET_LOCAL_NED';\n\tpublic _crc_extra: number = 143;\n\tpublic _message_fields: [string, string, boolean][] = [\n\t\t['time_boot_ms', 'uint32_t', false],\n\t\t['x', 'float', false],\n\t\t['y', 'float', false],\n\t\t['z', 'float', false],\n\t\t['vx', 'float', false],\n\t\t['vy', 'float', false],\n\t\t['vz', 'float', false],\n\t\t['afx', 'float', false],\n\t\t['afy', 'float', false],\n\t\t['afz', 'float', false],\n\t\t['yaw', 'float', false],\n\t\t['yaw_rate', 'float', false],\n\t\t['type_mask', 'uint16_t', false],\n\t\t['target_system', 'uint8_t', false],\n\t\t['target_component', 'uint8_t', false],\n\t\t['coordinate_frame', 'uint8_t', false],\n\t];\n}","import {MAVLinkMessage} from '@ifrunistuttgart/node-mavlink';\nimport {readInt64LE, readUInt64LE} from '@ifrunistuttgart/node-mavlink';\nimport {MavFrame} from '../enums/mav-frame';\nimport {PositionTargetTypemask} from '../enums/position-target-typemask';\n/*\nReports the current commanded vehicle position, velocity, and acceleration as specified by the autopilot. This should match the commands sent in SET_POSITION_TARGET_LOCAL_NED if the vehicle is being controlled this way.\n*/\n// time_boot_ms Timestamp (time since system boot). uint32_t\n// coordinate_frame Valid options are: MAV_FRAME_LOCAL_NED = 1, MAV_FRAME_LOCAL_OFFSET_NED = 7, MAV_FRAME_BODY_NED = 8, MAV_FRAME_BODY_OFFSET_NED = 9 uint8_t\n// type_mask Bitmap to indicate which dimensions should be ignored by the vehicle. uint16_t\n// x X Position in NED frame float\n// y Y Position in NED frame float\n// z Z Position in NED frame (note, altitude is negative in NED) float\n// vx X velocity in NED frame float\n// vy Y velocity in NED frame float\n// vz Z velocity in NED frame float\n// afx X acceleration or force (if bit 10 of type_mask is set) in NED frame in meter / s^2 or N float\n// afy Y acceleration or force (if bit 10 of type_mask is set) in NED frame in meter / s^2 or N float\n// afz Z acceleration or force (if bit 10 of type_mask is set) in NED frame in meter / s^2 or N float\n// yaw yaw setpoint float\n// yaw_rate yaw rate setpoint float\nexport class PositionTargetLocalNed extends MAVLinkMessage {\n\tpublic time_boot_ms!: number;\n\tpublic coordinate_frame!: MavFrame;\n\tpublic type_mask!: PositionTargetTypemask;\n\tpublic x!: number;\n\tpublic y!: number;\n\tpublic z!: number;\n\tpublic vx!: number;\n\tpublic vy!: number;\n\tpublic vz!: number;\n\tpublic afx!: number;\n\tpublic afy!: number;\n\tpublic afz!: number;\n\tpublic yaw!: number;\n\tpublic yaw_rate!: number;\n\tpublic _message_id: number = 85;\n\tpublic _message_name: string = 'POSITION_TARGET_LOCAL_NED';\n\tpublic _crc_extra: number = 140;\n\tpublic _message_fields: [string, string, boolean][] = [\n\t\t['time_boot_ms', 'uint32_t', false],\n\t\t['x', 'float', false],\n\t\t['y', 'float', false],\n\t\t['z', 'float', false],\n\t\t['vx', 'float', false],\n\t\t['vy', 'float', false],\n\t\t['vz', 'float', false],\n\t\t['afx', 'float', false],\n\t\t['afy', 'float', false],\n\t\t['afz', 'float', false],\n\t\t['yaw', 'float', false],\n\t\t['yaw_rate', 'float', false],\n\t\t['type_mask', 'uint16_t', false],\n\t\t['coordinate_frame', 'uint8_t', false],\n\t];\n}","import {MAVLinkMessage} from '@ifrunistuttgart/node-mavlink';\nimport {readInt64LE, readUInt64LE} from '@ifrunistuttgart/node-mavlink';\nimport {MavFrame} from '../enums/mav-frame';\nimport {PositionTargetTypemask} from '../enums/position-target-typemask';\n/*\nSets a desired vehicle position, velocity, and/or acceleration in a global coordinate system (WGS84). Used by an external controller to command the vehicle (manual controller or other system).\n*/\n// time_boot_ms Timestamp (time since system boot). The rationale for the timestamp in the setpoint is to allow the system to compensate for the transport delay of the setpoint. This allows the system to compensate processing latency. uint32_t\n// target_system System ID uint8_t\n// target_component Component ID uint8_t\n// coordinate_frame Valid options are: MAV_FRAME_GLOBAL_INT = 5, MAV_FRAME_GLOBAL_RELATIVE_ALT_INT = 6, MAV_FRAME_GLOBAL_TERRAIN_ALT_INT = 11 uint8_t\n// type_mask Bitmap to indicate which dimensions should be ignored by the vehicle. uint16_t\n// lat_int X Position in WGS84 frame int32_t\n// lon_int Y Position in WGS84 frame int32_t\n// alt Altitude (MSL, Relative to home, or AGL - depending on frame) float\n// vx X velocity in NED frame float\n// vy Y velocity in NED frame float\n// vz Z velocity in NED frame float\n// afx X acceleration or force (if bit 10 of type_mask is set) in NED frame in meter / s^2 or N float\n// afy Y acceleration or force (if bit 10 of type_mask is set) in NED frame in meter / s^2 or N float\n// afz Z acceleration or force (if bit 10 of type_mask is set) in NED frame in meter / s^2 or N float\n// yaw yaw setpoint float\n// yaw_rate yaw rate setpoint float\nexport class SetPositionTargetGlobalInt extends MAVLinkMessage {\n\tpublic time_boot_ms!: number;\n\tpublic target_system!: number;\n\tpublic target_component!: number;\n\tpublic coordinate_frame!: MavFrame;\n\tpublic type_mask!: PositionTargetTypemask;\n\tpublic lat_int!: number;\n\tpublic lon_int!: number;\n\tpublic alt!: number;\n\tpublic vx!: number;\n\tpublic vy!: number;\n\tpublic vz!: number;\n\tpublic afx!: number;\n\tpublic afy!: number;\n\tpublic afz!: number;\n\tpublic yaw!: number;\n\tpublic yaw_rate!: number;\n\tpublic _message_id: number = 86;\n\tpublic _message_name: string = 'SET_POSITION_TARGET_GLOBAL_INT';\n\tpublic _crc_extra: number = 5;\n\tpublic _message_fields: [string, string, boolean][] = [\n\t\t['time_boot_ms', 'uint32_t', false],\n\t\t['lat_int', 'int32_t', false],\n\t\t['lon_int', 'int32_t', false],\n\t\t['alt', 'float', false],\n\t\t['vx', 'float', false],\n\t\t['vy', 'float', false],\n\t\t['vz', 'float', false],\n\t\t['afx', 'float', false],\n\t\t['afy', 'float', false],\n\t\t['afz', 'float', false],\n\t\t['yaw', 'float', false],\n\t\t['yaw_rate', 'float', false],\n\t\t['type_mask', 'uint16_t', false],\n\t\t['target_system', 'uint8_t', false],\n\t\t['target_component', 'uint8_t', false],\n\t\t['coordinate_frame', 'uint8_t', false],\n\t];\n}","import {MAVLinkMessage} from '@ifrunistuttgart/node-mavlink';\nimport {readInt64LE, readUInt64LE} from '@ifrunistuttgart/node-mavlink';\nimport {MavFrame} from '../enums/mav-frame';\nimport {PositionTargetTypemask} from '../enums/position-target-typemask';\n/*\nReports the current commanded vehicle position, velocity, and acceleration as specified by the autopilot. This should match the commands sent in SET_POSITION_TARGET_GLOBAL_INT if the vehicle is being controlled this way.\n*/\n// time_boot_ms Timestamp (time since system boot). The rationale for the timestamp in the setpoint is to allow the system to compensate for the transport delay of the setpoint. This allows the system to compensate processing latency. uint32_t\n// coordinate_frame Valid options are: MAV_FRAME_GLOBAL_INT = 5, MAV_FRAME_GLOBAL_RELATIVE_ALT_INT = 6, MAV_FRAME_GLOBAL_TERRAIN_ALT_INT = 11 uint8_t\n// type_mask Bitmap to indicate which dimensions should be ignored by the vehicle. uint16_t\n// lat_int X Position in WGS84 frame int32_t\n// lon_int Y Position in WGS84 frame int32_t\n// alt Altitude (MSL, AGL or relative to home altitude, depending on frame) float\n// vx X velocity in NED frame float\n// vy Y velocity in NED frame float\n// vz Z velocity in NED frame float\n// afx X acceleration or force (if bit 10 of type_mask is set) in NED frame in meter / s^2 or N float\n// afy Y acceleration or force (if bit 10 of type_mask is set) in NED frame in meter / s^2 or N float\n// afz Z acceleration or force (if bit 10 of type_mask is set) in NED frame in meter / s^2 or N float\n// yaw yaw setpoint float\n// yaw_rate yaw rate setpoint float\nexport class PositionTargetGlobalInt extends MAVLinkMessage {\n\tpublic time_boot_ms!: number;\n\tpublic coordinate_frame!: MavFrame;\n\tpublic type_mask!: PositionTargetTypemask;\n\tpublic lat_int!: number;\n\tpublic lon_int!: number;\n\tpublic alt!: number;\n\tpublic vx!: number;\n\tpublic vy!: number;\n\tpublic vz!: number;\n\tpublic afx!: number;\n\tpublic afy!: number;\n\tpublic afz!: number;\n\tpublic yaw!: number;\n\tpublic yaw_rate!: number;\n\tpublic _message_id: number = 87;\n\tpublic _message_name: string = 'POSITION_TARGET_GLOBAL_INT';\n\tpublic _crc_extra: number = 150;\n\tpublic _message_fields: [string, string, boolean][] = [\n\t\t['time_boot_ms', 'uint32_t', false],\n\t\t['lat_int', 'int32_t', false],\n\t\t['lon_int', 'int32_t', false],\n\t\t['alt', 'float', false],\n\t\t['vx', 'float', false],\n\t\t['vy', 'float', false],\n\t\t['vz', 'float', false],\n\t\t['afx', 'float', false],\n\t\t['afy', 'float', false],\n\t\t['afz', 'float', false],\n\t\t['yaw', 'float', false],\n\t\t['yaw_rate', 'float', false],\n\t\t['type_mask', 'uint16_t', false],\n\t\t['coordinate_frame', 'uint8_t', false],\n\t];\n}","import {MAVLinkMessage} from '@ifrunistuttgart/node-mavlink';\nimport {readInt64LE, readUInt64LE} from '@ifrunistuttgart/node-mavlink';\n/*\nThe offset in X, Y, Z and yaw between the LOCAL_POSITION_NED messages of MAV X and the global coordinate frame in NED coordinates. Coordinate frame is right-handed, Z-axis down (aeronautical frame, NED / north-east-down convention)\n*/\n// time_boot_ms Timestamp (time since system boot). uint32_t\n// x X Position float\n// y Y Position float\n// z Z Position float\n// roll Roll float\n// pitch Pitch float\n// yaw Yaw float\nexport class LocalPositionNedSystemGlobalOffset extends MAVLinkMessage {\n\tpublic time_boot_ms!: number;\n\tpublic x!: number;\n\tpublic y!: number;\n\tpublic z!: number;\n\tpublic roll!: number;\n\tpublic pitch!: number;\n\tpublic yaw!: number;\n\tpublic _message_id: number = 89;\n\tpublic _message_name: string = 'LOCAL_POSITION_NED_SYSTEM_GLOBAL_OFFSET';\n\tpublic _crc_extra: number = 231;\n\tpublic _message_fields: [string, string, boolean][] = [\n\t\t['time_boot_ms', 'uint32_t', false],\n\t\t['x', 'float', false],\n\t\t['y', 'float', false],\n\t\t['z', 'float', false],\n\t\t['roll', 'float', false],\n\t\t['pitch', 'float', false],\n\t\t['yaw', 'float', false],\n\t];\n}","import {MAVLinkMessage} from '@ifrunistuttgart/node-mavlink';\nimport {readInt64LE, readUInt64LE} from '@ifrunistuttgart/node-mavlink';\n/*\nSent from simulation to autopilot. This packet is useful for high throughput applications such as hardware in the loop simulations.\n*/\n// time_usec Timestamp (UNIX Epoch time or time since system boot). The receiving end can infer timestamp format (since 1.1.1970 or since system boot) by checking for the magnitude of the number. uint64_t\n// roll Roll angle float\n// pitch Pitch angle float\n// yaw Yaw angle float\n// rollspeed Body frame roll / phi angular speed float\n// pitchspeed Body frame pitch / theta angular speed float\n// yawspeed Body frame yaw / psi angular speed float\n// lat Latitude int32_t\n// lon Longitude int32_t\n// alt Altitude int32_t\n// vx Ground X Speed (Latitude) int16_t\n// vy Ground Y Speed (Longitude) int16_t\n// vz Ground Z Speed (Altitude) int16_t\n// xacc X acceleration int16_t\n// yacc Y acceleration int16_t\n// zacc Z acceleration int16_t\nexport class HilState extends MAVLinkMessage {\n\tpublic time_usec!: number;\n\tpublic roll!: number;\n\tpublic pitch!: number;\n\tpublic yaw!: number;\n\tpublic rollspeed!: number;\n\tpublic pitchspeed!: number;\n\tpublic yawspeed!: number;\n\tpublic lat!: number;\n\tpublic lon!: number;\n\tpublic alt!: number;\n\tpublic vx!: number;\n\tpublic vy!: number;\n\tpublic vz!: number;\n\tpublic xacc!: number;\n\tpublic yacc!: number;\n\tpublic zacc!: number;\n\tpublic _message_id: number = 90;\n\tpublic _message_name: string = 'HIL_STATE';\n\tpublic _crc_extra: number = 183;\n\tpublic _message_fields: [string, string, boolean][] = [\n\t\t['time_usec', 'uint64_t', false],\n\t\t['roll', 'float', false],\n\t\t['pitch', 'float', false],\n\t\t['yaw', 'float', false],\n\t\t['rollspeed', 'float', false],\n\t\t['pitchspeed', 'float', false],\n\t\t['yawspeed', 'float', false],\n\t\t['lat', 'int32_t', false],\n\t\t['lon', 'int32_t', false],\n\t\t['alt', 'int32_t', false],\n\t\t['vx', 'int16_t', false],\n\t\t['vy', 'int16_t', false],\n\t\t['vz', 'int16_t', false],\n\t\t['xacc', 'int16_t', false],\n\t\t['yacc', 'int16_t', false],\n\t\t['zacc', 'int16_t', false],\n\t];\n}","import {MAVLinkMessage} from '@ifrunistuttgart/node-mavlink';\nimport {readInt64LE, readUInt64LE} from '@ifrunistuttgart/node-mavlink';\nimport {MavMode} from '../enums/mav-mode';\n/*\nSent from autopilot to simulation. Hardware in the loop control outputs\n*/\n// time_usec Timestamp (UNIX Epoch time or time since system boot). The receiving end can infer timestamp format (since 1.1.1970 or since system boot) by checking for the magnitude of the number. uint64_t\n// roll_ailerons Control output -1 .. 1 float\n// pitch_elevator Control output -1 .. 1 float\n// yaw_rudder Control output -1 .. 1 float\n// throttle Throttle 0 .. 1 float\n// aux1 Aux 1, -1 .. 1 float\n// aux2 Aux 2, -1 .. 1 float\n// aux3 Aux 3, -1 .. 1 float\n// aux4 Aux 4, -1 .. 1 float\n// mode System mode. uint8_t\n// nav_mode Navigation mode (MAV_NAV_MODE) uint8_t\nexport class HilControls extends MAVLinkMessage {\n\tpublic time_usec!: number;\n\tpublic roll_ailerons!: number;\n\tpublic pitch_elevator!: number;\n\tpublic yaw_rudder!: number;\n\tpublic throttle!: number;\n\tpublic aux1!: number;\n\tpublic aux2!: number;\n\tpublic aux3!: number;\n\tpublic aux4!: number;\n\tpublic mode!: MavMode;\n\tpublic nav_mode!: number;\n\tpublic _message_id: number = 91;\n\tpublic _message_name: string = 'HIL_CONTROLS';\n\tpublic _crc_extra: number = 63;\n\tpublic _message_fields: [string, string, boolean][] = [\n\t\t['time_usec', 'uint64_t', false],\n\t\t['roll_ailerons', 'float', false],\n\t\t['pitch_elevator', 'float', false],\n\t\t['yaw_rudder', 'float', false],\n\t\t['throttle', 'float', false],\n\t\t['aux1', 'float', false],\n\t\t['aux2', 'float', false],\n\t\t['aux3', 'float', false],\n\t\t['aux4', 'float', false],\n\t\t['mode', 'uint8_t', false],\n\t\t['nav_mode', 'uint8_t', false],\n\t];\n}","import {MAVLinkMessage} from '@ifrunistuttgart/node-mavlink';\nimport {readInt64LE, readUInt64LE} from '@ifrunistuttgart/node-mavlink';\n/*\nSent from simulation to autopilot. The RAW values of the RC channels received. The standard PPM modulation is as follows: 1000 microseconds: 0%, 2000 microseconds: 100%. Individual receivers/transmitters might violate this specification.\n*/\n// time_usec Timestamp (UNIX Epoch time or time since system boot). The receiving end can infer timestamp format (since 1.1.1970 or since system boot) by checking for the magnitude of the number. uint64_t\n// chan1_raw RC channel 1 value uint16_t\n// chan2_raw RC channel 2 value uint16_t\n// chan3_raw RC channel 3 value uint16_t\n// chan4_raw RC channel 4 value uint16_t\n// chan5_raw RC channel 5 value uint16_t\n// chan6_raw RC channel 6 value uint16_t\n// chan7_raw RC channel 7 value uint16_t\n// chan8_raw RC channel 8 value uint16_t\n// chan9_raw RC channel 9 value uint16_t\n// chan10_raw RC channel 10 value uint16_t\n// chan11_raw RC channel 11 value uint16_t\n// chan12_raw RC channel 12 value uint16_t\n// rssi Receive signal strength indicator in device-dependent units/scale. Values: [0-254], 255: invalid/unknown. uint8_t\nexport class HilRcInputsRaw extends MAVLinkMessage {\n\tpublic time_usec!: number;\n\tpublic chan1_raw!: number;\n\tpublic chan2_raw!: number;\n\tpublic chan3_raw!: number;\n\tpublic chan4_raw!: number;\n\tpublic chan5_raw!: number;\n\tpublic chan6_raw!: number;\n\tpublic chan7_raw!: number;\n\tpublic chan8_raw!: number;\n\tpublic chan9_raw!: number;\n\tpublic chan10_raw!: number;\n\tpublic chan11_raw!: number;\n\tpublic chan12_raw!: number;\n\tpublic rssi!: number;\n\tpublic _message_id: number = 92;\n\tpublic _message_name: string = 'HIL_RC_INPUTS_RAW';\n\tpublic _crc_extra: number = 54;\n\tpublic _message_fields: [string, string, boolean][] = [\n\t\t['time_usec', 'uint64_t', false],\n\t\t['chan1_raw', 'uint16_t', false],\n\t\t['chan2_raw', 'uint16_t', false],\n\t\t['chan3_raw', 'uint16_t', false],\n\t\t['chan4_raw', 'uint16_t', false],\n\t\t['chan5_raw', 'uint16_t', false],\n\t\t['chan6_raw', 'uint16_t', false],\n\t\t['chan7_raw', 'uint16_t', false],\n\t\t['chan8_raw', 'uint16_t', false],\n\t\t['chan9_raw', 'uint16_t', false],\n\t\t['chan10_raw', 'uint16_t', false],\n\t\t['chan11_raw', 'uint16_t', false],\n\t\t['chan12_raw', 'uint16_t', false],\n\t\t['rssi', 'uint8_t', false],\n\t];\n}","import {MAVLinkMessage} from '@ifrunistuttgart/node-mavlink';\nimport {readInt64LE, readUInt64LE} from '@ifrunistuttgart/node-mavlink';\nimport {MavModeFlag} from '../enums/mav-mode-flag';\n/*\nSent from autopilot to simulation. Hardware in the loop control outputs (replacement for HIL_CONTROLS)\n*/\n// time_usec Timestamp (UNIX Epoch time or time since system boot). The receiving end can infer timestamp format (since 1.1.1970 or since system boot) by checking for the magnitude of the number. uint64_t\n// controls Control outputs -1 .. 1. Channel assignment depends on the simulated hardware. float\n// mode System mode. Includes arming state. uint8_t\n// flags Flags as bitfield, 1: indicate simulation using lockstep. uint64_t\nexport class HilActuatorControls extends MAVLinkMessage {\n\tpublic time_usec!: number;\n\tpublic controls!: number;\n\tpublic mode!: MavModeFlag;\n\tpublic flags!: number;\n\tpublic _message_id: number = 93;\n\tpublic _message_name: string = 'HIL_ACTUATOR_CONTROLS';\n\tpublic _crc_extra: number = 47;\n\tpublic _message_fields: [string, string, boolean][] = [\n\t\t['time_usec', 'uint64_t', false],\n\t\t['flags', 'uint64_t', false],\n\t\t['controls', 'float', false],\n\t\t['mode', 'uint8_t', false],\n\t];\n}","import {MAVLinkMessage} from '@ifrunistuttgart/node-mavlink';\nimport {readInt64LE, readUInt64LE} from '@ifrunistuttgart/node-mavlink';\n/*\nOptical flow from a flow sensor (e.g. optical mouse sensor)\n*/\n// time_usec Timestamp (UNIX Epoch time or time since system boot). The receiving end can infer timestamp format (since 1.1.1970 or since system boot) by checking for the magnitude of the number. uint64_t\n// sensor_id Sensor ID uint8_t\n// flow_x Flow in x-sensor direction int16_t\n// flow_y Flow in y-sensor direction int16_t\n// flow_comp_m_x Flow in x-sensor direction, angular-speed compensated float\n// flow_comp_m_y Flow in y-sensor direction, angular-speed compensated float\n// quality Optical flow quality / confidence. 0: bad, 255: maximum quality uint8_t\n// ground_distance Ground distance. Positive value: distance known. Negative value: Unknown distance float\n// flow_rate_x Flow rate about X axis float\n// flow_rate_y Flow rate about Y axis float\nexport class OpticalFlow extends MAVLinkMessage {\n\tpublic time_usec!: number;\n\tpublic sensor_id!: number;\n\tpublic flow_x!: number;\n\tpublic flow_y!: number;\n\tpublic flow_comp_m_x!: number;\n\tpublic flow_comp_m_y!: number;\n\tpublic quality!: number;\n\tpublic ground_distance!: number;\n\tpublic flow_rate_x!: number;\n\tpublic flow_rate_y!: number;\n\tpublic _message_id: number = 100;\n\tpublic _message_name: string = 'OPTICAL_FLOW';\n\tpublic _crc_extra: number = 175;\n\tpublic _message_fields: [string, string, boolean][] = [\n\t\t['time_usec', 'uint64_t', false],\n\t\t['flow_comp_m_x', 'float', false],\n\t\t['flow_comp_m_y', 'float', false],\n\t\t['ground_distance', 'float', false],\n\t\t['flow_x', 'int16_t', false],\n\t\t['flow_y', 'int16_t', false],\n\t\t['sensor_id', 'uint8_t', false],\n\t\t['quality', 'uint8_t', false],\n\t\t['flow_rate_x', 'float', true],\n\t\t['flow_rate_y', 'float', true],\n\t];\n}","import {MAVLinkMessage} from '@ifrunistuttgart/node-mavlink';\nimport {readInt64LE, readUInt64LE} from '@ifrunistuttgart/node-mavlink';\n/*\nGlobal position/attitude estimate from a vision source.\n*/\n// usec Timestamp (UNIX time or since system boot) uint64_t\n// x Global X position float\n// y Global Y position float\n// z Global Z position float\n// roll Roll angle float\n// pitch Pitch angle float\n// yaw Yaw angle float\n// covariance Row-major representation of pose 6x6 cross-covariance matrix upper right triangle (states: x_global, y_global, z_global, roll, pitch, yaw; first six entries are the first ROW, next five entries are the second ROW, etc.). If unknown, assign NaN value to first element in the array. float\n// reset_counter Estimate reset counter. This should be incremented when the estimate resets in any of the dimensions (position, velocity, attitude, angular speed). This is designed to be used when e.g an external SLAM system detects a loop-closure and the estimate jumps. uint8_t\nexport class GlobalVisionPositionEstimate extends MAVLinkMessage {\n\tpublic usec!: number;\n\tpublic x!: number;\n\tpublic y!: number;\n\tpublic z!: number;\n\tpublic roll!: number;\n\tpublic pitch!: number;\n\tpublic yaw!: number;\n\tpublic covariance!: number;\n\tpublic reset_counter!: number;\n\tpublic _message_id: number = 101;\n\tpublic _message_name: string = 'GLOBAL_VISION_POSITION_ESTIMATE';\n\tpublic _crc_extra: number = 102;\n\tpublic _message_fields: [string, string, boolean][] = [\n\t\t['usec', 'uint64_t', false],\n\t\t['x', 'float', false],\n\t\t['y', 'float', false],\n\t\t['z', 'float', false],\n\t\t['roll', 'float', false],\n\t\t['pitch', 'float', false],\n\t\t['yaw', 'float', false],\n\t\t['covariance', 'float', true],\n\t\t['reset_counter', 'uint8_t', true],\n\t];\n}","import {MAVLinkMessage} from '@ifrunistuttgart/node-mavlink';\nimport {readInt64LE, readUInt64LE} from '@ifrunistuttgart/node-mavlink';\n/*\nLocal position/attitude estimate from a vision source.\n*/\n// usec Timestamp (UNIX time or time since system boot) uint64_t\n// x Local X position float\n// y Local Y position float\n// z Local Z position float\n// roll Roll angle float\n// pitch Pitch angle float\n// yaw Yaw angle float\n// covariance Row-major representation of pose 6x6 cross-covariance matrix upper right triangle (states: x, y, z, roll, pitch, yaw; first six entries are the first ROW, next five entries are the second ROW, etc.). If unknown, assign NaN value to first element in the array. float\n// reset_counter Estimate reset counter. This should be incremented when the estimate resets in any of the dimensions (position, velocity, attitude, angular speed). This is designed to be used when e.g an external SLAM system detects a loop-closure and the estimate jumps. uint8_t\nexport class VisionPositionEstimate extends MAVLinkMessage {\n\tpublic usec!: number;\n\tpublic x!: number;\n\tpublic y!: number;\n\tpublic z!: number;\n\tpublic roll!: number;\n\tpublic pitch!: number;\n\tpublic yaw!: number;\n\tpublic covariance!: number;\n\tpublic reset_counter!: number;\n\tpublic _message_id: number = 102;\n\tpublic _message_name: string = 'VISION_POSITION_ESTIMATE';\n\tpublic _crc_extra: number = 158;\n\tpublic _message_fields: [string, string, boolean][] = [\n\t\t['usec', 'uint64_t', false],\n\t\t['x', 'float', false],\n\t\t['y', 'float', false],\n\t\t['z', 'float', false],\n\t\t['roll', 'float', false],\n\t\t['pitch', 'float', false],\n\t\t['yaw', 'float', false],\n\t\t['covariance', 'float', true],\n\t\t['reset_counter', 'uint8_t', true],\n\t];\n}","import {MAVLinkMessage} from '@ifrunistuttgart/node-mavlink';\nimport {readInt64LE, readUInt64LE} from '@ifrunistuttgart/node-mavlink';\n/*\nSpeed estimate from a vision source.\n*/\n// usec Timestamp (UNIX time or time since system boot) uint64_t\n// x Global X speed float\n// y Global Y speed float\n// z Global Z speed float\n// covariance Row-major representation of 3x3 linear velocity covariance matrix (states: vx, vy, vz; 1st three entries - 1st row, etc.). If unknown, assign NaN value to first element in the array. float\n// reset_counter Estimate reset counter. This should be incremented when the estimate resets in any of the dimensions (position, velocity, attitude, angular speed). This is designed to be used when e.g an external SLAM system detects a loop-closure and the estimate jumps. uint8_t\nexport class VisionSpeedEstimate extends MAVLinkMessage {\n\tpublic usec!: number;\n\tpublic x!: number;\n\tpublic y!: number;\n\tpublic z!: number;\n\tpublic covariance!: number;\n\tpublic reset_counter!: number;\n\tpublic _message_id: number = 103;\n\tpublic _message_name: string = 'VISION_SPEED_ESTIMATE';\n\tpublic _crc_extra: number = 208;\n\tpublic _message_fields: [string, string, boolean][] = [\n\t\t['usec', 'uint64_t', false],\n\t\t['x', 'float', false],\n\t\t['y', 'float', false],\n\t\t['z', 'float', false],\n\t\t['covariance', 'float', true],\n\t\t['reset_counter', 'uint8_t', true],\n\t];\n}","import {MAVLinkMessage} from '@ifrunistuttgart/node-mavlink';\nimport {readInt64LE, readUInt64LE} from '@ifrunistuttgart/node-mavlink';\n/*\nGlobal position estimate from a Vicon motion system source.\n*/\n// usec Timestamp (UNIX time or time since system boot) uint64_t\n// x Global X position float\n// y Global Y position float\n// z Global Z position float\n// roll Roll angle float\n// pitch Pitch angle float\n// yaw Yaw angle float\n// covariance Row-major representation of 6x6 pose cross-covariance matrix upper right triangle (states: x, y, z, roll, pitch, yaw; first six entries are the first ROW, next five entries are the second ROW, etc.). If unknown, assign NaN value to first element in the array. float\nexport class ViconPositionEstimate extends MAVLinkMessage {\n\tpublic usec!: number;\n\tpublic x!: number;\n\tpublic y!: number;\n\tpublic z!: number;\n\tpublic roll!: number;\n\tpublic pitch!: number;\n\tpublic yaw!: number;\n\tpublic covariance!: number;\n\tpublic _message_id: number = 104;\n\tpublic _message_name: string = 'VICON_POSITION_ESTIMATE';\n\tpublic _crc_extra: number = 56;\n\tpublic _message_fields: [string, string, boolean][] = [\n\t\t['usec', 'uint64_t', false],\n\t\t['x', 'float', false],\n\t\t['y', 'float', false],\n\t\t['z', 'float', false],\n\t\t['roll', 'float', false],\n\t\t['pitch', 'float', false],\n\t\t['yaw', 'float', false],\n\t\t['covariance', 'float', true],\n\t];\n}","import {MAVLinkMessage} from '@ifrunistuttgart/node-mavlink';\nimport {readInt64LE, readUInt64LE} from '@ifrunistuttgart/node-mavlink';\n/*\nThe IMU readings in SI units in NED body frame\n*/\n// time_usec Timestamp (UNIX Epoch time or time since system boot). The receiving end can infer timestamp format (since 1.1.1970 or since system boot) by checking for the magnitude of the number. uint64_t\n// xacc X acceleration float\n// yacc Y acceleration float\n// zacc Z acceleration float\n// xgyro Angular speed around X axis float\n// ygyro Angular speed around Y axis float\n// zgyro Angular speed around Z axis float\n// xmag X Magnetic field float\n// ymag Y Magnetic field float\n// zmag Z Magnetic field float\n// abs_pressure Absolute pressure float\n// diff_pressure Differential pressure float\n// pressure_alt Altitude calculated from pressure float\n// temperature Temperature float\n// fields_updated Bitmap for fields that have updated since last message, bit 0 = xacc, bit 12: temperature uint16_t\n// id Id. Ids are numbered from 0 and map to IMUs numbered from 1 (e.g. IMU1 will have a message with id=0) uint8_t\nexport class HighresImu extends MAVLinkMessage {\n\tpublic time_usec!: number;\n\tpublic xacc!: number;\n\tpublic yacc!: number;\n\tpublic zacc!: number;\n\tpublic xgyro!: number;\n\tpublic ygyro!: number;\n\tpublic zgyro!: number;\n\tpublic xmag!: number;\n\tpublic ymag!: number;\n\tpublic zmag!: number;\n\tpublic abs_pressure!: number;\n\tpublic diff_pressure!: number;\n\tpublic pressure_alt!: number;\n\tpublic temperature!: number;\n\tpublic fields_updated!: number;\n\tpublic id!: number;\n\tpublic _message_id: number = 105;\n\tpublic _message_name: string = 'HIGHRES_IMU';\n\tpublic _crc_extra: number = 93;\n\tpublic _message_fields: [string, string, boolean][] = [\n\t\t['time_usec', 'uint64_t', false],\n\t\t['xacc', 'float', false],\n\t\t['yacc', 'float', false],\n\t\t['zacc', 'float', false],\n\t\t['xgyro', 'float', false],\n\t\t['ygyro', 'float', false],\n\t\t['zgyro', 'float', false],\n\t\t['xmag', 'float', false],\n\t\t['ymag', 'float', false],\n\t\t['zmag', 'float', false],\n\t\t['abs_pressure', 'float', false],\n\t\t['diff_pressure', 'float', false],\n\t\t['pressure_alt', 'float', false],\n\t\t['temperature', 'float', false],\n\t\t['fields_updated', 'uint16_t', false],\n\t\t['id', 'uint8_t', true],\n\t];\n}","import {MAVLinkMessage} from '@ifrunistuttgart/node-mavlink';\nimport {readInt64LE, readUInt64LE} from '@ifrunistuttgart/node-mavlink';\n/*\nOptical flow from an angular rate flow sensor (e.g. PX4FLOW or mouse sensor)\n*/\n// time_usec Timestamp (UNIX Epoch time or time since system boot). The receiving end can infer timestamp format (since 1.1.1970 or since system boot) by checking for the magnitude of the number. uint64_t\n// sensor_id Sensor ID uint8_t\n// integration_time_us Integration time. Divide integrated_x and integrated_y by the integration time to obtain average flow. The integration time also indicates the. uint32_t\n// integrated_x Flow around X axis (Sensor RH rotation about the X axis induces a positive flow. Sensor linear motion along the positive Y axis induces a negative flow.) float\n// integrated_y Flow around Y axis (Sensor RH rotation about the Y axis induces a positive flow. Sensor linear motion along the positive X axis induces a positive flow.) float\n// integrated_xgyro RH rotation around X axis float\n// integrated_ygyro RH rotation around Y axis float\n// integrated_zgyro RH rotation around Z axis float\n// temperature Temperature int16_t\n// quality Optical flow quality / confidence. 0: no valid flow, 255: maximum quality uint8_t\n// time_delta_distance_us Time since the distance was sampled. uint32_t\n// distance Distance to the center of the flow field. Positive value (including zero): distance known. Negative value: Unknown distance. float\nexport class OpticalFlowRad extends MAVLinkMessage {\n\tpublic time_usec!: number;\n\tpublic sensor_id!: number;\n\tpublic integration_time_us!: number;\n\tpublic integrated_x!: number;\n\tpublic integrated_y!: number;\n\tpublic integrated_xgyro!: number;\n\tpublic integrated_ygyro!: number;\n\tpublic integrated_zgyro!: number;\n\tpublic temperature!: number;\n\tpublic quality!: number;\n\tpublic time_delta_distance_us!: number;\n\tpublic distance!: number;\n\tpublic _message_id: number = 106;\n\tpublic _message_name: string = 'OPTICAL_FLOW_RAD';\n\tpublic _crc_extra: number = 138;\n\tpublic _message_fields: [string, string, boolean][] = [\n\t\t['time_usec', 'uint64_t', false],\n\t\t['integration_time_us', 'uint32_t', false],\n\t\t['integrated_x', 'float', false],\n\t\t['integrated_y', 'float', false],\n\t\t['integrated_xgyro', 'float', false],\n\t\t['integrated_ygyro', 'float', false],\n\t\t['integrated_zgyro', 'float', false],\n\t\t['time_delta_distance_us', 'uint32_t', false],\n\t\t['distance', 'float', false],\n\t\t['temperature', 'int16_t', false],\n\t\t['sensor_id', 'uint8_t', false],\n\t\t['quality', 'uint8_t', false],\n\t];\n}","import {MAVLinkMessage} from '@ifrunistuttgart/node-mavlink';\nimport {readInt64LE, readUInt64LE} from '@ifrunistuttgart/node-mavlink';\n/*\nThe IMU readings in SI units in NED body frame\n*/\n// time_usec Timestamp (UNIX Epoch time or time since system boot). The receiving end can infer timestamp format (since 1.1.1970 or since system boot) by checking for the magnitude of the number. uint64_t\n// xacc X acceleration float\n// yacc Y acceleration float\n// zacc Z acceleration float\n// xgyro Angular speed around X axis in body frame float\n// ygyro Angular speed around Y axis in body frame float\n// zgyro Angular speed around Z axis in body frame float\n// xmag X Magnetic field float\n// ymag Y Magnetic field float\n// zmag Z Magnetic field float\n// abs_pressure Absolute pressure float\n// diff_pressure Differential pressure (airspeed) float\n// pressure_alt Altitude calculated from pressure float\n// temperature Temperature float\n// fields_updated Bitmap for fields that have updated since last message, bit 0 = xacc, bit 12: temperature, bit 31: full reset of attitude/position/velocities/etc was performed in sim. uint32_t\n// id Sensor ID (zero indexed). Used for multiple sensor inputs uint8_t\nexport class HilSensor extends MAVLinkMessage {\n\tpublic time_usec!: number;\n\tpublic xacc!: number;\n\tpublic yacc!: number;\n\tpublic zacc!: number;\n\tpublic xgyro!: number;\n\tpublic ygyro!: number;\n\tpublic zgyro!: number;\n\tpublic xmag!: number;\n\tpublic ymag!: number;\n\tpublic zmag!: number;\n\tpublic abs_pressure!: number;\n\tpublic diff_pressure!: number;\n\tpublic pressure_alt!: number;\n\tpublic temperature!: number;\n\tpublic fields_updated!: number;\n\tpublic id!: number;\n\tpublic _message_id: number = 107;\n\tpublic _message_name: string = 'HIL_SENSOR';\n\tpublic _crc_extra: number = 108;\n\tpublic _message_fields: [string, string, boolean][] = [\n\t\t['time_usec', 'uint64_t', false],\n\t\t['xacc', 'float', false],\n\t\t['yacc', 'float', false],\n\t\t['zacc', 'float', false],\n\t\t['xgyro', 'float', false],\n\t\t['ygyro', 'float', false],\n\t\t['zgyro', 'float', false],\n\t\t['xmag', 'float', false],\n\t\t['ymag', 'float', false],\n\t\t['zmag', 'float', false],\n\t\t['abs_pressure', 'float', false],\n\t\t['diff_pressure', 'float', false],\n\t\t['pressure_alt', 'float', false],\n\t\t['temperature', 'float', false],\n\t\t['fields_updated', 'uint32_t', false],\n\t\t['id', 'uint8_t', true],\n\t];\n}","import {MAVLinkMessage} from '@ifrunistuttgart/node-mavlink';\nimport {readInt64LE, readUInt64LE} from '@ifrunistuttgart/node-mavlink';\n/*\nStatus of simulation environment, if used\n*/\n// q1 True attitude quaternion component 1, w (1 in null-rotation) float\n// q2 True attitude quaternion component 2, x (0 in null-rotation) float\n// q3 True attitude quaternion component 3, y (0 in null-rotation) float\n// q4 True attitude quaternion component 4, z (0 in null-rotation) float\n// roll Attitude roll expressed as Euler angles, not recommended except for human-readable outputs float\n// pitch Attitude pitch expressed as Euler angles, not recommended except for human-readable outputs float\n// yaw Attitude yaw expressed as Euler angles, not recommended except for human-readable outputs float\n// xacc X acceleration float\n// yacc Y acceleration float\n// zacc Z acceleration float\n// xgyro Angular speed around X axis float\n// ygyro Angular speed around Y axis float\n// zgyro Angular speed around Z axis float\n// lat Latitude float\n// lon Longitude float\n// alt Altitude float\n// std_dev_horz Horizontal position standard deviation float\n// std_dev_vert Vertical position standard deviation float\n// vn True velocity in north direction in earth-fixed NED frame float\n// ve True velocity in east direction in earth-fixed NED frame float\n// vd True velocity in down direction in earth-fixed NED frame float\nexport class SimState extends MAVLinkMessage {\n\tpublic q1!: number;\n\tpublic q2!: number;\n\tpublic q3!: number;\n\tpublic q4!: number;\n\tpublic roll!: number;\n\tpublic pitch!: number;\n\tpublic yaw!: number;\n\tpublic xacc!: number;\n\tpublic yacc!: number;\n\tpublic zacc!: number;\n\tpublic xgyro!: number;\n\tpublic ygyro!: number;\n\tpublic zgyro!: number;\n\tpublic lat!: number;\n\tpublic lon!: number;\n\tpublic alt!: number;\n\tpublic std_dev_horz!: number;\n\tpublic std_dev_vert!: number;\n\tpublic vn!: number;\n\tpublic ve!: number;\n\tpublic vd!: number;\n\tpublic _message_id: number = 108;\n\tpublic _message_name: string = 'SIM_STATE';\n\tpublic _crc_extra: number = 32;\n\tpublic _message_fields: [string, string, boolean][] = [\n\t\t['q1', 'float', false],\n\t\t['q2', 'float', false],\n\t\t['q3', 'float', false],\n\t\t['q4', 'float', false],\n\t\t['roll', 'float', false],\n\t\t['pitch', 'float', false],\n\t\t['yaw', 'float', false],\n\t\t['xacc', 'float', false],\n\t\t['yacc', 'float', false],\n\t\t['zacc', 'float', false],\n\t\t['xgyro', 'float', false],\n\t\t['ygyro', 'float', false],\n\t\t['zgyro', 'float', false],\n\t\t['lat', 'float', false],\n\t\t['lon', 'float', false],\n\t\t['alt', 'float', false],\n\t\t['std_dev_horz', 'float', false],\n\t\t['std_dev_vert', 'float', false],\n\t\t['vn', 'float', false],\n\t\t['ve', 'float', false],\n\t\t['vd', 'float', false],\n\t];\n}","import {MAVLinkMessage} from '@ifrunistuttgart/node-mavlink';\nimport {readInt64LE, readUInt64LE} from '@ifrunistuttgart/node-mavlink';\n/*\nStatus generated by radio and injected into MAVLink stream.\n*/\n// rssi Local (message sender) recieved signal strength indication in device-dependent units/scale. Values: [0-254], 255: invalid/unknown. uint8_t\n// remrssi Remote (message receiver) signal strength indication in device-dependent units/scale. Values: [0-254], 255: invalid/unknown. uint8_t\n// txbuf Remaining free transmitter buffer space. uint8_t\n// noise Local background noise level. These are device dependent RSSI values (scale as approx 2x dB on SiK radios). Values: [0-254], 255: invalid/unknown. uint8_t\n// remnoise Remote background noise level. These are device dependent RSSI values (scale as approx 2x dB on SiK radios). Values: [0-254], 255: invalid/unknown. uint8_t\n// rxerrors Count of radio packet receive errors (since boot). uint16_t\n// fixed Count of error corrected radio packets (since boot). uint16_t\nexport class RadioStatus extends MAVLinkMessage {\n\tpublic rssi!: number;\n\tpublic remrssi!: number;\n\tpublic txbuf!: number;\n\tpublic noise!: number;\n\tpublic remnoise!: number;\n\tpublic rxerrors!: number;\n\tpublic fixed!: number;\n\tpublic _message_id: number = 109;\n\tpublic _message_name: string = 'RADIO_STATUS';\n\tpublic _crc_extra: number = 185;\n\tpublic _message_fields: [string, string, boolean][] = [\n\t\t['rxerrors', 'uint16_t', false],\n\t\t['fixed', 'uint16_t', false],\n\t\t['rssi', 'uint8_t', false],\n\t\t['remrssi', 'uint8_t', false],\n\t\t['txbuf', 'uint8_t', false],\n\t\t['noise', 'uint8_t', false],\n\t\t['remnoise', 'uint8_t', false],\n\t];\n}","import {MAVLinkMessage} from '@ifrunistuttgart/node-mavlink';\nimport {readInt64LE, readUInt64LE} from '@ifrunistuttgart/node-mavlink';\n/*\nFile transfer message\n*/\n// target_network Network ID (0 for broadcast) uint8_t\n// target_system System ID (0 for broadcast) uint8_t\n// target_component Component ID (0 for broadcast) uint8_t\n// payload Variable length payload. The length is defined by the remaining message length when subtracting the header and other fields. The entire content of this block is opaque unless you understand any the encoding message_type. The particular encoding used can be extension specific and might not always be documented as part of the mavlink specification. uint8_t\nexport class FileTransferProtocol extends MAVLinkMessage {\n\tpublic target_network!: number;\n\tpublic target_system!: number;\n\tpublic target_component!: number;\n\tpublic payload!: number;\n\tpublic _message_id: number = 110;\n\tpublic _message_name: string = 'FILE_TRANSFER_PROTOCOL';\n\tpublic _crc_extra: number = 84;\n\tpublic _message_fields: [string, string, boolean][] = [\n\t\t['target_network', 'uint8_t', false],\n\t\t['target_system', 'uint8_t', false],\n\t\t['target_component', 'uint8_t', false],\n\t\t['payload', 'uint8_t', false],\n\t];\n}","import {MAVLinkMessage} from '@ifrunistuttgart/node-mavlink';\nimport {readInt64LE, readUInt64LE} from '@ifrunistuttgart/node-mavlink';\n/*\nTime synchronization message.\n*/\n// tc1 Time sync timestamp 1 int64_t\n// ts1 Time sync timestamp 2 int64_t\nexport class Timesync extends MAVLinkMessage {\n\tpublic tc1!: number;\n\tpublic ts1!: number;\n\tpublic _message_id: number = 111;\n\tpublic _message_name: string = 'TIMESYNC';\n\tpublic _crc_extra: number = 34;\n\tpublic _message_fields: [string, string, boolean][] = [\n\t\t['tc1', 'int64_t', false],\n\t\t['ts1', 'int64_t', false],\n\t];\n}","import {MAVLinkMessage} from '@ifrunistuttgart/node-mavlink';\nimport {readInt64LE, readUInt64LE} from '@ifrunistuttgart/node-mavlink';\n/*\nCamera-IMU triggering and synchronisation message.\n*/\n// time_usec Timestamp for image frame (UNIX Epoch time or time since system boot). The receiving end can infer timestamp format (since 1.1.1970 or since system boot) by checking for the magnitude of the number. uint64_t\n// seq Image frame sequence uint32_t\nexport class CameraTrigger extends MAVLinkMessage {\n\tpublic time_usec!: number;\n\tpublic seq!: number;\n\tpublic _message_id: number = 112;\n\tpublic _message_name: string = 'CAMERA_TRIGGER';\n\tpublic _crc_extra: number = 174;\n\tpublic _message_fields: [string, string, boolean][] = [\n\t\t['time_usec', 'uint64_t', false],\n\t\t['seq', 'uint32_t', false],\n\t];\n}","import {MAVLinkMessage} from '@ifrunistuttgart/node-mavlink';\nimport {readInt64LE, readUInt64LE} from '@ifrunistuttgart/node-mavlink';\n/*\nThe global position, as returned by the Global Positioning System (GPS). This is\n NOT the global position estimate of the sytem, but rather a RAW sensor value. See message GLOBAL_POSITION for the global position estimate.\n*/\n// time_usec Timestamp (UNIX Epoch time or time since system boot). The receiving end can infer timestamp format (since 1.1.1970 or since system boot) by checking for the magnitude of the number. uint64_t\n// fix_type 0-1: no fix, 2: 2D fix, 3: 3D fix. Some applications will not use the value of this field unless it is at least two, so always correctly fill in the fix. uint8_t\n// lat Latitude (WGS84) int32_t\n// lon Longitude (WGS84) int32_t\n// alt Altitude (MSL). Positive for up. int32_t\n// eph GPS HDOP horizontal dilution of position (unitless). If unknown, set to: UINT16_MAX uint16_t\n// epv GPS VDOP vertical dilution of position (unitless). If unknown, set to: UINT16_MAX uint16_t\n// vel GPS ground speed. If unknown, set to: 65535 uint16_t\n// vn GPS velocity in north direction in earth-fixed NED frame int16_t\n// ve GPS velocity in east direction in earth-fixed NED frame int16_t\n// vd GPS velocity in down direction in earth-fixed NED frame int16_t\n// cog Course over ground (NOT heading, but direction of movement), 0.0..359.99 degrees. If unknown, set to: 65535 uint16_t\n// satellites_visible Number of satellites visible. If unknown, set to 255 uint8_t\n// id GPS ID (zero indexed). Used for multiple GPS inputs uint8_t\n// yaw Yaw of vehicle relative to Earth's North, zero means not available, use 36000 for north uint16_t\nexport class HilGps extends MAVLinkMessage {\n\tpublic time_usec!: number;\n\tpublic fix_type!: number;\n\tpublic lat!: number;\n\tpublic lon!: number;\n\tpublic alt!: number;\n\tpublic eph!: number;\n\tpublic epv!: number;\n\tpublic vel!: number;\n\tpublic vn!: number;\n\tpublic ve!: number;\n\tpublic vd!: number;\n\tpublic cog!: number;\n\tpublic satellites_visible!: number;\n\tpublic id!: number;\n\tpublic yaw!: number;\n\tpublic _message_id: number = 113;\n\tpublic _message_name: string = 'HIL_GPS';\n\tpublic _crc_extra: number = 124;\n\tpublic _message_fields: [string, string, boolean][] = [\n\t\t['time_usec', 'uint64_t', false],\n\t\t['lat', 'int32_t', false],\n\t\t['lon', 'int32_t', false],\n\t\t['alt', 'int32_t', false],\n\t\t['eph', 'uint16_t', false],\n\t\t['epv', 'uint16_t', false],\n\t\t['vel', 'uint16_t', false],\n\t\t['vn', 'int16_t', false],\n\t\t['ve', 'int16_t', false],\n\t\t['vd', 'int16_t', false],\n\t\t['cog', 'uint16_t', false],\n\t\t['fix_type', 'uint8_t', false],\n\t\t['satellites_visible', 'uint8_t', false],\n\t\t['id', 'uint8_t', true],\n\t\t['yaw', 'uint16_t', true],\n\t];\n}","import {MAVLinkMessage} from '@ifrunistuttgart/node-mavlink';\nimport {readInt64LE, readUInt64LE} from '@ifrunistuttgart/node-mavlink';\n/*\nSimulated optical flow from a flow sensor (e.g. PX4FLOW or optical mouse sensor)\n*/\n// time_usec Timestamp (UNIX Epoch time or time since system boot). The receiving end can infer timestamp format (since 1.1.1970 or since system boot) by checking for the magnitude of the number. uint64_t\n// sensor_id Sensor ID uint8_t\n// integration_time_us Integration time. Divide integrated_x and integrated_y by the integration time to obtain average flow. The integration time also indicates the. uint32_t\n// integrated_x Flow in radians around X axis (Sensor RH rotation about the X axis induces a positive flow. Sensor linear motion along the positive Y axis induces a negative flow.) float\n// integrated_y Flow in radians around Y axis (Sensor RH rotation about the Y axis induces a positive flow. Sensor linear motion along the positive X axis induces a positive flow.) float\n// integrated_xgyro RH rotation around X axis float\n// integrated_ygyro RH rotation around Y axis float\n// integrated_zgyro RH rotation around Z axis float\n// temperature Temperature int16_t\n// quality Optical flow quality / confidence. 0: no valid flow, 255: maximum quality uint8_t\n// time_delta_distance_us Time since the distance was sampled. uint32_t\n// distance Distance to the center of the flow field. Positive value (including zero): distance known. Negative value: Unknown distance. float\nexport class HilOpticalFlow extends MAVLinkMessage {\n\tpublic time_usec!: number;\n\tpublic sensor_id!: number;\n\tpublic integration_time_us!: number;\n\tpublic integrated_x!: number;\n\tpublic integrated_y!: number;\n\tpublic integrated_xgyro!: number;\n\tpublic integrated_ygyro!: number;\n\tpublic integrated_zgyro!: number;\n\tpublic temperature!: number;\n\tpublic quality!: number;\n\tpublic time_delta_distance_us!: number;\n\tpublic distance!: number;\n\tpublic _message_id: number = 114;\n\tpublic _message_name: string = 'HIL_OPTICAL_FLOW';\n\tpublic _crc_extra: number = 237;\n\tpublic _message_fields: [string, string, boolean][] = [\n\t\t['time_usec', 'uint64_t', false],\n\t\t['integration_time_us', 'uint32_t', false],\n\t\t['integrated_x', 'float', false],\n\t\t['integrated_y', 'float', false],\n\t\t['integrated_xgyro', 'float', false],\n\t\t['integrated_ygyro', 'float', false],\n\t\t['integrated_zgyro', 'float', false],\n\t\t['time_delta_distance_us', 'uint32_t', false],\n\t\t['distance', 'float', false],\n\t\t['temperature', 'int16_t', false],\n\t\t['sensor_id', 'uint8_t', false],\n\t\t['quality', 'uint8_t', false],\n\t];\n}","import {MAVLinkMessage} from '@ifrunistuttgart/node-mavlink';\nimport {readInt64LE, readUInt64LE} from '@ifrunistuttgart/node-mavlink';\n/*\nSent from simulation to autopilot, avoids in contrast to HIL_STATE singularities. This packet is useful for high throughput applications such as hardware in the loop simulations.\n*/\n// time_usec Timestamp (UNIX Epoch time or time since system boot). The receiving end can infer timestamp format (since 1.1.1970 or since system boot) by checking for the magnitude of the number. uint64_t\n// attitude_quaternion Vehicle attitude expressed as normalized quaternion in w, x, y, z order (with 1 0 0 0 being the null-rotation) float\n// rollspeed Body frame roll / phi angular speed float\n// pitchspeed Body frame pitch / theta angular speed float\n// yawspeed Body frame yaw / psi angular speed float\n// lat Latitude int32_t\n// lon Longitude int32_t\n// alt Altitude int32_t\n// vx Ground X Speed (Latitude) int16_t\n// vy Ground Y Speed (Longitude) int16_t\n// vz Ground Z Speed (Altitude) int16_t\n// ind_airspeed Indicated airspeed uint16_t\n// true_airspeed True airspeed uint16_t\n// xacc X acceleration int16_t\n// yacc Y acceleration int16_t\n// zacc Z acceleration int16_t\nexport class HilStateQuaternion extends MAVLinkMessage {\n\tpublic time_usec!: number;\n\tpublic attitude_quaternion!: number;\n\tpublic rollspeed!: number;\n\tpublic pitchspeed!: number;\n\tpublic yawspeed!: number;\n\tpublic lat!: number;\n\tpublic lon!: number;\n\tpublic alt!: number;\n\tpublic vx!: number;\n\tpublic vy!: number;\n\tpublic vz!: number;\n\tpublic ind_airspeed!: number;\n\tpublic true_airspeed!: number;\n\tpublic xacc!: number;\n\tpublic yacc!: number;\n\tpublic zacc!: number;\n\tpublic _message_id: number = 115;\n\tpublic _message_name: string = 'HIL_STATE_QUATERNION';\n\tpublic _crc_extra: number = 4;\n\tpublic _message_fields: [string, string, boolean][] = [\n\t\t['time_usec', 'uint64_t', false],\n\t\t['attitude_quaternion', 'float', false],\n\t\t['rollspeed', 'float', false],\n\t\t['pitchspeed', 'float', false],\n\t\t['yawspeed', 'float', false],\n\t\t['lat', 'int32_t', false],\n\t\t['lon', 'int32_t', false],\n\t\t['alt', 'int32_t', false],\n\t\t['vx', 'int16_t', false],\n\t\t['vy', 'int16_t', false],\n\t\t['vz', 'int16_t', false],\n\t\t['ind_airspeed', 'uint16_t', false],\n\t\t['true_airspeed', 'uint16_t', false],\n\t\t['xacc', 'int16_t', false],\n\t\t['yacc', 'int16_t', false],\n\t\t['zacc', 'int16_t', false],\n\t];\n}","import {MAVLinkMessage} from '@ifrunistuttgart/node-mavlink';\nimport {readInt64LE, readUInt64LE} from '@ifrunistuttgart/node-mavlink';\n/*\nThe RAW IMU readings for secondary 9DOF sensor setup. This message should contain the scaled values to the described units\n*/\n// time_boot_ms Timestamp (time since system boot). uint32_t\n// xacc X acceleration int16_t\n// yacc Y acceleration int16_t\n// zacc Z acceleration int16_t\n// xgyro Angular speed around X axis int16_t\n// ygyro Angular speed around Y axis int16_t\n// zgyro Angular speed around Z axis int16_t\n// xmag X Magnetic field int16_t\n// ymag Y Magnetic field int16_t\n// zmag Z Magnetic field int16_t\n// temperature Temperature, 0: IMU does not provide temperature values. If the IMU is at 0C it must send 1 (0.01C). int16_t\nexport class ScaledImu2 extends MAVLinkMessage {\n\tpublic time_boot_ms!: number;\n\tpublic xacc!: number;\n\tpublic yacc!: number;\n\tpublic zacc!: number;\n\tpublic xgyro!: number;\n\tpublic ygyro!: number;\n\tpublic zgyro!: number;\n\tpublic xmag!: number;\n\tpublic ymag!: number;\n\tpublic zmag!: number;\n\tpublic temperature!: number;\n\tpublic _message_id: number = 116;\n\tpublic _message_name: string = 'SCALED_IMU2';\n\tpublic _crc_extra: number = 76;\n\tpublic _message_fields: [string, string, boolean][] = [\n\t\t['time_boot_ms', 'uint32_t', false],\n\t\t['xacc', 'int16_t', false],\n\t\t['yacc', 'int16_t', false],\n\t\t['zacc', 'int16_t', false],\n\t\t['xgyro', 'int16_t', false],\n\t\t['ygyro', 'int16_t', false],\n\t\t['zgyro', 'int16_t', false],\n\t\t['xmag', 'int16_t', false],\n\t\t['ymag', 'int16_t', false],\n\t\t['zmag', 'int16_t', false],\n\t\t['temperature', 'int16_t', true],\n\t];\n}","import {MAVLinkMessage} from '@ifrunistuttgart/node-mavlink';\nimport {readInt64LE, readUInt64LE} from '@ifrunistuttgart/node-mavlink';\n/*\nRequest a list of available logs. On some systems calling this may stop on-board logging until LOG_REQUEST_END is called. If there are no log files available this request shall be answered with one LOG_ENTRY message with id = 0 and num_logs = 0.\n*/\n// target_system System ID uint8_t\n// target_component Component ID uint8_t\n// start First log id (0 for first available) uint16_t\n// end Last log id (0xffff for last available) uint16_t\nexport class LogRequestList extends MAVLinkMessage {\n\tpublic target_system!: number;\n\tpublic target_component!: number;\n\tpublic start!: number;\n\tpublic end!: number;\n\tpublic _message_id: number = 117;\n\tpublic _message_name: string = 'LOG_REQUEST_LIST';\n\tpublic _crc_extra: number = 128;\n\tpublic _message_fields: [string, string, boolean][] = [\n\t\t['start', 'uint16_t', false],\n\t\t['end', 'uint16_t', false],\n\t\t['target_system', 'uint8_t', false],\n\t\t['target_component', 'uint8_t', false],\n\t];\n}","import {MAVLinkMessage} from '@ifrunistuttgart/node-mavlink';\nimport {readInt64LE, readUInt64LE} from '@ifrunistuttgart/node-mavlink';\n/*\nReply to LOG_REQUEST_LIST\n*/\n// id Log id uint16_t\n// num_logs Total number of logs uint16_t\n// last_log_num High log number uint16_t\n// time_utc UTC timestamp of log since 1970, or 0 if not available uint32_t\n// size Size of the log (may be approximate) uint32_t\nexport class LogEntry extends MAVLinkMessage {\n\tpublic id!: number;\n\tpublic num_logs!: number;\n\tpublic last_log_num!: number;\n\tpublic time_utc!: number;\n\tpublic size!: number;\n\tpublic _message_id: number = 118;\n\tpublic _message_name: string = 'LOG_ENTRY';\n\tpublic _crc_extra: number = 56;\n\tpublic _message_fields: [string, string, boolean][] = [\n\t\t['time_utc', 'uint32_t', false],\n\t\t['size', 'uint32_t', false],\n\t\t['id', 'uint16_t', false],\n\t\t['num_logs', 'uint16_t', false],\n\t\t['last_log_num', 'uint16_t', false],\n\t];\n}","import {MAVLinkMessage} from '@ifrunistuttgart/node-mavlink';\nimport {readInt64LE, readUInt64LE} from '@ifrunistuttgart/node-mavlink';\n/*\nRequest a chunk of a log\n*/\n// target_system System ID uint8_t\n// target_component Component ID uint8_t\n// id Log id (from LOG_ENTRY reply) uint16_t\n// ofs Offset into the log uint32_t\n// count Number of bytes uint32_t\nexport class LogRequestData extends MAVLinkMessage {\n\tpublic target_system!: number;\n\tpublic target_component!: number;\n\tpublic id!: number;\n\tpublic ofs!: number;\n\tpublic count!: number;\n\tpublic _message_id: number = 119;\n\tpublic _message_name: string = 'LOG_REQUEST_DATA';\n\tpublic _crc_extra: number = 116;\n\tpublic _message_fields: [string, string, boolean][] = [\n\t\t['ofs', 'uint32_t', false],\n\t\t['count', 'uint32_t', false],\n\t\t['id', 'uint16_t', false],\n\t\t['target_system', 'uint8_t', false],\n\t\t['target_component', 'uint8_t', false],\n\t];\n}","import {MAVLinkMessage} from '@ifrunistuttgart/node-mavlink';\nimport {readInt64LE, readUInt64LE} from '@ifrunistuttgart/node-mavlink';\n/*\nReply to LOG_REQUEST_DATA\n*/\n// id Log id (from LOG_ENTRY reply) uint16_t\n// ofs Offset into the log uint32_t\n// count Number of bytes (zero for end of log) uint8_t\n// data log data uint8_t\nexport class LogData extends MAVLinkMessage {\n\tpublic id!: number;\n\tpublic ofs!: number;\n\tpublic count!: number;\n\tpublic data!: number;\n\tpublic _message_id: number = 120;\n\tpublic _message_name: string = 'LOG_DATA';\n\tpublic _crc_extra: number = 134;\n\tpublic _message_fields: [string, string, boolean][] = [\n\t\t['ofs', 'uint32_t', false],\n\t\t['id', 'uint16_t', false],\n\t\t['count', 'uint8_t', false],\n\t\t['data', 'uint8_t', false],\n\t];\n}","import {MAVLinkMessage} from '@ifrunistuttgart/node-mavlink';\nimport {readInt64LE, readUInt64LE} from '@ifrunistuttgart/node-mavlink';\n/*\nErase all logs\n*/\n// target_system System ID uint8_t\n// target_component Component ID uint8_t\nexport class LogErase extends MAVLinkMessage {\n\tpublic target_system!: number;\n\tpublic target_component!: number;\n\tpublic _message_id: number = 121;\n\tpublic _message_name: string = 'LOG_ERASE';\n\tpublic _crc_extra: number = 237;\n\tpublic _message_fields: [string, string, boolean][] = [\n\t\t['target_system', 'uint8_t', false],\n\t\t['target_component', 'uint8_t', false],\n\t];\n}","import {MAVLinkMessage} from '@ifrunistuttgart/node-mavlink';\nimport {readInt64LE, readUInt64LE} from '@ifrunistuttgart/node-mavlink';\n/*\nStop log transfer and resume normal logging\n*/\n// target_system System ID uint8_t\n// target_component Component ID uint8_t\nexport class LogRequestEnd extends MAVLinkMessage {\n\tpublic target_system!: number;\n\tpublic target_component!: number;\n\tpublic _message_id: number = 122;\n\tpublic _message_name: string = 'LOG_REQUEST_END';\n\tpublic _crc_extra: number = 203;\n\tpublic _message_fields: [string, string, boolean][] = [\n\t\t['target_system', 'uint8_t', false],\n\t\t['target_component', 'uint8_t', false],\n\t];\n}","import {MAVLinkMessage} from '@ifrunistuttgart/node-mavlink';\nimport {readInt64LE, readUInt64LE} from '@ifrunistuttgart/node-mavlink';\n/*\nData for injecting into the onboard GPS (used for DGPS)\n*/\n// target_system System ID uint8_t\n// target_component Component ID uint8_t\n// len Data length uint8_t\n// data Raw data (110 is enough for 12 satellites of RTCMv2) uint8_t\nexport class GpsInjectData extends MAVLinkMessage {\n\tpublic target_system!: number;\n\tpublic target_component!: number;\n\tpublic len!: number;\n\tpublic data!: number;\n\tpublic _message_id: number = 123;\n\tpublic _message_name: string = 'GPS_INJECT_DATA';\n\tpublic _crc_extra: number = 250;\n\tpublic _message_fields: [string, string, boolean][] = [\n\t\t['target_system', 'uint8_t', false],\n\t\t['target_component', 'uint8_t', false],\n\t\t['len', 'uint8_t', false],\n\t\t['data', 'uint8_t', false],\n\t];\n}","import {MAVLinkMessage} from '@ifrunistuttgart/node-mavlink';\nimport {readInt64LE, readUInt64LE} from '@ifrunistuttgart/node-mavlink';\nimport {GpsFixType} from '../enums/gps-fix-type';\n/*\nSecond GPS data.\n*/\n// time_usec Timestamp (UNIX Epoch time or time since system boot). The receiving end can infer timestamp format (since 1.1.1970 or since system boot) by checking for the magnitude of the number. uint64_t\n// fix_type GPS fix type. uint8_t\n// lat Latitude (WGS84) int32_t\n// lon Longitude (WGS84) int32_t\n// alt Altitude (MSL). Positive for up. int32_t\n// eph GPS HDOP horizontal dilution of position (unitless). If unknown, set to: UINT16_MAX uint16_t\n// epv GPS VDOP vertical dilution of position (unitless). If unknown, set to: UINT16_MAX uint16_t\n// vel GPS ground speed. If unknown, set to: UINT16_MAX uint16_t\n// cog Course over ground (NOT heading, but direction of movement): 0.0..359.99 degrees. If unknown, set to: UINT16_MAX uint16_t\n// satellites_visible Number of satellites visible. If unknown, set to 255 uint8_t\n// dgps_numch Number of DGPS satellites uint8_t\n// dgps_age Age of DGPS info uint32_t\n// yaw Yaw in earth frame from north. Use 0 if this GPS does not provide yaw. Use 65535 if this GPS is configured to provide yaw and is currently unable to provide it. Use 36000 for north. uint16_t\nexport class Gps2Raw extends MAVLinkMessage {\n\tpublic time_usec!: number;\n\tpublic fix_type!: GpsFixType;\n\tpublic lat!: number;\n\tpublic lon!: number;\n\tpublic alt!: number;\n\tpublic eph!: number;\n\tpublic epv!: number;\n\tpublic vel!: number;\n\tpublic cog!: number;\n\tpublic satellites_visible!: number;\n\tpublic dgps_numch!: number;\n\tpublic dgps_age!: number;\n\tpublic yaw!: number;\n\tpublic _message_id: number = 124;\n\tpublic _message_name: string = 'GPS2_RAW';\n\tpublic _crc_extra: number = 87;\n\tpublic _message_fields: [string, string, boolean][] = [\n\t\t['time_usec', 'uint64_t', false],\n\t\t['lat', 'int32_t', false],\n\t\t['lon', 'int32_t', false],\n\t\t['alt', 'int32_t', false],\n\t\t['dgps_age', 'uint32_t', false],\n\t\t['eph', 'uint16_t', false],\n\t\t['epv', 'uint16_t', false],\n\t\t['vel', 'uint16_t', false],\n\t\t['cog', 'uint16_t', false],\n\t\t['fix_type', 'uint8_t', false],\n\t\t['satellites_visible', 'uint8_t', false],\n\t\t['dgps_numch', 'uint8_t', false],\n\t\t['yaw', 'uint16_t', true],\n\t];\n}","import {MAVLinkMessage} from '@ifrunistuttgart/node-mavlink';\nimport {readInt64LE, readUInt64LE} from '@ifrunistuttgart/node-mavlink';\nimport {MavPowerStatus} from '../enums/mav-power-status';\n/*\nPower supply status\n*/\n// Vcc 5V rail voltage. uint16_t\n// Vservo Servo rail voltage. uint16_t\n// flags Bitmap of power supply status flags. uint16_t\nexport class PowerStatus extends MAVLinkMessage {\n\tpublic Vcc!: number;\n\tpublic Vservo!: number;\n\tpublic flags!: MavPowerStatus;\n\tpublic _message_id: number = 125;\n\tpublic _message_name: string = 'POWER_STATUS';\n\tpublic _crc_extra: number = 203;\n\tpublic _message_fields: [string, string, boolean][] = [\n\t\t['Vcc', 'uint16_t', false],\n\t\t['Vservo', 'uint16_t', false],\n\t\t['flags', 'uint16_t', false],\n\t];\n}","import {MAVLinkMessage} from '@ifrunistuttgart/node-mavlink';\nimport {readInt64LE, readUInt64LE} from '@ifrunistuttgart/node-mavlink';\nimport {SerialControlDev} from '../enums/serial-control-dev';\nimport {SerialControlFlag} from '../enums/serial-control-flag';\n/*\nControl a serial port. This can be used for raw access to an onboard serial peripheral such as a GPS or telemetry radio. It is designed to make it possible to update the devices firmware via MAVLink messages or change the devices settings. A message with zero bytes can be used to change just the baudrate.\n*/\n// device Serial control device type. uint8_t\n// flags Bitmap of serial control flags. uint8_t\n// timeout Timeout for reply data uint16_t\n// baudrate Baudrate of transfer. Zero means no change. uint32_t\n// count how many bytes in this transfer uint8_t\n// data serial data uint8_t\nexport class SerialControl extends MAVLinkMessage {\n\tpublic device!: SerialControlDev;\n\tpublic flags!: SerialControlFlag;\n\tpublic timeout!: number;\n\tpublic baudrate!: number;\n\tpublic count!: number;\n\tpublic data!: number;\n\tpublic _message_id: number = 126;\n\tpublic _message_name: string = 'SERIAL_CONTROL';\n\tpublic _crc_extra: number = 220;\n\tpublic _message_fields: [string, string, boolean][] = [\n\t\t['baudrate', 'uint32_t', false],\n\t\t['timeout', 'uint16_t', false],\n\t\t['device', 'uint8_t', false],\n\t\t['flags', 'uint8_t', false],\n\t\t['count', 'uint8_t', false],\n\t\t['data', 'uint8_t', false],\n\t];\n}","import {MAVLinkMessage} from '@ifrunistuttgart/node-mavlink';\nimport {readInt64LE, readUInt64LE} from '@ifrunistuttgart/node-mavlink';\nimport {RtkBaselineCoordinateSystem} from '../enums/rtk-baseline-coordinate-system';\n/*\nRTK GPS data. Gives information on the relative baseline calculation the GPS is reporting\n*/\n// time_last_baseline_ms Time since boot of last baseline message received. uint32_t\n// rtk_receiver_id Identification of connected RTK receiver. uint8_t\n// wn GPS Week Number of last baseline uint16_t\n// tow GPS Time of Week of last baseline uint32_t\n// rtk_health GPS-specific health report for RTK data. uint8_t\n// rtk_rate Rate of baseline messages being received by GPS uint8_t\n// nsats Current number of sats used for RTK calculation. uint8_t\n// baseline_coords_type Coordinate system of baseline uint8_t\n// baseline_a_mm Current baseline in ECEF x or NED north component. int32_t\n// baseline_b_mm Current baseline in ECEF y or NED east component. int32_t\n// baseline_c_mm Current baseline in ECEF z or NED down component. int32_t\n// accuracy Current estimate of baseline accuracy. uint32_t\n// iar_num_hypotheses Current number of integer ambiguity hypotheses. int32_t\nexport class GpsRtk extends MAVLinkMessage {\n\tpublic time_last_baseline_ms!: number;\n\tpublic rtk_receiver_id!: number;\n\tpublic wn!: number;\n\tpublic tow!: number;\n\tpublic rtk_health!: number;\n\tpublic rtk_rate!: number;\n\tpublic nsats!: number;\n\tpublic baseline_coords_type!: RtkBaselineCoordinateSystem;\n\tpublic baseline_a_mm!: number;\n\tpublic baseline_b_mm!: number;\n\tpublic baseline_c_mm!: number;\n\tpublic accuracy!: number;\n\tpublic iar_num_hypotheses!: number;\n\tpublic _message_id: number = 127;\n\tpublic _message_name: string = 'GPS_RTK';\n\tpublic _crc_extra: number = 25;\n\tpublic _message_fields: [string, string, boolean][] = [\n\t\t['time_last_baseline_ms', 'uint32_t', false],\n\t\t['tow', 'uint32_t', false],\n\t\t['baseline_a_mm', 'int32_t', false],\n\t\t['baseline_b_mm', 'int32_t', false],\n\t\t['baseline_c_mm', 'int32_t', false],\n\t\t['accuracy', 'uint32_t', false],\n\t\t['iar_num_hypotheses', 'int32_t', false],\n\t\t['wn', 'uint16_t', false],\n\t\t['rtk_receiver_id', 'uint8_t', false],\n\t\t['rtk_health', 'uint8_t', false],\n\t\t['rtk_rate', 'uint8_t', false],\n\t\t['nsats', 'uint8_t', false],\n\t\t['baseline_coords_type', 'uint8_t', false],\n\t];\n}","import {MAVLinkMessage} from '@ifrunistuttgart/node-mavlink';\nimport {readInt64LE, readUInt64LE} from '@ifrunistuttgart/node-mavlink';\nimport {RtkBaselineCoordinateSystem} from '../enums/rtk-baseline-coordinate-system';\n/*\nRTK GPS data. Gives information on the relative baseline calculation the GPS is reporting\n*/\n// time_last_baseline_ms Time since boot of last baseline message received. uint32_t\n// rtk_receiver_id Identification of connected RTK receiver. uint8_t\n// wn GPS Week Number of last baseline uint16_t\n// tow GPS Time of Week of last baseline uint32_t\n// rtk_health GPS-specific health report for RTK data. uint8_t\n// rtk_rate Rate of baseline messages being received by GPS uint8_t\n// nsats Current number of sats used for RTK calculation. uint8_t\n// baseline_coords_type Coordinate system of baseline uint8_t\n// baseline_a_mm Current baseline in ECEF x or NED north component. int32_t\n// baseline_b_mm Current baseline in ECEF y or NED east component. int32_t\n// baseline_c_mm Current baseline in ECEF z or NED down component. int32_t\n// accuracy Current estimate of baseline accuracy. uint32_t\n// iar_num_hypotheses Current number of integer ambiguity hypotheses. int32_t\nexport class Gps2Rtk extends MAVLinkMessage {\n\tpublic time_last_baseline_ms!: number;\n\tpublic rtk_receiver_id!: number;\n\tpublic wn!: number;\n\tpublic tow!: number;\n\tpublic rtk_health!: number;\n\tpublic rtk_rate!: number;\n\tpublic nsats!: number;\n\tpublic baseline_coords_type!: RtkBaselineCoordinateSystem;\n\tpublic baseline_a_mm!: number;\n\tpublic baseline_b_mm!: number;\n\tpublic baseline_c_mm!: number;\n\tpublic accuracy!: number;\n\tpublic iar_num_hypotheses!: number;\n\tpublic _message_id: number = 128;\n\tpublic _message_name: string = 'GPS2_RTK';\n\tpublic _crc_extra: number = 226;\n\tpublic _message_fields: [string, string, boolean][] = [\n\t\t['time_last_baseline_ms', 'uint32_t', false],\n\t\t['tow', 'uint32_t', false],\n\t\t['baseline_a_mm', 'int32_t', false],\n\t\t['baseline_b_mm', 'int32_t', false],\n\t\t['baseline_c_mm', 'int32_t', false],\n\t\t['accuracy', 'uint32_t', false],\n\t\t['iar_num_hypotheses', 'int32_t', false],\n\t\t['wn', 'uint16_t', false],\n\t\t['rtk_receiver_id', 'uint8_t', false],\n\t\t['rtk_health', 'uint8_t', false],\n\t\t['rtk_rate', 'uint8_t', false],\n\t\t['nsats', 'uint8_t', false],\n\t\t['baseline_coords_type', 'uint8_t', false],\n\t];\n}","import {MAVLinkMessage} from '@ifrunistuttgart/node-mavlink';\nimport {readInt64LE, readUInt64LE} from '@ifrunistuttgart/node-mavlink';\n/*\nThe RAW IMU readings for 3rd 9DOF sensor setup. This message should contain the scaled values to the described units\n*/\n// time_boot_ms Timestamp (time since system boot). uint32_t\n// xacc X acceleration int16_t\n// yacc Y acceleration int16_t\n// zacc Z acceleration int16_t\n// xgyro Angular speed around X axis int16_t\n// ygyro Angular speed around Y axis int16_t\n// zgyro Angular speed around Z axis int16_t\n// xmag X Magnetic field int16_t\n// ymag Y Magnetic field int16_t\n// zmag Z Magnetic field int16_t\n// temperature Temperature, 0: IMU does not provide temperature values. If the IMU is at 0C it must send 1 (0.01C). int16_t\nexport class ScaledImu3 extends MAVLinkMessage {\n\tpublic time_boot_ms!: number;\n\tpublic xacc!: number;\n\tpublic yacc!: number;\n\tpublic zacc!: number;\n\tpublic xgyro!: number;\n\tpublic ygyro!: number;\n\tpublic zgyro!: number;\n\tpublic xmag!: number;\n\tpublic ymag!: number;\n\tpublic zmag!: number;\n\tpublic temperature!: number;\n\tpublic _message_id: number = 129;\n\tpublic _message_name: string = 'SCALED_IMU3';\n\tpublic _crc_extra: number = 46;\n\tpublic _message_fields: [string, string, boolean][] = [\n\t\t['time_boot_ms', 'uint32_t', false],\n\t\t['xacc', 'int16_t', false],\n\t\t['yacc', 'int16_t', false],\n\t\t['zacc', 'int16_t', false],\n\t\t['xgyro', 'int16_t', false],\n\t\t['ygyro', 'int16_t', false],\n\t\t['zgyro', 'int16_t', false],\n\t\t['xmag', 'int16_t', false],\n\t\t['ymag', 'int16_t', false],\n\t\t['zmag', 'int16_t', false],\n\t\t['temperature', 'int16_t', true],\n\t];\n}","import {MAVLinkMessage} from '@ifrunistuttgart/node-mavlink';\nimport {readInt64LE, readUInt64LE} from '@ifrunistuttgart/node-mavlink';\nimport {MavlinkDataStreamType} from '../enums/mavlink-data-stream-type';\n/*\nHandshake message to initiate, control and stop image streaming when using the Image Transmission Protocol: https://mavlink.io/en/services/image_transmission.html.\n*/\n// type Type of requested/acknowledged data. uint8_t\n// size total data size (set on ACK only). uint32_t\n// width Width of a matrix or image. uint16_t\n// height Height of a matrix or image. uint16_t\n// packets Number of packets being sent (set on ACK only). uint16_t\n// payload Payload size per packet (normally 253 byte, see DATA field size in message ENCAPSULATED_DATA) (set on ACK only). uint8_t\n// jpg_quality JPEG quality. Values: [1-100]. uint8_t\nexport class DataTransmissionHandshake extends MAVLinkMessage {\n\tpublic type!: MavlinkDataStreamType;\n\tpublic size!: number;\n\tpublic width!: number;\n\tpublic height!: number;\n\tpublic packets!: number;\n\tpublic payload!: number;\n\tpublic jpg_quality!: number;\n\tpublic _message_id: number = 130;\n\tpublic _message_name: string = 'DATA_TRANSMISSION_HANDSHAKE';\n\tpublic _crc_extra: number = 29;\n\tpublic _message_fields: [string, string, boolean][] = [\n\t\t['size', 'uint32_t', false],\n\t\t['width', 'uint16_t', false],\n\t\t['height', 'uint16_t', false],\n\t\t['packets', 'uint16_t', false],\n\t\t['type', 'uint8_t', false],\n\t\t['payload', 'uint8_t', false],\n\t\t['jpg_quality', 'uint8_t', false],\n\t];\n}","import {MAVLinkMessage} from '@ifrunistuttgart/node-mavlink';\nimport {readInt64LE, readUInt64LE} from '@ifrunistuttgart/node-mavlink';\n/*\nData packet for images sent using the Image Transmission Protocol: https://mavlink.io/en/services/image_transmission.html.\n*/\n// seqnr sequence number (starting with 0 on every transmission) uint16_t\n// data image data bytes uint8_t\nexport class EncapsulatedData extends MAVLinkMessage {\n\tpublic seqnr!: number;\n\tpublic data!: number;\n\tpublic _message_id: number = 131;\n\tpublic _message_name: string = 'ENCAPSULATED_DATA';\n\tpublic _crc_extra: number = 223;\n\tpublic _message_fields: [string, string, boolean][] = [\n\t\t['seqnr', 'uint16_t', false],\n\t\t['data', 'uint8_t', false],\n\t];\n}","import {MAVLinkMessage} from '@ifrunistuttgart/node-mavlink';\nimport {readInt64LE, readUInt64LE} from '@ifrunistuttgart/node-mavlink';\nimport {MavDistanceSensor} from '../enums/mav-distance-sensor';\nimport {MavSensorOrientation} from '../enums/mav-sensor-orientation';\n/*\nDistance sensor information for an onboard rangefinder.\n*/\n// time_boot_ms Timestamp (time since system boot). uint32_t\n// min_distance Minimum distance the sensor can measure uint16_t\n// max_distance Maximum distance the sensor can measure uint16_t\n// current_distance Current distance reading uint16_t\n// type Type of distance sensor. uint8_t\n// id Onboard ID of the sensor uint8_t\n// orientation Direction the sensor faces. downward-facing: ROTATION_PITCH_270, upward-facing: ROTATION_PITCH_90, backward-facing: ROTATION_PITCH_180, forward-facing: ROTATION_NONE, left-facing: ROTATION_YAW_90, right-facing: ROTATION_YAW_270 uint8_t\n// covariance Measurement variance. Max standard deviation is 6cm. 255 if unknown. uint8_t\n// horizontal_fov Horizontal Field of View (angle) where the distance measurement is valid and the field of view is known. Otherwise this is set to 0. float\n// vertical_fov Vertical Field of View (angle) where the distance measurement is valid and the field of view is known. Otherwise this is set to 0. float\n// quaternion Quaternion of the sensor orientation in vehicle body frame (w, x, y, z order, zero-rotation is 1, 0, 0, 0). Zero-rotation is along the vehicle body x-axis. This field is required if the orientation is set to MAV_SENSOR_ROTATION_CUSTOM. Set it to 0 if invalid.\" float\n// signal_quality Signal quality of the sensor. Specific to each sensor type, representing the relation of the signal strength with the target reflectivity, distance, size or aspect, but normalised as a percentage. 0 = unknown/unset signal quality, 1 = invalid signal, 100 = perfect signal. uint8_t\nexport class DistanceSensor extends MAVLinkMessage {\n\tpublic time_boot_ms!: number;\n\tpublic min_distance!: number;\n\tpublic max_distance!: number;\n\tpublic current_distance!: number;\n\tpublic type!: MavDistanceSensor;\n\tpublic id!: number;\n\tpublic orientation!: MavSensorOrientation;\n\tpublic covariance!: number;\n\tpublic horizontal_fov!: number;\n\tpublic vertical_fov!: number;\n\tpublic quaternion!: number;\n\tpublic signal_quality!: number;\n\tpublic _message_id: number = 132;\n\tpublic _message_name: string = 'DISTANCE_SENSOR';\n\tpublic _crc_extra: number = 85;\n\tpublic _message_fields: [string, string, boolean][] = [\n\t\t['time_boot_ms', 'uint32_t', false],\n\t\t['min_distance', 'uint16_t', false],\n\t\t['max_distance', 'uint16_t', false],\n\t\t['current_distance', 'uint16_t', false],\n\t\t['type', 'uint8_t', false],\n\t\t['id', 'uint8_t', false],\n\t\t['orientation', 'uint8_t', false],\n\t\t['covariance', 'uint8_t', false],\n\t\t['horizontal_fov', 'float', true],\n\t\t['vertical_fov', 'float', true],\n\t\t['quaternion', 'float', true],\n\t\t['signal_quality', 'uint8_t', true],\n\t];\n}","import {MAVLinkMessage} from '@ifrunistuttgart/node-mavlink';\nimport {readInt64LE, readUInt64LE} from '@ifrunistuttgart/node-mavlink';\n/*\nRequest for terrain data and terrain status. See terrain protocol docs: https://mavlink.io/en/services/terrain.html\n*/\n// lat Latitude of SW corner of first grid int32_t\n// lon Longitude of SW corner of first grid int32_t\n// grid_spacing Grid spacing uint16_t\n// mask Bitmask of requested 4x4 grids (row major 8x7 array of grids, 56 bits) uint64_t\nexport class TerrainRequest extends MAVLinkMessage {\n\tpublic lat!: number;\n\tpublic lon!: number;\n\tpublic grid_spacing!: number;\n\tpublic mask!: number;\n\tpublic _message_id: number = 133;\n\tpublic _message_name: string = 'TERRAIN_REQUEST';\n\tpublic _crc_extra: number = 6;\n\tpublic _message_fields: [string, string, boolean][] = [\n\t\t['mask', 'uint64_t', false],\n\t\t['lat', 'int32_t', false],\n\t\t['lon', 'int32_t', false],\n\t\t['grid_spacing', 'uint16_t', false],\n\t];\n}","import {MAVLinkMessage} from '@ifrunistuttgart/node-mavlink';\nimport {readInt64LE, readUInt64LE} from '@ifrunistuttgart/node-mavlink';\n/*\nTerrain data sent from GCS. The lat/lon and grid_spacing must be the same as a lat/lon from a TERRAIN_REQUEST. See terrain protocol docs: https://mavlink.io/en/services/terrain.html\n*/\n// lat Latitude of SW corner of first grid int32_t\n// lon Longitude of SW corner of first grid int32_t\n// grid_spacing Grid spacing uint16_t\n// gridbit bit within the terrain request mask uint8_t\n// data Terrain data MSL int16_t\nexport class TerrainData extends MAVLinkMessage {\n\tpublic lat!: number;\n\tpublic lon!: number;\n\tpublic grid_spacing!: number;\n\tpublic gridbit!: number;\n\tpublic data!: number;\n\tpublic _message_id: number = 134;\n\tpublic _message_name: string = 'TERRAIN_DATA';\n\tpublic _crc_extra: number = 229;\n\tpublic _message_fields: [string, string, boolean][] = [\n\t\t['lat', 'int32_t', false],\n\t\t['lon', 'int32_t', false],\n\t\t['grid_spacing', 'uint16_t', false],\n\t\t['data', 'int16_t', false],\n\t\t['gridbit', 'uint8_t', false],\n\t];\n}","import {MAVLinkMessage} from '@ifrunistuttgart/node-mavlink';\nimport {readInt64LE, readUInt64LE} from '@ifrunistuttgart/node-mavlink';\n/*\nRequest that the vehicle report terrain height at the given location (expected response is a TERRAIN_REPORT). Used by GCS to check if vehicle has all terrain data needed for a mission.\n*/\n// lat Latitude int32_t\n// lon Longitude int32_t\nexport class TerrainCheck extends MAVLinkMessage {\n\tpublic lat!: number;\n\tpublic lon!: number;\n\tpublic _message_id: number = 135;\n\tpublic _message_name: string = 'TERRAIN_CHECK';\n\tpublic _crc_extra: number = 203;\n\tpublic _message_fields: [string, string, boolean][] = [\n\t\t['lat', 'int32_t', false],\n\t\t['lon', 'int32_t', false],\n\t];\n}","import {MAVLinkMessage} from '@ifrunistuttgart/node-mavlink';\nimport {readInt64LE, readUInt64LE} from '@ifrunistuttgart/node-mavlink';\n/*\nStreamed from drone to report progress of terrain map download (initiated by TERRAIN_REQUEST), or sent as a response to a TERRAIN_CHECK request. See terrain protocol docs: https://mavlink.io/en/services/terrain.html\n*/\n// lat Latitude int32_t\n// lon Longitude int32_t\n// spacing grid spacing (zero if terrain at this location unavailable) uint16_t\n// terrain_height Terrain height MSL float\n// current_height Current vehicle height above lat/lon terrain height float\n// pending Number of 4x4 terrain blocks waiting to be received or read from disk uint16_t\n// loaded Number of 4x4 terrain blocks in memory uint16_t\nexport class TerrainReport extends MAVLinkMessage {\n\tpublic lat!: number;\n\tpublic lon!: number;\n\tpublic spacing!: number;\n\tpublic terrain_height!: number;\n\tpublic current_height!: number;\n\tpublic pending!: number;\n\tpublic loaded!: number;\n\tpublic _message_id: number = 136;\n\tpublic _message_name: string = 'TERRAIN_REPORT';\n\tpublic _crc_extra: number = 1;\n\tpublic _message_fields: [string, string, boolean][] = [\n\t\t['lat', 'int32_t', false],\n\t\t['lon', 'int32_t', false],\n\t\t['terrain_height', 'float', false],\n\t\t['current_height', 'float', false],\n\t\t['spacing', 'uint16_t', false],\n\t\t['pending', 'uint16_t', false],\n\t\t['loaded', 'uint16_t', false],\n\t];\n}","import {MAVLinkMessage} from '@ifrunistuttgart/node-mavlink';\nimport {readInt64LE, readUInt64LE} from '@ifrunistuttgart/node-mavlink';\n/*\nBarometer readings for 2nd barometer\n*/\n// time_boot_ms Timestamp (time since system boot). uint32_t\n// press_abs Absolute pressure float\n// press_diff Differential pressure float\n// temperature Absolute pressure temperature int16_t\n// temperature_press_diff Differential pressure temperature (0, if not available). Report values of 0 (or 1) as 1 cdegC. int16_t\nexport class ScaledPressure2 extends MAVLinkMessage {\n\tpublic time_boot_ms!: number;\n\tpublic press_abs!: number;\n\tpublic press_diff!: number;\n\tpublic temperature!: number;\n\tpublic temperature_press_diff!: number;\n\tpublic _message_id: number = 137;\n\tpublic _message_name: string = 'SCALED_PRESSURE2';\n\tpublic _crc_extra: number = 195;\n\tpublic _message_fields: [string, string, boolean][] = [\n\t\t['time_boot_ms', 'uint32_t', false],\n\t\t['press_abs', 'float', false],\n\t\t['press_diff', 'float', false],\n\t\t['temperature', 'int16_t', false],\n\t\t['temperature_press_diff', 'int16_t', true],\n\t];\n}","import {MAVLinkMessage} from '@ifrunistuttgart/node-mavlink';\nimport {readInt64LE, readUInt64LE} from '@ifrunistuttgart/node-mavlink';\n/*\nMotion capture attitude and position\n*/\n// time_usec Timestamp (UNIX Epoch time or time since system boot). The receiving end can infer timestamp format (since 1.1.1970 or since system boot) by checking for the magnitude of the number. uint64_t\n// q Attitude quaternion (w, x, y, z order, zero-rotation is 1, 0, 0, 0) float\n// x X position (NED) float\n// y Y position (NED) float\n// z Z position (NED) float\n// covariance Row-major representation of a pose 6x6 cross-covariance matrix upper right triangle (states: x, y, z, roll, pitch, yaw; first six entries are the first ROW, next five entries are the second ROW, etc.). If unknown, assign NaN value to first element in the array. float\nexport class AttPosMocap extends MAVLinkMessage {\n\tpublic time_usec!: number;\n\tpublic q!: number;\n\tpublic x!: number;\n\tpublic y!: number;\n\tpublic z!: number;\n\tpublic covariance!: number;\n\tpublic _message_id: number = 138;\n\tpublic _message_name: string = 'ATT_POS_MOCAP';\n\tpublic _crc_extra: number = 109;\n\tpublic _message_fields: [string, string, boolean][] = [\n\t\t['time_usec', 'uint64_t', false],\n\t\t['q', 'float', false],\n\t\t['x', 'float', false],\n\t\t['y', 'float', false],\n\t\t['z', 'float', false],\n\t\t['covariance', 'float', true],\n\t];\n}","import {MAVLinkMessage} from '@ifrunistuttgart/node-mavlink';\nimport {readInt64LE, readUInt64LE} from '@ifrunistuttgart/node-mavlink';\n/*\nSet the vehicle attitude and body angular rates.\n*/\n// time_usec Timestamp (UNIX Epoch time or time since system boot). The receiving end can infer timestamp format (since 1.1.1970 or since system boot) by checking for the magnitude of the number. uint64_t\n// group_mlx Actuator group. The \"_mlx\" indicates this is a multi-instance message and a MAVLink parser should use this field to difference between instances. uint8_t\n// target_system System ID uint8_t\n// target_component Component ID uint8_t\n// controls Actuator controls. Normed to -1..+1 where 0 is neutral position. Throttle for single rotation direction motors is 0..1, negative range for reverse direction. Standard mapping for attitude controls (group 0): (index 0-7): roll, pitch, yaw, throttle, flaps, spoilers, airbrakes, landing gear. Load a pass-through mixer to repurpose them as generic outputs. float\nexport class SetActuatorControlTarget extends MAVLinkMessage {\n\tpublic time_usec!: number;\n\tpublic group_mlx!: number;\n\tpublic target_system!: number;\n\tpublic target_component!: number;\n\tpublic controls!: number;\n\tpublic _message_id: number = 139;\n\tpublic _message_name: string = 'SET_ACTUATOR_CONTROL_TARGET';\n\tpublic _crc_extra: number = 168;\n\tpublic _message_fields: [string, string, boolean][] = [\n\t\t['time_usec', 'uint64_t', false],\n\t\t['controls', 'float', false],\n\t\t['group_mlx', 'uint8_t', false],\n\t\t['target_system', 'uint8_t', false],\n\t\t['target_component', 'uint8_t', false],\n\t];\n}","import {MAVLinkMessage} from '@ifrunistuttgart/node-mavlink';\nimport {readInt64LE, readUInt64LE} from '@ifrunistuttgart/node-mavlink';\n/*\nSet the vehicle attitude and body angular rates.\n*/\n// time_usec Timestamp (UNIX Epoch time or time since system boot). The receiving end can infer timestamp format (since 1.1.1970 or since system boot) by checking for the magnitude of the number. uint64_t\n// group_mlx Actuator group. The \"_mlx\" indicates this is a multi-instance message and a MAVLink parser should use this field to difference between instances. uint8_t\n// controls Actuator controls. Normed to -1..+1 where 0 is neutral position. Throttle for single rotation direction motors is 0..1, negative range for reverse direction. Standard mapping for attitude controls (group 0): (index 0-7): roll, pitch, yaw, throttle, flaps, spoilers, airbrakes, landing gear. Load a pass-through mixer to repurpose them as generic outputs. float\nexport class ActuatorControlTarget extends MAVLinkMessage {\n\tpublic time_usec!: number;\n\tpublic group_mlx!: number;\n\tpublic controls!: number;\n\tpublic _message_id: number = 140;\n\tpublic _message_name: string = 'ACTUATOR_CONTROL_TARGET';\n\tpublic _crc_extra: number = 181;\n\tpublic _message_fields: [string, string, boolean][] = [\n\t\t['time_usec', 'uint64_t', false],\n\t\t['controls', 'float', false],\n\t\t['group_mlx', 'uint8_t', false],\n\t];\n}","import {MAVLinkMessage} from '@ifrunistuttgart/node-mavlink';\nimport {readInt64LE, readUInt64LE} from '@ifrunistuttgart/node-mavlink';\n/*\nThe current system altitude.\n*/\n// time_usec Timestamp (UNIX Epoch time or time since system boot). The receiving end can infer timestamp format (since 1.1.1970 or since system boot) by checking for the magnitude of the number. uint64_t\n// altitude_monotonic This altitude measure is initialized on system boot and monotonic (it is never reset, but represents the local altitude change). The only guarantee on this field is that it will never be reset and is consistent within a flight. The recommended value for this field is the uncorrected barometric altitude at boot time. This altitude will also drift and vary between flights. float\n// altitude_amsl This altitude measure is strictly above mean sea level and might be non-monotonic (it might reset on events like GPS lock or when a new QNH value is set). It should be the altitude to which global altitude waypoints are compared to. Note that it is *not* the GPS altitude, however, most GPS modules already output MSL by default and not the WGS84 altitude. float\n// altitude_local This is the local altitude in the local coordinate frame. It is not the altitude above home, but in reference to the coordinate origin (0, 0, 0). It is up-positive. float\n// altitude_relative This is the altitude above the home position. It resets on each change of the current home position. float\n// altitude_terrain This is the altitude above terrain. It might be fed by a terrain database or an altimeter. Values smaller than -1000 should be interpreted as unknown. float\n// bottom_clearance This is not the altitude, but the clear space below the system according to the fused clearance estimate. It generally should max out at the maximum range of e.g. the laser altimeter. It is generally a moving target. A negative value indicates no measurement available. float\nexport class Altitude extends MAVLinkMessage {\n\tpublic time_usec!: number;\n\tpublic altitude_monotonic!: number;\n\tpublic altitude_amsl!: number;\n\tpublic altitude_local!: number;\n\tpublic altitude_relative!: number;\n\tpublic altitude_terrain!: number;\n\tpublic bottom_clearance!: number;\n\tpublic _message_id: number = 141;\n\tpublic _message_name: string = 'ALTITUDE';\n\tpublic _crc_extra: number = 47;\n\tpublic _message_fields: [string, string, boolean][] = [\n\t\t['time_usec', 'uint64_t', false],\n\t\t['altitude_monotonic', 'float', false],\n\t\t['altitude_amsl', 'float', false],\n\t\t['altitude_local', 'float', false],\n\t\t['altitude_relative', 'float', false],\n\t\t['altitude_terrain', 'float', false],\n\t\t['bottom_clearance', 'float', false],\n\t];\n}","import {MAVLinkMessage} from '@ifrunistuttgart/node-mavlink';\nimport {readInt64LE, readUInt64LE} from '@ifrunistuttgart/node-mavlink';\n/*\nThe autopilot is requesting a resource (file, binary, other type of data)\n*/\n// request_id Request ID. This ID should be re-used when sending back URI contents uint8_t\n// uri_type The type of requested URI. 0 = a file via URL. 1 = a UAVCAN binary uint8_t\n// uri The requested unique resource identifier (URI). It is not necessarily a straight domain name (depends on the URI type enum) uint8_t\n// transfer_type The way the autopilot wants to receive the URI. 0 = MAVLink FTP. 1 = binary stream. uint8_t\n// storage The storage path the autopilot wants the URI to be stored in. Will only be valid if the transfer_type has a storage associated (e.g. MAVLink FTP). uint8_t\nexport class ResourceRequest extends MAVLinkMessage {\n\tpublic request_id!: number;\n\tpublic uri_type!: number;\n\tpublic uri!: number;\n\tpublic transfer_type!: number;\n\tpublic storage!: number;\n\tpublic _message_id: number = 142;\n\tpublic _message_name: string = 'RESOURCE_REQUEST';\n\tpublic _crc_extra: number = 72;\n\tpublic _message_fields: [string, string, boolean][] = [\n\t\t['request_id', 'uint8_t', false],\n\t\t['uri_type', 'uint8_t', false],\n\t\t['uri', 'uint8_t', false],\n\t\t['transfer_type', 'uint8_t', false],\n\t\t['storage', 'uint8_t', false],\n\t];\n}","import {MAVLinkMessage} from '@ifrunistuttgart/node-mavlink';\nimport {readInt64LE, readUInt64LE} from '@ifrunistuttgart/node-mavlink';\n/*\nBarometer readings for 3rd barometer\n*/\n// time_boot_ms Timestamp (time since system boot). uint32_t\n// press_abs Absolute pressure float\n// press_diff Differential pressure float\n// temperature Absolute pressure temperature int16_t\n// temperature_press_diff Differential pressure temperature (0, if not available). Report values of 0 (or 1) as 1 cdegC. int16_t\nexport class ScaledPressure3 extends MAVLinkMessage {\n\tpublic time_boot_ms!: number;\n\tpublic press_abs!: number;\n\tpublic press_diff!: number;\n\tpublic temperature!: number;\n\tpublic temperature_press_diff!: number;\n\tpublic _message_id: number = 143;\n\tpublic _message_name: string = 'SCALED_PRESSURE3';\n\tpublic _crc_extra: number = 131;\n\tpublic _message_fields: [string, string, boolean][] = [\n\t\t['time_boot_ms', 'uint32_t', false],\n\t\t['press_abs', 'float', false],\n\t\t['press_diff', 'float', false],\n\t\t['temperature', 'int16_t', false],\n\t\t['temperature_press_diff', 'int16_t', true],\n\t];\n}","import {MAVLinkMessage} from '@ifrunistuttgart/node-mavlink';\nimport {readInt64LE, readUInt64LE} from '@ifrunistuttgart/node-mavlink';\n/*\nCurrent motion information from a designated system\n*/\n// timestamp Timestamp (time since system boot). uint64_t\n// est_capabilities bit positions for tracker reporting capabilities (POS = 0, VEL = 1, ACCEL = 2, ATT + RATES = 3) uint8_t\n// lat Latitude (WGS84) int32_t\n// lon Longitude (WGS84) int32_t\n// alt Altitude (MSL) float\n// vel target velocity (0,0,0) for unknown float\n// acc linear target acceleration (0,0,0) for unknown float\n// attitude_q (1 0 0 0 for unknown) float\n// rates (0 0 0 for unknown) float\n// position_cov eph epv float\n// custom_state button states or switches of a tracker device uint64_t\nexport class FollowTarget extends MAVLinkMessage {\n\tpublic timestamp!: number;\n\tpublic est_capabilities!: number;\n\tpublic lat!: number;\n\tpublic lon!: number;\n\tpublic alt!: number;\n\tpublic vel!: number;\n\tpublic acc!: number;\n\tpublic attitude_q!: number;\n\tpublic rates!: number;\n\tpublic position_cov!: number;\n\tpublic custom_state!: number;\n\tpublic _message_id: number = 144;\n\tpublic _message_name: string = 'FOLLOW_TARGET';\n\tpublic _crc_extra: number = 127;\n\tpublic _message_fields: [string, string, boolean][] = [\n\t\t['timestamp', 'uint64_t', false],\n\t\t['custom_state', 'uint64_t', false],\n\t\t['lat', 'int32_t', false],\n\t\t['lon', 'int32_t', false],\n\t\t['alt', 'float', false],\n\t\t['vel', 'float', false],\n\t\t['acc', 'float', false],\n\t\t['attitude_q', 'float', false],\n\t\t['rates', 'float', false],\n\t\t['position_cov', 'float', false],\n\t\t['est_capabilities', 'uint8_t', false],\n\t];\n}","import {MAVLinkMessage} from '@ifrunistuttgart/node-mavlink';\nimport {readInt64LE, readUInt64LE} from '@ifrunistuttgart/node-mavlink';\n/*\nThe smoothed, monotonic system state used to feed the control loops of the system.\n*/\n// time_usec Timestamp (UNIX Epoch time or time since system boot). The receiving end can infer timestamp format (since 1.1.1970 or since system boot) by checking for the magnitude of the number. uint64_t\n// x_acc X acceleration in body frame float\n// y_acc Y acceleration in body frame float\n// z_acc Z acceleration in body frame float\n// x_vel X velocity in body frame float\n// y_vel Y velocity in body frame float\n// z_vel Z velocity in body frame float\n// x_pos X position in local frame float\n// y_pos Y position in local frame float\n// z_pos Z position in local frame float\n// airspeed Airspeed, set to -1 if unknown float\n// vel_variance Variance of body velocity estimate float\n// pos_variance Variance in local position float\n// q The attitude, represented as Quaternion float\n// roll_rate Angular rate in roll axis float\n// pitch_rate Angular rate in pitch axis float\n// yaw_rate Angular rate in yaw axis float\nexport class ControlSystemState extends MAVLinkMessage {\n\tpublic time_usec!: number;\n\tpublic x_acc!: number;\n\tpublic y_acc!: number;\n\tpublic z_acc!: number;\n\tpublic x_vel!: number;\n\tpublic y_vel!: number;\n\tpublic z_vel!: number;\n\tpublic x_pos!: number;\n\tpublic y_pos!: number;\n\tpublic z_pos!: number;\n\tpublic airspeed!: number;\n\tpublic vel_variance!: number;\n\tpublic pos_variance!: number;\n\tpublic q!: number;\n\tpublic roll_rate!: number;\n\tpublic pitch_rate!: number;\n\tpublic yaw_rate!: number;\n\tpublic _message_id: number = 146;\n\tpublic _message_name: string = 'CONTROL_SYSTEM_STATE';\n\tpublic _crc_extra: number = 103;\n\tpublic _message_fields: [string, string, boolean][] = [\n\t\t['time_usec', 'uint64_t', false],\n\t\t['x_acc', 'float', false],\n\t\t['y_acc', 'float', false],\n\t\t['z_acc', 'float', false],\n\t\t['x_vel', 'float', false],\n\t\t['y_vel', 'float', false],\n\t\t['z_vel', 'float', false],\n\t\t['x_pos', 'float', false],\n\t\t['y_pos', 'float', false],\n\t\t['z_pos', 'float', false],\n\t\t['airspeed', 'float', false],\n\t\t['vel_variance', 'float', false],\n\t\t['pos_variance', 'float', false],\n\t\t['q', 'float', false],\n\t\t['roll_rate', 'float', false],\n\t\t['pitch_rate', 'float', false],\n\t\t['yaw_rate', 'float', false],\n\t];\n}","import {MAVLinkMessage} from '@ifrunistuttgart/node-mavlink';\nimport {readInt64LE, readUInt64LE} from '@ifrunistuttgart/node-mavlink';\nimport {MavBatteryFunction} from '../enums/mav-battery-function';\nimport {MavBatteryType} from '../enums/mav-battery-type';\nimport {MavBatteryChargeState} from '../enums/mav-battery-charge-state';\nimport {MavBatteryMode} from '../enums/mav-battery-mode';\nimport {MavBatteryFault} from '../enums/mav-battery-fault';\n/*\nBattery information. Updates GCS with flight controller battery status. Smart batteries also use this message, but may additionally send SMART_BATTERY_INFO.\n*/\n// id Battery ID uint8_t\n// battery_function Function of the battery uint8_t\n// type Type (chemistry) of the battery uint8_t\n// temperature Temperature of the battery. INT16_MAX for unknown temperature. int16_t\n// voltages Battery voltage of cells 1 to 10 (see voltages_ext for cells 11-14). Cells in this field above the valid cell count for this battery should have the UINT16_MAX value. If individual cell voltages are unknown or not measured for this battery, then the overall battery voltage should be filled in cell 0, with all others set to UINT16_MAX. If the voltage of the battery is greater than (UINT16_MAX - 1), then cell 0 should be set to (UINT16_MAX - 1), and cell 1 to the remaining voltage. This can be extended to multiple cells if the total voltage is greater than 2 * (UINT16_MAX - 1). uint16_t\n// current_battery Battery current, -1: autopilot does not measure the current int16_t\n// current_consumed Consumed charge, -1: autopilot does not provide consumption estimate int32_t\n// energy_consumed Consumed energy, -1: autopilot does not provide energy consumption estimate int32_t\n// battery_remaining Remaining battery energy. Values: [0-100], -1: autopilot does not estimate the remaining battery. int8_t\n// time_remaining Remaining battery time, 0: autopilot does not provide remaining battery time estimate int32_t\n// charge_state State for extent of discharge, provided by autopilot for warning or external reactions uint8_t\n// voltages_ext Battery voltages for cells 11 to 14. Cells above the valid cell count for this battery should have a value of 0, where zero indicates not supported (note, this is different than for the voltages field and allows empty byte truncation). If the measured value is 0 then 1 should be sent instead. uint16_t\n// mode Battery mode. Default (0) is that battery mode reporting is not supported or battery is in normal-use mode. uint8_t\n// fault_bitmask Fault/health indications. These should be set when charge_state is MAV_BATTERY_CHARGE_STATE_FAILED or MAV_BATTERY_CHARGE_STATE_UNHEALTHY (if not, fault reporting is not supported). uint32_t\nexport class BatteryStatus extends MAVLinkMessage {\n\tpublic id!: number;\n\tpublic battery_function!: MavBatteryFunction;\n\tpublic type!: MavBatteryType;\n\tpublic temperature!: number;\n\tpublic voltages!: number;\n\tpublic current_battery!: number;\n\tpublic current_consumed!: number;\n\tpublic energy_consumed!: number;\n\tpublic battery_remaining!: number;\n\tpublic time_remaining!: number;\n\tpublic charge_state!: MavBatteryChargeState;\n\tpublic voltages_ext!: number;\n\tpublic mode!: MavBatteryMode;\n\tpublic fault_bitmask!: MavBatteryFault;\n\tpublic _message_id: number = 147;\n\tpublic _message_name: string = 'BATTERY_STATUS';\n\tpublic _crc_extra: number = 154;\n\tpublic _message_fields: [string, string, boolean][] = [\n\t\t['current_consumed', 'int32_t', false],\n\t\t['energy_consumed', 'int32_t', false],\n\t\t['temperature', 'int16_t', false],\n\t\t['voltages', 'uint16_t', false],\n\t\t['current_battery', 'int16_t', false],\n\t\t['id', 'uint8_t', false],\n\t\t['battery_function', 'uint8_t', false],\n\t\t['type', 'uint8_t', false],\n\t\t['battery_remaining', 'int8_t', false],\n\t\t['time_remaining', 'int32_t', true],\n\t\t['charge_state', 'uint8_t', true],\n\t\t['voltages_ext', 'uint16_t', true],\n\t\t['mode', 'uint8_t', true],\n\t\t['fault_bitmask', 'uint32_t', true],\n\t];\n}","import {MAVLinkMessage} from '@ifrunistuttgart/node-mavlink';\nimport {readInt64LE, readUInt64LE} from '@ifrunistuttgart/node-mavlink';\nimport {MavProtocolCapability} from '../enums/mav-protocol-capability';\n/*\nVersion and capability of autopilot software. This should be emitted in response to a request with MAV_CMD_REQUEST_MESSAGE.\n*/\n// capabilities Bitmap of capabilities uint64_t\n// flight_sw_version Firmware version number uint32_t\n// middleware_sw_version Middleware version number uint32_t\n// os_sw_version Operating system version number uint32_t\n// board_version HW / board version (last 8 bytes should be silicon ID, if any) uint32_t\n// flight_custom_version Custom version field, commonly the first 8 bytes of the git hash. This is not an unique identifier, but should allow to identify the commit using the main version number even for very large code bases. uint8_t\n// middleware_custom_version Custom version field, commonly the first 8 bytes of the git hash. This is not an unique identifier, but should allow to identify the commit using the main version number even for very large code bases. uint8_t\n// os_custom_version Custom version field, commonly the first 8 bytes of the git hash. This is not an unique identifier, but should allow to identify the commit using the main version number even for very large code bases. uint8_t\n// vendor_id ID of the board vendor uint16_t\n// product_id ID of the product uint16_t\n// uid UID if provided by hardware (see uid2) uint64_t\n// uid2 UID if provided by hardware (supersedes the uid field. If this is non-zero, use this field, otherwise use uid) uint8_t\nexport class AutopilotVersion extends MAVLinkMessage {\n\tpublic capabilities!: MavProtocolCapability;\n\tpublic flight_sw_version!: number;\n\tpublic middleware_sw_version!: number;\n\tpublic os_sw_version!: number;\n\tpublic board_version!: number;\n\tpublic flight_custom_version!: number;\n\tpublic middleware_custom_version!: number;\n\tpublic os_custom_version!: number;\n\tpublic vendor_id!: number;\n\tpublic product_id!: number;\n\tpublic uid!: number;\n\tpublic uid2!: number;\n\tpublic _message_id: number = 148;\n\tpublic _message_name: string = 'AUTOPILOT_VERSION';\n\tpublic _crc_extra: number = 178;\n\tpublic _message_fields: [string, string, boolean][] = [\n\t\t['capabilities', 'uint64_t', false],\n\t\t['uid', 'uint64_t', false],\n\t\t['flight_sw_version', 'uint32_t', false],\n\t\t['middleware_sw_version', 'uint32_t', false],\n\t\t['os_sw_version', 'uint32_t', false],\n\t\t['board_version', 'uint32_t', false],\n\t\t['vendor_id', 'uint16_t', false],\n\t\t['product_id', 'uint16_t', false],\n\t\t['flight_custom_version', 'uint8_t', false],\n\t\t['middleware_custom_version', 'uint8_t', false],\n\t\t['os_custom_version', 'uint8_t', false],\n\t\t['uid2', 'uint8_t', true],\n\t];\n}","import {MAVLinkMessage} from '@ifrunistuttgart/node-mavlink';\nimport {readInt64LE, readUInt64LE} from '@ifrunistuttgart/node-mavlink';\nimport {MavFrame} from '../enums/mav-frame';\nimport {LandingTargetType} from '../enums/landing-target-type';\n/*\nThe location of a landing target. See: https://mavlink.io/en/services/landing_target.html\n*/\n// time_usec Timestamp (UNIX Epoch time or time since system boot). The receiving end can infer timestamp format (since 1.1.1970 or since system boot) by checking for the magnitude of the number. uint64_t\n// target_num The ID of the target if multiple targets are present uint8_t\n// frame Coordinate frame used for following fields. uint8_t\n// angle_x X-axis angular offset of the target from the center of the image float\n// angle_y Y-axis angular offset of the target from the center of the image float\n// distance Distance to the target from the vehicle float\n// size_x Size of target along x-axis float\n// size_y Size of target along y-axis float\n// x X Position of the landing target in MAV_FRAME float\n// y Y Position of the landing target in MAV_FRAME float\n// z Z Position of the landing target in MAV_FRAME float\n// q Quaternion of landing target orientation (w, x, y, z order, zero-rotation is 1, 0, 0, 0) float\n// type Type of landing target uint8_t\n// position_valid Boolean indicating whether the position fields (x, y, z, q, type) contain valid target position information (valid: 1, invalid: 0). Default is 0 (invalid). uint8_t\nexport class LandingTarget extends MAVLinkMessage {\n\tpublic time_usec!: number;\n\tpublic target_num!: number;\n\tpublic frame!: MavFrame;\n\tpublic angle_x!: number;\n\tpublic angle_y!: number;\n\tpublic distance!: number;\n\tpublic size_x!: number;\n\tpublic size_y!: number;\n\tpublic x!: number;\n\tpublic y!: number;\n\tpublic z!: number;\n\tpublic q!: number;\n\tpublic type!: LandingTargetType;\n\tpublic position_valid!: number;\n\tpublic _message_id: number = 149;\n\tpublic _message_name: string = 'LANDING_TARGET';\n\tpublic _crc_extra: number = 200;\n\tpublic _message_fields: [string, string, boolean][] = [\n\t\t['time_usec', 'uint64_t', false],\n\t\t['angle_x', 'float', false],\n\t\t['angle_y', 'float', false],\n\t\t['distance', 'float', false],\n\t\t['size_x', 'float', false],\n\t\t['size_y', 'float', false],\n\t\t['target_num', 'uint8_t', false],\n\t\t['frame', 'uint8_t', false],\n\t\t['x', 'float', true],\n\t\t['y', 'float', true],\n\t\t['z', 'float', true],\n\t\t['q', 'float', true],\n\t\t['type', 'uint8_t', true],\n\t\t['position_valid', 'uint8_t', true],\n\t];\n}","import {MAVLinkMessage} from '@ifrunistuttgart/node-mavlink';\nimport {readInt64LE, readUInt64LE} from '@ifrunistuttgart/node-mavlink';\nimport {FenceBreach} from '../enums/fence-breach';\nimport {FenceMitigate} from '../enums/fence-mitigate';\n/*\nStatus of geo-fencing. Sent in extended status stream when fencing enabled.\n*/\n// breach_status Breach status (0 if currently inside fence, 1 if outside). uint8_t\n// breach_count Number of fence breaches. uint16_t\n// breach_type Last breach type. uint8_t\n// breach_time Time (since boot) of last breach. uint32_t\n// breach_mitigation Active action to prevent fence breach uint8_t\nexport class FenceStatus extends MAVLinkMessage {\n\tpublic breach_status!: number;\n\tpublic breach_count!: number;\n\tpublic breach_type!: FenceBreach;\n\tpublic breach_time!: number;\n\tpublic breach_mitigation!: FenceMitigate;\n\tpublic _message_id: number = 162;\n\tpublic _message_name: string = 'FENCE_STATUS';\n\tpublic _crc_extra: number = 189;\n\tpublic _message_fields: [string, string, boolean][] = [\n\t\t['breach_time', 'uint32_t', false],\n\t\t['breach_count', 'uint16_t', false],\n\t\t['breach_status', 'uint8_t', false],\n\t\t['breach_type', 'uint8_t', false],\n\t\t['breach_mitigation', 'uint8_t', true],\n\t];\n}","import {MAVLinkMessage} from '@ifrunistuttgart/node-mavlink';\nimport {readInt64LE, readUInt64LE} from '@ifrunistuttgart/node-mavlink';\nimport {MagCalStatus} from '../enums/mag-cal-status';\nimport {MavSensorOrientation} from '../enums/mav-sensor-orientation';\n/*\nReports results of completed compass calibration. Sent until MAG_CAL_ACK received.\n*/\n// compass_id Compass being calibrated. uint8_t\n// cal_mask Bitmask of compasses being calibrated. uint8_t\n// cal_status Calibration Status. uint8_t\n// autosaved 0=requires a MAV_CMD_DO_ACCEPT_MAG_CAL, 1=saved to parameters. uint8_t\n// fitness RMS milligauss residuals. float\n// ofs_x X offset. float\n// ofs_y Y offset. float\n// ofs_z Z offset. float\n// diag_x X diagonal (matrix 11). float\n// diag_y Y diagonal (matrix 22). float\n// diag_z Z diagonal (matrix 33). float\n// offdiag_x X off-diagonal (matrix 12 and 21). float\n// offdiag_y Y off-diagonal (matrix 13 and 31). float\n// offdiag_z Z off-diagonal (matrix 32 and 23). float\n// orientation_confidence Confidence in orientation (higher is better). float\n// old_orientation orientation before calibration. uint8_t\n// new_orientation orientation after calibration. uint8_t\n// scale_factor field radius correction factor float\nexport class MagCalReport extends MAVLinkMessage {\n\tpublic compass_id!: number;\n\tpublic cal_mask!: number;\n\tpublic cal_status!: MagCalStatus;\n\tpublic autosaved!: number;\n\tpublic fitness!: number;\n\tpublic ofs_x!: number;\n\tpublic ofs_y!: number;\n\tpublic ofs_z!: number;\n\tpublic diag_x!: number;\n\tpublic diag_y!: number;\n\tpublic diag_z!: number;\n\tpublic offdiag_x!: number;\n\tpublic offdiag_y!: number;\n\tpublic offdiag_z!: number;\n\tpublic orientation_confidence!: number;\n\tpublic old_orientation!: MavSensorOrientation;\n\tpublic new_orientation!: MavSensorOrientation;\n\tpublic scale_factor!: number;\n\tpublic _message_id: number = 192;\n\tpublic _message_name: string = 'MAG_CAL_REPORT';\n\tpublic _crc_extra: number = 36;\n\tpublic _message_fields: [string, string, boolean][] = [\n\t\t['fitness', 'float', false],\n\t\t['ofs_x', 'float', false],\n\t\t['ofs_y', 'float', false],\n\t\t['ofs_z', 'float', false],\n\t\t['diag_x', 'float', false],\n\t\t['diag_y', 'float', false],\n\t\t['diag_z', 'float', false],\n\t\t['offdiag_x', 'float', false],\n\t\t['offdiag_y', 'float', false],\n\t\t['offdiag_z', 'float', false],\n\t\t['compass_id', 'uint8_t', false],\n\t\t['cal_mask', 'uint8_t', false],\n\t\t['cal_status', 'uint8_t', false],\n\t\t['autosaved', 'uint8_t', false],\n\t\t['orientation_confidence', 'float', true],\n\t\t['old_orientation', 'uint8_t', true],\n\t\t['new_orientation', 'uint8_t', true],\n\t\t['scale_factor', 'float', true],\n\t];\n}","import {MAVLinkMessage} from '@ifrunistuttgart/node-mavlink';\nimport {readInt64LE, readUInt64LE} from '@ifrunistuttgart/node-mavlink';\n/*\nEFI status output\n*/\n// health EFI health status uint8_t\n// ecu_index ECU index float\n// rpm RPM float\n// fuel_consumed Fuel consumed float\n// fuel_flow Fuel flow rate float\n// engine_load Engine load float\n// throttle_position Throttle position float\n// spark_dwell_time Spark dwell time float\n// barometric_pressure Barometric pressure float\n// intake_manifold_pressure Intake manifold pressure( float\n// intake_manifold_temperature Intake manifold temperature float\n// cylinder_head_temperature Cylinder head temperature float\n// ignition_timing Ignition timing (Crank angle degrees) float\n// injection_time Injection time float\n// exhaust_gas_temperature Exhaust gas temperature float\n// throttle_out Output throttle float\n// pt_compensation Pressure/temperature compensation float\nexport class EfiStatus extends MAVLinkMessage {\n\tpublic health!: number;\n\tpublic ecu_index!: number;\n\tpublic rpm!: number;\n\tpublic fuel_consumed!: number;\n\tpublic fuel_flow!: number;\n\tpublic engine_load!: number;\n\tpublic throttle_position!: number;\n\tpublic spark_dwell_time!: number;\n\tpublic barometric_pressure!: number;\n\tpublic intake_manifold_pressure!: number;\n\tpublic intake_manifold_temperature!: number;\n\tpublic cylinder_head_temperature!: number;\n\tpublic ignition_timing!: number;\n\tpublic injection_time!: number;\n\tpublic exhaust_gas_temperature!: number;\n\tpublic throttle_out!: number;\n\tpublic pt_compensation!: number;\n\tpublic _message_id: number = 225;\n\tpublic _message_name: string = 'EFI_STATUS';\n\tpublic _crc_extra: number = 208;\n\tpublic _message_fields: [string, string, boolean][] = [\n\t\t['ecu_index', 'float', false],\n\t\t['rpm', 'float', false],\n\t\t['fuel_consumed', 'float', false],\n\t\t['fuel_flow', 'float', false],\n\t\t['engine_load', 'float', false],\n\t\t['throttle_position', 'float', false],\n\t\t['spark_dwell_time', 'float', false],\n\t\t['barometric_pressure', 'float', false],\n\t\t['intake_manifold_pressure', 'float', false],\n\t\t['intake_manifold_temperature', 'float', false],\n\t\t['cylinder_head_temperature', 'float', false],\n\t\t['ignition_timing', 'float', false],\n\t\t['injection_time', 'float', false],\n\t\t['exhaust_gas_temperature', 'float', false],\n\t\t['throttle_out', 'float', false],\n\t\t['pt_compensation', 'float', false],\n\t\t['health', 'uint8_t', false],\n\t];\n}","import {MAVLinkMessage} from '@ifrunistuttgart/node-mavlink';\nimport {readInt64LE, readUInt64LE} from '@ifrunistuttgart/node-mavlink';\nimport {EstimatorStatusFlags} from '../enums/estimator-status-flags';\n/*\nEstimator status message including flags, innovation test ratios and estimated accuracies. The flags message is an integer bitmask containing information on which EKF outputs are valid. See the ESTIMATOR_STATUS_FLAGS enum definition for further information. The innovation test ratios show the magnitude of the sensor innovation divided by the innovation check threshold. Under normal operation the innovation test ratios should be below 0.5 with occasional values up to 1.0. Values greater than 1.0 should be rare under normal operation and indicate that a measurement has been rejected by the filter. The user should be notified if an innovation test ratio greater than 1.0 is recorded. Notifications for values in the range between 0.5 and 1.0 should be optional and controllable by the user.\n*/\n// time_usec Timestamp (UNIX Epoch time or time since system boot). The receiving end can infer timestamp format (since 1.1.1970 or since system boot) by checking for the magnitude of the number. uint64_t\n// flags Bitmap indicating which EKF outputs are valid. uint16_t\n// vel_ratio Velocity innovation test ratio float\n// pos_horiz_ratio Horizontal position innovation test ratio float\n// pos_vert_ratio Vertical position innovation test ratio float\n// mag_ratio Magnetometer innovation test ratio float\n// hagl_ratio Height above terrain innovation test ratio float\n// tas_ratio True airspeed innovation test ratio float\n// pos_horiz_accuracy Horizontal position 1-STD accuracy relative to the EKF local origin float\n// pos_vert_accuracy Vertical position 1-STD accuracy relative to the EKF local origin float\nexport class EstimatorStatus extends MAVLinkMessage {\n\tpublic time_usec!: number;\n\tpublic flags!: EstimatorStatusFlags;\n\tpublic vel_ratio!: number;\n\tpublic pos_horiz_ratio!: number;\n\tpublic pos_vert_ratio!: number;\n\tpublic mag_ratio!: number;\n\tpublic hagl_ratio!: number;\n\tpublic tas_ratio!: number;\n\tpublic pos_horiz_accuracy!: number;\n\tpublic pos_vert_accuracy!: number;\n\tpublic _message_id: number = 230;\n\tpublic _message_name: string = 'ESTIMATOR_STATUS';\n\tpublic _crc_extra: number = 163;\n\tpublic _message_fields: [string, string, boolean][] = [\n\t\t['time_usec', 'uint64_t', false],\n\t\t['vel_ratio', 'float', false],\n\t\t['pos_horiz_ratio', 'float', false],\n\t\t['pos_vert_ratio', 'float', false],\n\t\t['mag_ratio', 'float', false],\n\t\t['hagl_ratio', 'float', false],\n\t\t['tas_ratio', 'float', false],\n\t\t['pos_horiz_accuracy', 'float', false],\n\t\t['pos_vert_accuracy', 'float', false],\n\t\t['flags', 'uint16_t', false],\n\t];\n}","import {MAVLinkMessage} from '@ifrunistuttgart/node-mavlink';\nimport {readInt64LE, readUInt64LE} from '@ifrunistuttgart/node-mavlink';\n/*\nWind covariance estimate from vehicle.\n*/\n// time_usec Timestamp (UNIX Epoch time or time since system boot). The receiving end can infer timestamp format (since 1.1.1970 or since system boot) by checking for the magnitude of the number. uint64_t\n// wind_x Wind in X (NED) direction float\n// wind_y Wind in Y (NED) direction float\n// wind_z Wind in Z (NED) direction float\n// var_horiz Variability of the wind in XY. RMS of a 1 Hz lowpassed wind estimate. float\n// var_vert Variability of the wind in Z. RMS of a 1 Hz lowpassed wind estimate. float\n// wind_alt Altitude (MSL) that this measurement was taken at float\n// horiz_accuracy Horizontal speed 1-STD accuracy float\n// vert_accuracy Vertical speed 1-STD accuracy float\nexport class WindCov extends MAVLinkMessage {\n\tpublic time_usec!: number;\n\tpublic wind_x!: number;\n\tpublic wind_y!: number;\n\tpublic wind_z!: number;\n\tpublic var_horiz!: number;\n\tpublic var_vert!: number;\n\tpublic wind_alt!: number;\n\tpublic horiz_accuracy!: number;\n\tpublic vert_accuracy!: number;\n\tpublic _message_id: number = 231;\n\tpublic _message_name: string = 'WIND_COV';\n\tpublic _crc_extra: number = 105;\n\tpublic _message_fields: [string, string, boolean][] = [\n\t\t['time_usec', 'uint64_t', false],\n\t\t['wind_x', 'float', false],\n\t\t['wind_y', 'float', false],\n\t\t['wind_z', 'float', false],\n\t\t['var_horiz', 'float', false],\n\t\t['var_vert', 'float', false],\n\t\t['wind_alt', 'float', false],\n\t\t['horiz_accuracy', 'float', false],\n\t\t['vert_accuracy', 'float', false],\n\t];\n}","import {MAVLinkMessage} from '@ifrunistuttgart/node-mavlink';\nimport {readInt64LE, readUInt64LE} from '@ifrunistuttgart/node-mavlink';\nimport {GpsInputIgnoreFlags} from '../enums/gps-input-ignore-flags';\n/*\nGPS sensor input message. This is a raw sensor value sent by the GPS. This is NOT the global position estimate of the system.\n*/\n// time_usec Timestamp (UNIX Epoch time or time since system boot). The receiving end can infer timestamp format (since 1.1.1970 or since system boot) by checking for the magnitude of the number. uint64_t\n// gps_id ID of the GPS for multiple GPS inputs uint8_t\n// ignore_flags Bitmap indicating which GPS input flags fields to ignore. All other fields must be provided. uint16_t\n// time_week_ms GPS time (from start of GPS week) uint32_t\n// time_week GPS week number uint16_t\n// fix_type 0-1: no fix, 2: 2D fix, 3: 3D fix. 4: 3D with DGPS. 5: 3D with RTK uint8_t\n// lat Latitude (WGS84) int32_t\n// lon Longitude (WGS84) int32_t\n// alt Altitude (MSL). Positive for up. float\n// hdop GPS HDOP horizontal dilution of position (unitless). If unknown, set to: UINT16_MAX float\n// vdop GPS VDOP vertical dilution of position (unitless). If unknown, set to: UINT16_MAX float\n// vn GPS velocity in north direction in earth-fixed NED frame float\n// ve GPS velocity in east direction in earth-fixed NED frame float\n// vd GPS velocity in down direction in earth-fixed NED frame float\n// speed_accuracy GPS speed accuracy float\n// horiz_accuracy GPS horizontal accuracy float\n// vert_accuracy GPS vertical accuracy float\n// satellites_visible Number of satellites visible. uint8_t\n// yaw Yaw of vehicle relative to Earth's North, zero means not available, use 36000 for north uint16_t\nexport class GpsInput extends MAVLinkMessage {\n\tpublic time_usec!: number;\n\tpublic gps_id!: number;\n\tpublic ignore_flags!: GpsInputIgnoreFlags;\n\tpublic time_week_ms!: number;\n\tpublic time_week!: number;\n\tpublic fix_type!: number;\n\tpublic lat!: number;\n\tpublic lon!: number;\n\tpublic alt!: number;\n\tpublic hdop!: number;\n\tpublic vdop!: number;\n\tpublic vn!: number;\n\tpublic ve!: number;\n\tpublic vd!: number;\n\tpublic speed_accuracy!: number;\n\tpublic horiz_accuracy!: number;\n\tpublic vert_accuracy!: number;\n\tpublic satellites_visible!: number;\n\tpublic yaw!: number;\n\tpublic _message_id: number = 232;\n\tpublic _message_name: string = 'GPS_INPUT';\n\tpublic _crc_extra: number = 151;\n\tpublic _message_fields: [string, string, boolean][] = [\n\t\t['time_usec', 'uint64_t', false],\n\t\t['time_week_ms', 'uint32_t', false],\n\t\t['lat', 'int32_t', false],\n\t\t['lon', 'int32_t', false],\n\t\t['alt', 'float', false],\n\t\t['hdop', 'float', false],\n\t\t['vdop', 'float', false],\n\t\t['vn', 'float', false],\n\t\t['ve', 'float', false],\n\t\t['vd', 'float', false],\n\t\t['speed_accuracy', 'float', false],\n\t\t['horiz_accuracy', 'float', false],\n\t\t['vert_accuracy', 'float', false],\n\t\t['ignore_flags', 'uint16_t', false],\n\t\t['time_week', 'uint16_t', false],\n\t\t['gps_id', 'uint8_t', false],\n\t\t['fix_type', 'uint8_t', false],\n\t\t['satellites_visible', 'uint8_t', false],\n\t\t['yaw', 'uint16_t', true],\n\t];\n}","import {MAVLinkMessage} from '@ifrunistuttgart/node-mavlink';\nimport {readInt64LE, readUInt64LE} from '@ifrunistuttgart/node-mavlink';\n/*\nRTCM message for injecting into the onboard GPS (used for DGPS)\n*/\n// flags LSB: 1 means message is fragmented, next 2 bits are the fragment ID, the remaining 5 bits are used for the sequence ID. Messages are only to be flushed to the GPS when the entire message has been reconstructed on the autopilot. The fragment ID specifies which order the fragments should be assembled into a buffer, while the sequence ID is used to detect a mismatch between different buffers. The buffer is considered fully reconstructed when either all 4 fragments are present, or all the fragments before the first fragment with a non full payload is received. This management is used to ensure that normal GPS operation doesn't corrupt RTCM data, and to recover from a unreliable transport delivery order. uint8_t\n// len data length uint8_t\n// data RTCM message (may be fragmented) uint8_t\nexport class GpsRtcmData extends MAVLinkMessage {\n\tpublic flags!: number;\n\tpublic len!: number;\n\tpublic data!: number;\n\tpublic _message_id: number = 233;\n\tpublic _message_name: string = 'GPS_RTCM_DATA';\n\tpublic _crc_extra: number = 35;\n\tpublic _message_fields: [string, string, boolean][] = [\n\t\t['flags', 'uint8_t', false],\n\t\t['len', 'uint8_t', false],\n\t\t['data', 'uint8_t', false],\n\t];\n}","import {MAVLinkMessage} from '@ifrunistuttgart/node-mavlink';\nimport {readInt64LE, readUInt64LE} from '@ifrunistuttgart/node-mavlink';\nimport {MavModeFlag} from '../enums/mav-mode-flag';\nimport {MavLandedState} from '../enums/mav-landed-state';\nimport {GpsFixType} from '../enums/gps-fix-type';\n/*\nMessage appropriate for high latency connections like Iridium\n*/\n// base_mode Bitmap of enabled system modes. uint8_t\n// custom_mode A bitfield for use for autopilot-specific flags. uint32_t\n// landed_state The landed state. Is set to MAV_LANDED_STATE_UNDEFINED if landed state is unknown. uint8_t\n// roll roll int16_t\n// pitch pitch int16_t\n// heading heading uint16_t\n// throttle throttle (percentage) int8_t\n// heading_sp heading setpoint int16_t\n// latitude Latitude int32_t\n// longitude Longitude int32_t\n// altitude_amsl Altitude above mean sea level int16_t\n// altitude_sp Altitude setpoint relative to the home position int16_t\n// airspeed airspeed uint8_t\n// airspeed_sp airspeed setpoint uint8_t\n// groundspeed groundspeed uint8_t\n// climb_rate climb rate int8_t\n// gps_nsat Number of satellites visible. If unknown, set to 255 uint8_t\n// gps_fix_type GPS Fix type. uint8_t\n// battery_remaining Remaining battery (percentage) uint8_t\n// temperature Autopilot temperature (degrees C) int8_t\n// temperature_air Air temperature (degrees C) from airspeed sensor int8_t\n// failsafe failsafe (each bit represents a failsafe where 0=ok, 1=failsafe active (bit0:RC, bit1:batt, bit2:GPS, bit3:GCS, bit4:fence) uint8_t\n// wp_num current waypoint number uint8_t\n// wp_distance distance to target uint16_t\nexport class HighLatency extends MAVLinkMessage {\n\tpublic base_mode!: MavModeFlag;\n\tpublic custom_mode!: number;\n\tpublic landed_state!: MavLandedState;\n\tpublic roll!: number;\n\tpublic pitch!: number;\n\tpublic heading!: number;\n\tpublic throttle!: number;\n\tpublic heading_sp!: number;\n\tpublic latitude!: number;\n\tpublic longitude!: number;\n\tpublic altitude_amsl!: number;\n\tpublic altitude_sp!: number;\n\tpublic airspeed!: number;\n\tpublic airspeed_sp!: number;\n\tpublic groundspeed!: number;\n\tpublic climb_rate!: number;\n\tpublic gps_nsat!: number;\n\tpublic gps_fix_type!: GpsFixType;\n\tpublic battery_remaining!: number;\n\tpublic temperature!: number;\n\tpublic temperature_air!: number;\n\tpublic failsafe!: number;\n\tpublic wp_num!: number;\n\tpublic wp_distance!: number;\n\tpublic _message_id: number = 234;\n\tpublic _message_name: string = 'HIGH_LATENCY';\n\tpublic _crc_extra: number = 150;\n\tpublic _message_fields: [string, string, boolean][] = [\n\t\t['custom_mode', 'uint32_t', false],\n\t\t['latitude', 'int32_t', false],\n\t\t['longitude', 'int32_t', false],\n\t\t['roll', 'int16_t', false],\n\t\t['pitch', 'int16_t', false],\n\t\t['heading', 'uint16_t', false],\n\t\t['heading_sp', 'int16_t', false],\n\t\t['altitude_amsl', 'int16_t', false],\n\t\t['altitude_sp', 'int16_t', false],\n\t\t['wp_distance', 'uint16_t', false],\n\t\t['base_mode', 'uint8_t', false],\n\t\t['landed_state', 'uint8_t', false],\n\t\t['throttle', 'int8_t', false],\n\t\t['airspeed', 'uint8_t', false],\n\t\t['airspeed_sp', 'uint8_t', false],\n\t\t['groundspeed', 'uint8_t', false],\n\t\t['climb_rate', 'int8_t', false],\n\t\t['gps_nsat', 'uint8_t', false],\n\t\t['gps_fix_type', 'uint8_t', false],\n\t\t['battery_remaining', 'uint8_t', false],\n\t\t['temperature', 'int8_t', false],\n\t\t['temperature_air', 'int8_t', false],\n\t\t['failsafe', 'uint8_t', false],\n\t\t['wp_num', 'uint8_t', false],\n\t];\n}","import {MAVLinkMessage} from '@ifrunistuttgart/node-mavlink';\nimport {readInt64LE, readUInt64LE} from '@ifrunistuttgart/node-mavlink';\nimport {MavType} from '../enums/mav-type';\nimport {MavAutopilot} from '../enums/mav-autopilot';\nimport {HlFailureFlag} from '../enums/hl-failure-flag';\n/*\nMessage appropriate for high latency connections like Iridium (version 2)\n*/\n// timestamp Timestamp (milliseconds since boot or Unix epoch) uint32_t\n// type Type of the MAV (quadrotor, helicopter, etc.) uint8_t\n// autopilot Autopilot type / class. Use MAV_AUTOPILOT_INVALID for components that are not flight controllers. uint8_t\n// custom_mode A bitfield for use for autopilot-specific flags (2 byte version). uint16_t\n// latitude Latitude int32_t\n// longitude Longitude int32_t\n// altitude Altitude above mean sea level int16_t\n// target_altitude Altitude setpoint int16_t\n// heading Heading uint8_t\n// target_heading Heading setpoint uint8_t\n// target_distance Distance to target waypoint or position uint16_t\n// throttle Throttle uint8_t\n// airspeed Airspeed uint8_t\n// airspeed_sp Airspeed setpoint uint8_t\n// groundspeed Groundspeed uint8_t\n// windspeed Windspeed uint8_t\n// wind_heading Wind heading uint8_t\n// eph Maximum error horizontal position since last message uint8_t\n// epv Maximum error vertical position since last message uint8_t\n// temperature_air Air temperature from airspeed sensor int8_t\n// climb_rate Maximum climb rate magnitude since last message int8_t\n// battery Battery level (-1 if field not provided). int8_t\n// wp_num Current waypoint number uint16_t\n// failure_flags Bitmap of failure flags. uint16_t\n// custom0 Field for custom payload. int8_t\n// custom1 Field for custom payload. int8_t\n// custom2 Field for custom payload. int8_t\nexport class HighLatency2 extends MAVLinkMessage {\n\tpublic timestamp!: number;\n\tpublic type!: MavType;\n\tpublic autopilot!: MavAutopilot;\n\tpublic custom_mode!: number;\n\tpublic latitude!: number;\n\tpublic longitude!: number;\n\tpublic altitude!: number;\n\tpublic target_altitude!: number;\n\tpublic heading!: number;\n\tpublic target_heading!: number;\n\tpublic target_distance!: number;\n\tpublic throttle!: number;\n\tpublic airspeed!: number;\n\tpublic airspeed_sp!: number;\n\tpublic groundspeed!: number;\n\tpublic windspeed!: number;\n\tpublic wind_heading!: number;\n\tpublic eph!: number;\n\tpublic epv!: number;\n\tpublic temperature_air!: number;\n\tpublic climb_rate!: number;\n\tpublic battery!: number;\n\tpublic wp_num!: number;\n\tpublic failure_flags!: HlFailureFlag;\n\tpublic custom0!: number;\n\tpublic custom1!: number;\n\tpublic custom2!: number;\n\tpublic _message_id: number = 235;\n\tpublic _message_name: string = 'HIGH_LATENCY2';\n\tpublic _crc_extra: number = 179;\n\tpublic _message_fields: [string, string, boolean][] = [\n\t\t['timestamp', 'uint32_t', false],\n\t\t['latitude', 'int32_t', false],\n\t\t['longitude', 'int32_t', false],\n\t\t['custom_mode', 'uint16_t', false],\n\t\t['altitude', 'int16_t', false],\n\t\t['target_altitude', 'int16_t', false],\n\t\t['target_distance', 'uint16_t', false],\n\t\t['wp_num', 'uint16_t', false],\n\t\t['failure_flags', 'uint16_t', false],\n\t\t['type', 'uint8_t', false],\n\t\t['autopilot', 'uint8_t', false],\n\t\t['heading', 'uint8_t', false],\n\t\t['target_heading', 'uint8_t', false],\n\t\t['throttle', 'uint8_t', false],\n\t\t['airspeed', 'uint8_t', false],\n\t\t['airspeed_sp', 'uint8_t', false],\n\t\t['groundspeed', 'uint8_t', false],\n\t\t['windspeed', 'uint8_t', false],\n\t\t['wind_heading', 'uint8_t', false],\n\t\t['eph', 'uint8_t', false],\n\t\t['epv', 'uint8_t', false],\n\t\t['temperature_air', 'int8_t', false],\n\t\t['climb_rate', 'int8_t', false],\n\t\t['battery', 'int8_t', false],\n\t\t['custom0', 'int8_t', false],\n\t\t['custom1', 'int8_t', false],\n\t\t['custom2', 'int8_t', false],\n\t];\n}","import {MAVLinkMessage} from '@ifrunistuttgart/node-mavlink';\nimport {readInt64LE, readUInt64LE} from '@ifrunistuttgart/node-mavlink';\n/*\nVibration levels and accelerometer clipping\n*/\n// time_usec Timestamp (UNIX Epoch time or time since system boot). The receiving end can infer timestamp format (since 1.1.1970 or since system boot) by checking for the magnitude of the number. uint64_t\n// vibration_x Vibration levels on X-axis float\n// vibration_y Vibration levels on Y-axis float\n// vibration_z Vibration levels on Z-axis float\n// clipping_0 first accelerometer clipping count uint32_t\n// clipping_1 second accelerometer clipping count uint32_t\n// clipping_2 third accelerometer clipping count uint32_t\nexport class Vibration extends MAVLinkMessage {\n\tpublic time_usec!: number;\n\tpublic vibration_x!: number;\n\tpublic vibration_y!: number;\n\tpublic vibration_z!: number;\n\tpublic clipping_0!: number;\n\tpublic clipping_1!: number;\n\tpublic clipping_2!: number;\n\tpublic _message_id: number = 241;\n\tpublic _message_name: string = 'VIBRATION';\n\tpublic _crc_extra: number = 90;\n\tpublic _message_fields: [string, string, boolean][] = [\n\t\t['time_usec', 'uint64_t', false],\n\t\t['vibration_x', 'float', false],\n\t\t['vibration_y', 'float', false],\n\t\t['vibration_z', 'float', false],\n\t\t['clipping_0', 'uint32_t', false],\n\t\t['clipping_1', 'uint32_t', false],\n\t\t['clipping_2', 'uint32_t', false],\n\t];\n}","import {MAVLinkMessage} from '@ifrunistuttgart/node-mavlink';\nimport {readInt64LE, readUInt64LE} from '@ifrunistuttgart/node-mavlink';\n/*\nThis message can be requested by sending the MAV_CMD_GET_HOME_POSITION command. The position the system will return to and land on. The position is set automatically by the system during the takeoff in case it was not explicitly set by the operator before or after. The global and local positions encode the position in the respective coordinate frames, while the q parameter encodes the orientation of the surface. Under normal conditions it describes the heading and terrain slope, which can be used by the aircraft to adjust the approach. The approach 3D vector describes the point to which the system should fly in normal flight mode and then perform a landing sequence along the vector.\n*/\n// latitude Latitude (WGS84) int32_t\n// longitude Longitude (WGS84) int32_t\n// altitude Altitude (MSL). Positive for up. int32_t\n// x Local X position of this position in the local coordinate frame float\n// y Local Y position of this position in the local coordinate frame float\n// z Local Z position of this position in the local coordinate frame float\n// q World to surface normal and heading transformation of the takeoff position. Used to indicate the heading and slope of the ground float\n// approach_x Local X position of the end of the approach vector. Multicopters should set this position based on their takeoff path. Grass-landing fixed wing aircraft should set it the same way as multicopters. Runway-landing fixed wing aircraft should set it to the opposite direction of the takeoff, assuming the takeoff happened from the threshold / touchdown zone. float\n// approach_y Local Y position of the end of the approach vector. Multicopters should set this position based on their takeoff path. Grass-landing fixed wing aircraft should set it the same way as multicopters. Runway-landing fixed wing aircraft should set it to the opposite direction of the takeoff, assuming the takeoff happened from the threshold / touchdown zone. float\n// approach_z Local Z position of the end of the approach vector. Multicopters should set this position based on their takeoff path. Grass-landing fixed wing aircraft should set it the same way as multicopters. Runway-landing fixed wing aircraft should set it to the opposite direction of the takeoff, assuming the takeoff happened from the threshold / touchdown zone. float\n// time_usec Timestamp (UNIX Epoch time or time since system boot). The receiving end can infer timestamp format (since 1.1.1970 or since system boot) by checking for the magnitude of the number. uint64_t\nexport class HomePosition extends MAVLinkMessage {\n\tpublic latitude!: number;\n\tpublic longitude!: number;\n\tpublic altitude!: number;\n\tpublic x!: number;\n\tpublic y!: number;\n\tpublic z!: number;\n\tpublic q!: number;\n\tpublic approach_x!: number;\n\tpublic approach_y!: number;\n\tpublic approach_z!: number;\n\tpublic time_usec!: number;\n\tpublic _message_id: number = 242;\n\tpublic _message_name: string = 'HOME_POSITION';\n\tpublic _crc_extra: number = 104;\n\tpublic _message_fields: [string, string, boolean][] = [\n\t\t['latitude', 'int32_t', false],\n\t\t['longitude', 'int32_t', false],\n\t\t['altitude', 'int32_t', false],\n\t\t['x', 'float', false],\n\t\t['y', 'float', false],\n\t\t['z', 'float', false],\n\t\t['q', 'float', false],\n\t\t['approach_x', 'float', false],\n\t\t['approach_y', 'float', false],\n\t\t['approach_z', 'float', false],\n\t\t['time_usec', 'uint64_t', true],\n\t];\n}","import {MAVLinkMessage} from '@ifrunistuttgart/node-mavlink';\nimport {readInt64LE, readUInt64LE} from '@ifrunistuttgart/node-mavlink';\n/*\nThe position the system will return to and land on. The position is set automatically by the system during the takeoff in case it was not explicitly set by the operator before or after. The global and local positions encode the position in the respective coordinate frames, while the q parameter encodes the orientation of the surface. Under normal conditions it describes the heading and terrain slope, which can be used by the aircraft to adjust the approach. The approach 3D vector describes the point to which the system should fly in normal flight mode and then perform a landing sequence along the vector.\n*/\n// target_system System ID. uint8_t\n// latitude Latitude (WGS84) int32_t\n// longitude Longitude (WGS84) int32_t\n// altitude Altitude (MSL). Positive for up. int32_t\n// x Local X position of this position in the local coordinate frame float\n// y Local Y position of this position in the local coordinate frame float\n// z Local Z position of this position in the local coordinate frame float\n// q World to surface normal and heading transformation of the takeoff position. Used to indicate the heading and slope of the ground float\n// approach_x Local X position of the end of the approach vector. Multicopters should set this position based on their takeoff path. Grass-landing fixed wing aircraft should set it the same way as multicopters. Runway-landing fixed wing aircraft should set it to the opposite direction of the takeoff, assuming the takeoff happened from the threshold / touchdown zone. float\n// approach_y Local Y position of the end of the approach vector. Multicopters should set this position based on their takeoff path. Grass-landing fixed wing aircraft should set it the same way as multicopters. Runway-landing fixed wing aircraft should set it to the opposite direction of the takeoff, assuming the takeoff happened from the threshold / touchdown zone. float\n// approach_z Local Z position of the end of the approach vector. Multicopters should set this position based on their takeoff path. Grass-landing fixed wing aircraft should set it the same way as multicopters. Runway-landing fixed wing aircraft should set it to the opposite direction of the takeoff, assuming the takeoff happened from the threshold / touchdown zone. float\n// time_usec Timestamp (UNIX Epoch time or time since system boot). The receiving end can infer timestamp format (since 1.1.1970 or since system boot) by checking for the magnitude of the number. uint64_t\nexport class SetHomePosition extends MAVLinkMessage {\n\tpublic target_system!: number;\n\tpublic latitude!: number;\n\tpublic longitude!: number;\n\tpublic altitude!: number;\n\tpublic x!: number;\n\tpublic y!: number;\n\tpublic z!: number;\n\tpublic q!: number;\n\tpublic approach_x!: number;\n\tpublic approach_y!: number;\n\tpublic approach_z!: number;\n\tpublic time_usec!: number;\n\tpublic _message_id: number = 243;\n\tpublic _message_name: string = 'SET_HOME_POSITION';\n\tpublic _crc_extra: number = 85;\n\tpublic _message_fields: [string, string, boolean][] = [\n\t\t['latitude', 'int32_t', false],\n\t\t['longitude', 'int32_t', false],\n\t\t['altitude', 'int32_t', false],\n\t\t['x', 'float', false],\n\t\t['y', 'float', false],\n\t\t['z', 'float', false],\n\t\t['q', 'float', false],\n\t\t['approach_x', 'float', false],\n\t\t['approach_y', 'float', false],\n\t\t['approach_z', 'float', false],\n\t\t['target_system', 'uint8_t', false],\n\t\t['time_usec', 'uint64_t', true],\n\t];\n}","import {MAVLinkMessage} from '@ifrunistuttgart/node-mavlink';\nimport {readInt64LE, readUInt64LE} from '@ifrunistuttgart/node-mavlink';\n/*\nThe interval between messages for a particular MAVLink message ID. This message is the response to the MAV_CMD_GET_MESSAGE_INTERVAL command. This interface replaces DATA_STREAM.\n*/\n// message_id The ID of the requested MAVLink message. v1.0 is limited to 254 messages. uint16_t\n// interval_us The interval between two messages. A value of -1 indicates this stream is disabled, 0 indicates it is not available, > 0 indicates the interval at which it is sent. int32_t\nexport class MessageInterval extends MAVLinkMessage {\n\tpublic message_id!: number;\n\tpublic interval_us!: number;\n\tpublic _message_id: number = 244;\n\tpublic _message_name: string = 'MESSAGE_INTERVAL';\n\tpublic _crc_extra: number = 95;\n\tpublic _message_fields: [string, string, boolean][] = [\n\t\t['interval_us', 'int32_t', false],\n\t\t['message_id', 'uint16_t', false],\n\t];\n}","import {MAVLinkMessage} from '@ifrunistuttgart/node-mavlink';\nimport {readInt64LE, readUInt64LE} from '@ifrunistuttgart/node-mavlink';\nimport {MavVtolState} from '../enums/mav-vtol-state';\nimport {MavLandedState} from '../enums/mav-landed-state';\n/*\nProvides state for additional features\n*/\n// vtol_state The VTOL state if applicable. Is set to MAV_VTOL_STATE_UNDEFINED if UAV is not in VTOL configuration. uint8_t\n// landed_state The landed state. Is set to MAV_LANDED_STATE_UNDEFINED if landed state is unknown. uint8_t\nexport class ExtendedSysState extends MAVLinkMessage {\n\tpublic vtol_state!: MavVtolState;\n\tpublic landed_state!: MavLandedState;\n\tpublic _message_id: number = 245;\n\tpublic _message_name: string = 'EXTENDED_SYS_STATE';\n\tpublic _crc_extra: number = 130;\n\tpublic _message_fields: [string, string, boolean][] = [\n\t\t['vtol_state', 'uint8_t', false],\n\t\t['landed_state', 'uint8_t', false],\n\t];\n}","import {MAVLinkMessage} from '@ifrunistuttgart/node-mavlink';\nimport {readInt64LE, readUInt64LE} from '@ifrunistuttgart/node-mavlink';\nimport {AdsbAltitudeType} from '../enums/adsb-altitude-type';\nimport {AdsbEmitterType} from '../enums/adsb-emitter-type';\nimport {AdsbFlags} from '../enums/adsb-flags';\n/*\nThe location and information of an ADSB vehicle\n*/\n// ICAO_address ICAO address uint32_t\n// lat Latitude int32_t\n// lon Longitude int32_t\n// altitude_type ADSB altitude type. uint8_t\n// altitude Altitude(ASL) int32_t\n// heading Course over ground uint16_t\n// hor_velocity The horizontal velocity uint16_t\n// ver_velocity The vertical velocity. Positive is up int16_t\n// callsign The callsign, 8+null char\n// emitter_type ADSB emitter type. uint8_t\n// tslc Time since last communication in seconds uint8_t\n// flags Bitmap to indicate various statuses including valid data fields uint16_t\n// squawk Squawk code uint16_t\nexport class AdsbVehicle extends MAVLinkMessage {\n\tpublic ICAO_address!: number;\n\tpublic lat!: number;\n\tpublic lon!: number;\n\tpublic altitude_type!: AdsbAltitudeType;\n\tpublic altitude!: number;\n\tpublic heading!: number;\n\tpublic hor_velocity!: number;\n\tpublic ver_velocity!: number;\n\tpublic callsign!: string;\n\tpublic emitter_type!: AdsbEmitterType;\n\tpublic tslc!: number;\n\tpublic flags!: AdsbFlags;\n\tpublic squawk!: number;\n\tpublic _message_id: number = 246;\n\tpublic _message_name: string = 'ADSB_VEHICLE';\n\tpublic _crc_extra: number = 184;\n\tpublic _message_fields: [string, string, boolean][] = [\n\t\t['ICAO_address', 'uint32_t', false],\n\t\t['lat', 'int32_t', false],\n\t\t['lon', 'int32_t', false],\n\t\t['altitude', 'int32_t', false],\n\t\t['heading', 'uint16_t', false],\n\t\t['hor_velocity', 'uint16_t', false],\n\t\t['ver_velocity', 'int16_t', false],\n\t\t['flags', 'uint16_t', false],\n\t\t['squawk', 'uint16_t', false],\n\t\t['altitude_type', 'uint8_t', false],\n\t\t['callsign', 'char', false],\n\t\t['emitter_type', 'uint8_t', false],\n\t\t['tslc', 'uint8_t', false],\n\t];\n}","import {MAVLinkMessage} from '@ifrunistuttgart/node-mavlink';\nimport {readInt64LE, readUInt64LE} from '@ifrunistuttgart/node-mavlink';\nimport {MavCollisionSrc} from '../enums/mav-collision-src';\nimport {MavCollisionAction} from '../enums/mav-collision-action';\nimport {MavCollisionThreatLevel} from '../enums/mav-collision-threat-level';\n/*\nInformation about a potential collision\n*/\n// src Collision data source uint8_t\n// id Unique identifier, domain based on src field uint32_t\n// action Action that is being taken to avoid this collision uint8_t\n// threat_level How concerned the aircraft is about this collision uint8_t\n// time_to_minimum_delta Estimated time until collision occurs float\n// altitude_minimum_delta Closest vertical distance between vehicle and object float\n// horizontal_minimum_delta Closest horizontal distance between vehicle and object float\nexport class Collision extends MAVLinkMessage {\n\tpublic src!: MavCollisionSrc;\n\tpublic id!: number;\n\tpublic action!: MavCollisionAction;\n\tpublic threat_level!: MavCollisionThreatLevel;\n\tpublic time_to_minimum_delta!: number;\n\tpublic altitude_minimum_delta!: number;\n\tpublic horizontal_minimum_delta!: number;\n\tpublic _message_id: number = 247;\n\tpublic _message_name: string = 'COLLISION';\n\tpublic _crc_extra: number = 81;\n\tpublic _message_fields: [string, string, boolean][] = [\n\t\t['id', 'uint32_t', false],\n\t\t['time_to_minimum_delta', 'float', false],\n\t\t['altitude_minimum_delta', 'float', false],\n\t\t['horizontal_minimum_delta', 'float', false],\n\t\t['src', 'uint8_t', false],\n\t\t['action', 'uint8_t', false],\n\t\t['threat_level', 'uint8_t', false],\n\t];\n}","import {MAVLinkMessage} from '@ifrunistuttgart/node-mavlink';\nimport {readInt64LE, readUInt64LE} from '@ifrunistuttgart/node-mavlink';\n/*\nMessage implementing parts of the V2 payload specs in V1 frames for transitional support.\n*/\n// target_network Network ID (0 for broadcast) uint8_t\n// target_system System ID (0 for broadcast) uint8_t\n// target_component Component ID (0 for broadcast) uint8_t\n// message_type A code that identifies the software component that understands this message (analogous to USB device classes or mime type strings). If this code is less than 32768, it is considered a 'registered' protocol extension and the corresponding entry should be added to https://github.com/mavlink/mavlink/definition_files/extension_message_ids.xml. Software creators can register blocks of message IDs as needed (useful for GCS specific metadata, etc...). Message_types greater than 32767 are considered local experiments and should not be checked in to any widely distributed codebase. uint16_t\n// payload Variable length payload. The length must be encoded in the payload as part of the message_type protocol, e.g. by including the length as payload data, or by terminating the payload data with a non-zero marker. This is required in order to reconstruct zero-terminated payloads that are (or otherwise would be) trimmed by MAVLink 2 empty-byte truncation. The entire content of the payload block is opaque unless you understand the encoding message_type. The particular encoding used can be extension specific and might not always be documented as part of the MAVLink specification. uint8_t\nexport class V2Extension extends MAVLinkMessage {\n\tpublic target_network!: number;\n\tpublic target_system!: number;\n\tpublic target_component!: number;\n\tpublic message_type!: number;\n\tpublic payload!: number;\n\tpublic _message_id: number = 248;\n\tpublic _message_name: string = 'V2_EXTENSION';\n\tpublic _crc_extra: number = 8;\n\tpublic _message_fields: [string, string, boolean][] = [\n\t\t['message_type', 'uint16_t', false],\n\t\t['target_network', 'uint8_t', false],\n\t\t['target_system', 'uint8_t', false],\n\t\t['target_component', 'uint8_t', false],\n\t\t['payload', 'uint8_t', false],\n\t];\n}","import {MAVLinkMessage} from '@ifrunistuttgart/node-mavlink';\nimport {readInt64LE, readUInt64LE} from '@ifrunistuttgart/node-mavlink';\n/*\nSend raw controller memory. The use of this message is discouraged for normal packets, but a quite efficient way for testing new messages and getting experimental debug output.\n*/\n// address Starting address of the debug variables uint16_t\n// ver Version code of the type variable. 0=unknown, type ignored and assumed int16_t. 1=as below uint8_t\n// type Type code of the memory variables. for ver = 1: 0=16 x int16_t, 1=16 x uint16_t, 2=16 x Q15, 3=16 x 1Q14 uint8_t\n// value Memory contents at specified address int8_t\nexport class MemoryVect extends MAVLinkMessage {\n\tpublic address!: number;\n\tpublic ver!: number;\n\tpublic type!: number;\n\tpublic value!: number;\n\tpublic _message_id: number = 249;\n\tpublic _message_name: string = 'MEMORY_VECT';\n\tpublic _crc_extra: number = 204;\n\tpublic _message_fields: [string, string, boolean][] = [\n\t\t['address', 'uint16_t', false],\n\t\t['ver', 'uint8_t', false],\n\t\t['type', 'uint8_t', false],\n\t\t['value', 'int8_t', false],\n\t];\n}","import {MAVLinkMessage} from '@ifrunistuttgart/node-mavlink';\nimport {readInt64LE, readUInt64LE} from '@ifrunistuttgart/node-mavlink';\n/*\nTo debug something using a named 3D vector.\n*/\n// name Name char\n// time_usec Timestamp (UNIX Epoch time or time since system boot). The receiving end can infer timestamp format (since 1.1.1970 or since system boot) by checking for the magnitude of the number. uint64_t\n// x x float\n// y y float\n// z z float\nexport class DebugVect extends MAVLinkMessage {\n\tpublic name!: string;\n\tpublic time_usec!: number;\n\tpublic x!: number;\n\tpublic y!: number;\n\tpublic z!: number;\n\tpublic _message_id: number = 250;\n\tpublic _message_name: string = 'DEBUG_VECT';\n\tpublic _crc_extra: number = 49;\n\tpublic _message_fields: [string, string, boolean][] = [\n\t\t['time_usec', 'uint64_t', false],\n\t\t['x', 'float', false],\n\t\t['y', 'float', false],\n\t\t['z', 'float', false],\n\t\t['name', 'char', false],\n\t];\n}","import {MAVLinkMessage} from '@ifrunistuttgart/node-mavlink';\nimport {readInt64LE, readUInt64LE} from '@ifrunistuttgart/node-mavlink';\n/*\nSend a key-value pair as float. The use of this message is discouraged for normal packets, but a quite efficient way for testing new messages and getting experimental debug output.\n*/\n// time_boot_ms Timestamp (time since system boot). uint32_t\n// name Name of the debug variable char\n// value Floating point value float\nexport class NamedValueFloat extends MAVLinkMessage {\n\tpublic time_boot_ms!: number;\n\tpublic name!: string;\n\tpublic value!: number;\n\tpublic _message_id: number = 251;\n\tpublic _message_name: string = 'NAMED_VALUE_FLOAT';\n\tpublic _crc_extra: number = 170;\n\tpublic _message_fields: [string, string, boolean][] = [\n\t\t['time_boot_ms', 'uint32_t', false],\n\t\t['value', 'float', false],\n\t\t['name', 'char', false],\n\t];\n}","import {MAVLinkMessage} from '@ifrunistuttgart/node-mavlink';\nimport {readInt64LE, readUInt64LE} from '@ifrunistuttgart/node-mavlink';\n/*\nSend a key-value pair as integer. The use of this message is discouraged for normal packets, but a quite efficient way for testing new messages and getting experimental debug output.\n*/\n// time_boot_ms Timestamp (time since system boot). uint32_t\n// name Name of the debug variable char\n// value Signed integer value int32_t\nexport class NamedValueInt extends MAVLinkMessage {\n\tpublic time_boot_ms!: number;\n\tpublic name!: string;\n\tpublic value!: number;\n\tpublic _message_id: number = 252;\n\tpublic _message_name: string = 'NAMED_VALUE_INT';\n\tpublic _crc_extra: number = 44;\n\tpublic _message_fields: [string, string, boolean][] = [\n\t\t['time_boot_ms', 'uint32_t', false],\n\t\t['value', 'int32_t', false],\n\t\t['name', 'char', false],\n\t];\n}","import {MAVLinkMessage} from '@ifrunistuttgart/node-mavlink';\nimport {readInt64LE, readUInt64LE} from '@ifrunistuttgart/node-mavlink';\nimport {MavSeverity} from '../enums/mav-severity';\n/*\nStatus text message. These messages are printed in yellow in the COMM console of QGroundControl. WARNING: They consume quite some bandwidth, so use only for important status and error messages. If implemented wisely, these messages are buffered on the MCU and sent only at a limited rate (e.g. 10 Hz).\n*/\n// severity Severity of status. Relies on the definitions within RFC-5424. uint8_t\n// text Status text message, without null termination character char\n// id Unique (opaque) identifier for this statustext message. May be used to reassemble a logical long-statustext message from a sequence of chunks. A value of zero indicates this is the only chunk in the sequence and the message can be emitted immediately. uint16_t\n// chunk_seq This chunk's sequence number; indexing is from zero. Any null character in the text field is taken to mean this was the last chunk. uint8_t\nexport class Statustext extends MAVLinkMessage {\n\tpublic severity!: MavSeverity;\n\tpublic text!: string;\n\tpublic id!: number;\n\tpublic chunk_seq!: number;\n\tpublic _message_id: number = 253;\n\tpublic _message_name: string = 'STATUSTEXT';\n\tpublic _crc_extra: number = 83;\n\tpublic _message_fields: [string, string, boolean][] = [\n\t\t['severity', 'uint8_t', false],\n\t\t['text', 'char', false],\n\t\t['id', 'uint16_t', true],\n\t\t['chunk_seq', 'uint8_t', true],\n\t];\n}","import {MAVLinkMessage} from '@ifrunistuttgart/node-mavlink';\nimport {readInt64LE, readUInt64LE} from '@ifrunistuttgart/node-mavlink';\n/*\nSend a debug value. The index is used to discriminate between values. These values show up in the plot of QGroundControl as DEBUG N.\n*/\n// time_boot_ms Timestamp (time since system boot). uint32_t\n// ind index of debug variable uint8_t\n// value DEBUG value float\nexport class Debug extends MAVLinkMessage {\n\tpublic time_boot_ms!: number;\n\tpublic ind!: number;\n\tpublic value!: number;\n\tpublic _message_id: number = 254;\n\tpublic _message_name: string = 'DEBUG';\n\tpublic _crc_extra: number = 46;\n\tpublic _message_fields: [string, string, boolean][] = [\n\t\t['time_boot_ms', 'uint32_t', false],\n\t\t['value', 'float', false],\n\t\t['ind', 'uint8_t', false],\n\t];\n}","import {MAVLinkMessage} from '@ifrunistuttgart/node-mavlink';\nimport {readInt64LE, readUInt64LE} from '@ifrunistuttgart/node-mavlink';\n/*\nSetup a MAVLink2 signing key. If called with secret_key of all zero and zero initial_timestamp will disable signing\n*/\n// target_system system id of the target uint8_t\n// target_component component ID of the target uint8_t\n// secret_key signing key uint8_t\n// initial_timestamp initial timestamp uint64_t\nexport class SetupSigning extends MAVLinkMessage {\n\tpublic target_system!: number;\n\tpublic target_component!: number;\n\tpublic secret_key!: number;\n\tpublic initial_timestamp!: number;\n\tpublic _message_id: number = 256;\n\tpublic _message_name: string = 'SETUP_SIGNING';\n\tpublic _crc_extra: number = 71;\n\tpublic _message_fields: [string, string, boolean][] = [\n\t\t['initial_timestamp', 'uint64_t', false],\n\t\t['target_system', 'uint8_t', false],\n\t\t['target_component', 'uint8_t', false],\n\t\t['secret_key', 'uint8_t', false],\n\t];\n}","import {MAVLinkMessage} from '@ifrunistuttgart/node-mavlink';\nimport {readInt64LE, readUInt64LE} from '@ifrunistuttgart/node-mavlink';\n/*\nReport button state change.\n*/\n// time_boot_ms Timestamp (time since system boot). uint32_t\n// last_change_ms Time of last change of button state. uint32_t\n// state Bitmap for state of buttons. uint8_t\nexport class ButtonChange extends MAVLinkMessage {\n\tpublic time_boot_ms!: number;\n\tpublic last_change_ms!: number;\n\tpublic state!: number;\n\tpublic _message_id: number = 257;\n\tpublic _message_name: string = 'BUTTON_CHANGE';\n\tpublic _crc_extra: number = 131;\n\tpublic _message_fields: [string, string, boolean][] = [\n\t\t['time_boot_ms', 'uint32_t', false],\n\t\t['last_change_ms', 'uint32_t', false],\n\t\t['state', 'uint8_t', false],\n\t];\n}","import {MAVLinkMessage} from '@ifrunistuttgart/node-mavlink';\nimport {readInt64LE, readUInt64LE} from '@ifrunistuttgart/node-mavlink';\n/*\nControl vehicle tone generation (buzzer).\n*/\n// target_system System ID uint8_t\n// target_component Component ID uint8_t\n// tune tune in board specific format char\n// tune2 tune extension (appended to tune) char\nexport class PlayTune extends MAVLinkMessage {\n\tpublic target_system!: number;\n\tpublic target_component!: number;\n\tpublic tune!: string;\n\tpublic tune2!: string;\n\tpublic _message_id: number = 258;\n\tpublic _message_name: string = 'PLAY_TUNE';\n\tpublic _crc_extra: number = 187;\n\tpublic _message_fields: [string, string, boolean][] = [\n\t\t['target_system', 'uint8_t', false],\n\t\t['target_component', 'uint8_t', false],\n\t\t['tune', 'char', false],\n\t\t['tune2', 'char', true],\n\t];\n}","import {MAVLinkMessage} from '@ifrunistuttgart/node-mavlink';\nimport {readInt64LE, readUInt64LE} from '@ifrunistuttgart/node-mavlink';\nimport {CameraCapFlags} from '../enums/camera-cap-flags';\n/*\nInformation about a camera. Can be requested with a MAV_CMD_REQUEST_MESSAGE command.\n*/\n// time_boot_ms Timestamp (time since system boot). uint32_t\n// vendor_name Name of the camera vendor uint8_t\n// model_name Name of the camera model uint8_t\n// firmware_version Version of the camera firmware, encoded as: (Dev & 0xff) << 24 | (Patch & 0xff) << 16 | (Minor & 0xff) << 8 | (Major & 0xff) uint32_t\n// focal_length Focal length float\n// sensor_size_h Image sensor size horizontal float\n// sensor_size_v Image sensor size vertical float\n// resolution_h Horizontal image resolution uint16_t\n// resolution_v Vertical image resolution uint16_t\n// lens_id Reserved for a lens ID uint8_t\n// flags Bitmap of camera capability flags. uint32_t\n// cam_definition_version Camera definition version (iteration) uint16_t\n// cam_definition_uri Camera definition URI (if any, otherwise only basic functions will be available). HTTP- (http://) and MAVLink FTP- (mavlinkftp://) formatted URIs are allowed (and both must be supported by any GCS that implements the Camera Protocol). char\nexport class CameraInformation extends MAVLinkMessage {\n\tpublic time_boot_ms!: number;\n\tpublic vendor_name!: number;\n\tpublic model_name!: number;\n\tpublic firmware_version!: number;\n\tpublic focal_length!: number;\n\tpublic sensor_size_h!: number;\n\tpublic sensor_size_v!: number;\n\tpublic resolution_h!: number;\n\tpublic resolution_v!: number;\n\tpublic lens_id!: number;\n\tpublic flags!: CameraCapFlags;\n\tpublic cam_definition_version!: number;\n\tpublic cam_definition_uri!: string;\n\tpublic _message_id: number = 259;\n\tpublic _message_name: string = 'CAMERA_INFORMATION';\n\tpublic _crc_extra: number = 92;\n\tpublic _message_fields: [string, string, boolean][] = [\n\t\t['time_boot_ms', 'uint32_t', false],\n\t\t['firmware_version', 'uint32_t', false],\n\t\t['focal_length', 'float', false],\n\t\t['sensor_size_h', 'float', false],\n\t\t['sensor_size_v', 'float', false],\n\t\t['flags', 'uint32_t', false],\n\t\t['resolution_h', 'uint16_t', false],\n\t\t['resolution_v', 'uint16_t', false],\n\t\t['cam_definition_version', 'uint16_t', false],\n\t\t['vendor_name', 'uint8_t', false],\n\t\t['model_name', 'uint8_t', false],\n\t\t['lens_id', 'uint8_t', false],\n\t\t['cam_definition_uri', 'char', false],\n\t];\n}","import {MAVLinkMessage} from '@ifrunistuttgart/node-mavlink';\nimport {readInt64LE, readUInt64LE} from '@ifrunistuttgart/node-mavlink';\nimport {CameraMode} from '../enums/camera-mode';\n/*\nSettings of a camera. Can be requested with a MAV_CMD_REQUEST_MESSAGE command.\n*/\n// time_boot_ms Timestamp (time since system boot). uint32_t\n// mode_id Camera mode uint8_t\n// zoomLevel Current zoom level (0.0 to 100.0, NaN if not known) float\n// focusLevel Current focus level (0.0 to 100.0, NaN if not known) float\nexport class CameraSettings extends MAVLinkMessage {\n\tpublic time_boot_ms!: number;\n\tpublic mode_id!: CameraMode;\n\tpublic zoomLevel!: number;\n\tpublic focusLevel!: number;\n\tpublic _message_id: number = 260;\n\tpublic _message_name: string = 'CAMERA_SETTINGS';\n\tpublic _crc_extra: number = 146;\n\tpublic _message_fields: [string, string, boolean][] = [\n\t\t['time_boot_ms', 'uint32_t', false],\n\t\t['mode_id', 'uint8_t', false],\n\t\t['zoomLevel', 'float', true],\n\t\t['focusLevel', 'float', true],\n\t];\n}","import {MAVLinkMessage} from '@ifrunistuttgart/node-mavlink';\nimport {readInt64LE, readUInt64LE} from '@ifrunistuttgart/node-mavlink';\nimport {StorageStatus} from '../enums/storage-status';\nimport {StorageType} from '../enums/storage-type';\n/*\nInformation about a storage medium. This message is sent in response to a request with MAV_CMD_REQUEST_MESSAGE and whenever the status of the storage changes (STORAGE_STATUS). Use MAV_CMD_REQUEST_MESSAGE.param2 to indicate the index/id of requested storage: 0 for all, 1 for first, 2 for second, etc.\n*/\n// time_boot_ms Timestamp (time since system boot). uint32_t\n// storage_id Storage ID (1 for first, 2 for second, etc.) uint8_t\n// storage_count Number of storage devices uint8_t\n// status Status of storage uint8_t\n// total_capacity Total capacity. If storage is not ready (STORAGE_STATUS_READY) value will be ignored. float\n// used_capacity Used capacity. If storage is not ready (STORAGE_STATUS_READY) value will be ignored. float\n// available_capacity Available storage capacity. If storage is not ready (STORAGE_STATUS_READY) value will be ignored. float\n// read_speed Read speed. float\n// write_speed Write speed. float\n// type Type of storage uint8_t\n// name Textual storage name to be used in UI (microSD 1, Internal Memory, etc.) This is a NULL terminated string. If it is exactly 32 characters long, add a terminating NULL. If this string is empty, the generic type is shown to the user. char\nexport class StorageInformation extends MAVLinkMessage {\n\tpublic time_boot_ms!: number;\n\tpublic storage_id!: number;\n\tpublic storage_count!: number;\n\tpublic status!: StorageStatus;\n\tpublic total_capacity!: number;\n\tpublic used_capacity!: number;\n\tpublic available_capacity!: number;\n\tpublic read_speed!: number;\n\tpublic write_speed!: number;\n\tpublic type!: StorageType;\n\tpublic name!: string;\n\tpublic _message_id: number = 261;\n\tpublic _message_name: string = 'STORAGE_INFORMATION';\n\tpublic _crc_extra: number = 179;\n\tpublic _message_fields: [string, string, boolean][] = [\n\t\t['time_boot_ms', 'uint32_t', false],\n\t\t['total_capacity', 'float', false],\n\t\t['used_capacity', 'float', false],\n\t\t['available_capacity', 'float', false],\n\t\t['read_speed', 'float', false],\n\t\t['write_speed', 'float', false],\n\t\t['storage_id', 'uint8_t', false],\n\t\t['storage_count', 'uint8_t', false],\n\t\t['status', 'uint8_t', false],\n\t\t['type', 'uint8_t', true],\n\t\t['name', 'char', true],\n\t];\n}","import {MAVLinkMessage} from '@ifrunistuttgart/node-mavlink';\nimport {readInt64LE, readUInt64LE} from '@ifrunistuttgart/node-mavlink';\n/*\nInformation about the status of a capture. Can be requested with a MAV_CMD_REQUEST_MESSAGE command.\n*/\n// time_boot_ms Timestamp (time since system boot). uint32_t\n// image_status Current status of image capturing (0: idle, 1: capture in progress, 2: interval set but idle, 3: interval set and capture in progress) uint8_t\n// video_status Current status of video capturing (0: idle, 1: capture in progress) uint8_t\n// image_interval Image capture interval float\n// recording_time_ms Time since recording started uint32_t\n// available_capacity Available storage capacity. float\n// image_count Total number of images captured ('forever', or until reset using MAV_CMD_STORAGE_FORMAT). int32_t\nexport class CameraCaptureStatus extends MAVLinkMessage {\n\tpublic time_boot_ms!: number;\n\tpublic image_status!: number;\n\tpublic video_status!: number;\n\tpublic image_interval!: number;\n\tpublic recording_time_ms!: number;\n\tpublic available_capacity!: number;\n\tpublic image_count!: number;\n\tpublic _message_id: number = 262;\n\tpublic _message_name: string = 'CAMERA_CAPTURE_STATUS';\n\tpublic _crc_extra: number = 12;\n\tpublic _message_fields: [string, string, boolean][] = [\n\t\t['time_boot_ms', 'uint32_t', false],\n\t\t['image_interval', 'float', false],\n\t\t['recording_time_ms', 'uint32_t', false],\n\t\t['available_capacity', 'float', false],\n\t\t['image_status', 'uint8_t', false],\n\t\t['video_status', 'uint8_t', false],\n\t\t['image_count', 'int32_t', true],\n\t];\n}","import {MAVLinkMessage} from '@ifrunistuttgart/node-mavlink';\nimport {readInt64LE, readUInt64LE} from '@ifrunistuttgart/node-mavlink';\n/*\nInformation about a captured image. This is emitted every time a message is captured. It may be re-requested using MAV_CMD_REQUEST_MESSAGE, using param2 to indicate the sequence number for the missing image.\n*/\n// time_boot_ms Timestamp (time since system boot). uint32_t\n// time_utc Timestamp (time since UNIX epoch) in UTC. 0 for unknown. uint64_t\n// camera_id Deprecated/unused. Component IDs are used to differentiate multiple cameras. uint8_t\n// lat Latitude where image was taken int32_t\n// lon Longitude where capture was taken int32_t\n// alt Altitude (MSL) where image was taken int32_t\n// relative_alt Altitude above ground int32_t\n// q Quaternion of camera orientation (w, x, y, z order, zero-rotation is 1, 0, 0, 0) float\n// image_index Zero based index of this image (i.e. a new image will have index CAMERA_CAPTURE_STATUS.image count -1) int32_t\n// capture_result Boolean indicating success (1) or failure (0) while capturing this image. int8_t\n// file_url URL of image taken. Either local storage or http://foo.jpg if camera provides an HTTP interface. char\nexport class CameraImageCaptured extends MAVLinkMessage {\n\tpublic time_boot_ms!: number;\n\tpublic time_utc!: number;\n\tpublic camera_id!: number;\n\tpublic lat!: number;\n\tpublic lon!: number;\n\tpublic alt!: number;\n\tpublic relative_alt!: number;\n\tpublic q!: number;\n\tpublic image_index!: number;\n\tpublic capture_result!: number;\n\tpublic file_url!: string;\n\tpublic _message_id: number = 263;\n\tpublic _message_name: string = 'CAMERA_IMAGE_CAPTURED';\n\tpublic _crc_extra: number = 133;\n\tpublic _message_fields: [string, string, boolean][] = [\n\t\t['time_utc', 'uint64_t', false],\n\t\t['time_boot_ms', 'uint32_t', false],\n\t\t['lat', 'int32_t', false],\n\t\t['lon', 'int32_t', false],\n\t\t['alt', 'int32_t', false],\n\t\t['relative_alt', 'int32_t', false],\n\t\t['q', 'float', false],\n\t\t['image_index', 'int32_t', false],\n\t\t['camera_id', 'uint8_t', false],\n\t\t['capture_result', 'int8_t', false],\n\t\t['file_url', 'char', false],\n\t];\n}","import {MAVLinkMessage} from '@ifrunistuttgart/node-mavlink';\nimport {readInt64LE, readUInt64LE} from '@ifrunistuttgart/node-mavlink';\n/*\nInformation about flight since last arming.\n*/\n// time_boot_ms Timestamp (time since system boot). uint32_t\n// arming_time_utc Timestamp at arming (time since UNIX epoch) in UTC, 0 for unknown uint64_t\n// takeoff_time_utc Timestamp at takeoff (time since UNIX epoch) in UTC, 0 for unknown uint64_t\n// flight_uuid Universally unique identifier (UUID) of flight, should correspond to name of log files uint64_t\nexport class FlightInformation extends MAVLinkMessage {\n\tpublic time_boot_ms!: number;\n\tpublic arming_time_utc!: number;\n\tpublic takeoff_time_utc!: number;\n\tpublic flight_uuid!: number;\n\tpublic _message_id: number = 264;\n\tpublic _message_name: string = 'FLIGHT_INFORMATION';\n\tpublic _crc_extra: number = 49;\n\tpublic _message_fields: [string, string, boolean][] = [\n\t\t['arming_time_utc', 'uint64_t', false],\n\t\t['takeoff_time_utc', 'uint64_t', false],\n\t\t['flight_uuid', 'uint64_t', false],\n\t\t['time_boot_ms', 'uint32_t', false],\n\t];\n}","import {MAVLinkMessage} from '@ifrunistuttgart/node-mavlink';\nimport {readInt64LE, readUInt64LE} from '@ifrunistuttgart/node-mavlink';\n/*\nOrientation of a mount\n*/\n// time_boot_ms Timestamp (time since system boot). uint32_t\n// roll Roll in global frame (set to NaN for invalid). float\n// pitch Pitch in global frame (set to NaN for invalid). float\n// yaw Yaw relative to vehicle (set to NaN for invalid). float\n// yaw_absolute Yaw in absolute frame relative to Earth's North, north is 0 (set to NaN for invalid). float\nexport class MountOrientation extends MAVLinkMessage {\n\tpublic time_boot_ms!: number;\n\tpublic roll!: number;\n\tpublic pitch!: number;\n\tpublic yaw!: number;\n\tpublic yaw_absolute!: number;\n\tpublic _message_id: number = 265;\n\tpublic _message_name: string = 'MOUNT_ORIENTATION';\n\tpublic _crc_extra: number = 26;\n\tpublic _message_fields: [string, string, boolean][] = [\n\t\t['time_boot_ms', 'uint32_t', false],\n\t\t['roll', 'float', false],\n\t\t['pitch', 'float', false],\n\t\t['yaw', 'float', false],\n\t\t['yaw_absolute', 'float', true],\n\t];\n}","import {MAVLinkMessage} from '@ifrunistuttgart/node-mavlink';\nimport {readInt64LE, readUInt64LE} from '@ifrunistuttgart/node-mavlink';\n/*\nA message containing logged data (see also MAV_CMD_LOGGING_START)\n*/\n// target_system system ID of the target uint8_t\n// target_component component ID of the target uint8_t\n// sequence sequence number (can wrap) uint16_t\n// length data length uint8_t\n// first_message_offset offset into data where first message starts. This can be used for recovery, when a previous message got lost (set to 255 if no start exists). uint8_t\n// data logged data uint8_t\nexport class LoggingData extends MAVLinkMessage {\n\tpublic target_system!: number;\n\tpublic target_component!: number;\n\tpublic sequence!: number;\n\tpublic length!: number;\n\tpublic first_message_offset!: number;\n\tpublic data!: number;\n\tpublic _message_id: number = 266;\n\tpublic _message_name: string = 'LOGGING_DATA';\n\tpublic _crc_extra: number = 193;\n\tpublic _message_fields: [string, string, boolean][] = [\n\t\t['sequence', 'uint16_t', false],\n\t\t['target_system', 'uint8_t', false],\n\t\t['target_component', 'uint8_t', false],\n\t\t['length', 'uint8_t', false],\n\t\t['first_message_offset', 'uint8_t', false],\n\t\t['data', 'uint8_t', false],\n\t];\n}","import {MAVLinkMessage} from '@ifrunistuttgart/node-mavlink';\nimport {readInt64LE, readUInt64LE} from '@ifrunistuttgart/node-mavlink';\n/*\nA message containing logged data which requires a LOGGING_ACK to be sent back\n*/\n// target_system system ID of the target uint8_t\n// target_component component ID of the target uint8_t\n// sequence sequence number (can wrap) uint16_t\n// length data length uint8_t\n// first_message_offset offset into data where first message starts. This can be used for recovery, when a previous message got lost (set to 255 if no start exists). uint8_t\n// data logged data uint8_t\nexport class LoggingDataAcked extends MAVLinkMessage {\n\tpublic target_system!: number;\n\tpublic target_component!: number;\n\tpublic sequence!: number;\n\tpublic length!: number;\n\tpublic first_message_offset!: number;\n\tpublic data!: number;\n\tpublic _message_id: number = 267;\n\tpublic _message_name: string = 'LOGGING_DATA_ACKED';\n\tpublic _crc_extra: number = 35;\n\tpublic _message_fields: [string, string, boolean][] = [\n\t\t['sequence', 'uint16_t', false],\n\t\t['target_system', 'uint8_t', false],\n\t\t['target_component', 'uint8_t', false],\n\t\t['length', 'uint8_t', false],\n\t\t['first_message_offset', 'uint8_t', false],\n\t\t['data', 'uint8_t', false],\n\t];\n}","import {MAVLinkMessage} from '@ifrunistuttgart/node-mavlink';\nimport {readInt64LE, readUInt64LE} from '@ifrunistuttgart/node-mavlink';\n/*\nAn ack for a LOGGING_DATA_ACKED message\n*/\n// target_system system ID of the target uint8_t\n// target_component component ID of the target uint8_t\n// sequence sequence number (must match the one in LOGGING_DATA_ACKED) uint16_t\nexport class LoggingAck extends MAVLinkMessage {\n\tpublic target_system!: number;\n\tpublic target_component!: number;\n\tpublic sequence!: number;\n\tpublic _message_id: number = 268;\n\tpublic _message_name: string = 'LOGGING_ACK';\n\tpublic _crc_extra: number = 14;\n\tpublic _message_fields: [string, string, boolean][] = [\n\t\t['sequence', 'uint16_t', false],\n\t\t['target_system', 'uint8_t', false],\n\t\t['target_component', 'uint8_t', false],\n\t];\n}","import {MAVLinkMessage} from '@ifrunistuttgart/node-mavlink';\nimport {readInt64LE, readUInt64LE} from '@ifrunistuttgart/node-mavlink';\nimport {VideoStreamType} from '../enums/video-stream-type';\nimport {VideoStreamStatusFlags} from '../enums/video-stream-status-flags';\n/*\nInformation about video stream. It may be requested using MAV_CMD_REQUEST_MESSAGE, where param2 indicates the video stream id: 0 for all streams, 1 for first, 2 for second, etc.\n*/\n// stream_id Video Stream ID (1 for first, 2 for second, etc.) uint8_t\n// count Number of streams available. uint8_t\n// type Type of stream. uint8_t\n// flags Bitmap of stream status flags. uint16_t\n// framerate Frame rate. float\n// resolution_h Horizontal resolution. uint16_t\n// resolution_v Vertical resolution. uint16_t\n// bitrate Bit rate. uint32_t\n// rotation Video image rotation clockwise. uint16_t\n// hfov Horizontal Field of view. uint16_t\n// name Stream name. char\n// uri Video stream URI (TCP or RTSP URI ground station should connect to) or port number (UDP port ground station should listen to). char\nexport class VideoStreamInformation extends MAVLinkMessage {\n\tpublic stream_id!: number;\n\tpublic count!: number;\n\tpublic type!: VideoStreamType;\n\tpublic flags!: VideoStreamStatusFlags;\n\tpublic framerate!: number;\n\tpublic resolution_h!: number;\n\tpublic resolution_v!: number;\n\tpublic bitrate!: number;\n\tpublic rotation!: number;\n\tpublic hfov!: number;\n\tpublic name!: string;\n\tpublic uri!: string;\n\tpublic _message_id: number = 269;\n\tpublic _message_name: string = 'VIDEO_STREAM_INFORMATION';\n\tpublic _crc_extra: number = 109;\n\tpublic _message_fields: [string, string, boolean][] = [\n\t\t['framerate', 'float', false],\n\t\t['bitrate', 'uint32_t', false],\n\t\t['flags', 'uint16_t', false],\n\t\t['resolution_h', 'uint16_t', false],\n\t\t['resolution_v', 'uint16_t', false],\n\t\t['rotation', 'uint16_t', false],\n\t\t['hfov', 'uint16_t', false],\n\t\t['stream_id', 'uint8_t', false],\n\t\t['count', 'uint8_t', false],\n\t\t['type', 'uint8_t', false],\n\t\t['name', 'char', false],\n\t\t['uri', 'char', false],\n\t];\n}","import {MAVLinkMessage} from '@ifrunistuttgart/node-mavlink';\nimport {readInt64LE, readUInt64LE} from '@ifrunistuttgart/node-mavlink';\nimport {VideoStreamStatusFlags} from '../enums/video-stream-status-flags';\n/*\nInformation about the status of a video stream. It may be requested using MAV_CMD_REQUEST_MESSAGE.\n*/\n// stream_id Video Stream ID (1 for first, 2 for second, etc.) uint8_t\n// flags Bitmap of stream status flags uint16_t\n// framerate Frame rate float\n// resolution_h Horizontal resolution uint16_t\n// resolution_v Vertical resolution uint16_t\n// bitrate Bit rate uint32_t\n// rotation Video image rotation clockwise uint16_t\n// hfov Horizontal Field of view uint16_t\nexport class VideoStreamStatus extends MAVLinkMessage {\n\tpublic stream_id!: number;\n\tpublic flags!: VideoStreamStatusFlags;\n\tpublic framerate!: number;\n\tpublic resolution_h!: number;\n\tpublic resolution_v!: number;\n\tpublic bitrate!: number;\n\tpublic rotation!: number;\n\tpublic hfov!: number;\n\tpublic _message_id: number = 270;\n\tpublic _message_name: string = 'VIDEO_STREAM_STATUS';\n\tpublic _crc_extra: number = 59;\n\tpublic _message_fields: [string, string, boolean][] = [\n\t\t['framerate', 'float', false],\n\t\t['bitrate', 'uint32_t', false],\n\t\t['flags', 'uint16_t', false],\n\t\t['resolution_h', 'uint16_t', false],\n\t\t['resolution_v', 'uint16_t', false],\n\t\t['rotation', 'uint16_t', false],\n\t\t['hfov', 'uint16_t', false],\n\t\t['stream_id', 'uint8_t', false],\n\t];\n}","import {MAVLinkMessage} from '@ifrunistuttgart/node-mavlink';\nimport {readInt64LE, readUInt64LE} from '@ifrunistuttgart/node-mavlink';\n/*\nInformation about the field of view of a camera. Can be requested with a MAV_CMD_REQUEST_MESSAGE command.\n*/\n// time_boot_ms Timestamp (time since system boot). uint32_t\n// lat_camera Latitude of camera (INT32_MAX if unknown). int32_t\n// lon_camera Longitude of camera (INT32_MAX if unknown). int32_t\n// alt_camera Altitude (MSL) of camera (INT32_MAX if unknown). int32_t\n// lat_image Latitude of center of image (INT32_MAX if unknown, INT32_MIN if at infinity, not intersecting with horizon). int32_t\n// lon_image Longitude of center of image (INT32_MAX if unknown, INT32_MIN if at infinity, not intersecting with horizon). int32_t\n// alt_image Altitude (MSL) of center of image (INT32_MAX if unknown, INT32_MIN if at infinity, not intersecting with horizon). int32_t\n// q Quaternion of camera orientation (w, x, y, z order, zero-rotation is 1, 0, 0, 0) float\n// hfov Horizontal field of view (NaN if unknown). float\n// vfov Vertical field of view (NaN if unknown). float\nexport class CameraFovStatus extends MAVLinkMessage {\n\tpublic time_boot_ms!: number;\n\tpublic lat_camera!: number;\n\tpublic lon_camera!: number;\n\tpublic alt_camera!: number;\n\tpublic lat_image!: number;\n\tpublic lon_image!: number;\n\tpublic alt_image!: number;\n\tpublic q!: number;\n\tpublic hfov!: number;\n\tpublic vfov!: number;\n\tpublic _message_id: number = 271;\n\tpublic _message_name: string = 'CAMERA_FOV_STATUS';\n\tpublic _crc_extra: number = 22;\n\tpublic _message_fields: [string, string, boolean][] = [\n\t\t['time_boot_ms', 'uint32_t', false],\n\t\t['lat_camera', 'int32_t', false],\n\t\t['lon_camera', 'int32_t', false],\n\t\t['alt_camera', 'int32_t', false],\n\t\t['lat_image', 'int32_t', false],\n\t\t['lon_image', 'int32_t', false],\n\t\t['alt_image', 'int32_t', false],\n\t\t['q', 'float', false],\n\t\t['hfov', 'float', false],\n\t\t['vfov', 'float', false],\n\t];\n}","import {MAVLinkMessage} from '@ifrunistuttgart/node-mavlink';\nimport {readInt64LE, readUInt64LE} from '@ifrunistuttgart/node-mavlink';\nimport {CameraTrackingStatusFlags} from '../enums/camera-tracking-status-flags';\nimport {CameraTrackingMode} from '../enums/camera-tracking-mode';\nimport {CameraTrackingTargetData} from '../enums/camera-tracking-target-data';\n/*\nCamera tracking status, sent while in active tracking. Use MAV_CMD_SET_MESSAGE_INTERVAL to define message interval.\n*/\n// tracking_status Current tracking status uint8_t\n// tracking_mode Current tracking mode uint8_t\n// target_data Defines location of target data uint8_t\n// point_x Current tracked point x value if CAMERA_TRACKING_MODE_POINT (normalized 0..1, 0 is left, 1 is right), NAN if unknown float\n// point_y Current tracked point y value if CAMERA_TRACKING_MODE_POINT (normalized 0..1, 0 is top, 1 is bottom), NAN if unknown float\n// radius Current tracked radius if CAMERA_TRACKING_MODE_POINT (normalized 0..1, 0 is image left, 1 is image right), NAN if unknown float\n// rec_top_x Current tracked rectangle top x value if CAMERA_TRACKING_MODE_RECTANGLE (normalized 0..1, 0 is left, 1 is right), NAN if unknown float\n// rec_top_y Current tracked rectangle top y value if CAMERA_TRACKING_MODE_RECTANGLE (normalized 0..1, 0 is top, 1 is bottom), NAN if unknown float\n// rec_bottom_x Current tracked rectangle bottom x value if CAMERA_TRACKING_MODE_RECTANGLE (normalized 0..1, 0 is left, 1 is right), NAN if unknown float\n// rec_bottom_y Current tracked rectangle bottom y value if CAMERA_TRACKING_MODE_RECTANGLE (normalized 0..1, 0 is top, 1 is bottom), NAN if unknown float\nexport class CameraTrackingImageStatus extends MAVLinkMessage {\n\tpublic tracking_status!: CameraTrackingStatusFlags;\n\tpublic tracking_mode!: CameraTrackingMode;\n\tpublic target_data!: CameraTrackingTargetData;\n\tpublic point_x!: number;\n\tpublic point_y!: number;\n\tpublic radius!: number;\n\tpublic rec_top_x!: number;\n\tpublic rec_top_y!: number;\n\tpublic rec_bottom_x!: number;\n\tpublic rec_bottom_y!: number;\n\tpublic _message_id: number = 275;\n\tpublic _message_name: string = 'CAMERA_TRACKING_IMAGE_STATUS';\n\tpublic _crc_extra: number = 126;\n\tpublic _message_fields: [string, string, boolean][] = [\n\t\t['point_x', 'float', false],\n\t\t['point_y', 'float', false],\n\t\t['radius', 'float', false],\n\t\t['rec_top_x', 'float', false],\n\t\t['rec_top_y', 'float', false],\n\t\t['rec_bottom_x', 'float', false],\n\t\t['rec_bottom_y', 'float', false],\n\t\t['tracking_status', 'uint8_t', false],\n\t\t['tracking_mode', 'uint8_t', false],\n\t\t['target_data', 'uint8_t', false],\n\t];\n}","import {MAVLinkMessage} from '@ifrunistuttgart/node-mavlink';\nimport {readInt64LE, readUInt64LE} from '@ifrunistuttgart/node-mavlink';\nimport {CameraTrackingStatusFlags} from '../enums/camera-tracking-status-flags';\n/*\nCamera tracking status, sent while in active tracking. Use MAV_CMD_SET_MESSAGE_INTERVAL to define message interval.\n*/\n// tracking_status Current tracking status uint8_t\n// lat Latitude of tracked object int32_t\n// lon Longitude of tracked object int32_t\n// alt Altitude of tracked object(AMSL, WGS84) float\n// h_acc Horizontal accuracy. NAN if unknown float\n// v_acc Vertical accuracy. NAN if unknown float\n// vel_n North velocity of tracked object. NAN if unknown float\n// vel_e East velocity of tracked object. NAN if unknown float\n// vel_d Down velocity of tracked object. NAN if unknown float\n// vel_acc Velocity accuracy. NAN if unknown float\n// dist Distance between camera and tracked object. NAN if unknown float\n// hdg Heading in radians, in NED. NAN if unknown float\n// hdg_acc Accuracy of heading, in NED. NAN if unknown float\nexport class CameraTrackingGeoStatus extends MAVLinkMessage {\n\tpublic tracking_status!: CameraTrackingStatusFlags;\n\tpublic lat!: number;\n\tpublic lon!: number;\n\tpublic alt!: number;\n\tpublic h_acc!: number;\n\tpublic v_acc!: number;\n\tpublic vel_n!: number;\n\tpublic vel_e!: number;\n\tpublic vel_d!: number;\n\tpublic vel_acc!: number;\n\tpublic dist!: number;\n\tpublic hdg!: number;\n\tpublic hdg_acc!: number;\n\tpublic _message_id: number = 276;\n\tpublic _message_name: string = 'CAMERA_TRACKING_GEO_STATUS';\n\tpublic _crc_extra: number = 18;\n\tpublic _message_fields: [string, string, boolean][] = [\n\t\t['lat', 'int32_t', false],\n\t\t['lon', 'int32_t', false],\n\t\t['alt', 'float', false],\n\t\t['h_acc', 'float', false],\n\t\t['v_acc', 'float', false],\n\t\t['vel_n', 'float', false],\n\t\t['vel_e', 'float', false],\n\t\t['vel_d', 'float', false],\n\t\t['vel_acc', 'float', false],\n\t\t['dist', 'float', false],\n\t\t['hdg', 'float', false],\n\t\t['hdg_acc', 'float', false],\n\t\t['tracking_status', 'uint8_t', false],\n\t];\n}","import {MAVLinkMessage} from '@ifrunistuttgart/node-mavlink';\nimport {readInt64LE, readUInt64LE} from '@ifrunistuttgart/node-mavlink';\nimport {GimbalManagerCapFlags} from '../enums/gimbal-manager-cap-flags';\n/*\nInformation about a high level gimbal manager. This message should be requested by a ground station using MAV_CMD_REQUEST_MESSAGE.\n*/\n// time_boot_ms Timestamp (time since system boot). uint32_t\n// cap_flags Bitmap of gimbal capability flags. uint32_t\n// gimbal_device_id Gimbal device ID that this gimbal manager is responsible for. uint8_t\n// roll_min Minimum hardware roll angle (positive: rolling to the right, negative: rolling to the left) float\n// roll_max Maximum hardware roll angle (positive: rolling to the right, negative: rolling to the left) float\n// pitch_min Minimum pitch angle (positive: up, negative: down) float\n// pitch_max Maximum pitch angle (positive: up, negative: down) float\n// yaw_min Minimum yaw angle (positive: to the right, negative: to the left) float\n// yaw_max Maximum yaw angle (positive: to the right, negative: to the left) float\nexport class GimbalManagerInformation extends MAVLinkMessage {\n\tpublic time_boot_ms!: number;\n\tpublic cap_flags!: GimbalManagerCapFlags;\n\tpublic gimbal_device_id!: number;\n\tpublic roll_min!: number;\n\tpublic roll_max!: number;\n\tpublic pitch_min!: number;\n\tpublic pitch_max!: number;\n\tpublic yaw_min!: number;\n\tpublic yaw_max!: number;\n\tpublic _message_id: number = 280;\n\tpublic _message_name: string = 'GIMBAL_MANAGER_INFORMATION';\n\tpublic _crc_extra: number = 70;\n\tpublic _message_fields: [string, string, boolean][] = [\n\t\t['time_boot_ms', 'uint32_t', false],\n\t\t['cap_flags', 'uint32_t', false],\n\t\t['roll_min', 'float', false],\n\t\t['roll_max', 'float', false],\n\t\t['pitch_min', 'float', false],\n\t\t['pitch_max', 'float', false],\n\t\t['yaw_min', 'float', false],\n\t\t['yaw_max', 'float', false],\n\t\t['gimbal_device_id', 'uint8_t', false],\n\t];\n}","import {MAVLinkMessage} from '@ifrunistuttgart/node-mavlink';\nimport {readInt64LE, readUInt64LE} from '@ifrunistuttgart/node-mavlink';\nimport {GimbalManagerFlags} from '../enums/gimbal-manager-flags';\n/*\nCurrent status about a high level gimbal manager. This message should be broadcast at a low regular rate (e.g. 5Hz).\n*/\n// time_boot_ms Timestamp (time since system boot). uint32_t\n// flags High level gimbal manager flags currently applied. uint32_t\n// gimbal_device_id Gimbal device ID that this gimbal manager is responsible for. uint8_t\n// primary_control_sysid System ID of MAVLink component with primary control, 0 for none. uint8_t\n// primary_control_compid Component ID of MAVLink component with primary control, 0 for none. uint8_t\n// secondary_control_sysid System ID of MAVLink component with secondary control, 0 for none. uint8_t\n// secondary_control_compid Component ID of MAVLink component with secondary control, 0 for none. uint8_t\nexport class GimbalManagerStatus extends MAVLinkMessage {\n\tpublic time_boot_ms!: number;\n\tpublic flags!: GimbalManagerFlags;\n\tpublic gimbal_device_id!: number;\n\tpublic primary_control_sysid!: number;\n\tpublic primary_control_compid!: number;\n\tpublic secondary_control_sysid!: number;\n\tpublic secondary_control_compid!: number;\n\tpublic _message_id: number = 281;\n\tpublic _message_name: string = 'GIMBAL_MANAGER_STATUS';\n\tpublic _crc_extra: number = 48;\n\tpublic _message_fields: [string, string, boolean][] = [\n\t\t['time_boot_ms', 'uint32_t', false],\n\t\t['flags', 'uint32_t', false],\n\t\t['gimbal_device_id', 'uint8_t', false],\n\t\t['primary_control_sysid', 'uint8_t', false],\n\t\t['primary_control_compid', 'uint8_t', false],\n\t\t['secondary_control_sysid', 'uint8_t', false],\n\t\t['secondary_control_compid', 'uint8_t', false],\n\t];\n}","import {MAVLinkMessage} from '@ifrunistuttgart/node-mavlink';\nimport {readInt64LE, readUInt64LE} from '@ifrunistuttgart/node-mavlink';\nimport {GimbalManagerFlags} from '../enums/gimbal-manager-flags';\n/*\nHigh level message to control a gimbal's attitude. This message is to be sent to the gimbal manager (e.g. from a ground station). Angles and rates can be set to NaN according to use case.\n*/\n// target_system System ID uint8_t\n// target_component Component ID uint8_t\n// flags High level gimbal manager flags to use. uint32_t\n// gimbal_device_id Component ID of gimbal device to address (or 1-6 for non-MAVLink gimbal), 0 for all gimbal device components. Send command multiple times for more than one gimbal (but not all gimbals). uint8_t\n// q Quaternion components, w, x, y, z (1 0 0 0 is the null-rotation, the frame is depends on whether the flag GIMBAL_MANAGER_FLAGS_YAW_LOCK is set) float\n// angular_velocity_x X component of angular velocity, positive is rolling to the right, NaN to be ignored. float\n// angular_velocity_y Y component of angular velocity, positive is pitching up, NaN to be ignored. float\n// angular_velocity_z Z component of angular velocity, positive is yawing to the right, NaN to be ignored. float\nexport class GimbalManagerSetAttitude extends MAVLinkMessage {\n\tpublic target_system!: number;\n\tpublic target_component!: number;\n\tpublic flags!: GimbalManagerFlags;\n\tpublic gimbal_device_id!: number;\n\tpublic q!: number;\n\tpublic angular_velocity_x!: number;\n\tpublic angular_velocity_y!: number;\n\tpublic angular_velocity_z!: number;\n\tpublic _message_id: number = 282;\n\tpublic _message_name: string = 'GIMBAL_MANAGER_SET_ATTITUDE';\n\tpublic _crc_extra: number = 123;\n\tpublic _message_fields: [string, string, boolean][] = [\n\t\t['flags', 'uint32_t', false],\n\t\t['q', 'float', false],\n\t\t['angular_velocity_x', 'float', false],\n\t\t['angular_velocity_y', 'float', false],\n\t\t['angular_velocity_z', 'float', false],\n\t\t['target_system', 'uint8_t', false],\n\t\t['target_component', 'uint8_t', false],\n\t\t['gimbal_device_id', 'uint8_t', false],\n\t];\n}","import {MAVLinkMessage} from '@ifrunistuttgart/node-mavlink';\nimport {readInt64LE, readUInt64LE} from '@ifrunistuttgart/node-mavlink';\nimport {GimbalDeviceCapFlags} from '../enums/gimbal-device-cap-flags';\n/*\nInformation about a low level gimbal. This message should be requested by the gimbal manager or a ground station using MAV_CMD_REQUEST_MESSAGE. The maximum angles and rates are the limits by hardware. However, the limits by software used are likely different/smaller and dependent on mode/settings/etc..\n*/\n// time_boot_ms Timestamp (time since system boot). uint32_t\n// vendor_name Name of the gimbal vendor. char\n// model_name Name of the gimbal model. char\n// custom_name Custom name of the gimbal given to it by the user. char\n// firmware_version Version of the gimbal firmware, encoded as: (Dev & 0xff) << 24 | (Patch & 0xff) << 16 | (Minor & 0xff) << 8 | (Major & 0xff). uint32_t\n// hardware_version Version of the gimbal hardware, encoded as: (Dev & 0xff) << 24 | (Patch & 0xff) << 16 | (Minor & 0xff) << 8 | (Major & 0xff). uint32_t\n// uid UID of gimbal hardware (0 if unknown). uint64_t\n// cap_flags Bitmap of gimbal capability flags. uint16_t\n// custom_cap_flags Bitmap for use for gimbal-specific capability flags. uint16_t\n// roll_min Minimum hardware roll angle (positive: rolling to the right, negative: rolling to the left) float\n// roll_max Maximum hardware roll angle (positive: rolling to the right, negative: rolling to the left) float\n// pitch_min Minimum hardware pitch angle (positive: up, negative: down) float\n// pitch_max Maximum hardware pitch angle (positive: up, negative: down) float\n// yaw_min Minimum hardware yaw angle (positive: to the right, negative: to the left) float\n// yaw_max Maximum hardware yaw angle (positive: to the right, negative: to the left) float\nexport class GimbalDeviceInformation extends MAVLinkMessage {\n\tpublic time_boot_ms!: number;\n\tpublic vendor_name!: string;\n\tpublic model_name!: string;\n\tpublic custom_name!: string;\n\tpublic firmware_version!: number;\n\tpublic hardware_version!: number;\n\tpublic uid!: number;\n\tpublic cap_flags!: GimbalDeviceCapFlags;\n\tpublic custom_cap_flags!: number;\n\tpublic roll_min!: number;\n\tpublic roll_max!: number;\n\tpublic pitch_min!: number;\n\tpublic pitch_max!: number;\n\tpublic yaw_min!: number;\n\tpublic yaw_max!: number;\n\tpublic _message_id: number = 283;\n\tpublic _message_name: string = 'GIMBAL_DEVICE_INFORMATION';\n\tpublic _crc_extra: number = 74;\n\tpublic _message_fields: [string, string, boolean][] = [\n\t\t['uid', 'uint64_t', false],\n\t\t['time_boot_ms', 'uint32_t', false],\n\t\t['firmware_version', 'uint32_t', false],\n\t\t['hardware_version', 'uint32_t', false],\n\t\t['roll_min', 'float', false],\n\t\t['roll_max', 'float', false],\n\t\t['pitch_min', 'float', false],\n\t\t['pitch_max', 'float', false],\n\t\t['yaw_min', 'float', false],\n\t\t['yaw_max', 'float', false],\n\t\t['cap_flags', 'uint16_t', false],\n\t\t['custom_cap_flags', 'uint16_t', false],\n\t\t['vendor_name', 'char', false],\n\t\t['model_name', 'char', false],\n\t\t['custom_name', 'char', false],\n\t];\n}","import {MAVLinkMessage} from '@ifrunistuttgart/node-mavlink';\nimport {readInt64LE, readUInt64LE} from '@ifrunistuttgart/node-mavlink';\nimport {GimbalDeviceFlags} from '../enums/gimbal-device-flags';\n/*\nLow level message to control a gimbal device's attitude. This message is to be sent from the gimbal manager to the gimbal device component. Angles and rates can be set to NaN according to use case.\n*/\n// target_system System ID uint8_t\n// target_component Component ID uint8_t\n// flags Low level gimbal flags. uint16_t\n// q Quaternion components, w, x, y, z (1 0 0 0 is the null-rotation, the frame is depends on whether the flag GIMBAL_DEVICE_FLAGS_YAW_LOCK is set, set all fields to NaN if only angular velocity should be used) float\n// angular_velocity_x X component of angular velocity, positive is rolling to the right, NaN to be ignored. float\n// angular_velocity_y Y component of angular velocity, positive is pitching up, NaN to be ignored. float\n// angular_velocity_z Z component of angular velocity, positive is yawing to the right, NaN to be ignored. float\nexport class GimbalDeviceSetAttitude extends MAVLinkMessage {\n\tpublic target_system!: number;\n\tpublic target_component!: number;\n\tpublic flags!: GimbalDeviceFlags;\n\tpublic q!: number;\n\tpublic angular_velocity_x!: number;\n\tpublic angular_velocity_y!: number;\n\tpublic angular_velocity_z!: number;\n\tpublic _message_id: number = 284;\n\tpublic _message_name: string = 'GIMBAL_DEVICE_SET_ATTITUDE';\n\tpublic _crc_extra: number = 99;\n\tpublic _message_fields: [string, string, boolean][] = [\n\t\t['q', 'float', false],\n\t\t['angular_velocity_x', 'float', false],\n\t\t['angular_velocity_y', 'float', false],\n\t\t['angular_velocity_z', 'float', false],\n\t\t['flags', 'uint16_t', false],\n\t\t['target_system', 'uint8_t', false],\n\t\t['target_component', 'uint8_t', false],\n\t];\n}","import {MAVLinkMessage} from '@ifrunistuttgart/node-mavlink';\nimport {readInt64LE, readUInt64LE} from '@ifrunistuttgart/node-mavlink';\nimport {GimbalDeviceFlags} from '../enums/gimbal-device-flags';\nimport {GimbalDeviceErrorFlags} from '../enums/gimbal-device-error-flags';\n/*\nMessage reporting the status of a gimbal device. This message should be broadcasted by a gimbal device component. The angles encoded in the quaternion are in the global frame (roll: positive is rolling to the right, pitch: positive is pitching up, yaw is turn to the right). This message should be broadcast at a low regular rate (e.g. 10Hz).\n*/\n// target_system System ID uint8_t\n// target_component Component ID uint8_t\n// time_boot_ms Timestamp (time since system boot). uint32_t\n// flags Current gimbal flags set. uint16_t\n// q Quaternion components, w, x, y, z (1 0 0 0 is the null-rotation, the frame is depends on whether the flag GIMBAL_DEVICE_FLAGS_YAW_LOCK is set) float\n// angular_velocity_x X component of angular velocity (NaN if unknown) float\n// angular_velocity_y Y component of angular velocity (NaN if unknown) float\n// angular_velocity_z Z component of angular velocity (NaN if unknown) float\n// failure_flags Failure flags (0 for no failure) uint32_t\nexport class GimbalDeviceAttitudeStatus extends MAVLinkMessage {\n\tpublic target_system!: number;\n\tpublic target_component!: number;\n\tpublic time_boot_ms!: number;\n\tpublic flags!: GimbalDeviceFlags;\n\tpublic q!: number;\n\tpublic angular_velocity_x!: number;\n\tpublic angular_velocity_y!: number;\n\tpublic angular_velocity_z!: number;\n\tpublic failure_flags!: GimbalDeviceErrorFlags;\n\tpublic _message_id: number = 285;\n\tpublic _message_name: string = 'GIMBAL_DEVICE_ATTITUDE_STATUS';\n\tpublic _crc_extra: number = 137;\n\tpublic _message_fields: [string, string, boolean][] = [\n\t\t['time_boot_ms', 'uint32_t', false],\n\t\t['q', 'float', false],\n\t\t['angular_velocity_x', 'float', false],\n\t\t['angular_velocity_y', 'float', false],\n\t\t['angular_velocity_z', 'float', false],\n\t\t['failure_flags', 'uint32_t', false],\n\t\t['flags', 'uint16_t', false],\n\t\t['target_system', 'uint8_t', false],\n\t\t['target_component', 'uint8_t', false],\n\t];\n}","import {MAVLinkMessage} from '@ifrunistuttgart/node-mavlink';\nimport {readInt64LE, readUInt64LE} from '@ifrunistuttgart/node-mavlink';\nimport {EstimatorStatusFlags} from '../enums/estimator-status-flags';\nimport {MavLandedState} from '../enums/mav-landed-state';\n/*\nLow level message containing autopilot state relevant for a gimbal device. This message is to be sent from the gimbal manager to the gimbal device component. The data of this message server for the gimbal's estimator corrections in particular horizon compensation, as well as the autopilot's control intention e.g. feed forward angular control in z-axis.\n*/\n// target_system System ID uint8_t\n// target_component Component ID uint8_t\n// time_boot_us Timestamp (time since system boot). uint64_t\n// q Quaternion components of autopilot attitude: w, x, y, z (1 0 0 0 is the null-rotation, Hamilton convention). float\n// q_estimated_delay_us Estimated delay of the attitude data. uint32_t\n// vx X Speed in NED (North, East, Down). float\n// vy Y Speed in NED (North, East, Down). float\n// vz Z Speed in NED (North, East, Down). float\n// v_estimated_delay_us Estimated delay of the speed data. uint32_t\n// feed_forward_angular_velocity_z Feed forward Z component of angular velocity, positive is yawing to the right, NaN to be ignored. This is to indicate if the autopilot is actively yawing. float\n// estimator_status Bitmap indicating which estimator outputs are valid. uint16_t\n// landed_state The landed state. Is set to MAV_LANDED_STATE_UNDEFINED if landed state is unknown. uint8_t\nexport class AutopilotStateForGimbalDevice extends MAVLinkMessage {\n\tpublic target_system!: number;\n\tpublic target_component!: number;\n\tpublic time_boot_us!: number;\n\tpublic q!: number;\n\tpublic q_estimated_delay_us!: number;\n\tpublic vx!: number;\n\tpublic vy!: number;\n\tpublic vz!: number;\n\tpublic v_estimated_delay_us!: number;\n\tpublic feed_forward_angular_velocity_z!: number;\n\tpublic estimator_status!: EstimatorStatusFlags;\n\tpublic landed_state!: MavLandedState;\n\tpublic _message_id: number = 286;\n\tpublic _message_name: string = 'AUTOPILOT_STATE_FOR_GIMBAL_DEVICE';\n\tpublic _crc_extra: number = 210;\n\tpublic _message_fields: [string, string, boolean][] = [\n\t\t['time_boot_us', 'uint64_t', false],\n\t\t['q', 'float', false],\n\t\t['q_estimated_delay_us', 'uint32_t', false],\n\t\t['vx', 'float', false],\n\t\t['vy', 'float', false],\n\t\t['vz', 'float', false],\n\t\t['v_estimated_delay_us', 'uint32_t', false],\n\t\t['feed_forward_angular_velocity_z', 'float', false],\n\t\t['estimator_status', 'uint16_t', false],\n\t\t['target_system', 'uint8_t', false],\n\t\t['target_component', 'uint8_t', false],\n\t\t['landed_state', 'uint8_t', false],\n\t];\n}","import {MAVLinkMessage} from '@ifrunistuttgart/node-mavlink';\nimport {readInt64LE, readUInt64LE} from '@ifrunistuttgart/node-mavlink';\nimport {GimbalManagerFlags} from '../enums/gimbal-manager-flags';\n/*\nHigh level message to control a gimbal's pitch and yaw angles. This message is to be sent to the gimbal manager (e.g. from a ground station). Angles and rates can be set to NaN according to use case.\n*/\n// target_system System ID uint8_t\n// target_component Component ID uint8_t\n// flags High level gimbal manager flags to use. uint32_t\n// gimbal_device_id Component ID of gimbal device to address (or 1-6 for non-MAVLink gimbal), 0 for all gimbal device components. Send command multiple times for more than one gimbal (but not all gimbals). uint8_t\n// pitch Pitch angle (positive: up, negative: down, NaN to be ignored). float\n// yaw Yaw angle (positive: to the right, negative: to the left, NaN to be ignored). float\n// pitch_rate Pitch angular rate (positive: up, negative: down, NaN to be ignored). float\n// yaw_rate Yaw angular rate (positive: to the right, negative: to the left, NaN to be ignored). float\nexport class GimbalManagerSetPitchyaw extends MAVLinkMessage {\n\tpublic target_system!: number;\n\tpublic target_component!: number;\n\tpublic flags!: GimbalManagerFlags;\n\tpublic gimbal_device_id!: number;\n\tpublic pitch!: number;\n\tpublic yaw!: number;\n\tpublic pitch_rate!: number;\n\tpublic yaw_rate!: number;\n\tpublic _message_id: number = 287;\n\tpublic _message_name: string = 'GIMBAL_MANAGER_SET_PITCHYAW';\n\tpublic _crc_extra: number = 1;\n\tpublic _message_fields: [string, string, boolean][] = [\n\t\t['flags', 'uint32_t', false],\n\t\t['pitch', 'float', false],\n\t\t['yaw', 'float', false],\n\t\t['pitch_rate', 'float', false],\n\t\t['yaw_rate', 'float', false],\n\t\t['target_system', 'uint8_t', false],\n\t\t['target_component', 'uint8_t', false],\n\t\t['gimbal_device_id', 'uint8_t', false],\n\t];\n}","import {MAVLinkMessage} from '@ifrunistuttgart/node-mavlink';\nimport {readInt64LE, readUInt64LE} from '@ifrunistuttgart/node-mavlink';\nimport {GimbalManagerFlags} from '../enums/gimbal-manager-flags';\n/*\nHigh level message to control a gimbal manually. The angles or angular rates are unitless; the actual rates will depend on internal gimbal manager settings/configuration (e.g. set by parameters). This message is to be sent to the gimbal manager (e.g. from a ground station). Angles and rates can be set to NaN according to use case.\n*/\n// target_system System ID uint8_t\n// target_component Component ID uint8_t\n// flags High level gimbal manager flags. uint32_t\n// gimbal_device_id Component ID of gimbal device to address (or 1-6 for non-MAVLink gimbal), 0 for all gimbal device components. Send command multiple times for more than one gimbal (but not all gimbals). uint8_t\n// pitch Pitch angle unitless (-1..1, positive: up, negative: down, NaN to be ignored). float\n// yaw Yaw angle unitless (-1..1, positive: to the right, negative: to the left, NaN to be ignored). float\n// pitch_rate Pitch angular rate unitless (-1..1, positive: up, negative: down, NaN to be ignored). float\n// yaw_rate Yaw angular rate unitless (-1..1, positive: to the right, negative: to the left, NaN to be ignored). float\nexport class GimbalManagerSetManualControl extends MAVLinkMessage {\n\tpublic target_system!: number;\n\tpublic target_component!: number;\n\tpublic flags!: GimbalManagerFlags;\n\tpublic gimbal_device_id!: number;\n\tpublic pitch!: number;\n\tpublic yaw!: number;\n\tpublic pitch_rate!: number;\n\tpublic yaw_rate!: number;\n\tpublic _message_id: number = 288;\n\tpublic _message_name: string = 'GIMBAL_MANAGER_SET_MANUAL_CONTROL';\n\tpublic _crc_extra: number = 20;\n\tpublic _message_fields: [string, string, boolean][] = [\n\t\t['flags', 'uint32_t', false],\n\t\t['pitch', 'float', false],\n\t\t['yaw', 'float', false],\n\t\t['pitch_rate', 'float', false],\n\t\t['yaw_rate', 'float', false],\n\t\t['target_system', 'uint8_t', false],\n\t\t['target_component', 'uint8_t', false],\n\t\t['gimbal_device_id', 'uint8_t', false],\n\t];\n}","import {MAVLinkMessage} from '@ifrunistuttgart/node-mavlink';\nimport {readInt64LE, readUInt64LE} from '@ifrunistuttgart/node-mavlink';\nimport {EscConnectionType} from '../enums/esc-connection-type';\nimport {EscFailureFlags} from '../enums/esc-failure-flags';\n/*\nESC information for lower rate streaming. Recommended streaming rate 1Hz. See ESC_STATUS for higher-rate ESC data.\n*/\n// index Index of the first ESC in this message. minValue = 0, maxValue = 60, increment = 4. uint8_t\n// time_usec Timestamp (UNIX Epoch time or time since system boot). The receiving end can infer timestamp format (since 1.1.1970 or since system boot) by checking for the magnitude the number. uint64_t\n// counter Counter of data packets received. uint16_t\n// count Total number of ESCs in all messages of this type. Message fields with an index higher than this should be ignored because they contain invalid data. uint8_t\n// connection_type Connection type protocol for all ESC. uint8_t\n// info Information regarding online/offline status of each ESC. uint8_t\n// failure_flags Bitmap of ESC failure flags. uint16_t\n// error_count Number of reported errors by each ESC since boot. uint32_t\n// temperature Temperature measured by each ESC. UINT8_MAX if data not supplied by ESC. uint8_t\nexport class EscInfo extends MAVLinkMessage {\n\tpublic index!: number;\n\tpublic time_usec!: number;\n\tpublic counter!: number;\n\tpublic count!: number;\n\tpublic connection_type!: EscConnectionType;\n\tpublic info!: number;\n\tpublic failure_flags!: EscFailureFlags;\n\tpublic error_count!: number;\n\tpublic temperature!: number;\n\tpublic _message_id: number = 290;\n\tpublic _message_name: string = 'ESC_INFO';\n\tpublic _crc_extra: number = 221;\n\tpublic _message_fields: [string, string, boolean][] = [\n\t\t['time_usec', 'uint64_t', false],\n\t\t['error_count', 'uint32_t', false],\n\t\t['counter', 'uint16_t', false],\n\t\t['failure_flags', 'uint16_t', false],\n\t\t['index', 'uint8_t', false],\n\t\t['count', 'uint8_t', false],\n\t\t['connection_type', 'uint8_t', false],\n\t\t['info', 'uint8_t', false],\n\t\t['temperature', 'uint8_t', false],\n\t];\n}","import {MAVLinkMessage} from '@ifrunistuttgart/node-mavlink';\nimport {readInt64LE, readUInt64LE} from '@ifrunistuttgart/node-mavlink';\n/*\nESC information for higher rate streaming. Recommended streaming rate is ~10 Hz. Information that changes more slowly is sent in ESC_INFO. It should typically only be streamed on high-bandwidth links (i.e. to a companion computer).\n*/\n// index Index of the first ESC in this message. minValue = 0, maxValue = 60, increment = 4. uint8_t\n// time_usec Timestamp (UNIX Epoch time or time since system boot). The receiving end can infer timestamp format (since 1.1.1970 or since system boot) by checking for the magnitude the number. uint64_t\n// rpm Reported motor RPM from each ESC (negative for reverse rotation). int32_t\n// voltage Voltage measured from each ESC. float\n// current Current measured from each ESC. float\nexport class EscStatus extends MAVLinkMessage {\n\tpublic index!: number;\n\tpublic time_usec!: number;\n\tpublic rpm!: number;\n\tpublic voltage!: number;\n\tpublic current!: number;\n\tpublic _message_id: number = 291;\n\tpublic _message_name: string = 'ESC_STATUS';\n\tpublic _crc_extra: number = 10;\n\tpublic _message_fields: [string, string, boolean][] = [\n\t\t['time_usec', 'uint64_t', false],\n\t\t['rpm', 'int32_t', false],\n\t\t['voltage', 'float', false],\n\t\t['current', 'float', false],\n\t\t['index', 'uint8_t', false],\n\t];\n}","import {MAVLinkMessage} from '@ifrunistuttgart/node-mavlink';\nimport {readInt64LE, readUInt64LE} from '@ifrunistuttgart/node-mavlink';\nimport {WifiConfigApMode} from '../enums/wifi-config-ap-mode';\nimport {WifiConfigApResponse} from '../enums/wifi-config-ap-response';\n/*\nConfigure WiFi AP SSID, password, and mode. This message is re-emitted as an acknowledgement by the AP. The message may also be explicitly requested using MAV_CMD_REQUEST_MESSAGE\n*/\n// ssid Name of Wi-Fi network (SSID). Blank to leave it unchanged when setting. Current SSID when sent back as a response. char\n// password Password. Blank for an open AP. MD5 hash when message is sent back as a response. char\n// mode WiFi Mode. int8_t\n// response Message acceptance response (sent back to GS). int8_t\nexport class WifiConfigAp extends MAVLinkMessage {\n\tpublic ssid!: string;\n\tpublic password!: string;\n\tpublic mode!: WifiConfigApMode;\n\tpublic response!: WifiConfigApResponse;\n\tpublic _message_id: number = 299;\n\tpublic _message_name: string = 'WIFI_CONFIG_AP';\n\tpublic _crc_extra: number = 19;\n\tpublic _message_fields: [string, string, boolean][] = [\n\t\t['ssid', 'char', false],\n\t\t['password', 'char', false],\n\t\t['mode', 'int8_t', true],\n\t\t['response', 'int8_t', true],\n\t];\n}","import {MAVLinkMessage} from '@ifrunistuttgart/node-mavlink';\nimport {readInt64LE, readUInt64LE} from '@ifrunistuttgart/node-mavlink';\nimport {AisNavStatus} from '../enums/ais-nav-status';\nimport {AisType} from '../enums/ais-type';\nimport {AisFlags} from '../enums/ais-flags';\n/*\nThe location and information of an AIS vessel\n*/\n// MMSI Mobile Marine Service Identifier, 9 decimal digits uint32_t\n// lat Latitude int32_t\n// lon Longitude int32_t\n// COG Course over ground uint16_t\n// heading True heading uint16_t\n// velocity Speed over ground uint16_t\n// turn_rate Turn rate int8_t\n// navigational_status Navigational status uint8_t\n// type Type of vessels uint8_t\n// dimension_bow Distance from lat/lon location to bow uint16_t\n// dimension_stern Distance from lat/lon location to stern uint16_t\n// dimension_port Distance from lat/lon location to port side uint8_t\n// dimension_starboard Distance from lat/lon location to starboard side uint8_t\n// callsign The vessel callsign char\n// name The vessel name char\n// tslc Time since last communication in seconds uint16_t\n// flags Bitmask to indicate various statuses including valid data fields uint16_t\nexport class AisVessel extends MAVLinkMessage {\n\tpublic MMSI!: number;\n\tpublic lat!: number;\n\tpublic lon!: number;\n\tpublic COG!: number;\n\tpublic heading!: number;\n\tpublic velocity!: number;\n\tpublic turn_rate!: number;\n\tpublic navigational_status!: AisNavStatus;\n\tpublic type!: AisType;\n\tpublic dimension_bow!: number;\n\tpublic dimension_stern!: number;\n\tpublic dimension_port!: number;\n\tpublic dimension_starboard!: number;\n\tpublic callsign!: string;\n\tpublic name!: string;\n\tpublic tslc!: number;\n\tpublic flags!: AisFlags;\n\tpublic _message_id: number = 301;\n\tpublic _message_name: string = 'AIS_VESSEL';\n\tpublic _crc_extra: number = 243;\n\tpublic _message_fields: [string, string, boolean][] = [\n\t\t['MMSI', 'uint32_t', false],\n\t\t['lat', 'int32_t', false],\n\t\t['lon', 'int32_t', false],\n\t\t['COG', 'uint16_t', false],\n\t\t['heading', 'uint16_t', false],\n\t\t['velocity', 'uint16_t', false],\n\t\t['dimension_bow', 'uint16_t', false],\n\t\t['dimension_stern', 'uint16_t', false],\n\t\t['tslc', 'uint16_t', false],\n\t\t['flags', 'uint16_t', false],\n\t\t['turn_rate', 'int8_t', false],\n\t\t['navigational_status', 'uint8_t', false],\n\t\t['type', 'uint8_t', false],\n\t\t['dimension_port', 'uint8_t', false],\n\t\t['dimension_starboard', 'uint8_t', false],\n\t\t['callsign', 'char', false],\n\t\t['name', 'char', false],\n\t];\n}","import {MAVLinkMessage} from '@ifrunistuttgart/node-mavlink';\nimport {readInt64LE, readUInt64LE} from '@ifrunistuttgart/node-mavlink';\nimport {UavcanNodeHealth} from '../enums/uavcan-node-health';\nimport {UavcanNodeMode} from '../enums/uavcan-node-mode';\n/*\nGeneral status information of an UAVCAN node. Please refer to the definition of the UAVCAN message \"uavcan.protocol.NodeStatus\" for the background information. The UAVCAN specification is available at http://uavcan.org.\n*/\n// time_usec Timestamp (UNIX Epoch time or time since system boot). The receiving end can infer timestamp format (since 1.1.1970 or since system boot) by checking for the magnitude of the number. uint64_t\n// uptime_sec Time since the start-up of the node. uint32_t\n// health Generalized node health status. uint8_t\n// mode Generalized operating mode. uint8_t\n// sub_mode Not used currently. uint8_t\n// vendor_specific_status_code Vendor-specific status information. uint16_t\nexport class UavcanNodeStatus extends MAVLinkMessage {\n\tpublic time_usec!: number;\n\tpublic uptime_sec!: number;\n\tpublic health!: UavcanNodeHealth;\n\tpublic mode!: UavcanNodeMode;\n\tpublic sub_mode!: number;\n\tpublic vendor_specific_status_code!: number;\n\tpublic _message_id: number = 310;\n\tpublic _message_name: string = 'UAVCAN_NODE_STATUS';\n\tpublic _crc_extra: number = 28;\n\tpublic _message_fields: [string, string, boolean][] = [\n\t\t['time_usec', 'uint64_t', false],\n\t\t['uptime_sec', 'uint32_t', false],\n\t\t['vendor_specific_status_code', 'uint16_t', false],\n\t\t['health', 'uint8_t', false],\n\t\t['mode', 'uint8_t', false],\n\t\t['sub_mode', 'uint8_t', false],\n\t];\n}","import {MAVLinkMessage} from '@ifrunistuttgart/node-mavlink';\nimport {readInt64LE, readUInt64LE} from '@ifrunistuttgart/node-mavlink';\n/*\nGeneral information describing a particular UAVCAN node. Please refer to the definition of the UAVCAN service \"uavcan.protocol.GetNodeInfo\" for the background information. This message should be emitted by the system whenever a new node appears online, or an existing node reboots. Additionally, it can be emitted upon request from the other end of the MAVLink channel (see MAV_CMD_UAVCAN_GET_NODE_INFO). It is also not prohibited to emit this message unconditionally at a low frequency. The UAVCAN specification is available at http://uavcan.org.\n*/\n// time_usec Timestamp (UNIX Epoch time or time since system boot). The receiving end can infer timestamp format (since 1.1.1970 or since system boot) by checking for the magnitude of the number. uint64_t\n// uptime_sec Time since the start-up of the node. uint32_t\n// name Node name string. For example, \"sapog.px4.io\". char\n// hw_version_major Hardware major version number. uint8_t\n// hw_version_minor Hardware minor version number. uint8_t\n// hw_unique_id Hardware unique 128-bit ID. uint8_t\n// sw_version_major Software major version number. uint8_t\n// sw_version_minor Software minor version number. uint8_t\n// sw_vcs_commit Version control system (VCS) revision identifier (e.g. git short commit hash). Zero if unknown. uint32_t\nexport class UavcanNodeInfo extends MAVLinkMessage {\n\tpublic time_usec!: number;\n\tpublic uptime_sec!: number;\n\tpublic name!: string;\n\tpublic hw_version_major!: number;\n\tpublic hw_version_minor!: number;\n\tpublic hw_unique_id!: number;\n\tpublic sw_version_major!: number;\n\tpublic sw_version_minor!: number;\n\tpublic sw_vcs_commit!: number;\n\tpublic _message_id: number = 311;\n\tpublic _message_name: string = 'UAVCAN_NODE_INFO';\n\tpublic _crc_extra: number = 95;\n\tpublic _message_fields: [string, string, boolean][] = [\n\t\t['time_usec', 'uint64_t', false],\n\t\t['uptime_sec', 'uint32_t', false],\n\t\t['sw_vcs_commit', 'uint32_t', false],\n\t\t['name', 'char', false],\n\t\t['hw_version_major', 'uint8_t', false],\n\t\t['hw_version_minor', 'uint8_t', false],\n\t\t['hw_unique_id', 'uint8_t', false],\n\t\t['sw_version_major', 'uint8_t', false],\n\t\t['sw_version_minor', 'uint8_t', false],\n\t];\n}","import {MAVLinkMessage} from '@ifrunistuttgart/node-mavlink';\nimport {readInt64LE, readUInt64LE} from '@ifrunistuttgart/node-mavlink';\n/*\nRequest to read the value of a parameter with either the param_id string id or param_index. PARAM_EXT_VALUE should be emitted in response.\n*/\n// target_system System ID uint8_t\n// target_component Component ID uint8_t\n// param_id Parameter id, terminated by NULL if the length is less than 16 human-readable chars and WITHOUT null termination (NULL) byte if the length is exactly 16 chars - applications have to provide 16+1 bytes storage if the ID is stored as string char\n// param_index Parameter index. Set to -1 to use the Parameter ID field as identifier (else param_id will be ignored) int16_t\nexport class ParamExtRequestRead extends MAVLinkMessage {\n\tpublic target_system!: number;\n\tpublic target_component!: number;\n\tpublic param_id!: string;\n\tpublic param_index!: number;\n\tpublic _message_id: number = 320;\n\tpublic _message_name: string = 'PARAM_EXT_REQUEST_READ';\n\tpublic _crc_extra: number = 243;\n\tpublic _message_fields: [string, string, boolean][] = [\n\t\t['param_index', 'int16_t', false],\n\t\t['target_system', 'uint8_t', false],\n\t\t['target_component', 'uint8_t', false],\n\t\t['param_id', 'char', false],\n\t];\n}","import {MAVLinkMessage} from '@ifrunistuttgart/node-mavlink';\nimport {readInt64LE, readUInt64LE} from '@ifrunistuttgart/node-mavlink';\n/*\nRequest all parameters of this component. All parameters should be emitted in response as PARAM_EXT_VALUE.\n*/\n// target_system System ID uint8_t\n// target_component Component ID uint8_t\nexport class ParamExtRequestList extends MAVLinkMessage {\n\tpublic target_system!: number;\n\tpublic target_component!: number;\n\tpublic _message_id: number = 321;\n\tpublic _message_name: string = 'PARAM_EXT_REQUEST_LIST';\n\tpublic _crc_extra: number = 88;\n\tpublic _message_fields: [string, string, boolean][] = [\n\t\t['target_system', 'uint8_t', false],\n\t\t['target_component', 'uint8_t', false],\n\t];\n}","import {MAVLinkMessage} from '@ifrunistuttgart/node-mavlink';\nimport {readInt64LE, readUInt64LE} from '@ifrunistuttgart/node-mavlink';\nimport {MavParamExtType} from '../enums/mav-param-ext-type';\n/*\nEmit the value of a parameter. The inclusion of param_count and param_index in the message allows the recipient to keep track of received parameters and allows them to re-request missing parameters after a loss or timeout.\n*/\n// param_id Parameter id, terminated by NULL if the length is less than 16 human-readable chars and WITHOUT null termination (NULL) byte if the length is exactly 16 chars - applications have to provide 16+1 bytes storage if the ID is stored as string char\n// param_value Parameter value char\n// param_type Parameter type. uint8_t\n// param_count Total number of parameters uint16_t\n// param_index Index of this parameter uint16_t\nexport class ParamExtValue extends MAVLinkMessage {\n\tpublic param_id!: string;\n\tpublic param_value!: string;\n\tpublic param_type!: MavParamExtType;\n\tpublic param_count!: number;\n\tpublic param_index!: number;\n\tpublic _message_id: number = 322;\n\tpublic _message_name: string = 'PARAM_EXT_VALUE';\n\tpublic _crc_extra: number = 243;\n\tpublic _message_fields: [string, string, boolean][] = [\n\t\t['param_count', 'uint16_t', false],\n\t\t['param_index', 'uint16_t', false],\n\t\t['param_id', 'char', false],\n\t\t['param_value', 'char', false],\n\t\t['param_type', 'uint8_t', false],\n\t];\n}","import {MAVLinkMessage} from '@ifrunistuttgart/node-mavlink';\nimport {readInt64LE, readUInt64LE} from '@ifrunistuttgart/node-mavlink';\nimport {MavParamExtType} from '../enums/mav-param-ext-type';\n/*\nSet a parameter value. In order to deal with message loss (and retransmission of PARAM_EXT_SET), when setting a parameter value and the new value is the same as the current value, you will immediately get a PARAM_ACK_ACCEPTED response. If the current state is PARAM_ACK_IN_PROGRESS, you will accordingly receive a PARAM_ACK_IN_PROGRESS in response.\n*/\n// target_system System ID uint8_t\n// target_component Component ID uint8_t\n// param_id Parameter id, terminated by NULL if the length is less than 16 human-readable chars and WITHOUT null termination (NULL) byte if the length is exactly 16 chars - applications have to provide 16+1 bytes storage if the ID is stored as string char\n// param_value Parameter value char\n// param_type Parameter type. uint8_t\nexport class ParamExtSet extends MAVLinkMessage {\n\tpublic target_system!: number;\n\tpublic target_component!: number;\n\tpublic param_id!: string;\n\tpublic param_value!: string;\n\tpublic param_type!: MavParamExtType;\n\tpublic _message_id: number = 323;\n\tpublic _message_name: string = 'PARAM_EXT_SET';\n\tpublic _crc_extra: number = 78;\n\tpublic _message_fields: [string, string, boolean][] = [\n\t\t['target_system', 'uint8_t', false],\n\t\t['target_component', 'uint8_t', false],\n\t\t['param_id', 'char', false],\n\t\t['param_value', 'char', false],\n\t\t['param_type', 'uint8_t', false],\n\t];\n}","import {MAVLinkMessage} from '@ifrunistuttgart/node-mavlink';\nimport {readInt64LE, readUInt64LE} from '@ifrunistuttgart/node-mavlink';\nimport {MavParamExtType} from '../enums/mav-param-ext-type';\nimport {ParamAck} from '../enums/param-ack';\n/*\nResponse from a PARAM_EXT_SET message.\n*/\n// param_id Parameter id, terminated by NULL if the length is less than 16 human-readable chars and WITHOUT null termination (NULL) byte if the length is exactly 16 chars - applications have to provide 16+1 bytes storage if the ID is stored as string char\n// param_value Parameter value (new value if PARAM_ACK_ACCEPTED, current value otherwise) char\n// param_type Parameter type. uint8_t\n// param_result Result code. uint8_t\nexport class ParamExtAck extends MAVLinkMessage {\n\tpublic param_id!: string;\n\tpublic param_value!: string;\n\tpublic param_type!: MavParamExtType;\n\tpublic param_result!: ParamAck;\n\tpublic _message_id: number = 324;\n\tpublic _message_name: string = 'PARAM_EXT_ACK';\n\tpublic _crc_extra: number = 132;\n\tpublic _message_fields: [string, string, boolean][] = [\n\t\t['param_id', 'char', false],\n\t\t['param_value', 'char', false],\n\t\t['param_type', 'uint8_t', false],\n\t\t['param_result', 'uint8_t', false],\n\t];\n}","import {MAVLinkMessage} from '@ifrunistuttgart/node-mavlink';\nimport {readInt64LE, readUInt64LE} from '@ifrunistuttgart/node-mavlink';\nimport {MavDistanceSensor} from '../enums/mav-distance-sensor';\nimport {MavFrame} from '../enums/mav-frame';\n/*\nObstacle distances in front of the sensor, starting from the left in increment degrees to the right\n*/\n// time_usec Timestamp (UNIX Epoch time or time since system boot). The receiving end can infer timestamp format (since 1.1.1970 or since system boot) by checking for the magnitude of the number. uint64_t\n// sensor_type Class id of the distance sensor type. uint8_t\n// distances Distance of obstacles around the vehicle with index 0 corresponding to north + angle_offset, unless otherwise specified in the frame. A value of 0 is valid and means that the obstacle is practically touching the sensor. A value of max_distance +1 means no obstacle is present. A value of UINT16_MAX for unknown/not used. In a array element, one unit corresponds to 1cm. uint16_t\n// increment Angular width in degrees of each array element. Increment direction is clockwise. This field is ignored if increment_f is non-zero. uint8_t\n// min_distance Minimum distance the sensor can measure. uint16_t\n// max_distance Maximum distance the sensor can measure. uint16_t\n// increment_f Angular width in degrees of each array element as a float. If non-zero then this value is used instead of the uint8_t increment field. Positive is clockwise direction, negative is counter-clockwise. float\n// angle_offset Relative angle offset of the 0-index element in the distances array. Value of 0 corresponds to forward. Positive is clockwise direction, negative is counter-clockwise. float\n// frame Coordinate frame of reference for the yaw rotation and offset of the sensor data. Defaults to MAV_FRAME_GLOBAL, which is north aligned. For body-mounted sensors use MAV_FRAME_BODY_FRD, which is vehicle front aligned. uint8_t\nexport class ObstacleDistance extends MAVLinkMessage {\n\tpublic time_usec!: number;\n\tpublic sensor_type!: MavDistanceSensor;\n\tpublic distances!: number;\n\tpublic increment!: number;\n\tpublic min_distance!: number;\n\tpublic max_distance!: number;\n\tpublic increment_f!: number;\n\tpublic angle_offset!: number;\n\tpublic frame!: MavFrame;\n\tpublic _message_id: number = 330;\n\tpublic _message_name: string = 'OBSTACLE_DISTANCE';\n\tpublic _crc_extra: number = 23;\n\tpublic _message_fields: [string, string, boolean][] = [\n\t\t['time_usec', 'uint64_t', false],\n\t\t['distances', 'uint16_t', false],\n\t\t['min_distance', 'uint16_t', false],\n\t\t['max_distance', 'uint16_t', false],\n\t\t['sensor_type', 'uint8_t', false],\n\t\t['increment', 'uint8_t', false],\n\t\t['increment_f', 'float', true],\n\t\t['angle_offset', 'float', true],\n\t\t['frame', 'uint8_t', true],\n\t];\n}","import {MAVLinkMessage} from '@ifrunistuttgart/node-mavlink';\nimport {readInt64LE, readUInt64LE} from '@ifrunistuttgart/node-mavlink';\nimport {MavFrame} from '../enums/mav-frame';\nimport {MavEstimatorType} from '../enums/mav-estimator-type';\n/*\nOdometry message to communicate odometry information with an external interface. Fits ROS REP 147 standard for aerial vehicles (http://www.ros.org/reps/rep-0147.html).\n*/\n// time_usec Timestamp (UNIX Epoch time or time since system boot). The receiving end can infer timestamp format (since 1.1.1970 or since system boot) by checking for the magnitude of the number. uint64_t\n// frame_id Coordinate frame of reference for the pose data. uint8_t\n// child_frame_id Coordinate frame of reference for the velocity in free space (twist) data. uint8_t\n// x X Position float\n// y Y Position float\n// z Z Position float\n// q Quaternion components, w, x, y, z (1 0 0 0 is the null-rotation) float\n// vx X linear speed float\n// vy Y linear speed float\n// vz Z linear speed float\n// rollspeed Roll angular speed float\n// pitchspeed Pitch angular speed float\n// yawspeed Yaw angular speed float\n// pose_covariance Row-major representation of a 6x6 pose cross-covariance matrix upper right triangle (states: x, y, z, roll, pitch, yaw; first six entries are the first ROW, next five entries are the second ROW, etc.). If unknown, assign NaN value to first element in the array. float\n// velocity_covariance Row-major representation of a 6x6 velocity cross-covariance matrix upper right triangle (states: vx, vy, vz, rollspeed, pitchspeed, yawspeed; first six entries are the first ROW, next five entries are the second ROW, etc.). If unknown, assign NaN value to first element in the array. float\n// reset_counter Estimate reset counter. This should be incremented when the estimate resets in any of the dimensions (position, velocity, attitude, angular speed). This is designed to be used when e.g an external SLAM system detects a loop-closure and the estimate jumps. uint8_t\n// estimator_type Type of estimator that is providing the odometry. uint8_t\nexport class Odometry extends MAVLinkMessage {\n\tpublic time_usec!: number;\n\tpublic frame_id!: MavFrame;\n\tpublic child_frame_id!: MavFrame;\n\tpublic x!: number;\n\tpublic y!: number;\n\tpublic z!: number;\n\tpublic q!: number;\n\tpublic vx!: number;\n\tpublic vy!: number;\n\tpublic vz!: number;\n\tpublic rollspeed!: number;\n\tpublic pitchspeed!: number;\n\tpublic yawspeed!: number;\n\tpublic pose_covariance!: number;\n\tpublic velocity_covariance!: number;\n\tpublic reset_counter!: number;\n\tpublic estimator_type!: MavEstimatorType;\n\tpublic _message_id: number = 331;\n\tpublic _message_name: string = 'ODOMETRY';\n\tpublic _crc_extra: number = 91;\n\tpublic _message_fields: [string, string, boolean][] = [\n\t\t['time_usec', 'uint64_t', false],\n\t\t['x', 'float', false],\n\t\t['y', 'float', false],\n\t\t['z', 'float', false],\n\t\t['q', 'float', false],\n\t\t['vx', 'float', false],\n\t\t['vy', 'float', false],\n\t\t['vz', 'float', false],\n\t\t['rollspeed', 'float', false],\n\t\t['pitchspeed', 'float', false],\n\t\t['yawspeed', 'float', false],\n\t\t['pose_covariance', 'float', false],\n\t\t['velocity_covariance', 'float', false],\n\t\t['frame_id', 'uint8_t', false],\n\t\t['child_frame_id', 'uint8_t', false],\n\t\t['reset_counter', 'uint8_t', true],\n\t\t['estimator_type', 'uint8_t', true],\n\t];\n}","import {MAVLinkMessage} from '@ifrunistuttgart/node-mavlink';\nimport {readInt64LE, readUInt64LE} from '@ifrunistuttgart/node-mavlink';\nimport {MavCmd} from '../enums/mav-cmd';\n/*\nDescribe a trajectory using an array of up-to 5 waypoints in the local frame (MAV_FRAME_LOCAL_NED).\n*/\n// time_usec Timestamp (UNIX Epoch time or time since system boot). The receiving end can infer timestamp format (since 1.1.1970 or since system boot) by checking for the magnitude of the number. uint64_t\n// valid_points Number of valid points (up-to 5 waypoints are possible) uint8_t\n// pos_x X-coordinate of waypoint, set to NaN if not being used float\n// pos_y Y-coordinate of waypoint, set to NaN if not being used float\n// pos_z Z-coordinate of waypoint, set to NaN if not being used float\n// vel_x X-velocity of waypoint, set to NaN if not being used float\n// vel_y Y-velocity of waypoint, set to NaN if not being used float\n// vel_z Z-velocity of waypoint, set to NaN if not being used float\n// acc_x X-acceleration of waypoint, set to NaN if not being used float\n// acc_y Y-acceleration of waypoint, set to NaN if not being used float\n// acc_z Z-acceleration of waypoint, set to NaN if not being used float\n// pos_yaw Yaw angle, set to NaN if not being used float\n// vel_yaw Yaw rate, set to NaN if not being used float\n// command Scheduled action for each waypoint, UINT16_MAX if not being used. uint16_t\nexport class TrajectoryRepresentationWaypoints extends MAVLinkMessage {\n\tpublic time_usec!: number;\n\tpublic valid_points!: number;\n\tpublic pos_x!: number;\n\tpublic pos_y!: number;\n\tpublic pos_z!: number;\n\tpublic vel_x!: number;\n\tpublic vel_y!: number;\n\tpublic vel_z!: number;\n\tpublic acc_x!: number;\n\tpublic acc_y!: number;\n\tpublic acc_z!: number;\n\tpublic pos_yaw!: number;\n\tpublic vel_yaw!: number;\n\tpublic command!: MavCmd;\n\tpublic _message_id: number = 332;\n\tpublic _message_name: string = 'TRAJECTORY_REPRESENTATION_WAYPOINTS';\n\tpublic _crc_extra: number = 236;\n\tpublic _message_fields: [string, string, boolean][] = [\n\t\t['time_usec', 'uint64_t', false],\n\t\t['pos_x', 'float', false],\n\t\t['pos_y', 'float', false],\n\t\t['pos_z', 'float', false],\n\t\t['vel_x', 'float', false],\n\t\t['vel_y', 'float', false],\n\t\t['vel_z', 'float', false],\n\t\t['acc_x', 'float', false],\n\t\t['acc_y', 'float', false],\n\t\t['acc_z', 'float', false],\n\t\t['pos_yaw', 'float', false],\n\t\t['vel_yaw', 'float', false],\n\t\t['command', 'uint16_t', false],\n\t\t['valid_points', 'uint8_t', false],\n\t];\n}","import {MAVLinkMessage} from '@ifrunistuttgart/node-mavlink';\nimport {readInt64LE, readUInt64LE} from '@ifrunistuttgart/node-mavlink';\n/*\nDescribe a trajectory using an array of up-to 5 bezier control points in the local frame (MAV_FRAME_LOCAL_NED).\n*/\n// time_usec Timestamp (UNIX Epoch time or time since system boot). The receiving end can infer timestamp format (since 1.1.1970 or since system boot) by checking for the magnitude of the number. uint64_t\n// valid_points Number of valid control points (up-to 5 points are possible) uint8_t\n// pos_x X-coordinate of bezier control points. Set to NaN if not being used float\n// pos_y Y-coordinate of bezier control points. Set to NaN if not being used float\n// pos_z Z-coordinate of bezier control points. Set to NaN if not being used float\n// delta Bezier time horizon. Set to NaN if velocity/acceleration should not be incorporated float\n// pos_yaw Yaw. Set to NaN for unchanged float\nexport class TrajectoryRepresentationBezier extends MAVLinkMessage {\n\tpublic time_usec!: number;\n\tpublic valid_points!: number;\n\tpublic pos_x!: number;\n\tpublic pos_y!: number;\n\tpublic pos_z!: number;\n\tpublic delta!: number;\n\tpublic pos_yaw!: number;\n\tpublic _message_id: number = 333;\n\tpublic _message_name: string = 'TRAJECTORY_REPRESENTATION_BEZIER';\n\tpublic _crc_extra: number = 231;\n\tpublic _message_fields: [string, string, boolean][] = [\n\t\t['time_usec', 'uint64_t', false],\n\t\t['pos_x', 'float', false],\n\t\t['pos_y', 'float', false],\n\t\t['pos_z', 'float', false],\n\t\t['delta', 'float', false],\n\t\t['pos_yaw', 'float', false],\n\t\t['valid_points', 'uint8_t', false],\n\t];\n}","import {MAVLinkMessage} from '@ifrunistuttgart/node-mavlink';\nimport {readInt64LE, readUInt64LE} from '@ifrunistuttgart/node-mavlink';\nimport {CellularStatusFlag} from '../enums/cellular-status-flag';\nimport {CellularNetworkFailedReason} from '../enums/cellular-network-failed-reason';\nimport {CellularNetworkRadioType} from '../enums/cellular-network-radio-type';\n/*\nReport current used cellular network status\n*/\n// status Cellular modem status uint8_t\n// failure_reason Failure reason when status in in CELLUAR_STATUS_FAILED uint8_t\n// type Cellular network radio type: gsm, cdma, lte... uint8_t\n// quality Signal quality in percent. If unknown, set to UINT8_MAX uint8_t\n// mcc Mobile country code. If unknown, set to UINT16_MAX uint16_t\n// mnc Mobile network code. If unknown, set to UINT16_MAX uint16_t\n// lac Location area code. If unknown, set to 0 uint16_t\nexport class CellularStatus extends MAVLinkMessage {\n\tpublic status!: CellularStatusFlag;\n\tpublic failure_reason!: CellularNetworkFailedReason;\n\tpublic type!: CellularNetworkRadioType;\n\tpublic quality!: number;\n\tpublic mcc!: number;\n\tpublic mnc!: number;\n\tpublic lac!: number;\n\tpublic _message_id: number = 334;\n\tpublic _message_name: string = 'CELLULAR_STATUS';\n\tpublic _crc_extra: number = 72;\n\tpublic _message_fields: [string, string, boolean][] = [\n\t\t['mcc', 'uint16_t', false],\n\t\t['mnc', 'uint16_t', false],\n\t\t['lac', 'uint16_t', false],\n\t\t['status', 'uint8_t', false],\n\t\t['failure_reason', 'uint8_t', false],\n\t\t['type', 'uint8_t', false],\n\t\t['quality', 'uint8_t', false],\n\t];\n}","import {MAVLinkMessage} from '@ifrunistuttgart/node-mavlink';\nimport {readInt64LE, readUInt64LE} from '@ifrunistuttgart/node-mavlink';\n/*\nStatus of the Iridium SBD link.\n*/\n// timestamp Timestamp (UNIX Epoch time or time since system boot). The receiving end can infer timestamp format (since 1.1.1970 or since system boot) by checking for the magnitude of the number. uint64_t\n// last_heartbeat Timestamp of the last successful sbd session. The receiving end can infer timestamp format (since 1.1.1970 or since system boot) by checking for the magnitude of the number. uint64_t\n// failed_sessions Number of failed SBD sessions. uint16_t\n// successful_sessions Number of successful SBD sessions. uint16_t\n// signal_quality Signal quality equal to the number of bars displayed on the ISU signal strength indicator. Range is 0 to 5, where 0 indicates no signal and 5 indicates maximum signal strength. uint8_t\n// ring_pending 1: Ring call pending, 0: No call pending. uint8_t\n// tx_session_pending 1: Transmission session pending, 0: No transmission session pending. uint8_t\n// rx_session_pending 1: Receiving session pending, 0: No receiving session pending. uint8_t\nexport class IsbdLinkStatus extends MAVLinkMessage {\n\tpublic timestamp!: number;\n\tpublic last_heartbeat!: number;\n\tpublic failed_sessions!: number;\n\tpublic successful_sessions!: number;\n\tpublic signal_quality!: number;\n\tpublic ring_pending!: number;\n\tpublic tx_session_pending!: number;\n\tpublic rx_session_pending!: number;\n\tpublic _message_id: number = 335;\n\tpublic _message_name: string = 'ISBD_LINK_STATUS';\n\tpublic _crc_extra: number = 225;\n\tpublic _message_fields: [string, string, boolean][] = [\n\t\t['timestamp', 'uint64_t', false],\n\t\t['last_heartbeat', 'uint64_t', false],\n\t\t['failed_sessions', 'uint16_t', false],\n\t\t['successful_sessions', 'uint16_t', false],\n\t\t['signal_quality', 'uint8_t', false],\n\t\t['ring_pending', 'uint8_t', false],\n\t\t['tx_session_pending', 'uint8_t', false],\n\t\t['rx_session_pending', 'uint8_t', false],\n\t];\n}","import {MAVLinkMessage} from '@ifrunistuttgart/node-mavlink';\nimport {readInt64LE, readUInt64LE} from '@ifrunistuttgart/node-mavlink';\nimport {CellularConfigResponse} from '../enums/cellular-config-response';\n/*\nConfigure cellular modems. This message is re-emitted as an acknowledgement by the modem. The message may also be explicitly requested using MAV_CMD_REQUEST_MESSAGE.\n*/\n// enable_lte Enable/disable LTE. 0: setting unchanged, 1: disabled, 2: enabled. Current setting when sent back as a response. uint8_t\n// enable_pin Enable/disable PIN on the SIM card. 0: setting unchanged, 1: disabled, 2: enabled. Current setting when sent back as a response. uint8_t\n// pin PIN sent to the SIM card. Blank when PIN is disabled. Empty when message is sent back as a response. char\n// new_pin New PIN when changing the PIN. Blank to leave it unchanged. Empty when message is sent back as a response. char\n// apn Name of the cellular APN. Blank to leave it unchanged. Current APN when sent back as a response. char\n// puk Required PUK code in case the user failed to authenticate 3 times with the PIN. Empty when message is sent back as a response. char\n// roaming Enable/disable roaming. 0: setting unchanged, 1: disabled, 2: enabled. Current setting when sent back as a response. uint8_t\n// response Message acceptance response (sent back to GS). uint8_t\nexport class CellularConfig extends MAVLinkMessage {\n\tpublic enable_lte!: number;\n\tpublic enable_pin!: number;\n\tpublic pin!: string;\n\tpublic new_pin!: string;\n\tpublic apn!: string;\n\tpublic puk!: string;\n\tpublic roaming!: number;\n\tpublic response!: CellularConfigResponse;\n\tpublic _message_id: number = 336;\n\tpublic _message_name: string = 'CELLULAR_CONFIG';\n\tpublic _crc_extra: number = 245;\n\tpublic _message_fields: [string, string, boolean][] = [\n\t\t['enable_lte', 'uint8_t', false],\n\t\t['enable_pin', 'uint8_t', false],\n\t\t['pin', 'char', false],\n\t\t['new_pin', 'char', false],\n\t\t['apn', 'char', false],\n\t\t['puk', 'char', false],\n\t\t['roaming', 'uint8_t', false],\n\t\t['response', 'uint8_t', false],\n\t];\n}","import {MAVLinkMessage} from '@ifrunistuttgart/node-mavlink';\nimport {readInt64LE, readUInt64LE} from '@ifrunistuttgart/node-mavlink';\n/*\nRPM sensor data message.\n*/\n// index Index of this RPM sensor (0-indexed) uint8_t\n// frequency Indicated rate float\nexport class RawRpm extends MAVLinkMessage {\n\tpublic index!: number;\n\tpublic frequency!: number;\n\tpublic _message_id: number = 339;\n\tpublic _message_name: string = 'RAW_RPM';\n\tpublic _crc_extra: number = 199;\n\tpublic _message_fields: [string, string, boolean][] = [\n\t\t['frequency', 'float', false],\n\t\t['index', 'uint8_t', false],\n\t];\n}","import {MAVLinkMessage} from '@ifrunistuttgart/node-mavlink';\nimport {readInt64LE, readUInt64LE} from '@ifrunistuttgart/node-mavlink';\nimport {UtmFlightState} from '../enums/utm-flight-state';\nimport {UtmDataAvailFlags} from '../enums/utm-data-avail-flags';\n/*\nThe global position resulting from GPS and sensor fusion.\n*/\n// time Time of applicability of position (microseconds since UNIX epoch). uint64_t\n// uas_id Unique UAS ID. uint8_t\n// lat Latitude (WGS84) int32_t\n// lon Longitude (WGS84) int32_t\n// alt Altitude (WGS84) int32_t\n// relative_alt Altitude above ground int32_t\n// vx Ground X speed (latitude, positive north) int16_t\n// vy Ground Y speed (longitude, positive east) int16_t\n// vz Ground Z speed (altitude, positive down) int16_t\n// h_acc Horizontal position uncertainty (standard deviation) uint16_t\n// v_acc Altitude uncertainty (standard deviation) uint16_t\n// vel_acc Speed uncertainty (standard deviation) uint16_t\n// next_lat Next waypoint, latitude (WGS84) int32_t\n// next_lon Next waypoint, longitude (WGS84) int32_t\n// next_alt Next waypoint, altitude (WGS84) int32_t\n// update_rate Time until next update. Set to 0 if unknown or in data driven mode. uint16_t\n// flight_state Flight state uint8_t\n// flags Bitwise OR combination of the data available flags. uint8_t\nexport class UtmGlobalPosition extends MAVLinkMessage {\n\tpublic time!: number;\n\tpublic uas_id!: number;\n\tpublic lat!: number;\n\tpublic lon!: number;\n\tpublic alt!: number;\n\tpublic relative_alt!: number;\n\tpublic vx!: number;\n\tpublic vy!: number;\n\tpublic vz!: number;\n\tpublic h_acc!: number;\n\tpublic v_acc!: number;\n\tpublic vel_acc!: number;\n\tpublic next_lat!: number;\n\tpublic next_lon!: number;\n\tpublic next_alt!: number;\n\tpublic update_rate!: number;\n\tpublic flight_state!: UtmFlightState;\n\tpublic flags!: UtmDataAvailFlags;\n\tpublic _message_id: number = 340;\n\tpublic _message_name: string = 'UTM_GLOBAL_POSITION';\n\tpublic _crc_extra: number = 99;\n\tpublic _message_fields: [string, string, boolean][] = [\n\t\t['time', 'uint64_t', false],\n\t\t['lat', 'int32_t', false],\n\t\t['lon', 'int32_t', false],\n\t\t['alt', 'int32_t', false],\n\t\t['relative_alt', 'int32_t', false],\n\t\t['next_lat', 'int32_t', false],\n\t\t['next_lon', 'int32_t', false],\n\t\t['next_alt', 'int32_t', false],\n\t\t['vx', 'int16_t', false],\n\t\t['vy', 'int16_t', false],\n\t\t['vz', 'int16_t', false],\n\t\t['h_acc', 'uint16_t', false],\n\t\t['v_acc', 'uint16_t', false],\n\t\t['vel_acc', 'uint16_t', false],\n\t\t['update_rate', 'uint16_t', false],\n\t\t['uas_id', 'uint8_t', false],\n\t\t['flight_state', 'uint8_t', false],\n\t\t['flags', 'uint8_t', false],\n\t];\n}","import {MAVLinkMessage} from '@ifrunistuttgart/node-mavlink';\nimport {readInt64LE, readUInt64LE} from '@ifrunistuttgart/node-mavlink';\n/*\nLarge debug/prototyping array. The message uses the maximum available payload for data. The array_id and name fields are used to discriminate between messages in code and in user interfaces (respectively). Do not use in production code.\n*/\n// time_usec Timestamp (UNIX Epoch time or time since system boot). The receiving end can infer timestamp format (since 1.1.1970 or since system boot) by checking for the magnitude of the number. uint64_t\n// name Name, for human-friendly display in a Ground Control Station char\n// array_id Unique ID used to discriminate between arrays uint16_t\n// data data float\nexport class DebugFloatArray extends MAVLinkMessage {\n\tpublic time_usec!: number;\n\tpublic name!: string;\n\tpublic array_id!: number;\n\tpublic data!: number;\n\tpublic _message_id: number = 350;\n\tpublic _message_name: string = 'DEBUG_FLOAT_ARRAY';\n\tpublic _crc_extra: number = 232;\n\tpublic _message_fields: [string, string, boolean][] = [\n\t\t['time_usec', 'uint64_t', false],\n\t\t['array_id', 'uint16_t', false],\n\t\t['name', 'char', false],\n\t\t['data', 'float', true],\n\t];\n}","import {MAVLinkMessage} from '@ifrunistuttgart/node-mavlink';\nimport {readInt64LE, readUInt64LE} from '@ifrunistuttgart/node-mavlink';\nimport {MavFrame} from '../enums/mav-frame';\n/*\nVehicle status report that is sent out while orbit execution is in progress (see MAV_CMD_DO_ORBIT).\n*/\n// time_usec Timestamp (UNIX Epoch time or time since system boot). The receiving end can infer timestamp format (since 1.1.1970 or since system boot) by checking for the magnitude of the number. uint64_t\n// radius Radius of the orbit circle. Positive values orbit clockwise, negative values orbit counter-clockwise. float\n// frame The coordinate system of the fields: x, y, z. uint8_t\n// x X coordinate of center point. Coordinate system depends on frame field: local = x position in meters * 1e4, global = latitude in degrees * 1e7. int32_t\n// y Y coordinate of center point. Coordinate system depends on frame field: local = x position in meters * 1e4, global = latitude in degrees * 1e7. int32_t\n// z Altitude of center point. Coordinate system depends on frame field. float\nexport class OrbitExecutionStatus extends MAVLinkMessage {\n\tpublic time_usec!: number;\n\tpublic radius!: number;\n\tpublic frame!: MavFrame;\n\tpublic x!: number;\n\tpublic y!: number;\n\tpublic z!: number;\n\tpublic _message_id: number = 360;\n\tpublic _message_name: string = 'ORBIT_EXECUTION_STATUS';\n\tpublic _crc_extra: number = 11;\n\tpublic _message_fields: [string, string, boolean][] = [\n\t\t['time_usec', 'uint64_t', false],\n\t\t['radius', 'float', false],\n\t\t['x', 'int32_t', false],\n\t\t['y', 'int32_t', false],\n\t\t['z', 'float', false],\n\t\t['frame', 'uint8_t', false],\n\t];\n}","import {MAVLinkMessage} from '@ifrunistuttgart/node-mavlink';\nimport {readInt64LE, readUInt64LE} from '@ifrunistuttgart/node-mavlink';\nimport {MavBatteryFunction} from '../enums/mav-battery-function';\nimport {MavBatteryType} from '../enums/mav-battery-type';\n/*\nSmart Battery information (static/infrequent update). Use for updates from: smart battery to flight stack, flight stack to GCS. Use BATTERY_STATUS for smart battery frequent updates.\n*/\n// id Battery ID uint8_t\n// battery_function Function of the battery uint8_t\n// type Type (chemistry) of the battery uint8_t\n// capacity_full_specification Capacity when full according to manufacturer, -1: field not provided. int32_t\n// capacity_full Capacity when full (accounting for battery degradation), -1: field not provided. int32_t\n// cycle_count Charge/discharge cycle count. UINT16_MAX: field not provided. uint16_t\n// serial_number Serial number in ASCII characters, 0 terminated. All 0: field not provided. char\n// device_name Static device name. Encode as manufacturer and product names separated using an underscore. char\n// weight Battery weight. 0: field not provided. uint16_t\n// discharge_minimum_voltage Minimum per-cell voltage when discharging. If not supplied set to UINT16_MAX value. uint16_t\n// charging_minimum_voltage Minimum per-cell voltage when charging. If not supplied set to UINT16_MAX value. uint16_t\n// resting_minimum_voltage Minimum per-cell voltage when resting. If not supplied set to UINT16_MAX value. uint16_t\nexport class SmartBatteryInfo extends MAVLinkMessage {\n\tpublic id!: number;\n\tpublic battery_function!: MavBatteryFunction;\n\tpublic type!: MavBatteryType;\n\tpublic capacity_full_specification!: number;\n\tpublic capacity_full!: number;\n\tpublic cycle_count!: number;\n\tpublic serial_number!: string;\n\tpublic device_name!: string;\n\tpublic weight!: number;\n\tpublic discharge_minimum_voltage!: number;\n\tpublic charging_minimum_voltage!: number;\n\tpublic resting_minimum_voltage!: number;\n\tpublic _message_id: number = 370;\n\tpublic _message_name: string = 'SMART_BATTERY_INFO';\n\tpublic _crc_extra: number = 75;\n\tpublic _message_fields: [string, string, boolean][] = [\n\t\t['capacity_full_specification', 'int32_t', false],\n\t\t['capacity_full', 'int32_t', false],\n\t\t['cycle_count', 'uint16_t', false],\n\t\t['weight', 'uint16_t', false],\n\t\t['discharge_minimum_voltage', 'uint16_t', false],\n\t\t['charging_minimum_voltage', 'uint16_t', false],\n\t\t['resting_minimum_voltage', 'uint16_t', false],\n\t\t['id', 'uint8_t', false],\n\t\t['battery_function', 'uint8_t', false],\n\t\t['type', 'uint8_t', false],\n\t\t['serial_number', 'char', false],\n\t\t['device_name', 'char', false],\n\t];\n}","import {MAVLinkMessage} from '@ifrunistuttgart/node-mavlink';\nimport {readInt64LE, readUInt64LE} from '@ifrunistuttgart/node-mavlink';\nimport {MavGeneratorStatusFlag} from '../enums/mav-generator-status-flag';\n/*\nTelemetry of power generation system. Alternator or mechanical generator.\n*/\n// status Status flags. uint64_t\n// generator_speed Speed of electrical generator or alternator. UINT16_MAX: field not provided. uint16_t\n// battery_current Current into/out of battery. Positive for out. Negative for in. NaN: field not provided. float\n// load_current Current going to the UAV. If battery current not available this is the DC current from the generator. Positive for out. Negative for in. NaN: field not provided float\n// power_generated The power being generated. NaN: field not provided float\n// bus_voltage Voltage of the bus seen at the generator, or battery bus if battery bus is controlled by generator and at a different voltage to main bus. float\n// rectifier_temperature The temperature of the rectifier or power converter. INT16_MAX: field not provided. int16_t\n// bat_current_setpoint The target battery current. Positive for out. Negative for in. NaN: field not provided float\n// generator_temperature The temperature of the mechanical motor, fuel cell core or generator. INT16_MAX: field not provided. int16_t\n// runtime Seconds this generator has run since it was rebooted. UINT32_MAX: field not provided. uint32_t\n// time_until_maintenance Seconds until this generator requires maintenance. A negative value indicates maintenance is past-due. INT32_MAX: field not provided. int32_t\nexport class GeneratorStatus extends MAVLinkMessage {\n\tpublic status!: MavGeneratorStatusFlag;\n\tpublic generator_speed!: number;\n\tpublic battery_current!: number;\n\tpublic load_current!: number;\n\tpublic power_generated!: number;\n\tpublic bus_voltage!: number;\n\tpublic rectifier_temperature!: number;\n\tpublic bat_current_setpoint!: number;\n\tpublic generator_temperature!: number;\n\tpublic runtime!: number;\n\tpublic time_until_maintenance!: number;\n\tpublic _message_id: number = 373;\n\tpublic _message_name: string = 'GENERATOR_STATUS';\n\tpublic _crc_extra: number = 117;\n\tpublic _message_fields: [string, string, boolean][] = [\n\t\t['status', 'uint64_t', false],\n\t\t['battery_current', 'float', false],\n\t\t['load_current', 'float', false],\n\t\t['power_generated', 'float', false],\n\t\t['bus_voltage', 'float', false],\n\t\t['bat_current_setpoint', 'float', false],\n\t\t['runtime', 'uint32_t', false],\n\t\t['time_until_maintenance', 'int32_t', false],\n\t\t['generator_speed', 'uint16_t', false],\n\t\t['rectifier_temperature', 'int16_t', false],\n\t\t['generator_temperature', 'int16_t', false],\n\t];\n}","import {MAVLinkMessage} from '@ifrunistuttgart/node-mavlink';\nimport {readInt64LE, readUInt64LE} from '@ifrunistuttgart/node-mavlink';\n/*\nThe raw values of the actuator outputs (e.g. on Pixhawk, from MAIN, AUX ports). This message supersedes SERVO_OUTPUT_RAW.\n*/\n// time_usec Timestamp (since system boot). uint64_t\n// active Active outputs uint32_t\n// actuator Servo / motor output array values. Zero values indicate unused channels. float\nexport class ActuatorOutputStatus extends MAVLinkMessage {\n\tpublic time_usec!: number;\n\tpublic active!: number;\n\tpublic actuator!: number;\n\tpublic _message_id: number = 375;\n\tpublic _message_name: string = 'ACTUATOR_OUTPUT_STATUS';\n\tpublic _crc_extra: number = 251;\n\tpublic _message_fields: [string, string, boolean][] = [\n\t\t['time_usec', 'uint64_t', false],\n\t\t['active', 'uint32_t', false],\n\t\t['actuator', 'float', false],\n\t];\n}","import {MAVLinkMessage} from '@ifrunistuttgart/node-mavlink';\nimport {readInt64LE, readUInt64LE} from '@ifrunistuttgart/node-mavlink';\n/*\nTime/duration estimates for various events and actions given the current vehicle state and position.\n*/\n// safe_return Estimated time to complete the vehicle's configured \"safe return\" action from its current position (e.g. RTL, Smart RTL, etc.). -1 indicates that the vehicle is landed, or that no time estimate available. int32_t\n// land Estimated time for vehicle to complete the LAND action from its current position. -1 indicates that the vehicle is landed, or that no time estimate available. int32_t\n// mission_next_item Estimated time for reaching/completing the currently active mission item. -1 means no time estimate available. int32_t\n// mission_end Estimated time for completing the current mission. -1 means no mission active and/or no estimate available. int32_t\n// commanded_action Estimated time for completing the current commanded action (i.e. Go To, Takeoff, Land, etc.). -1 means no action active and/or no estimate available. int32_t\nexport class TimeEstimateToTarget extends MAVLinkMessage {\n\tpublic safe_return!: number;\n\tpublic land!: number;\n\tpublic mission_next_item!: number;\n\tpublic mission_end!: number;\n\tpublic commanded_action!: number;\n\tpublic _message_id: number = 380;\n\tpublic _message_name: string = 'TIME_ESTIMATE_TO_TARGET';\n\tpublic _crc_extra: number = 232;\n\tpublic _message_fields: [string, string, boolean][] = [\n\t\t['safe_return', 'int32_t', false],\n\t\t['land', 'int32_t', false],\n\t\t['mission_next_item', 'int32_t', false],\n\t\t['mission_end', 'int32_t', false],\n\t\t['commanded_action', 'int32_t', false],\n\t];\n}","import {MAVLinkMessage} from '@ifrunistuttgart/node-mavlink';\nimport {readInt64LE, readUInt64LE} from '@ifrunistuttgart/node-mavlink';\nimport {MavTunnelPayloadType} from '../enums/mav-tunnel-payload-type';\n/*\nMessage for transporting \"arbitrary\" variable-length data from one component to another (broadcast is not forbidden, but discouraged). The encoding of the data is usually extension specific, i.e. determined by the source, and is usually not documented as part of the MAVLink specification.\n*/\n// target_system System ID (can be 0 for broadcast, but this is discouraged) uint8_t\n// target_component Component ID (can be 0 for broadcast, but this is discouraged) uint8_t\n// payload_type A code that identifies the content of the payload (0 for unknown, which is the default). If this code is less than 32768, it is a 'registered' payload type and the corresponding code should be added to the MAV_TUNNEL_PAYLOAD_TYPE enum. Software creators can register blocks of types as needed. Codes greater than 32767 are considered local experiments and should not be checked in to any widely distributed codebase. uint16_t\n// payload_length Length of the data transported in payload uint8_t\n// payload Variable length payload. The payload length is defined by payload_length. The entire content of this block is opaque unless you understand the encoding specified by payload_type. uint8_t\nexport class Tunnel extends MAVLinkMessage {\n\tpublic target_system!: number;\n\tpublic target_component!: number;\n\tpublic payload_type!: MavTunnelPayloadType;\n\tpublic payload_length!: number;\n\tpublic payload!: number;\n\tpublic _message_id: number = 385;\n\tpublic _message_name: string = 'TUNNEL';\n\tpublic _crc_extra: number = 147;\n\tpublic _message_fields: [string, string, boolean][] = [\n\t\t['payload_type', 'uint16_t', false],\n\t\t['target_system', 'uint8_t', false],\n\t\t['target_component', 'uint8_t', false],\n\t\t['payload_length', 'uint8_t', false],\n\t\t['payload', 'uint8_t', false],\n\t];\n}","import {MAVLinkMessage} from '@ifrunistuttgart/node-mavlink';\nimport {readInt64LE, readUInt64LE} from '@ifrunistuttgart/node-mavlink';\n/*\nHardware status sent by an onboard computer.\n*/\n// time_usec Timestamp (UNIX Epoch time or time since system boot). The receiving end can infer timestamp format (since 1.1.1970 or since system boot) by checking for the magnitude of the number. uint64_t\n// uptime Time since system boot. uint32_t\n// type Type of the onboard computer: 0: Mission computer primary, 1: Mission computer backup 1, 2: Mission computer backup 2, 3: Compute node, 4-5: Compute spares, 6-9: Payload computers. uint8_t\n// cpu_cores CPU usage on the component in percent (100 - idle). A value of UINT8_MAX implies the field is unused. uint8_t\n// cpu_combined Combined CPU usage as the last 10 slices of 100 MS (a histogram). This allows to identify spikes in load that max out the system, but only for a short amount of time. A value of UINT8_MAX implies the field is unused. uint8_t\n// gpu_cores GPU usage on the component in percent (100 - idle). A value of UINT8_MAX implies the field is unused. uint8_t\n// gpu_combined Combined GPU usage as the last 10 slices of 100 MS (a histogram). This allows to identify spikes in load that max out the system, but only for a short amount of time. A value of UINT8_MAX implies the field is unused. uint8_t\n// temperature_board Temperature of the board. A value of INT8_MAX implies the field is unused. int8_t\n// temperature_core Temperature of the CPU core. A value of INT8_MAX implies the field is unused. int8_t\n// fan_speed Fan speeds. A value of INT16_MAX implies the field is unused. int16_t\n// ram_usage Amount of used RAM on the component system. A value of UINT32_MAX implies the field is unused. uint32_t\n// ram_total Total amount of RAM on the component system. A value of UINT32_MAX implies the field is unused. uint32_t\n// storage_type Storage type: 0: HDD, 1: SSD, 2: EMMC, 3: SD card (non-removable), 4: SD card (removable). A value of UINT32_MAX implies the field is unused. uint32_t\n// storage_usage Amount of used storage space on the component system. A value of UINT32_MAX implies the field is unused. uint32_t\n// storage_total Total amount of storage space on the component system. A value of UINT32_MAX implies the field is unused. uint32_t\n// link_type Link type: 0-9: UART, 10-19: Wired network, 20-29: Wifi, 30-39: Point-to-point proprietary, 40-49: Mesh proprietary uint32_t\n// link_tx_rate Network traffic from the component system. A value of UINT32_MAX implies the field is unused. uint32_t\n// link_rx_rate Network traffic to the component system. A value of UINT32_MAX implies the field is unused. uint32_t\n// link_tx_max Network capacity from the component system. A value of UINT32_MAX implies the field is unused. uint32_t\n// link_rx_max Network capacity to the component system. A value of UINT32_MAX implies the field is unused. uint32_t\nexport class OnboardComputerStatus extends MAVLinkMessage {\n\tpublic time_usec!: number;\n\tpublic uptime!: number;\n\tpublic type!: number;\n\tpublic cpu_cores!: number;\n\tpublic cpu_combined!: number;\n\tpublic gpu_cores!: number;\n\tpublic gpu_combined!: number;\n\tpublic temperature_board!: number;\n\tpublic temperature_core!: number;\n\tpublic fan_speed!: number;\n\tpublic ram_usage!: number;\n\tpublic ram_total!: number;\n\tpublic storage_type!: number;\n\tpublic storage_usage!: number;\n\tpublic storage_total!: number;\n\tpublic link_type!: number;\n\tpublic link_tx_rate!: number;\n\tpublic link_rx_rate!: number;\n\tpublic link_tx_max!: number;\n\tpublic link_rx_max!: number;\n\tpublic _message_id: number = 390;\n\tpublic _message_name: string = 'ONBOARD_COMPUTER_STATUS';\n\tpublic _crc_extra: number = 156;\n\tpublic _message_fields: [string, string, boolean][] = [\n\t\t['time_usec', 'uint64_t', false],\n\t\t['uptime', 'uint32_t', false],\n\t\t['ram_usage', 'uint32_t', false],\n\t\t['ram_total', 'uint32_t', false],\n\t\t['storage_type', 'uint32_t', false],\n\t\t['storage_usage', 'uint32_t', false],\n\t\t['storage_total', 'uint32_t', false],\n\t\t['link_type', 'uint32_t', false],\n\t\t['link_tx_rate', 'uint32_t', false],\n\t\t['link_rx_rate', 'uint32_t', false],\n\t\t['link_tx_max', 'uint32_t', false],\n\t\t['link_rx_max', 'uint32_t', false],\n\t\t['fan_speed', 'int16_t', false],\n\t\t['type', 'uint8_t', false],\n\t\t['cpu_cores', 'uint8_t', false],\n\t\t['cpu_combined', 'uint8_t', false],\n\t\t['gpu_cores', 'uint8_t', false],\n\t\t['gpu_combined', 'uint8_t', false],\n\t\t['temperature_board', 'int8_t', false],\n\t\t['temperature_core', 'int8_t', false],\n\t];\n}","import {MAVLinkMessage} from '@ifrunistuttgart/node-mavlink';\nimport {readInt64LE, readUInt64LE} from '@ifrunistuttgart/node-mavlink';\nimport {CompMetadataType} from '../enums/comp-metadata-type';\n/*\nInformation about a component. For camera components instead use CAMERA_INFORMATION, and for autopilots use AUTOPILOT_VERSION. Components including GCSes should consider supporting requests of this message via MAV_CMD_REQUEST_MESSAGE.\n*/\n// time_boot_ms Timestamp (time since system boot). uint32_t\n// metadata_type The type of metadata being requested. uint32_t\n// metadata_uid Unique uid for this metadata which a gcs can use for created cached metadata and understanding whether it's cache it up to date or whether it needs to download new data. uint32_t\n// metadata_uri Component definition URI. If prefix mavlinkftp:// file is downloaded from vehicle over mavlink ftp protocol. If prefix http[s]:// file is downloaded over internet. Files are json format. They can end in .gz to indicate file is in gzip format. char\n// translation_uid Unique uid for the translation file associated with the metadata. uint32_t\n// translation_uri The translations for strings within the metadata file. If null the either do not exist or may be included in the metadata file itself. The translations specified here supercede any which may be in the metadata file itself. The uri format is the same as component_metadata_uri . Files are in Json Translation spec format. Empty string indicates no tranlsation file. char\nexport class ComponentInformation extends MAVLinkMessage {\n\tpublic time_boot_ms!: number;\n\tpublic metadata_type!: CompMetadataType;\n\tpublic metadata_uid!: number;\n\tpublic metadata_uri!: string;\n\tpublic translation_uid!: number;\n\tpublic translation_uri!: string;\n\tpublic _message_id: number = 395;\n\tpublic _message_name: string = 'COMPONENT_INFORMATION';\n\tpublic _crc_extra: number = 163;\n\tpublic _message_fields: [string, string, boolean][] = [\n\t\t['time_boot_ms', 'uint32_t', false],\n\t\t['metadata_type', 'uint32_t', false],\n\t\t['metadata_uid', 'uint32_t', false],\n\t\t['translation_uid', 'uint32_t', false],\n\t\t['metadata_uri', 'char', false],\n\t\t['translation_uri', 'char', false],\n\t];\n}","import {MAVLinkMessage} from '@ifrunistuttgart/node-mavlink';\nimport {readInt64LE, readUInt64LE} from '@ifrunistuttgart/node-mavlink';\nimport {TuneFormat} from '../enums/tune-format';\n/*\nPlay vehicle tone/tune (buzzer). Supersedes message PLAY_TUNE.\n*/\n// target_system System ID uint8_t\n// target_component Component ID uint8_t\n// format Tune format uint32_t\n// tune Tune definition as a NULL-terminated string. char\nexport class PlayTuneV2 extends MAVLinkMessage {\n\tpublic target_system!: number;\n\tpublic target_component!: number;\n\tpublic format!: TuneFormat;\n\tpublic tune!: string;\n\tpublic _message_id: number = 400;\n\tpublic _message_name: string = 'PLAY_TUNE_V2';\n\tpublic _crc_extra: number = 110;\n\tpublic _message_fields: [string, string, boolean][] = [\n\t\t['format', 'uint32_t', false],\n\t\t['target_system', 'uint8_t', false],\n\t\t['target_component', 'uint8_t', false],\n\t\t['tune', 'char', false],\n\t];\n}","import {MAVLinkMessage} from '@ifrunistuttgart/node-mavlink';\nimport {readInt64LE, readUInt64LE} from '@ifrunistuttgart/node-mavlink';\nimport {TuneFormat} from '../enums/tune-format';\n/*\nTune formats supported by vehicle. This should be emitted as response to MAV_CMD_REQUEST_MESSAGE.\n*/\n// target_system System ID uint8_t\n// target_component Component ID uint8_t\n// format Bitfield of supported tune formats. uint32_t\nexport class SupportedTunes extends MAVLinkMessage {\n\tpublic target_system!: number;\n\tpublic target_component!: number;\n\tpublic format!: TuneFormat;\n\tpublic _message_id: number = 401;\n\tpublic _message_name: string = 'SUPPORTED_TUNES';\n\tpublic _crc_extra: number = 183;\n\tpublic _message_fields: [string, string, boolean][] = [\n\t\t['format', 'uint32_t', false],\n\t\t['target_system', 'uint8_t', false],\n\t\t['target_component', 'uint8_t', false],\n\t];\n}","import {MAVLinkMessage} from '@ifrunistuttgart/node-mavlink';\nimport {readInt64LE, readUInt64LE} from '@ifrunistuttgart/node-mavlink';\n/*\nCumulative distance traveled for each reported wheel.\n*/\n// time_usec Timestamp (synced to UNIX time or since system boot). uint64_t\n// count Number of wheels reported. uint8_t\n// distance Distance reported by individual wheel encoders. Forward rotations increase values, reverse rotations decrease them. Not all wheels will necessarily have wheel encoders; the mapping of encoders to wheel positions must be agreed/understood by the endpoints. double\nexport class WheelDistance extends MAVLinkMessage {\n\tpublic time_usec!: number;\n\tpublic count!: number;\n\tpublic distance!: number;\n\tpublic _message_id: number = 9000;\n\tpublic _message_name: string = 'WHEEL_DISTANCE';\n\tpublic _crc_extra: number = 113;\n\tpublic _message_fields: [string, string, boolean][] = [\n\t\t['time_usec', 'uint64_t', false],\n\t\t['distance', 'double', false],\n\t\t['count', 'uint8_t', false],\n\t];\n}","import {MAVLinkMessage} from '@ifrunistuttgart/node-mavlink';\nimport {readInt64LE, readUInt64LE} from '@ifrunistuttgart/node-mavlink';\nimport {MavWinchStatusFlag} from '../enums/mav-winch-status-flag';\n/*\nWinch status.\n*/\n// time_usec Timestamp (synced to UNIX time or since system boot). uint64_t\n// line_length Length of line released. NaN if unknown float\n// speed Speed line is being released or retracted. Positive values if being released, negative values if being retracted, NaN if unknown float\n// tension Tension on the line. NaN if unknown float\n// voltage Voltage of the battery supplying the winch. NaN if unknown float\n// current Current draw from the winch. NaN if unknown float\n// temperature Temperature of the motor. INT16_MAX if unknown int16_t\n// status Status flags uint32_t\nexport class WinchStatus extends MAVLinkMessage {\n\tpublic time_usec!: number;\n\tpublic line_length!: number;\n\tpublic speed!: number;\n\tpublic tension!: number;\n\tpublic voltage!: number;\n\tpublic current!: number;\n\tpublic temperature!: number;\n\tpublic status!: MavWinchStatusFlag;\n\tpublic _message_id: number = 9005;\n\tpublic _message_name: string = 'WINCH_STATUS';\n\tpublic _crc_extra: number = 117;\n\tpublic _message_fields: [string, string, boolean][] = [\n\t\t['time_usec', 'uint64_t', false],\n\t\t['line_length', 'float', false],\n\t\t['speed', 'float', false],\n\t\t['tension', 'float', false],\n\t\t['voltage', 'float', false],\n\t\t['current', 'float', false],\n\t\t['status', 'uint32_t', false],\n\t\t['temperature', 'int16_t', false],\n\t];\n}","import {MAVLinkMessage} from '@ifrunistuttgart/node-mavlink';\nimport {readInt64LE, readUInt64LE} from '@ifrunistuttgart/node-mavlink';\nimport {MavOdidIdType} from '../enums/mav-odid-id-type';\nimport {MavOdidUaType} from '../enums/mav-odid-ua-type';\n/*\nData for filling the OpenDroneID Basic ID message. This and the below messages are primarily meant for feeding data to/from an OpenDroneID implementation. E.g. https://github.com/opendroneid/opendroneid-core-c. These messages are compatible with the ASTM Remote ID standard at https://www.astm.org/Standards/F3411.htm and the ASD-STAN Direct Remote ID standard. The usage of these messages is documented at https://mavlink.io/en/services/opendroneid.html.\n*/\n// target_system System ID (0 for broadcast). uint8_t\n// target_component Component ID (0 for broadcast). uint8_t\n// id_or_mac Only used for drone ID data received from other UAs. See detailed description at https://mavlink.io/en/services/opendroneid.html. uint8_t\n// id_type Indicates the format for the uas_id field of this message. uint8_t\n// ua_type Indicates the type of UA (Unmanned Aircraft). uint8_t\n// uas_id UAS (Unmanned Aircraft System) ID following the format specified by id_type. Shall be filled with nulls in the unused portion of the field. uint8_t\nexport class OpenDroneIdBasicId extends MAVLinkMessage {\n\tpublic target_system!: number;\n\tpublic target_component!: number;\n\tpublic id_or_mac!: number;\n\tpublic id_type!: MavOdidIdType;\n\tpublic ua_type!: MavOdidUaType;\n\tpublic uas_id!: number;\n\tpublic _message_id: number = 12900;\n\tpublic _message_name: string = 'OPEN_DRONE_ID_BASIC_ID';\n\tpublic _crc_extra: number = 114;\n\tpublic _message_fields: [string, string, boolean][] = [\n\t\t['target_system', 'uint8_t', false],\n\t\t['target_component', 'uint8_t', false],\n\t\t['id_or_mac', 'uint8_t', false],\n\t\t['id_type', 'uint8_t', false],\n\t\t['ua_type', 'uint8_t', false],\n\t\t['uas_id', 'uint8_t', false],\n\t];\n}","import {MAVLinkMessage} from '@ifrunistuttgart/node-mavlink';\nimport {readInt64LE, readUInt64LE} from '@ifrunistuttgart/node-mavlink';\nimport {MavOdidStatus} from '../enums/mav-odid-status';\nimport {MavOdidHeightRef} from '../enums/mav-odid-height-ref';\nimport {MavOdidHorAcc} from '../enums/mav-odid-hor-acc';\nimport {MavOdidVerAcc} from '../enums/mav-odid-ver-acc';\nimport {MavOdidSpeedAcc} from '../enums/mav-odid-speed-acc';\nimport {MavOdidTimeAcc} from '../enums/mav-odid-time-acc';\n/*\nData for filling the OpenDroneID Location message. The float data types are 32-bit IEEE 754. The Location message provides the location, altitude, direction and speed of the aircraft.\n*/\n// target_system System ID (0 for broadcast). uint8_t\n// target_component Component ID (0 for broadcast). uint8_t\n// id_or_mac Only used for drone ID data received from other UAs. See detailed description at https://mavlink.io/en/services/opendroneid.html. uint8_t\n// status Indicates whether the unmanned aircraft is on the ground or in the air. uint8_t\n// direction Direction over ground (not heading, but direction of movement) measured clockwise from true North: 0 - 35999 centi-degrees. If unknown: 36100 centi-degrees. uint16_t\n// speed_horizontal Ground speed. Positive only. If unknown: 25500 cm/s. If speed is larger than 25425 cm/s, use 25425 cm/s. uint16_t\n// speed_vertical The vertical speed. Up is positive. If unknown: 6300 cm/s. If speed is larger than 6200 cm/s, use 6200 cm/s. If lower than -6200 cm/s, use -6200 cm/s. int16_t\n// latitude Current latitude of the unmanned aircraft. If unknown: 0 (both Lat/Lon). int32_t\n// longitude Current longitude of the unmanned aircraft. If unknown: 0 (both Lat/Lon). int32_t\n// altitude_barometric The altitude calculated from the barometric pressue. Reference is against 29.92inHg or 1013.2mb. If unknown: -1000 m. float\n// altitude_geodetic The geodetic altitude as defined by WGS84. If unknown: -1000 m. float\n// height_reference Indicates the reference point for the height field. uint8_t\n// height The current height of the unmanned aircraft above the take-off location or the ground as indicated by height_reference. If unknown: -1000 m. float\n// horizontal_accuracy The accuracy of the horizontal position. uint8_t\n// vertical_accuracy The accuracy of the vertical position. uint8_t\n// barometer_accuracy The accuracy of the barometric altitude. uint8_t\n// speed_accuracy The accuracy of the horizontal and vertical speed. uint8_t\n// timestamp Seconds after the full hour with reference to UTC time. Typically the GPS outputs a time-of-week value in milliseconds. First convert that to UTC and then convert for this field using ((float) (time_week_ms % (60*60*1000))) / 1000. float\n// timestamp_accuracy The accuracy of the timestamps. uint8_t\nexport class OpenDroneIdLocation extends MAVLinkMessage {\n\tpublic target_system!: number;\n\tpublic target_component!: number;\n\tpublic id_or_mac!: number;\n\tpublic status!: MavOdidStatus;\n\tpublic direction!: number;\n\tpublic speed_horizontal!: number;\n\tpublic speed_vertical!: number;\n\tpublic latitude!: number;\n\tpublic longitude!: number;\n\tpublic altitude_barometric!: number;\n\tpublic altitude_geodetic!: number;\n\tpublic height_reference!: MavOdidHeightRef;\n\tpublic height!: number;\n\tpublic horizontal_accuracy!: MavOdidHorAcc;\n\tpublic vertical_accuracy!: MavOdidVerAcc;\n\tpublic barometer_accuracy!: MavOdidVerAcc;\n\tpublic speed_accuracy!: MavOdidSpeedAcc;\n\tpublic timestamp!: number;\n\tpublic timestamp_accuracy!: MavOdidTimeAcc;\n\tpublic _message_id: number = 12901;\n\tpublic _message_name: string = 'OPEN_DRONE_ID_LOCATION';\n\tpublic _crc_extra: number = 254;\n\tpublic _message_fields: [string, string, boolean][] = [\n\t\t['latitude', 'int32_t', false],\n\t\t['longitude', 'int32_t', false],\n\t\t['altitude_barometric', 'float', false],\n\t\t['altitude_geodetic', 'float', false],\n\t\t['height', 'float', false],\n\t\t['timestamp', 'float', false],\n\t\t['direction', 'uint16_t', false],\n\t\t['speed_horizontal', 'uint16_t', false],\n\t\t['speed_vertical', 'int16_t', false],\n\t\t['target_system', 'uint8_t', false],\n\t\t['target_component', 'uint8_t', false],\n\t\t['id_or_mac', 'uint8_t', false],\n\t\t['status', 'uint8_t', false],\n\t\t['height_reference', 'uint8_t', false],\n\t\t['horizontal_accuracy', 'uint8_t', false],\n\t\t['vertical_accuracy', 'uint8_t', false],\n\t\t['barometer_accuracy', 'uint8_t', false],\n\t\t['speed_accuracy', 'uint8_t', false],\n\t\t['timestamp_accuracy', 'uint8_t', false],\n\t];\n}","import {MAVLinkMessage} from '@ifrunistuttgart/node-mavlink';\nimport {readInt64LE, readUInt64LE} from '@ifrunistuttgart/node-mavlink';\nimport {MavOdidAuthType} from '../enums/mav-odid-auth-type';\n/*\nData for filling the OpenDroneID Authentication message. The Authentication Message defines a field that can provide a means of authenticity for the identity of the UAS (Unmanned Aircraft System). The Authentication message can have two different formats. Five data pages are supported. For data page 0, the fields PageCount, Length and TimeStamp are present and AuthData is only 17 bytes. For data page 1 through 4, PageCount, Length and TimeStamp are not present and the size of AuthData is 23 bytes.\n*/\n// target_system System ID (0 for broadcast). uint8_t\n// target_component Component ID (0 for broadcast). uint8_t\n// id_or_mac Only used for drone ID data received from other UAs. See detailed description at https://mavlink.io/en/services/opendroneid.html. uint8_t\n// authentication_type Indicates the type of authentication. uint8_t\n// data_page Allowed range is 0 - 4. uint8_t\n// page_count This field is only present for page 0. Allowed range is 0 - 5. uint8_t\n// length This field is only present for page 0. Total bytes of authentication_data from all data pages. Allowed range is 0 - 109 (17 + 23*4). uint8_t\n// timestamp This field is only present for page 0. 32 bit Unix Timestamp in seconds since 00:00:00 01/01/2019. uint32_t\n// authentication_data Opaque authentication data. For page 0, the size is only 17 bytes. For other pages, the size is 23 bytes. Shall be filled with nulls in the unused portion of the field. uint8_t\nexport class OpenDroneIdAuthentication extends MAVLinkMessage {\n\tpublic target_system!: number;\n\tpublic target_component!: number;\n\tpublic id_or_mac!: number;\n\tpublic authentication_type!: MavOdidAuthType;\n\tpublic data_page!: number;\n\tpublic page_count!: number;\n\tpublic length!: number;\n\tpublic timestamp!: number;\n\tpublic authentication_data!: number;\n\tpublic _message_id: number = 12902;\n\tpublic _message_name: string = 'OPEN_DRONE_ID_AUTHENTICATION';\n\tpublic _crc_extra: number = 49;\n\tpublic _message_fields: [string, string, boolean][] = [\n\t\t['timestamp', 'uint32_t', false],\n\t\t['target_system', 'uint8_t', false],\n\t\t['target_component', 'uint8_t', false],\n\t\t['id_or_mac', 'uint8_t', false],\n\t\t['authentication_type', 'uint8_t', false],\n\t\t['data_page', 'uint8_t', false],\n\t\t['page_count', 'uint8_t', false],\n\t\t['length', 'uint8_t', false],\n\t\t['authentication_data', 'uint8_t', false],\n\t];\n}","import {MAVLinkMessage} from '@ifrunistuttgart/node-mavlink';\nimport {readInt64LE, readUInt64LE} from '@ifrunistuttgart/node-mavlink';\nimport {MavOdidDescType} from '../enums/mav-odid-desc-type';\n/*\nData for filling the OpenDroneID Self ID message. The Self ID Message is an opportunity for the operator to (optionally) declare their identity and purpose of the flight. This message can provide additional information that could reduce the threat profile of a UA (Unmanned Aircraft) flying in a particular area or manner.\n*/\n// target_system System ID (0 for broadcast). uint8_t\n// target_component Component ID (0 for broadcast). uint8_t\n// id_or_mac Only used for drone ID data received from other UAs. See detailed description at https://mavlink.io/en/services/opendroneid.html. uint8_t\n// description_type Indicates the type of the description field. uint8_t\n// description Text description or numeric value expressed as ASCII characters. Shall be filled with nulls in the unused portion of the field. char\nexport class OpenDroneIdSelfId extends MAVLinkMessage {\n\tpublic target_system!: number;\n\tpublic target_component!: number;\n\tpublic id_or_mac!: number;\n\tpublic description_type!: MavOdidDescType;\n\tpublic description!: string;\n\tpublic _message_id: number = 12903;\n\tpublic _message_name: string = 'OPEN_DRONE_ID_SELF_ID';\n\tpublic _crc_extra: number = 249;\n\tpublic _message_fields: [string, string, boolean][] = [\n\t\t['target_system', 'uint8_t', false],\n\t\t['target_component', 'uint8_t', false],\n\t\t['id_or_mac', 'uint8_t', false],\n\t\t['description_type', 'uint8_t', false],\n\t\t['description', 'char', false],\n\t];\n}","import {MAVLinkMessage} from '@ifrunistuttgart/node-mavlink';\nimport {readInt64LE, readUInt64LE} from '@ifrunistuttgart/node-mavlink';\nimport {MavOdidOperatorLocationType} from '../enums/mav-odid-operator-location-type';\nimport {MavOdidClassificationType} from '../enums/mav-odid-classification-type';\nimport {MavOdidCategoryEu} from '../enums/mav-odid-category-eu';\nimport {MavOdidClassEu} from '../enums/mav-odid-class-eu';\n/*\nData for filling the OpenDroneID System message. The System Message contains general system information including the operator location and possible aircraft group information.\n*/\n// target_system System ID (0 for broadcast). uint8_t\n// target_component Component ID (0 for broadcast). uint8_t\n// id_or_mac Only used for drone ID data received from other UAs. See detailed description at https://mavlink.io/en/services/opendroneid.html. uint8_t\n// operator_location_type Specifies the operator location type. uint8_t\n// classification_type Specifies the classification type of the UA. uint8_t\n// operator_latitude Latitude of the operator. If unknown: 0 (both Lat/Lon). int32_t\n// operator_longitude Longitude of the operator. If unknown: 0 (both Lat/Lon). int32_t\n// area_count Number of aircraft in the area, group or formation (default 1). uint16_t\n// area_radius Radius of the cylindrical area of the group or formation (default 0). uint16_t\n// area_ceiling Area Operations Ceiling relative to WGS84. If unknown: -1000 m. float\n// area_floor Area Operations Floor relative to WGS84. If unknown: -1000 m. float\n// category_eu When classification_type is MAV_ODID_CLASSIFICATION_TYPE_EU, specifies the category of the UA. uint8_t\n// class_eu When classification_type is MAV_ODID_CLASSIFICATION_TYPE_EU, specifies the class of the UA. uint8_t\nexport class OpenDroneIdSystem extends MAVLinkMessage {\n\tpublic target_system!: number;\n\tpublic target_component!: number;\n\tpublic id_or_mac!: number;\n\tpublic operator_location_type!: MavOdidOperatorLocationType;\n\tpublic classification_type!: MavOdidClassificationType;\n\tpublic operator_latitude!: number;\n\tpublic operator_longitude!: number;\n\tpublic area_count!: number;\n\tpublic area_radius!: number;\n\tpublic area_ceiling!: number;\n\tpublic area_floor!: number;\n\tpublic category_eu!: MavOdidCategoryEu;\n\tpublic class_eu!: MavOdidClassEu;\n\tpublic _message_id: number = 12904;\n\tpublic _message_name: string = 'OPEN_DRONE_ID_SYSTEM';\n\tpublic _crc_extra: number = 203;\n\tpublic _message_fields: [string, string, boolean][] = [\n\t\t['operator_latitude', 'int32_t', false],\n\t\t['operator_longitude', 'int32_t', false],\n\t\t['area_ceiling', 'float', false],\n\t\t['area_floor', 'float', false],\n\t\t['area_count', 'uint16_t', false],\n\t\t['area_radius', 'uint16_t', false],\n\t\t['target_system', 'uint8_t', false],\n\t\t['target_component', 'uint8_t', false],\n\t\t['id_or_mac', 'uint8_t', false],\n\t\t['operator_location_type', 'uint8_t', false],\n\t\t['classification_type', 'uint8_t', false],\n\t\t['category_eu', 'uint8_t', false],\n\t\t['class_eu', 'uint8_t', false],\n\t];\n}","import {MAVLinkMessage} from '@ifrunistuttgart/node-mavlink';\nimport {readInt64LE, readUInt64LE} from '@ifrunistuttgart/node-mavlink';\nimport {MavOdidOperatorIdType} from '../enums/mav-odid-operator-id-type';\n/*\nData for filling the OpenDroneID Operator ID message, which contains the CAA (Civil Aviation Authority) issued operator ID.\n*/\n// target_system System ID (0 for broadcast). uint8_t\n// target_component Component ID (0 for broadcast). uint8_t\n// id_or_mac Only used for drone ID data received from other UAs. See detailed description at https://mavlink.io/en/services/opendroneid.html. uint8_t\n// operator_id_type Indicates the type of the operator_id field. uint8_t\n// operator_id Text description or numeric value expressed as ASCII characters. Shall be filled with nulls in the unused portion of the field. char\nexport class OpenDroneIdOperatorId extends MAVLinkMessage {\n\tpublic target_system!: number;\n\tpublic target_component!: number;\n\tpublic id_or_mac!: number;\n\tpublic operator_id_type!: MavOdidOperatorIdType;\n\tpublic operator_id!: string;\n\tpublic _message_id: number = 12905;\n\tpublic _message_name: string = 'OPEN_DRONE_ID_OPERATOR_ID';\n\tpublic _crc_extra: number = 49;\n\tpublic _message_fields: [string, string, boolean][] = [\n\t\t['target_system', 'uint8_t', false],\n\t\t['target_component', 'uint8_t', false],\n\t\t['id_or_mac', 'uint8_t', false],\n\t\t['operator_id_type', 'uint8_t', false],\n\t\t['operator_id', 'char', false],\n\t];\n}","import {MAVLinkMessage} from '@ifrunistuttgart/node-mavlink';\nimport {readInt64LE, readUInt64LE} from '@ifrunistuttgart/node-mavlink';\n/*\nAn OpenDroneID message pack is a container for multiple encoded OpenDroneID messages (i.e. not in the format given for the above messages descriptions but after encoding into the compressed OpenDroneID byte format). Used e.g. when transmitting on Bluetooth 5.0 Long Range/Extended Advertising or on WiFi Neighbor Aware Networking.\n*/\n// target_system System ID (0 for broadcast). uint8_t\n// target_component Component ID (0 for broadcast). uint8_t\n// single_message_size This field must currently always be equal to 25 (bytes), since all encoded OpenDroneID messages are specificed to have this length. uint8_t\n// msg_pack_size Number of encoded messages in the pack (not the number of bytes). Allowed range is 1 - 10. uint8_t\n// messages Concatenation of encoded OpenDroneID messages. Shall be filled with nulls in the unused portion of the field. uint8_t\nexport class OpenDroneIdMessagePack extends MAVLinkMessage {\n\tpublic target_system!: number;\n\tpublic target_component!: number;\n\tpublic single_message_size!: number;\n\tpublic msg_pack_size!: number;\n\tpublic messages!: number;\n\tpublic _message_id: number = 12915;\n\tpublic _message_name: string = 'OPEN_DRONE_ID_MESSAGE_PACK';\n\tpublic _crc_extra: number = 62;\n\tpublic _message_fields: [string, string, boolean][] = [\n\t\t['target_system', 'uint8_t', false],\n\t\t['target_component', 'uint8_t', false],\n\t\t['single_message_size', 'uint8_t', false],\n\t\t['msg_pack_size', 'uint8_t', false],\n\t\t['messages', 'uint8_t', false],\n\t];\n}","import {MAVLinkMessage} from '@ifrunistuttgart/node-mavlink';\nimport {readInt64LE, readUInt64LE} from '@ifrunistuttgart/node-mavlink';\nimport {MavType} from '../enums/mav-type';\nimport {MavAutopilot} from '../enums/mav-autopilot';\nimport {MavModeFlag} from '../enums/mav-mode-flag';\nimport {MavState} from '../enums/mav-state';\n/*\nThe heartbeat message shows that a system or component is present and responding. The type and autopilot fields (along with the message component id), allow the receiving system to treat further messages from this system appropriately (e.g. by laying out the user interface based on the autopilot). This microservice is documented at https://mavlink.io/en/services/heartbeat.html\n*/\n// type Vehicle or component type. For a flight controller component the vehicle type (quadrotor, helicopter, etc.). For other components the component type (e.g. camera, gimbal, etc.). This should be used in preference to component id for identifying the component type. uint8_t\n// autopilot Autopilot type / class. Use MAV_AUTOPILOT_INVALID for components that are not flight controllers. uint8_t\n// base_mode System mode bitmap. uint8_t\n// custom_mode A bitfield for use for autopilot-specific flags uint32_t\n// system_status System status flag. uint8_t\n// mavlink_version MAVLink version, not writable by user, gets added by protocol because of magic data type: uint8_t_mavlink_version uint8_t\nexport class Heartbeat extends MAVLinkMessage {\n\tpublic type!: MavType;\n\tpublic autopilot!: MavAutopilot;\n\tpublic base_mode!: MavModeFlag;\n\tpublic custom_mode!: number;\n\tpublic system_status!: MavState;\n\tpublic mavlink_version!: number;\n\tpublic _message_id: number = 0;\n\tpublic _message_name: string = 'HEARTBEAT';\n\tpublic _crc_extra: number = 50;\n\tpublic _message_fields: [string, string, boolean][] = [\n\t\t['custom_mode', 'uint32_t', false],\n\t\t['type', 'uint8_t', false],\n\t\t['autopilot', 'uint8_t', false],\n\t\t['base_mode', 'uint8_t', false],\n\t\t['system_status', 'uint8_t', false],\n\t\t['mavlink_version', 'uint8_t', false],\n\t];\n}","import {MAVLinkMessage} from '@ifrunistuttgart/node-mavlink';\nimport {readInt64LE, readUInt64LE} from '@ifrunistuttgart/node-mavlink';\n/*\nVersion and capability of protocol version. This message can be requested with MAV_CMD_REQUEST_MESSAGE and is used as part of the handshaking to establish which MAVLink version should be used on the network. Every node should respond to a request for PROTOCOL_VERSION to enable the handshaking. Library implementers should consider adding this into the default decoding state machine to allow the protocol core to respond directly.\n*/\n// version Currently active MAVLink version number * 100: v1.0 is 100, v2.0 is 200, etc. uint16_t\n// min_version Minimum MAVLink version supported uint16_t\n// max_version Maximum MAVLink version supported (set to the same value as version by default) uint16_t\n// spec_version_hash The first 8 bytes (not characters printed in hex!) of the git hash. uint8_t\n// library_version_hash The first 8 bytes (not characters printed in hex!) of the git hash. uint8_t\nexport class ProtocolVersion extends MAVLinkMessage {\n\tpublic version!: number;\n\tpublic min_version!: number;\n\tpublic max_version!: number;\n\tpublic spec_version_hash!: number;\n\tpublic library_version_hash!: number;\n\tpublic _message_id: number = 300;\n\tpublic _message_name: string = 'PROTOCOL_VERSION';\n\tpublic _crc_extra: number = 217;\n\tpublic _message_fields: [string, string, boolean][] = [\n\t\t['version', 'uint16_t', false],\n\t\t['min_version', 'uint16_t', false],\n\t\t['max_version', 'uint16_t', false],\n\t\t['spec_version_hash', 'uint8_t', false],\n\t\t['library_version_hash', 'uint8_t', false],\n\t];\n}","import {MAVLinkMessage} from '@ifrunistuttgart/node-mavlink';\nimport {SysStatus} from './messages/sys-status';\nimport {SystemTime} from './messages/system-time';\nimport {Ping} from './messages/ping';\nimport {ChangeOperatorControl} from './messages/change-operator-control';\nimport {ChangeOperatorControlAck} from './messages/change-operator-control-ack';\nimport {AuthKey} from './messages/auth-key';\nimport {LinkNodeStatus} from './messages/link-node-status';\nimport {SetMode} from './messages/set-mode';\nimport {ParamAckTransaction} from './messages/param-ack-transaction';\nimport {ParamRequestRead} from './messages/param-request-read';\nimport {ParamRequestList} from './messages/param-request-list';\nimport {ParamValue} from './messages/param-value';\nimport {ParamSet} from './messages/param-set';\nimport {GpsRawInt} from './messages/gps-raw-int';\nimport {GpsStatus} from './messages/gps-status';\nimport {ScaledImu} from './messages/scaled-imu';\nimport {RawImu} from './messages/raw-imu';\nimport {RawPressure} from './messages/raw-pressure';\nimport {ScaledPressure} from './messages/scaled-pressure';\nimport {Attitude} from './messages/attitude';\nimport {AttitudeQuaternion} from './messages/attitude-quaternion';\nimport {LocalPositionNed} from './messages/local-position-ned';\nimport {GlobalPositionInt} from './messages/global-position-int';\nimport {RcChannelsScaled} from './messages/rc-channels-scaled';\nimport {RcChannelsRaw} from './messages/rc-channels-raw';\nimport {ServoOutputRaw} from './messages/servo-output-raw';\nimport {MissionRequestPartialList} from './messages/mission-request-partial-list';\nimport {MissionWritePartialList} from './messages/mission-write-partial-list';\nimport {MissionItem} from './messages/mission-item';\nimport {MissionRequest} from './messages/mission-request';\nimport {MissionSetCurrent} from './messages/mission-set-current';\nimport {MissionCurrent} from './messages/mission-current';\nimport {MissionRequestList} from './messages/mission-request-list';\nimport {MissionCount} from './messages/mission-count';\nimport {MissionClearAll} from './messages/mission-clear-all';\nimport {MissionItemReached} from './messages/mission-item-reached';\nimport {MissionAck} from './messages/mission-ack';\nimport {SetGpsGlobalOrigin} from './messages/set-gps-global-origin';\nimport {GpsGlobalOrigin} from './messages/gps-global-origin';\nimport {ParamMapRc} from './messages/param-map-rc';\nimport {MissionRequestInt} from './messages/mission-request-int';\nimport {MissionChanged} from './messages/mission-changed';\nimport {SafetySetAllowedArea} from './messages/safety-set-allowed-area';\nimport {SafetyAllowedArea} from './messages/safety-allowed-area';\nimport {AttitudeQuaternionCov} from './messages/attitude-quaternion-cov';\nimport {NavControllerOutput} from './messages/nav-controller-output';\nimport {GlobalPositionIntCov} from './messages/global-position-int-cov';\nimport {LocalPositionNedCov} from './messages/local-position-ned-cov';\nimport {RcChannels} from './messages/rc-channels';\nimport {RequestDataStream} from './messages/request-data-stream';\nimport {DataStream} from './messages/data-stream';\nimport {ManualControl} from './messages/manual-control';\nimport {RcChannelsOverride} from './messages/rc-channels-override';\nimport {MissionItemInt} from './messages/mission-item-int';\nimport {VfrHud} from './messages/vfr-hud';\nimport {CommandInt} from './messages/command-int';\nimport {CommandLong} from './messages/command-long';\nimport {CommandAck} from './messages/command-ack';\nimport {CommandCancel} from './messages/command-cancel';\nimport {ManualSetpoint} from './messages/manual-setpoint';\nimport {SetAttitudeTarget} from './messages/set-attitude-target';\nimport {AttitudeTarget} from './messages/attitude-target';\nimport {SetPositionTargetLocalNed} from './messages/set-position-target-local-ned';\nimport {PositionTargetLocalNed} from './messages/position-target-local-ned';\nimport {SetPositionTargetGlobalInt} from './messages/set-position-target-global-int';\nimport {PositionTargetGlobalInt} from './messages/position-target-global-int';\nimport {LocalPositionNedSystemGlobalOffset} from './messages/local-position-ned-system-global-offset';\nimport {HilState} from './messages/hil-state';\nimport {HilControls} from './messages/hil-controls';\nimport {HilRcInputsRaw} from './messages/hil-rc-inputs-raw';\nimport {HilActuatorControls} from './messages/hil-actuator-controls';\nimport {OpticalFlow} from './messages/optical-flow';\nimport {GlobalVisionPositionEstimate} from './messages/global-vision-position-estimate';\nimport {VisionPositionEstimate} from './messages/vision-position-estimate';\nimport {VisionSpeedEstimate} from './messages/vision-speed-estimate';\nimport {ViconPositionEstimate} from './messages/vicon-position-estimate';\nimport {HighresImu} from './messages/highres-imu';\nimport {OpticalFlowRad} from './messages/optical-flow-rad';\nimport {HilSensor} from './messages/hil-sensor';\nimport {SimState} from './messages/sim-state';\nimport {RadioStatus} from './messages/radio-status';\nimport {FileTransferProtocol} from './messages/file-transfer-protocol';\nimport {Timesync} from './messages/timesync';\nimport {CameraTrigger} from './messages/camera-trigger';\nimport {HilGps} from './messages/hil-gps';\nimport {HilOpticalFlow} from './messages/hil-optical-flow';\nimport {HilStateQuaternion} from './messages/hil-state-quaternion';\nimport {ScaledImu2} from './messages/scaled-imu2';\nimport {LogRequestList} from './messages/log-request-list';\nimport {LogEntry} from './messages/log-entry';\nimport {LogRequestData} from './messages/log-request-data';\nimport {LogData} from './messages/log-data';\nimport {LogErase} from './messages/log-erase';\nimport {LogRequestEnd} from './messages/log-request-end';\nimport {GpsInjectData} from './messages/gps-inject-data';\nimport {Gps2Raw} from './messages/gps2-raw';\nimport {PowerStatus} from './messages/power-status';\nimport {SerialControl} from './messages/serial-control';\nimport {GpsRtk} from './messages/gps-rtk';\nimport {Gps2Rtk} from './messages/gps2-rtk';\nimport {ScaledImu3} from './messages/scaled-imu3';\nimport {DataTransmissionHandshake} from './messages/data-transmission-handshake';\nimport {EncapsulatedData} from './messages/encapsulated-data';\nimport {DistanceSensor} from './messages/distance-sensor';\nimport {TerrainRequest} from './messages/terrain-request';\nimport {TerrainData} from './messages/terrain-data';\nimport {TerrainCheck} from './messages/terrain-check';\nimport {TerrainReport} from './messages/terrain-report';\nimport {ScaledPressure2} from './messages/scaled-pressure2';\nimport {AttPosMocap} from './messages/att-pos-mocap';\nimport {SetActuatorControlTarget} from './messages/set-actuator-control-target';\nimport {ActuatorControlTarget} from './messages/actuator-control-target';\nimport {Altitude} from './messages/altitude';\nimport {ResourceRequest} from './messages/resource-request';\nimport {ScaledPressure3} from './messages/scaled-pressure3';\nimport {FollowTarget} from './messages/follow-target';\nimport {ControlSystemState} from './messages/control-system-state';\nimport {BatteryStatus} from './messages/battery-status';\nimport {AutopilotVersion} from './messages/autopilot-version';\nimport {LandingTarget} from './messages/landing-target';\nimport {FenceStatus} from './messages/fence-status';\nimport {MagCalReport} from './messages/mag-cal-report';\nimport {EfiStatus} from './messages/efi-status';\nimport {EstimatorStatus} from './messages/estimator-status';\nimport {WindCov} from './messages/wind-cov';\nimport {GpsInput} from './messages/gps-input';\nimport {GpsRtcmData} from './messages/gps-rtcm-data';\nimport {HighLatency} from './messages/high-latency';\nimport {HighLatency2} from './messages/high-latency2';\nimport {Vibration} from './messages/vibration';\nimport {HomePosition} from './messages/home-position';\nimport {SetHomePosition} from './messages/set-home-position';\nimport {MessageInterval} from './messages/message-interval';\nimport {ExtendedSysState} from './messages/extended-sys-state';\nimport {AdsbVehicle} from './messages/adsb-vehicle';\nimport {Collision} from './messages/collision';\nimport {V2Extension} from './messages/v2-extension';\nimport {MemoryVect} from './messages/memory-vect';\nimport {DebugVect} from './messages/debug-vect';\nimport {NamedValueFloat} from './messages/named-value-float';\nimport {NamedValueInt} from './messages/named-value-int';\nimport {Statustext} from './messages/statustext';\nimport {Debug} from './messages/debug';\nimport {SetupSigning} from './messages/setup-signing';\nimport {ButtonChange} from './messages/button-change';\nimport {PlayTune} from './messages/play-tune';\nimport {CameraInformation} from './messages/camera-information';\nimport {CameraSettings} from './messages/camera-settings';\nimport {StorageInformation} from './messages/storage-information';\nimport {CameraCaptureStatus} from './messages/camera-capture-status';\nimport {CameraImageCaptured} from './messages/camera-image-captured';\nimport {FlightInformation} from './messages/flight-information';\nimport {MountOrientation} from './messages/mount-orientation';\nimport {LoggingData} from './messages/logging-data';\nimport {LoggingDataAcked} from './messages/logging-data-acked';\nimport {LoggingAck} from './messages/logging-ack';\nimport {VideoStreamInformation} from './messages/video-stream-information';\nimport {VideoStreamStatus} from './messages/video-stream-status';\nimport {CameraFovStatus} from './messages/camera-fov-status';\nimport {CameraTrackingImageStatus} from './messages/camera-tracking-image-status';\nimport {CameraTrackingGeoStatus} from './messages/camera-tracking-geo-status';\nimport {GimbalManagerInformation} from './messages/gimbal-manager-information';\nimport {GimbalManagerStatus} from './messages/gimbal-manager-status';\nimport {GimbalManagerSetAttitude} from './messages/gimbal-manager-set-attitude';\nimport {GimbalDeviceInformation} from './messages/gimbal-device-information';\nimport {GimbalDeviceSetAttitude} from './messages/gimbal-device-set-attitude';\nimport {GimbalDeviceAttitudeStatus} from './messages/gimbal-device-attitude-status';\nimport {AutopilotStateForGimbalDevice} from './messages/autopilot-state-for-gimbal-device';\nimport {GimbalManagerSetPitchyaw} from './messages/gimbal-manager-set-pitchyaw';\nimport {GimbalManagerSetManualControl} from './messages/gimbal-manager-set-manual-control';\nimport {EscInfo} from './messages/esc-info';\nimport {EscStatus} from './messages/esc-status';\nimport {WifiConfigAp} from './messages/wifi-config-ap';\nimport {AisVessel} from './messages/ais-vessel';\nimport {UavcanNodeStatus} from './messages/uavcan-node-status';\nimport {UavcanNodeInfo} from './messages/uavcan-node-info';\nimport {ParamExtRequestRead} from './messages/param-ext-request-read';\nimport {ParamExtRequestList} from './messages/param-ext-request-list';\nimport {ParamExtValue} from './messages/param-ext-value';\nimport {ParamExtSet} from './messages/param-ext-set';\nimport {ParamExtAck} from './messages/param-ext-ack';\nimport {ObstacleDistance} from './messages/obstacle-distance';\nimport {Odometry} from './messages/odometry';\nimport {TrajectoryRepresentationWaypoints} from './messages/trajectory-representation-waypoints';\nimport {TrajectoryRepresentationBezier} from './messages/trajectory-representation-bezier';\nimport {CellularStatus} from './messages/cellular-status';\nimport {IsbdLinkStatus} from './messages/isbd-link-status';\nimport {CellularConfig} from './messages/cellular-config';\nimport {RawRpm} from './messages/raw-rpm';\nimport {UtmGlobalPosition} from './messages/utm-global-position';\nimport {DebugFloatArray} from './messages/debug-float-array';\nimport {OrbitExecutionStatus} from './messages/orbit-execution-status';\nimport {SmartBatteryInfo} from './messages/smart-battery-info';\nimport {GeneratorStatus} from './messages/generator-status';\nimport {ActuatorOutputStatus} from './messages/actuator-output-status';\nimport {TimeEstimateToTarget} from './messages/time-estimate-to-target';\nimport {Tunnel} from './messages/tunnel';\nimport {OnboardComputerStatus} from './messages/onboard-computer-status';\nimport {ComponentInformation} from './messages/component-information';\nimport {PlayTuneV2} from './messages/play-tune-v2';\nimport {SupportedTunes} from './messages/supported-tunes';\nimport {WheelDistance} from './messages/wheel-distance';\nimport {WinchStatus} from './messages/winch-status';\nimport {OpenDroneIdBasicId} from './messages/open-drone-id-basic-id';\nimport {OpenDroneIdLocation} from './messages/open-drone-id-location';\nimport {OpenDroneIdAuthentication} from './messages/open-drone-id-authentication';\nimport {OpenDroneIdSelfId} from './messages/open-drone-id-self-id';\nimport {OpenDroneIdSystem} from './messages/open-drone-id-system';\nimport {OpenDroneIdOperatorId} from './messages/open-drone-id-operator-id';\nimport {OpenDroneIdMessagePack} from './messages/open-drone-id-message-pack';\nimport {Heartbeat} from './messages/heartbeat';\nimport {ProtocolVersion} from './messages/protocol-version';\nexport const messageRegistry: Array<[number, new (system_id: number, component_id: number) => MAVLinkMessage]> = [\n\t[1, SysStatus],\n\t[2, SystemTime],\n\t[4, Ping],\n\t[5, ChangeOperatorControl],\n\t[6, ChangeOperatorControlAck],\n\t[7, AuthKey],\n\t[8, LinkNodeStatus],\n\t[11, SetMode],\n\t[19, ParamAckTransaction],\n\t[20, ParamRequestRead],\n\t[21, ParamRequestList],\n\t[22, ParamValue],\n\t[23, ParamSet],\n\t[24, GpsRawInt],\n\t[25, GpsStatus],\n\t[26, ScaledImu],\n\t[27, RawImu],\n\t[28, RawPressure],\n\t[29, ScaledPressure],\n\t[30, Attitude],\n\t[31, AttitudeQuaternion],\n\t[32, LocalPositionNed],\n\t[33, GlobalPositionInt],\n\t[34, RcChannelsScaled],\n\t[35, RcChannelsRaw],\n\t[36, ServoOutputRaw],\n\t[37, MissionRequestPartialList],\n\t[38, MissionWritePartialList],\n\t[39, MissionItem],\n\t[40, MissionRequest],\n\t[41, MissionSetCurrent],\n\t[42, MissionCurrent],\n\t[43, MissionRequestList],\n\t[44, MissionCount],\n\t[45, MissionClearAll],\n\t[46, MissionItemReached],\n\t[47, MissionAck],\n\t[48, SetGpsGlobalOrigin],\n\t[49, GpsGlobalOrigin],\n\t[50, ParamMapRc],\n\t[51, MissionRequestInt],\n\t[52, MissionChanged],\n\t[54, SafetySetAllowedArea],\n\t[55, SafetyAllowedArea],\n\t[61, AttitudeQuaternionCov],\n\t[62, NavControllerOutput],\n\t[63, GlobalPositionIntCov],\n\t[64, LocalPositionNedCov],\n\t[65, RcChannels],\n\t[66, RequestDataStream],\n\t[67, DataStream],\n\t[69, ManualControl],\n\t[70, RcChannelsOverride],\n\t[73, MissionItemInt],\n\t[74, VfrHud],\n\t[75, CommandInt],\n\t[76, CommandLong],\n\t[77, CommandAck],\n\t[80, CommandCancel],\n\t[81, ManualSetpoint],\n\t[82, SetAttitudeTarget],\n\t[83, AttitudeTarget],\n\t[84, SetPositionTargetLocalNed],\n\t[85, PositionTargetLocalNed],\n\t[86, SetPositionTargetGlobalInt],\n\t[87, PositionTargetGlobalInt],\n\t[89, LocalPositionNedSystemGlobalOffset],\n\t[90, HilState],\n\t[91, HilControls],\n\t[92, HilRcInputsRaw],\n\t[93, HilActuatorControls],\n\t[100, OpticalFlow],\n\t[101, GlobalVisionPositionEstimate],\n\t[102, VisionPositionEstimate],\n\t[103, VisionSpeedEstimate],\n\t[104, ViconPositionEstimate],\n\t[105, HighresImu],\n\t[106, OpticalFlowRad],\n\t[107, HilSensor],\n\t[108, SimState],\n\t[109, RadioStatus],\n\t[110, FileTransferProtocol],\n\t[111, Timesync],\n\t[112, CameraTrigger],\n\t[113, HilGps],\n\t[114, HilOpticalFlow],\n\t[115, HilStateQuaternion],\n\t[116, ScaledImu2],\n\t[117, LogRequestList],\n\t[118, LogEntry],\n\t[119, LogRequestData],\n\t[120, LogData],\n\t[121, LogErase],\n\t[122, LogRequestEnd],\n\t[123, GpsInjectData],\n\t[124, Gps2Raw],\n\t[125, PowerStatus],\n\t[126, SerialControl],\n\t[127, GpsRtk],\n\t[128, Gps2Rtk],\n\t[129, ScaledImu3],\n\t[130, DataTransmissionHandshake],\n\t[131, EncapsulatedData],\n\t[132, DistanceSensor],\n\t[133, TerrainRequest],\n\t[134, TerrainData],\n\t[135, TerrainCheck],\n\t[136, TerrainReport],\n\t[137, ScaledPressure2],\n\t[138, AttPosMocap],\n\t[139, SetActuatorControlTarget],\n\t[140, ActuatorControlTarget],\n\t[141, Altitude],\n\t[142, ResourceRequest],\n\t[143, ScaledPressure3],\n\t[144, FollowTarget],\n\t[146, ControlSystemState],\n\t[147, BatteryStatus],\n\t[148, AutopilotVersion],\n\t[149, LandingTarget],\n\t[162, FenceStatus],\n\t[192, MagCalReport],\n\t[225, EfiStatus],\n\t[230, EstimatorStatus],\n\t[231, WindCov],\n\t[232, GpsInput],\n\t[233, GpsRtcmData],\n\t[234, HighLatency],\n\t[235, HighLatency2],\n\t[241, Vibration],\n\t[242, HomePosition],\n\t[243, SetHomePosition],\n\t[244, MessageInterval],\n\t[245, ExtendedSysState],\n\t[246, AdsbVehicle],\n\t[247, Collision],\n\t[248, V2Extension],\n\t[249, MemoryVect],\n\t[250, DebugVect],\n\t[251, NamedValueFloat],\n\t[252, NamedValueInt],\n\t[253, Statustext],\n\t[254, Debug],\n\t[256, SetupSigning],\n\t[257, ButtonChange],\n\t[258, PlayTune],\n\t[259, CameraInformation],\n\t[260, CameraSettings],\n\t[261, StorageInformation],\n\t[262, CameraCaptureStatus],\n\t[263, CameraImageCaptured],\n\t[264, FlightInformation],\n\t[265, MountOrientation],\n\t[266, LoggingData],\n\t[267, LoggingDataAcked],\n\t[268, LoggingAck],\n\t[269, VideoStreamInformation],\n\t[270, VideoStreamStatus],\n\t[271, CameraFovStatus],\n\t[275, CameraTrackingImageStatus],\n\t[276, CameraTrackingGeoStatus],\n\t[280, GimbalManagerInformation],\n\t[281, GimbalManagerStatus],\n\t[282, GimbalManagerSetAttitude],\n\t[283, GimbalDeviceInformation],\n\t[284, GimbalDeviceSetAttitude],\n\t[285, GimbalDeviceAttitudeStatus],\n\t[286, AutopilotStateForGimbalDevice],\n\t[287, GimbalManagerSetPitchyaw],\n\t[288, GimbalManagerSetManualControl],\n\t[290, EscInfo],\n\t[291, EscStatus],\n\t[299, WifiConfigAp],\n\t[301, AisVessel],\n\t[310, UavcanNodeStatus],\n\t[311, UavcanNodeInfo],\n\t[320, ParamExtRequestRead],\n\t[321, ParamExtRequestList],\n\t[322, ParamExtValue],\n\t[323, ParamExtSet],\n\t[324, ParamExtAck],\n\t[330, ObstacleDistance],\n\t[331, Odometry],\n\t[332, TrajectoryRepresentationWaypoints],\n\t[333, TrajectoryRepresentationBezier],\n\t[334, CellularStatus],\n\t[335, IsbdLinkStatus],\n\t[336, CellularConfig],\n\t[339, RawRpm],\n\t[340, UtmGlobalPosition],\n\t[350, DebugFloatArray],\n\t[360, OrbitExecutionStatus],\n\t[370, SmartBatteryInfo],\n\t[373, GeneratorStatus],\n\t[375, ActuatorOutputStatus],\n\t[380, TimeEstimateToTarget],\n\t[385, Tunnel],\n\t[390, OnboardComputerStatus],\n\t[395, ComponentInformation],\n\t[400, PlayTuneV2],\n\t[401, SupportedTunes],\n\t[9000, WheelDistance],\n\t[9005, WinchStatus],\n\t[12900, OpenDroneIdBasicId],\n\t[12901, OpenDroneIdLocation],\n\t[12902, OpenDroneIdAuthentication],\n\t[12903, OpenDroneIdSelfId],\n\t[12904, OpenDroneIdSystem],\n\t[12905, OpenDroneIdOperatorId],\n\t[12915, OpenDroneIdMessagePack],\n\t[0, Heartbeat],\n\t[300, ProtocolVersion],\n];","\nimport {MAVLinkModule, MAVLinkMessage} from '@ifrunistuttgart/node-mavlink'; \nimport {messageRegistry} from '../classes/mavlink/message-registry';\nimport { Heartbeat } from '../classes/mavlink/messages/heartbeat';\n\nconst mavLink = new MAVLinkModule(messageRegistry);\n\nexport { mavLink }\n","import { MAVLinkMessage } from \"@ifrunistuttgart/node-mavlink\";\nimport * as $ from \"jquery\";\nimport { mavLink } from '../classes/mavlink';\n\nexport function send(url: string, message: MAVLinkMessage, received: ((data: any) => void) | null = null) {\n\t$.ajax({\n\t\turl: `${window.location.href}${url}`,\n\t\tdata: mavLink.pack([message]).toString('hex'),\n\t\tsuccess: (received != null) ? data => { received(data) } : _ => { 1 + 1; }\n\t})\n}\n","\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nimport { Component, Vue, Prop } from 'vue-property-decorator';\n\nimport * as $ from \"jquery\";\n\nimport { mavLink } from '../classes/mavlink'\n\nimport { empty, set, get } from '@typed/hashmap'\n\nimport L from 'leaflet';\n\nimport Waypoint from '../classes/Waypoint'\nimport Position from '../classes/Position'\n\nimport WaypointComponent from './Waypoint.vue'\nimport { Heartbeat } from '@/classes/mavlink/messages/heartbeat';\nimport { MissionItem } from '@/classes/mavlink/messages/mission-item';\nimport { MissionClearAll } from '@/classes/mavlink/messages/mission-clear-all';\nimport { MavFrame } from '@/classes/mavlink/enums/mav-frame';\nimport { MavCmd } from '@/classes/mavlink/enums/mav-cmd';\nimport { MavMissionType } from '@/classes/mavlink/enums/mav-mission-type';\nimport { send } from '@/classes/AjaxRequest';\n\n@Component({\n\tcomponents: {\n\t\tWaypointComponent\n\t},\n})\n\n// A component that allows the user to add, change and remove waypoints\n\nexport default class MissionPlanner extends Vue {\n\t@Prop() private startingWaypoints!: Waypoint[]\n\t@Prop() private position!: Position\n\t@Prop() private addMarker!: (marker: L.Marker) => void\n\t@Prop() private removeMarker!: (marker: L.Marker) => void\n\t@Prop() private SYSTEM_ID!: () => number;\n\t@Prop() private COMPONENT_ID!: () => number;\n\n\tmarkers = empty();\n\n\twaypoints = [ ...this.startingWaypoints ]\n\n\tget size(): number {\n\t\treturn this.waypoints.length\n\t}\n\n\t// Test function that returns a position which is close to starting position\n\t// Used to assign position to added waypoints before user enters exact coordinates needed for added mission item\n\tprivate getWaypointLocation(): Position {\n\t\treturn new Position(\n\t\t\tthis.position.latitude + (Math.random() % 100 * 0.001),\n\t\t\tthis.position.longitude + (Math.random() % 100 * 0.001),\n\t\t\tthis.position.altitude\n\t\t)\n\t}\n\n\tprivate addWaypoint(): void {\n\t\tconst waypoint = new Waypoint(this.getWaypointLocation())\n\n\t\tconst marker = new L.Marker(L.latLng(\n\t\t\twaypoint.position.latitude,\n\t\t\twaypoint.position.longitude\n\t\t))\n\n\t\tthis.addMarker(marker)\n\n\t\tthis.markers = set(waypoint.id, marker, this.markers)\n\n\t\tthis.waypoints.push(waypoint)\n\n\t\tconst missionItem = new MissionItem(this.SYSTEM_ID(), this.COMPONENT_ID())\n\t\tmissionItem.seq = this.waypoints.length - 1\n\t\tmissionItem.frame = MavFrame.MAV_FRAME_GLOBAL\n\t\tmissionItem.command = MavCmd.MAV_CMD_NAV_WAYPOINT\n\t\tmissionItem.current = 0\n\t\tmissionItem.autocontinue = 1\n\t\tmissionItem.x = waypoint.position.latitude\n\t\tmissionItem.y = waypoint.position.longitude\n\t\tmissionItem.z = waypoint.position.altitude\n\t\tmissionItem.mission_type = MavMissionType.MAV_MISSION_TYPE_MISSION\n\t\t\n\t\tsend('mavlink/missionItem', missionItem)\n\t}\n\n\tprivate getMarker(id: number) {\n\t\treturn get(id, this.markers)\n\t}\n\n\tprivate removeWaypoint(id: number): void {\n\t\tthis.waypoints = this.waypoints.filter(waypoint => {\n\t\t\treturn waypoint.id != id\n\t\t})\n\t\tthis.updateWaypoints()\n\t}\n\n\tgetWaypointIndex(id: number): number {\n\t\tconst waypoints = this.waypoints.map((waypoint, ind) => ({\n\t\t\twaypoint, ind\n\t\t})).filter(item => item.waypoint.id == id)\n\n\t\tif (waypoints.length == 0) return -1;\n\n\t\treturn waypoints[0].ind\n\t}\n\n\tprivate moveWaypointUp(id: number): void {\n\t\tif (this.waypoints.length < 2) return;\n\n\t\tconst ind = this.getWaypointIndex(id)\n\n\t\tif (ind < 1) return;\n\n\t\t// This is a solution introduced in ES6\n\t\t// It's both elegant and efficient in terms of the memory usage as well as in terms of CPU performance\n\t\t// It also doesn't work because JS doesn't allow Vue to observe changes related to the order of elements in the array\n\t\t/*\n\t\t[this.waypoints[ind - 1], this.waypoints[ind]] = [this.waypoints[ind], this.waypoints[ind - 1]]\n\t\t*/\n\n\t\tconst waypoints = [ this.waypoints[ind], this.waypoints[ind - 1] ]\n\t\tthis.waypoints.splice(ind - 1, 2, waypoints[0], waypoints[1])\n\n\t\tthis.updateWaypoints()\n\t}\n\n\tprivate moveWaypointDown(id: number): void {\n\t\tif (this.waypoints.length < 2) return;\n\n\t\tconst ind = this.getWaypointIndex(id)\n\n\t\tif (ind < 0) return;\n\t\tif (ind >= this.waypoints.length - 1) return;\n\n\t\tconst waypoints = [ this.waypoints[ind + 1], this.waypoints[ind] ]\n\t\tthis.waypoints.splice(ind, 2, waypoints[0], waypoints[1])\n\n\t\tthis.updateWaypoints()\n\t}\n\n\tprivate updateWaypoints(): void {\n\t\tconst missionClearAll = new MissionClearAll(this.SYSTEM_ID(), this.COMPONENT_ID())\n\t\tmissionClearAll.mission_type = MavMissionType.MAV_MISSION_TYPE_MISSION\n\n\t\tconst missionItems = []\n\n\t\tfor(let i = 0; i < this.waypoints.length; i++) {\n\t\t\tmissionItems.push(new MissionItem(this.SYSTEM_ID(), this.COMPONENT_ID()))\n\t\t\tconst missionItem = missionItems[i];\n\t\t\tmissionItem.seq = i\n\t\t\tmissionItem.frame = MavFrame.MAV_FRAME_GLOBAL\n\t\t\tmissionItem.command = MavCmd.MAV_CMD_NAV_WAYPOINT\n\t\t\tmissionItem.current = 0\n\t\t\tmissionItem.autocontinue = 1\n\t\t\tmissionItem.x = this.waypoints[i].position.latitude\n\t\t\tmissionItem.y = this.waypoints[i].position.longitude\n\t\t\tmissionItem.z = this.waypoints[i].position.altitude\n\t\t\tmissionItem.mission_type = MavMissionType.MAV_MISSION_TYPE_MISSION\n\t\t}\n\n\t\tsend('mavlink/clearAll', missionClearAll)\n\n\t\tmissionItems.forEach(item => {\n\t\t\tsend('mavlink/missionItem', item)\n\t\t})\n\t}\n}\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--14-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/ts-loader/index.js??ref--14-3!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./MissionPlanner.vue?vue&type=script&lang=ts&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--14-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/ts-loader/index.js??ref--14-3!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./MissionPlanner.vue?vue&type=script&lang=ts&\"","import { render, staticRenderFns } from \"./MissionPlanner.vue?vue&type=template&id=53eb62e0&\"\nimport script from \"./MissionPlanner.vue?vue&type=script&lang=ts&\"\nexport * from \"./MissionPlanner.vue?vue&type=script&lang=ts&\"\nimport style0 from \"./MissionPlanner.vue?vue&type=style&index=0&lang=css&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _vm._m(0)}\nvar staticRenderFns = [function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:\"camera\",attrs:{\"id\":\"camera\"}},[_c('img',{attrs:{\"id\":\"cameraImage\"}})])}]\n\nexport { render, staticRenderFns }","\n\n\n\n\n\n\n\nimport { Component, Prop, Vue } from 'vue-property-decorator';\n\nimport Position from '../classes/Position';\n\n// A component that displays an image stream from UAV\n\n@Component\nexport default class Camera extends Vue {\n\t@Prop() private receivedMessagesRecently!: () => boolean;\n\n\tmounted() {\n\t\t// Update image src to get new image\n\t\tsetInterval(_ => {\n\t\t\tif (!this.receivedMessagesRecently()) return;\n\t\t\t\n\t\t\tdocument.getElementById('cameraImage')?.setAttribute(\n\t\t\t\t'src', `${window.location.href}I/frame.jpg?name=example1&date=${new Date().getTime()}`\n\t\t\t)\n\t\t}, 200);\n\t}\n}\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--14-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/ts-loader/index.js??ref--14-3!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./Camera.vue?vue&type=script&lang=ts&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--14-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/ts-loader/index.js??ref--14-3!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./Camera.vue?vue&type=script&lang=ts&\"","import { render, staticRenderFns } from \"./Camera.vue?vue&type=template&id=7e737e40&scoped=true&\"\nimport script from \"./Camera.vue?vue&type=script&lang=ts&\"\nexport * from \"./Camera.vue?vue&type=script&lang=ts&\"\nimport style0 from \"./Camera.vue?vue&type=style&index=0&id=7e737e40&scoped=true&lang=css&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n \"7e737e40\",\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{attrs:{\"id\":\"missionController\"}},[_c('button',{staticClass:\"buttonWaypoint buttonGreen\",attrs:{\"id\":\"buttonStartMission\"},on:{\"click\":function($event){return _vm.startMission()}}},[_vm._v(\"Start Mission\")]),_c('button',{staticClass:\"buttonWaypoint buttonRed\",attrs:{\"id\":\"buttonStartMission\"},on:{\"click\":function($event){return _vm.pauseMission()}}},[_vm._v(\"Pause\")]),_c('button',{staticClass:\"buttonWaypoint buttonGreen\",attrs:{\"id\":\"buttonSwitchFlightMode\"},on:{\"click\":function($event){return _vm.switchManualMode()}}})])}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n\n\n\n\n\n\n\n\nimport { Component, Vue, Prop } from 'vue-property-decorator';\n\nimport * as $ from \"jquery\";\n\nimport { mavLink } from '../classes/mavlink'\n\nimport { empty, set, get } from '@typed/hashmap'\n\nimport L from 'leaflet';\n\nimport Waypoint from '../classes/Waypoint'\nimport Position from '../classes/Position'\n\nimport WaypointComponent from './Waypoint.vue'\nimport { Heartbeat } from '@/classes/mavlink/messages/heartbeat';\nimport { MissionItem } from '@/classes/mavlink/messages/mission-item';\nimport { MissionClearAll } from '@/classes/mavlink/messages/mission-clear-all';\nimport { MavFrame } from '@/classes/mavlink/enums/mav-frame';\nimport { MavCmd } from '@/classes/mavlink/enums/mav-cmd';\nimport { MavMissionType } from '@/classes/mavlink/enums/mav-mission-type';\n\nimport { MissionSetCurrent } from '../classes/mavlink/messages/mission-set-current';\n\nimport { send } from '../classes/AjaxRequest';\n\n// A component that allows user to start and pause mission as well as switch between automatic and manual control modes\n\n@Component\nexport default class MissionController extends Vue {\n\t@Prop() private SYSTEM_ID!: () => number;\n\t@Prop() private COMPONENT_ID!: () => number;\n\t@Prop() private getManual!: () => boolean;\n\t@Prop() private setManual!: (value: boolean) => void;\n\n\tget manualControlMode() {\n\t\treturn this.getManual();\n\t}\n\n\tset manualControlMode(value: boolean) {\n\t\tthis.setManual(value);\n\t}\n\n\tmounted() {\n\t\tthis.switchManualMode();\n\t}\n\n\tstartMission() {\n\t\tconst missionSetCurrent = new MissionSetCurrent(this.SYSTEM_ID(), this.COMPONENT_ID());\n\t\tmissionSetCurrent.seq = 0;\n\n\t\tsend('mavlink/missionSetCurrent', missionSetCurrent);\n\t}\n\n\tpauseMission() {\n\t\tconst missionSetCurrent = new MissionSetCurrent(this.SYSTEM_ID(), this.COMPONENT_ID());\n\t\tmissionSetCurrent.seq = 65535;\n\n\t\tsend('mavlink/pauseMission', missionSetCurrent);\n\t}\n\n\tsetActiveMissionItem(missionItemIndex: number) {\n\t\tconst missionSetCurrent = new MissionSetCurrent(this.SYSTEM_ID(), this.COMPONENT_ID());\n\t\tmissionSetCurrent.seq = missionItemIndex;\n\n\t\tsend('mavlink/missionSetCurrent', missionSetCurrent);\n\t}\n\n\tswitchManualMode() {\n\t\tthis.manualControlMode = !this.manualControlMode;\n\t\tdocument.getElementById('buttonSwitchFlightMode')!.textContent = `Switch to ${this.manualControlMode ? 'Automatic' : 'Manual'} Mode`;\n\t}\n}\n","export enum MavParamType {\n\tMAV_PARAM_TYPE_UINT8 = 1, // 8-bit unsigned integer\n\tMAV_PARAM_TYPE_INT8 = 2, // 8-bit signed integer\n\tMAV_PARAM_TYPE_UINT16 = 3, // 16-bit unsigned integer\n\tMAV_PARAM_TYPE_INT16 = 4, // 16-bit signed integer\n\tMAV_PARAM_TYPE_UINT32 = 5, // 32-bit unsigned integer\n\tMAV_PARAM_TYPE_INT32 = 6, // 32-bit signed integer\n\tMAV_PARAM_TYPE_UINT64 = 7, // 64-bit unsigned integer\n\tMAV_PARAM_TYPE_INT64 = 8, // 64-bit signed integer\n\tMAV_PARAM_TYPE_REAL32 = 9, // 32-bit floating-point\n\tMAV_PARAM_TYPE_REAL64 = 10, // 64-bit floating-point\n\tMAV_PARAM_TYPE_ENUM_END = 11, // \n}","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--14-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/ts-loader/index.js??ref--14-3!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./MissionController.vue?vue&type=script&lang=ts&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--14-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/ts-loader/index.js??ref--14-3!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./MissionController.vue?vue&type=script&lang=ts&\"","import { render, staticRenderFns } from \"./MissionController.vue?vue&type=template&id=8910d1b8&scoped=true&\"\nimport script from \"./MissionController.vue?vue&type=script&lang=ts&\"\nexport * from \"./MissionController.vue?vue&type=script&lang=ts&\"\nimport style0 from \"./MissionController.vue?vue&type=style&index=0&id=8910d1b8&scoped=true&lang=css&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n \"8910d1b8\",\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{attrs:{\"id\":\"tables\"}},[_c('table',{staticClass:\"table-fill\",attrs:{\"id\":\"tableProperties\"}},[_vm._m(0),_c('tbody',{staticClass:\"table-hover\"},_vm._l((this.properties.filter(function (item) { return !item.userControlled; })),function(property){return _c('tr',{key:(\"property\" + (property.name)),on:{\"mouseover\":function($event){return _vm.hoverElement(property.name)},\"mouseout\":function($event){return _vm.hideChartMouseEvent()}}},[_c('td',[_vm._v(_vm._s(property.name))]),_c('td',[_vm._v(_vm._s(property.value))])])}),0)]),_c('table',{staticClass:\"table-fill\",attrs:{\"id\":\"properties\"}},[_vm._m(1),_c('tbody',{staticClass:\"table-hover\",attrs:{\"id\":\"tableProperties\"}},_vm._l((this.properties.filter(function (item) { return item.userControlled; })),function(property){return _c('tr',{key:(\"property\" + (property.name))},[_c('td',[_vm._v(_vm._s(property.name))]),_c('td',[_c('input',{staticClass:\"property_confirmed\",attrs:{\"type\":\"number\",\"id\":property.name + '_param'},domProps:{\"value\":property.value},on:{\"keyup\":function($event){return _vm.updateParam(property.name)}}})])])}),0)])])}\nvar staticRenderFns = [function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('thead',[_c('tr',[_c('th',[_vm._v(\"Property\")]),_c('th',[_vm._v(\"Value\")])])])},function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('thead',[_c('tr',[_c('th',[_vm._v(\"Property\")]),_c('th',[_vm._v(\"Value\")])])])}]\n\nexport { render, staticRenderFns }","\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nimport { ParamSet } from '../classes/mavlink/messages/param-set';\n\nimport { Component, Vue, Prop } from 'vue-property-decorator';\nimport { MavParamType } from '@/classes/mavlink/enums/mav-param-type';\nimport { ParamRequestList } from '@/classes/mavlink/messages/param-request-list';\n\nimport { send } from '../classes/AjaxRequest';\n\nimport Chart, { ChartDataSets } from 'chart.js';\n\n// A component that displays text data coming from UAV and allows changing manually controlled fields\n\nclass Property {\n\tname: string\n\tuserControlled: boolean\n\tvalue: number\n\tpreviousValues: number[] = []\n\n\tconstructor(name: string, userControlled: boolean, value: number) {\n\t\tthis.name = name\n\t\tthis.userControlled = userControlled\n\t\tthis.value = value\n\t}\n}\n\n@Component\nexport default class Properties extends Vue {\n\t@Prop() private SYSTEM_ID!: () => number;\n\t@Prop() private COMPONENT_ID!: () => number;\n\t@Prop() private receivedMessagesRecently!: () => boolean;\n\t@Prop() private showChart!: () => void;\n\t@Prop() private hideChart!: () => void;\n\n\tproperties: Property[] = []\n\n\tchartPropertyName = \"\"\n\n\thideChartMouseEvent() {\n\t\tthis.chartPropertyName = \"\"\n\t\tthis.hideChart();\n\t}\n\n\tmounted() {\n\t\t// This is a mock as a list of actual properties has to come from UAV based on it's current set of attached equipment\n\t\tconst viewProperties = [\n\t\t\t'ViewProperty1', 'ViewProperty2', 'ViewProperty3'\n\t\t]\n\t\tviewProperties.forEach(property => {\n\t\t\tthis.properties.push({\n\t\t\t\tname: property,\n\t\t\t\tuserControlled: false,\n\t\t\t\tvalue: 0,\n\t\t\t\tpreviousValues: []\n\t\t\t})\n\t\t})\n\t\tconst properties = [\n\t\t\t'Row', 'Pitch', 'Yaw', 'Thrust'\n\t\t]\n\t\tproperties.forEach(property => {\n\t\t\tthis.properties.push({\n\t\t\t\tname: property,\n\t\t\t\tuserControlled: true,\n\t\t\t\tvalue: 0,\n\t\t\t\tpreviousValues: []\n\t\t\t})\n\t\t})\n\n\t\t// Sending messages to aquire properties' values\n\t\tsetInterval(_ => {\n\t\t\tif (!this.receivedMessagesRecently()) return;\n\n\t\t\tconst requestParam = new ParamRequestList(this.SYSTEM_ID(), this.COMPONENT_ID());\n\t\t\t\n\t\t\tsend('mavlink/getProperties', requestParam, data => {\n\t\t\t\tconst properties = data.split('&')\n\t\t\t\tlet ind = 1;\n\t\t\t\tthis.properties.filter(it => !it.userControlled).forEach(property => {\n\t\t\t\t\tproperty.previousValues.push(Number(property.value))\n\t\t\t\t\tproperty.value = properties[ind++]\n\t\t\t\t})\n\n\t\t\t\tif (this.chartPropertyName != \"\") {\n\t\t\t\t\tthis.updateChart(this.chartPropertyName)\n\t\t\t\t}\n\t\t\t});\n\t\t}, 1000);\n\t}\n\n\tprivate updateParam(paramName: string) {\n\t\tconst property = this.properties.filter(it => it.name == paramName)[0]\n\t\tconst propertyDiv = document.getElementById(`${paramName}_param`) as HTMLInputElement\n\t\tconst propertyValue = propertyDiv.value;\n\n\t\tproperty.value = Number(propertyValue)\n\n\t\tthis.setParam(property.name, property.value)\n\t}\n\n\tprivate setParam(paramId: string, paramValue: number): void {\n\t\tconst setParamMessage = new ParamSet(this.SYSTEM_ID(), this.COMPONENT_ID())\n\t\tsetParamMessage.param_id = paramId;\n\t\tsetParamMessage.param_value = paramValue;\n\t\tsetParamMessage.param_type = MavParamType.MAV_PARAM_TYPE_INT32;\n\t\t\n\t\tsend('mavlink/setParam', setParamMessage)\n\t}\n\n\tprivate hoverElement(propertyName: string) {\n\t\tthis.chartPropertyName = propertyName;\n\n\t\tthis.showChart();\n\n\t\tthis.updateChart(propertyName);\n\n\t\tconsole.log(this.properties.filter(it => it.name == propertyName)[0].previousValues)\n\t}\n\n\tprivate updateChart(propertyName: string) {\n\t\tconst graphCanvas = document.getElementById(\"graphCanvas\") as HTMLCanvasElement;\n\n\t\tconst ctx = graphCanvas.getContext('2d')!;\n\n\t\tconst chartDefaults = Chart.defaults;\n\n\t\tchartDefaults.global.defaultFontSize = 32;\n\t\tchartDefaults.global.defaultFontColor = 'rgba(250, 250, 250, 1)';\n\n\t\tconst defaultColors = [\n\t\t\t'rgba(222, 0, 0, 1)',\n\t\t\t'rgba(0, 222, 0, 1)',\n\t\t\t'rgba(0, 222, 222, 1)'\n\t\t]\n\n\t\tconst values = this.properties.filter(it => it.name == propertyName)[0].previousValues\n\n\t\tconst graph = new Chart(ctx, {\n\t\t\ttype: 'line',\n\t\t\tdata: {\n\t\t\t\tlabels: Array.from(Array(values.length).keys()),\n\t\t\t\tdatasets: [{\n\t\t\t\t\tlabel: propertyName,\n\t\t\t\t\tdata: values\n\t\t\t\t\t}]\n\t\t\t},\n\t\t\toptions: {\n\t\t\t\tmaintainAspectRatio: false,\n\n\t\t\t\tresponsive: true,\n\t\t\t\tanimation: {\n\t\t\t\t\tduration: 0\n\t\t\t\t},\n\t\t\t\thover: {\n\t\t\t\t\tanimationDuration: 0\n\t\t\t\t},\n\t\t\t\tresponsiveAnimationDuration: 0\n\t\t\t}\n\t\t});\n\t}\n}\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--14-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/ts-loader/index.js??ref--14-3!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./Properties.vue?vue&type=script&lang=ts&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--14-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/ts-loader/index.js??ref--14-3!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./Properties.vue?vue&type=script&lang=ts&\"","import { render, staticRenderFns } from \"./Properties.vue?vue&type=template&id=54efae41&scoped=true&\"\nimport script from \"./Properties.vue?vue&type=script&lang=ts&\"\nexport * from \"./Properties.vue?vue&type=script&lang=ts&\"\nimport style0 from \"./Properties.vue?vue&type=style&index=0&id=54efae41&scoped=true&lang=css&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n \"54efae41\",\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _vm._m(0)}\nvar staticRenderFns = [function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{attrs:{\"id\":\"graphDiv\"}},[_c('canvas',{attrs:{\"id\":\"graphCanvas\"}})])}]\n\nexport { render, staticRenderFns }","\n\n\n\n\n\nimport { Component, Vue, Prop } from 'vue-property-decorator';\n\nimport { send } from '../classes/AjaxRequest';\n\n@Component({\n\tcomponents: {\n\t},\n})\n\nexport default class ChartComponent extends Vue {\n}\n","export enum MavType {\n\tMAV_TYPE_GENERIC = 0, // Generic micro air vehicle\n\tMAV_TYPE_FIXED_WING = 1, // Fixed wing aircraft.\n\tMAV_TYPE_QUADROTOR = 2, // Quadrotor\n\tMAV_TYPE_COAXIAL = 3, // Coaxial helicopter\n\tMAV_TYPE_HELICOPTER = 4, // Normal helicopter with tail rotor.\n\tMAV_TYPE_ANTENNA_TRACKER = 5, // Ground installation\n\tMAV_TYPE_GCS = 6, // Operator control unit / ground control station\n\tMAV_TYPE_AIRSHIP = 7, // Airship, controlled\n\tMAV_TYPE_FREE_BALLOON = 8, // Free balloon, uncontrolled\n\tMAV_TYPE_ROCKET = 9, // Rocket\n\tMAV_TYPE_GROUND_ROVER = 10, // Ground rover\n\tMAV_TYPE_SURFACE_BOAT = 11, // Surface vessel, boat, ship\n\tMAV_TYPE_SUBMARINE = 12, // Submarine\n\tMAV_TYPE_HEXAROTOR = 13, // Hexarotor\n\tMAV_TYPE_OCTOROTOR = 14, // Octorotor\n\tMAV_TYPE_TRICOPTER = 15, // Tricopter\n\tMAV_TYPE_FLAPPING_WING = 16, // Flapping wing\n\tMAV_TYPE_KITE = 17, // Kite\n\tMAV_TYPE_ONBOARD_CONTROLLER = 18, // Onboard companion controller\n\tMAV_TYPE_VTOL_DUOROTOR = 19, // Two-rotor VTOL using control surfaces in vertical operation in addition. Tailsitter.\n\tMAV_TYPE_VTOL_QUADROTOR = 20, // Quad-rotor VTOL using a V-shaped quad config in vertical operation. Tailsitter.\n\tMAV_TYPE_VTOL_TILTROTOR = 21, // Tiltrotor VTOL\n\tMAV_TYPE_VTOL_RESERVED2 = 22, // VTOL reserved 2\n\tMAV_TYPE_VTOL_RESERVED3 = 23, // VTOL reserved 3\n\tMAV_TYPE_VTOL_RESERVED4 = 24, // VTOL reserved 4\n\tMAV_TYPE_VTOL_RESERVED5 = 25, // VTOL reserved 5\n\tMAV_TYPE_GIMBAL = 26, // Gimbal\n\tMAV_TYPE_ADSB = 27, // ADSB system\n\tMAV_TYPE_PARAFOIL = 28, // Steerable, nonrigid airfoil\n\tMAV_TYPE_DODECAROTOR = 29, // Dodecarotor\n\tMAV_TYPE_CAMERA = 30, // Camera\n\tMAV_TYPE_CHARGING_STATION = 31, // Charging station\n\tMAV_TYPE_FLARM = 32, // FLARM collision avoidance system\n\tMAV_TYPE_SERVO = 33, // Servo\n\tMAV_TYPE_ODID = 34, // Open Drone ID. See https://mavlink.io/en/services/opendroneid.html.\n\tMAV_TYPE_DECAROTOR = 35, // Decarotor\n\tMAV_TYPE_ENUM_END = 36, // \n}","export enum MavAutopilot {\n\tMAV_AUTOPILOT_GENERIC = 0, // Generic autopilot, full support for everything\n\tMAV_AUTOPILOT_RESERVED = 1, // Reserved for future use.\n\tMAV_AUTOPILOT_SLUGS = 2, // SLUGS autopilot, http://slugsuav.soe.ucsc.edu\n\tMAV_AUTOPILOT_ARDUPILOTMEGA = 3, // ArduPilot - Plane/Copter/Rover/Sub/Tracker, https://ardupilot.org\n\tMAV_AUTOPILOT_OPENPILOT = 4, // OpenPilot, http://openpilot.org\n\tMAV_AUTOPILOT_GENERIC_WAYPOINTS_ONLY = 5, // Generic autopilot only supporting simple waypoints\n\tMAV_AUTOPILOT_GENERIC_WAYPOINTS_AND_SIMPLE_NAVIGATION_ONLY = 6, // Generic autopilot supporting waypoints and other simple navigation commands\n\tMAV_AUTOPILOT_GENERIC_MISSION_FULL = 7, // Generic autopilot supporting the full mission command set\n\tMAV_AUTOPILOT_INVALID = 8, // No valid autopilot, e.g. a GCS or other MAVLink component\n\tMAV_AUTOPILOT_PPZ = 9, // PPZ UAV - http://nongnu.org/paparazzi\n\tMAV_AUTOPILOT_UDB = 10, // UAV Dev Board\n\tMAV_AUTOPILOT_FP = 11, // FlexiPilot\n\tMAV_AUTOPILOT_PX4 = 12, // PX4 Autopilot - http://px4.io/\n\tMAV_AUTOPILOT_SMACCMPILOT = 13, // SMACCMPilot - http://smaccmpilot.org\n\tMAV_AUTOPILOT_AUTOQUAD = 14, // AutoQuad -- http://autoquad.org\n\tMAV_AUTOPILOT_ARMAZILA = 15, // Armazila -- http://armazila.com\n\tMAV_AUTOPILOT_AEROB = 16, // Aerob -- http://aerob.ru\n\tMAV_AUTOPILOT_ASLUAV = 17, // ASLUAV autopilot -- http://www.asl.ethz.ch\n\tMAV_AUTOPILOT_SMARTAP = 18, // SmartAP Autopilot - http://sky-drones.com\n\tMAV_AUTOPILOT_AIRRAILS = 19, // AirRails - http://uaventure.com\n\tMAV_AUTOPILOT_ENUM_END = 20, // \n}","export enum MavState {\n\tMAV_STATE_UNINIT = 0, // Uninitialized system, state is unknown.\n\tMAV_STATE_BOOT = 1, // System is booting up.\n\tMAV_STATE_CALIBRATING = 2, // System is calibrating and not flight-ready.\n\tMAV_STATE_STANDBY = 3, // System is grounded and on standby. It can be launched any time.\n\tMAV_STATE_ACTIVE = 4, // System is active and might be already airborne. Motors are engaged.\n\tMAV_STATE_CRITICAL = 5, // System is in a non-normal flight mode. It can however still navigate.\n\tMAV_STATE_EMERGENCY = 6, // System is in a non-normal flight mode. It lost control over parts or over the whole airframe. It is in mayday and going down.\n\tMAV_STATE_POWEROFF = 7, // System just initialized its power-down sequence, will shut down now.\n\tMAV_STATE_FLIGHT_TERMINATION = 8, // System is terminating itself.\n\tMAV_STATE_ENUM_END = 9, // \n}","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--14-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/ts-loader/index.js??ref--14-3!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./Chart.vue?vue&type=script&lang=ts&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--14-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/ts-loader/index.js??ref--14-3!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./Chart.vue?vue&type=script&lang=ts&\"","import { render, staticRenderFns } from \"./Chart.vue?vue&type=template&id=20ec5b04&scoped=true&\"\nimport script from \"./Chart.vue?vue&type=script&lang=ts&\"\nexport * from \"./Chart.vue?vue&type=script&lang=ts&\"\nimport style0 from \"./Chart.vue?vue&type=style&index=0&id=20ec5b04&scoped=true&lang=css&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n \"20ec5b04\",\n null\n \n)\n\nexport default component.exports","\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nimport { Component, Vue } from 'vue-property-decorator';\nimport Map from './components/Map.vue';\nimport Position from './classes/Position';\nimport Waypoint from './classes/Waypoint';\nimport WaypointComponent from './components/Waypoint.vue';\nimport Menu from './components/Menu.vue';\nimport MissionPlanner from './components/MissionPlanner.vue';\nimport Camera from './components/Camera.vue';\nimport MissionController from './components/MissionController.vue';\nimport Properties from './components/Properties.vue';\nimport ChartComponent from './components/Chart.vue';\n\nimport { Heartbeat } from './classes/mavlink/messages/heartbeat';\n\nimport L from 'leaflet';\nimport { MavType } from './classes/mavlink/enums/mav-type';\nimport { MavAutopilot } from './classes/mavlink/enums/mav-autopilot';\nimport { MavState } from './classes/mavlink/enums/mav-state';\n\nimport { send } from './classes/AjaxRequest';\n\n@Component({\n\tcomponents: {\n\t\tMap,\n\t\tWaypointComponent,\n\t\tMenu,\n\t\tMissionPlanner,\n\t\tCamera,\n\t\tMissionController,\n\t\tProperties,\n\t\tChartComponent\n\t},\n})\n\nexport default class App extends Vue {\n\t// Placeholder for starting position\n\tstatic position = new Position(59.87994329833602, 29.82886671034883, 100)\n\n\t// Number of messages sent after previous UAV's response\n\tunansweredMessages = 0;\n\n\tget position() {\n\t\treturn App.position\n\t}\n\n\t/*\n\t\t\"The sender always fills in the System ID and Component ID fields so that the receiver knows where the packet came from. The System ID is a unique ID for each vehicle or ground station. Ground stations normally use a high system id like “255” and vehicles default to use “1” (this can be changed by setting the SYSID_THISMAV parameter). The Component ID for the ground station or flight controller is normally “1”.\" - Ardupilot Documentation\n\t*/\n\n\t// Placeholder for GCS's system id\n\tprivate SYSTEM_ID(): number {\n\t\treturn 255;\n\t}\n\n\t// Placeholder for component id\n\tprivate COMPONENT_ID(): number {\n\t\treturn 1;\n\t}\n\n\t// List of menu items available for displaying\n\twindows = [\n\t\t\"map\",\n\t\t\"camera\"\n\t]\n\n\tshowingChart = false;\n\n\tmanualControlMode = false;\n\n\tprivate getManualMode() {\n\t\treturn this.manualControlMode;\n\t}\n\n\tprivate setManualMode(value: boolean) {\n\t\tthis.manualControlMode = value;\n\t}\n\n\tprivate currentWindow(window: string): boolean {\n\t\treturn this.activeWindow == this.windows.indexOf(window)\n\t}\n\n\twaypoints: Waypoint[] = [\n\t]\n\n\tmaps: L.Map[] = [\n\t]\n\n\tprivate addMap(map: L.Map) {\n\t\tthis.maps.push(map)\n\t}\n\n\tprivate addMarker(marker: L.Marker) {\n\t\tmarker.addTo(this.maps[0])\n\t}\n\n\tprivate removeMarker(marker: L.Marker) {\n\t\tmarker.removeFrom(this.maps[0])\n\t}\n\n\tprivate resetMessagesCounter() {\n\t\tthis.unansweredMessages = 0;\n\t}\n\n\tprivate increaseMessagesCounter() {\n\t\tthis.unansweredMessages++;\n\t}\n\n\tprivate receivedMessagesRecently() {\n\t\treturn this.unansweredMessages < 10;\n\t}\n\n\tactiveWindow = 0;\n\n\tprivate changeActiveWindow(windowIndex: number) {\n\t\tthis.activeWindow = windowIndex;\n\t}\n\n\tprivate showChart() { this.showingChart = true; }\n\tprivate hideChart() { this.showingChart = false; }\n\n\tmounted() {\n\t\t// Sending messages to notify UAV of GCS's state\n\t\tsetInterval(_ => {\n\t\t\tconst heartbeatMessage = new Heartbeat(this.SYSTEM_ID(), this.COMPONENT_ID())\n\t\t\theartbeatMessage.type = MavType.MAV_TYPE_GCS;\n\t\t\theartbeatMessage.autopilot = MavAutopilot.MAV_AUTOPILOT_INVALID;\n\t\t\theartbeatMessage.system_status = MavState.MAV_STATE_ACTIVE;\n\n\t\t\tthis.increaseMessagesCounter();\n\n\t\t\tsend('mavlink/heartbeatMessage', heartbeatMessage, this.resetMessagesCounter);\n\t\t}, 1000);\n\t}\n}\n","import mod from \"-!../node_modules/cache-loader/dist/cjs.js??ref--14-0!../node_modules/thread-loader/dist/cjs.js!../node_modules/babel-loader/lib/index.js!../node_modules/ts-loader/index.js??ref--14-3!../node_modules/cache-loader/dist/cjs.js??ref--0-0!../node_modules/vue-loader/lib/index.js??vue-loader-options!./App.vue?vue&type=script&lang=ts&\"; export default mod; export * from \"-!../node_modules/cache-loader/dist/cjs.js??ref--14-0!../node_modules/thread-loader/dist/cjs.js!../node_modules/babel-loader/lib/index.js!../node_modules/ts-loader/index.js??ref--14-3!../node_modules/cache-loader/dist/cjs.js??ref--0-0!../node_modules/vue-loader/lib/index.js??vue-loader-options!./App.vue?vue&type=script&lang=ts&\"","import { render, staticRenderFns } from \"./App.vue?vue&type=template&id=000b50a5&\"\nimport script from \"./App.vue?vue&type=script&lang=ts&\"\nexport * from \"./App.vue?vue&type=script&lang=ts&\"\nimport style0 from \"./App.vue?vue&type=style&index=0&lang=css&\"\n\n\n/* normalize component */\nimport normalizer from \"!../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","import Vue from 'vue'\nimport App from './App.vue'\n\nVue.config.productionTip = false\nVue.config.performance = true\n\nnew Vue({\n render: h => h(App),\n}).$mount('#app')\n","export * from \"-!../../node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!../../node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../node_modules/postcss-loader/src/index.js??ref--6-oneOf-1-2!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./Camera.vue?vue&type=style&index=0&id=7e737e40&scoped=true&lang=css&\""],"sourceRoot":""}
\ No newline at end of file
diff --git a/test/gcs/dist/js/chunk-vendors.cbee9610.js b/test/gcs/dist/js/chunk-vendors.cbee9610.js
new file mode 100644
index 00000000..72ed47fa
--- /dev/null
+++ b/test/gcs/dist/js/chunk-vendors.cbee9610.js
@@ -0,0 +1,335 @@
+(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["chunk-vendors"],{"00ee":function(t,e,n){var i=n("b622"),r=i("toStringTag"),a={};a[r]="z",t.exports="[object z]"===String(a)},"010e":function(t,e,n){(function(t,e){e(n("c1df"))})(0,(function(t){"use strict";
+//! moment.js locale configuration
+var e=t.defineLocale("uz-latn",{months:"Yanvar_Fevral_Mart_Aprel_May_Iyun_Iyul_Avgust_Sentabr_Oktabr_Noyabr_Dekabr".split("_"),monthsShort:"Yan_Fev_Mar_Apr_May_Iyun_Iyul_Avg_Sen_Okt_Noy_Dek".split("_"),weekdays:"Yakshanba_Dushanba_Seshanba_Chorshanba_Payshanba_Juma_Shanba".split("_"),weekdaysShort:"Yak_Dush_Sesh_Chor_Pay_Jum_Shan".split("_"),weekdaysMin:"Ya_Du_Se_Cho_Pa_Ju_Sha".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"D MMMM YYYY, dddd HH:mm"},calendar:{sameDay:"[Bugun soat] LT [da]",nextDay:"[Ertaga] LT [da]",nextWeek:"dddd [kuni soat] LT [da]",lastDay:"[Kecha soat] LT [da]",lastWeek:"[O'tgan] dddd [kuni soat] LT [da]",sameElse:"L"},relativeTime:{future:"Yaqin %s ichida",past:"Bir necha %s oldin",s:"soniya",ss:"%d soniya",m:"bir daqiqa",mm:"%d daqiqa",h:"bir soat",hh:"%d soat",d:"bir kun",dd:"%d kun",M:"bir oy",MM:"%d oy",y:"bir yil",yy:"%d yil"},week:{dow:1,doy:7}});return e}))},"02fb":function(t,e,n){(function(t,e){e(n("c1df"))})(0,(function(t){"use strict";
+//! moment.js locale configuration
+var e=t.defineLocale("ml",{months:"ജനുവരി_ഫെബ്രുവരി_മാർച്ച്_ഏപ്രിൽ_മേയ്_ജൂൺ_ജൂലൈ_ഓഗസ്റ്റ്_സെപ്റ്റംബർ_ഒക്ടോബർ_നവംബർ_ഡിസംബർ".split("_"),monthsShort:"ജനു._ഫെബ്രു._മാർ._ഏപ്രി._മേയ്_ജൂൺ_ജൂലൈ._ഓഗ._സെപ്റ്റ._ഒക്ടോ._നവം._ഡിസം.".split("_"),monthsParseExact:!0,weekdays:"ഞായറാഴ്ച_തിങ്കളാഴ്ച_ചൊവ്വാഴ്ച_ബുധനാഴ്ച_വ്യാഴാഴ്ച_വെള്ളിയാഴ്ച_ശനിയാഴ്ച".split("_"),weekdaysShort:"ഞായർ_തിങ്കൾ_ചൊവ്വ_ബുധൻ_വ്യാഴം_വെള്ളി_ശനി".split("_"),weekdaysMin:"ഞാ_തി_ചൊ_ബു_വ്യാ_വെ_ശ".split("_"),longDateFormat:{LT:"A h:mm -നു",LTS:"A h:mm:ss -നു",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY, A h:mm -നു",LLLL:"dddd, D MMMM YYYY, A h:mm -നു"},calendar:{sameDay:"[ഇന്ന്] LT",nextDay:"[നാളെ] LT",nextWeek:"dddd, LT",lastDay:"[ഇന്നലെ] LT",lastWeek:"[കഴിഞ്ഞ] dddd, LT",sameElse:"L"},relativeTime:{future:"%s കഴിഞ്ഞ്",past:"%s മുൻപ്",s:"അൽപ നിമിഷങ്ങൾ",ss:"%d സെക്കൻഡ്",m:"ഒരു മിനിറ്റ്",mm:"%d മിനിറ്റ്",h:"ഒരു മണിക്കൂർ",hh:"%d മണിക്കൂർ",d:"ഒരു ദിവസം",dd:"%d ദിവസം",M:"ഒരു മാസം",MM:"%d മാസം",y:"ഒരു വർഷം",yy:"%d വർഷം"},meridiemParse:/രാത്രി|രാവിലെ|ഉച്ച കഴിഞ്ഞ്|വൈകുന്നേരം|രാത്രി/i,meridiemHour:function(t,e){return 12===t&&(t=0),"രാത്രി"===e&&t>=4||"ഉച്ച കഴിഞ്ഞ്"===e||"വൈകുന്നേരം"===e?t+12:t},meridiem:function(t,e,n){return t<4?"രാത്രി":t<12?"രാവിലെ":t<17?"ഉച്ച കഴിഞ്ഞ്":t<20?"വൈകുന്നേരം":"രാത്രി"}});return e}))},"0366":function(t,e,n){var i=n("1c0b");t.exports=function(t,e,n){if(i(t),void 0===e)return t;switch(n){case 0:return function(){return t.call(e)};case 1:return function(n){return t.call(e,n)};case 2:return function(n,i){return t.call(e,n,i)};case 3:return function(n,i,r){return t.call(e,n,i,r)}}return function(){return t.apply(e,arguments)}}},"03ec":function(t,e,n){(function(t,e){e(n("c1df"))})(0,(function(t){"use strict";
+//! moment.js locale configuration
+var e=t.defineLocale("cv",{months:"кӑрлач_нарӑс_пуш_ака_май_ҫӗртме_утӑ_ҫурла_авӑн_юпа_чӳк_раштав".split("_"),monthsShort:"кӑр_нар_пуш_ака_май_ҫӗр_утӑ_ҫур_авн_юпа_чӳк_раш".split("_"),weekdays:"вырсарникун_тунтикун_ытларикун_юнкун_кӗҫнерникун_эрнекун_шӑматкун".split("_"),weekdaysShort:"выр_тун_ытл_юн_кӗҫ_эрн_шӑм".split("_"),weekdaysMin:"вр_тн_ыт_юн_кҫ_эр_шм".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD-MM-YYYY",LL:"YYYY [ҫулхи] MMMM [уйӑхӗн] D[-мӗшӗ]",LLL:"YYYY [ҫулхи] MMMM [уйӑхӗн] D[-мӗшӗ], HH:mm",LLLL:"dddd, YYYY [ҫулхи] MMMM [уйӑхӗн] D[-мӗшӗ], HH:mm"},calendar:{sameDay:"[Паян] LT [сехетре]",nextDay:"[Ыран] LT [сехетре]",lastDay:"[Ӗнер] LT [сехетре]",nextWeek:"[Ҫитес] dddd LT [сехетре]",lastWeek:"[Иртнӗ] dddd LT [сехетре]",sameElse:"L"},relativeTime:{future:function(t){var e=/сехет$/i.exec(t)?"рен":/ҫул$/i.exec(t)?"тан":"ран";return t+e},past:"%s каялла",s:"пӗр-ик ҫеккунт",ss:"%d ҫеккунт",m:"пӗр минут",mm:"%d минут",h:"пӗр сехет",hh:"%d сехет",d:"пӗр кун",dd:"%d кун",M:"пӗр уйӑх",MM:"%d уйӑх",y:"пӗр ҫул",yy:"%d ҫул"},dayOfMonthOrdinalParse:/\d{1,2}-мӗш/,ordinal:"%d-мӗш",week:{dow:1,doy:7}});return e}))},"0538":function(t,e,n){"use strict";var i=n("1c0b"),r=n("861d"),a=[].slice,o={},s=function(t,e,n){if(!(e in o)){for(var i=[],r=0;r12?t:t+12:"sanje"===e?t+12:void 0},meridiem:function(t,e,n){return t<4?"rati":t<12?"sokallim":t<16?"donparam":t<20?"sanje":"rati"}});return n}))},"0cb2":function(t,e,n){var i=n("7b0b"),r=Math.floor,a="".replace,o=/\$([$&'`]|\d{1,2}|<[^>]*>)/g,s=/\$([$&'`]|\d{1,2})/g;t.exports=function(t,e,n,u,l,d){var c=n+t.length,h=u.length,f=s;return void 0!==l&&(l=i(l),f=o),a.call(d,f,(function(i,a){var o;switch(a.charAt(0)){case"$":return"$";case"&":return t;case"`":return e.slice(0,n);case"'":return e.slice(c);case"<":o=l[a.slice(1,-1)];break;default:var s=+a;if(0===s)return i;if(s>h){var d=r(s/10);return 0===d?i:d<=h?void 0===u[d-1]?a.charAt(1):u[d-1]+a.charAt(1):i}o=u[s-1]}return void 0===o?"":o}))}},"0cfb":function(t,e,n){var i=n("83ab"),r=n("d039"),a=n("cc12");t.exports=!i&&!r((function(){return 7!=Object.defineProperty(a("div"),"a",{get:function(){return 7}}).a}))},"0e49":function(t,e,n){(function(t,e){e(n("c1df"))})(0,(function(t){"use strict";
+//! moment.js locale configuration
+var e=t.defineLocale("fr-ch",{months:"janvier_février_mars_avril_mai_juin_juillet_août_septembre_octobre_novembre_décembre".split("_"),monthsShort:"janv._févr._mars_avr._mai_juin_juil._août_sept._oct._nov._déc.".split("_"),monthsParseExact:!0,weekdays:"dimanche_lundi_mardi_mercredi_jeudi_vendredi_samedi".split("_"),weekdaysShort:"dim._lun._mar._mer._jeu._ven._sam.".split("_"),weekdaysMin:"di_lu_ma_me_je_ve_sa".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD.MM.YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd D MMMM YYYY HH:mm"},calendar:{sameDay:"[Aujourd’hui à] LT",nextDay:"[Demain à] LT",nextWeek:"dddd [à] LT",lastDay:"[Hier à] LT",lastWeek:"dddd [dernier à] LT",sameElse:"L"},relativeTime:{future:"dans %s",past:"il y a %s",s:"quelques secondes",ss:"%d secondes",m:"une minute",mm:"%d minutes",h:"une heure",hh:"%d heures",d:"un jour",dd:"%d jours",M:"un mois",MM:"%d mois",y:"un an",yy:"%d ans"},dayOfMonthOrdinalParse:/\d{1,2}(er|e)/,ordinal:function(t,e){switch(e){default:case"M":case"Q":case"D":case"DDD":case"d":return t+(1===t?"er":"e");case"w":case"W":return t+(1===t?"re":"e")}},week:{dow:1,doy:4}});return e}))},"0e6b":function(t,e,n){(function(t,e){e(n("c1df"))})(0,(function(t){"use strict";
+//! moment.js locale configuration
+var e=t.defineLocale("en-au",{months:"January_February_March_April_May_June_July_August_September_October_November_December".split("_"),monthsShort:"Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec".split("_"),weekdays:"Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday".split("_"),weekdaysShort:"Sun_Mon_Tue_Wed_Thu_Fri_Sat".split("_"),weekdaysMin:"Su_Mo_Tu_We_Th_Fr_Sa".split("_"),longDateFormat:{LT:"h:mm A",LTS:"h:mm:ss A",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY h:mm A",LLLL:"dddd, D MMMM YYYY h:mm A"},calendar:{sameDay:"[Today at] LT",nextDay:"[Tomorrow at] LT",nextWeek:"dddd [at] LT",lastDay:"[Yesterday at] LT",lastWeek:"[Last] dddd [at] LT",sameElse:"L"},relativeTime:{future:"in %s",past:"%s ago",s:"a few seconds",ss:"%d seconds",m:"a minute",mm:"%d minutes",h:"an hour",hh:"%d hours",d:"a day",dd:"%d days",M:"a month",MM:"%d months",y:"a year",yy:"%d years"},dayOfMonthOrdinalParse:/\d{1,2}(st|nd|rd|th)/,ordinal:function(t){var e=t%10,n=1===~~(t%100/10)?"th":1===e?"st":2===e?"nd":3===e?"rd":"th";return t+n},week:{dow:0,doy:4}});return e}))},"0e81":function(t,e,n){(function(t,e){e(n("c1df"))})(0,(function(t){"use strict";
+//! moment.js locale configuration
+var e={1:"'inci",5:"'inci",8:"'inci",70:"'inci",80:"'inci",2:"'nci",7:"'nci",20:"'nci",50:"'nci",3:"'üncü",4:"'üncü",100:"'üncü",6:"'ncı",9:"'uncu",10:"'uncu",30:"'uncu",60:"'ıncı",90:"'ıncı"},n=t.defineLocale("tr",{months:"Ocak_Şubat_Mart_Nisan_Mayıs_Haziran_Temmuz_Ağustos_Eylül_Ekim_Kasım_Aralık".split("_"),monthsShort:"Oca_Şub_Mar_Nis_May_Haz_Tem_Ağu_Eyl_Eki_Kas_Ara".split("_"),weekdays:"Pazar_Pazartesi_Salı_Çarşamba_Perşembe_Cuma_Cumartesi".split("_"),weekdaysShort:"Paz_Pts_Sal_Çar_Per_Cum_Cts".split("_"),weekdaysMin:"Pz_Pt_Sa_Ça_Pe_Cu_Ct".split("_"),meridiem:function(t,e,n){return t<12?n?"öö":"ÖÖ":n?"ös":"ÖS"},meridiemParse:/öö|ÖÖ|ös|ÖS/,isPM:function(t){return"ös"===t||"ÖS"===t},longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD.MM.YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd, D MMMM YYYY HH:mm"},calendar:{sameDay:"[bugün saat] LT",nextDay:"[yarın saat] LT",nextWeek:"[gelecek] dddd [saat] LT",lastDay:"[dün] LT",lastWeek:"[geçen] dddd [saat] LT",sameElse:"L"},relativeTime:{future:"%s sonra",past:"%s önce",s:"birkaç saniye",ss:"%d saniye",m:"bir dakika",mm:"%d dakika",h:"bir saat",hh:"%d saat",d:"bir gün",dd:"%d gün",w:"bir hafta",ww:"%d hafta",M:"bir ay",MM:"%d ay",y:"bir yıl",yy:"%d yıl"},ordinal:function(t,n){switch(n){case"d":case"D":case"Do":case"DD":return t;default:if(0===t)return t+"'ıncı";var i=t%10,r=t%100-i,a=t>=100?100:null;return t+(e[i]||e[r]||e[a])}},week:{dow:1,doy:7}});return n}))},"0f14":function(t,e,n){(function(t,e){e(n("c1df"))})(0,(function(t){"use strict";
+//! moment.js locale configuration
+var e=t.defineLocale("da",{months:"januar_februar_marts_april_maj_juni_juli_august_september_oktober_november_december".split("_"),monthsShort:"jan_feb_mar_apr_maj_jun_jul_aug_sep_okt_nov_dec".split("_"),weekdays:"søndag_mandag_tirsdag_onsdag_torsdag_fredag_lørdag".split("_"),weekdaysShort:"søn_man_tir_ons_tor_fre_lør".split("_"),weekdaysMin:"sø_ma_ti_on_to_fr_lø".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD.MM.YYYY",LL:"D. MMMM YYYY",LLL:"D. MMMM YYYY HH:mm",LLLL:"dddd [d.] D. MMMM YYYY [kl.] HH:mm"},calendar:{sameDay:"[i dag kl.] LT",nextDay:"[i morgen kl.] LT",nextWeek:"på dddd [kl.] LT",lastDay:"[i går kl.] LT",lastWeek:"[i] dddd[s kl.] LT",sameElse:"L"},relativeTime:{future:"om %s",past:"%s siden",s:"få sekunder",ss:"%d sekunder",m:"et minut",mm:"%d minutter",h:"en time",hh:"%d timer",d:"en dag",dd:"%d dage",M:"en måned",MM:"%d måneder",y:"et år",yy:"%d år"},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}});return e}))},"0f24":function(t,e,n){"use strict";n.d(e,"a",(function(){return l})),n.d(e,"b",(function(){return u}));var i=n("ab5a"),r=n("5556"),a=n("e030"),o=n("47e3"),s=n("f112");function u(t,e,n,i,r){if(e===i)return new a["a"](e,[r,n]);var l=Object(s["e"])(t,e),d=Object(s["e"])(t,i);return new o["a"](Object(s["j"])(l)|Object(s["j"])(d),l===d?[u(t+s["c"],e,n,i,r)]:l0&&e-1 in t)}k.fn=k.prototype={jquery:x,constructor:k,length:0,toArray:function(){return u.call(this)},get:function(t){return null==t?u.call(this):t<0?this[t+this.length]:this[t]},pushStack:function(t){var e=k.merge(this.constructor(),t);return e.prevObject=this,e},each:function(t){return k.each(this,t)},map:function(t){return this.pushStack(k.map(this,(function(e,n){return t.call(e,n,e)})))},slice:function(){return this.pushStack(u.apply(this,arguments))},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},even:function(){return this.pushStack(k.grep(this,(function(t,e){return(e+1)%2})))},odd:function(){return this.pushStack(k.grep(this,(function(t,e){return e%2})))},eq:function(t){var e=this.length,n=+t+(t<0?e:0);return this.pushStack(n>=0&&n+~]|"+I+")"+I+"*"),V=new RegExp(I+"|>"),Z=new RegExp(R),$=new RegExp("^"+z+"$"),q={ID:new RegExp("^#("+z+")"),CLASS:new RegExp("^\\.("+z+")"),TAG:new RegExp("^("+z+"|[*])"),ATTR:new RegExp("^"+N),PSEUDO:new RegExp("^"+R),CHILD:new RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\("+I+"*(even|odd|(([+-]|)(\\d*)n|)"+I+"*(?:([+-]|)"+I+"*(\\d+)|))"+I+"*\\)|)","i"),bool:new RegExp("^(?:"+H+")$","i"),needsContext:new RegExp("^"+I+"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\("+I+"*((?:-\\d)?\\d*)"+I+"*\\)|)(?=[^-]|$)","i")},J=/HTML$/i,G=/^(?:input|select|textarea|button)$/i,K=/^h\d$/i,X=/^[^{]+\{\s*\[native \w/,Q=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,tt=/[+~]/,et=new RegExp("\\\\[\\da-fA-F]{1,6}"+I+"?|\\\\([^\\r\\n\\f])","g"),nt=function(t,e){var n="0x"+t.slice(1)-65536;return e||(n<0?String.fromCharCode(n+65536):String.fromCharCode(n>>10|55296,1023&n|56320))},it=/([\0-\x1f\x7f]|^-?\d)|^-$|[^\0-\x1f\x7f-\uFFFF\w-]/g,rt=function(t,e){return e?"\0"===t?"�":t.slice(0,-1)+"\\"+t.charCodeAt(t.length-1).toString(16)+" ":"\\"+t},at=function(){h()},ot=Mt((function(t){return!0===t.disabled&&"fieldset"===t.nodeName.toLowerCase()}),{dir:"parentNode",next:"legend"});try{j.apply(P=E.call(b.childNodes),b.childNodes),P[b.childNodes.length].nodeType}catch(Tt){j={apply:P.length?function(t,e){O.apply(t,E.call(e))}:function(t,e){var n=t.length,i=0;while(t[n++]=e[i++]);t.length=n-1}}}function st(t,e,i,r){var a,s,l,d,c,_,g,y=e&&e.ownerDocument,b=e?e.nodeType:9;if(i=i||[],"string"!==typeof t||!t||1!==b&&9!==b&&11!==b)return i;if(!r&&(h(e),e=e||f,m)){if(11!==b&&(c=Q.exec(t)))if(a=c[1]){if(9===b){if(!(l=e.getElementById(a)))return i;if(l.id===a)return i.push(l),i}else if(y&&(l=y.getElementById(a))&&v(e,l)&&l.id===a)return i.push(l),i}else{if(c[2])return j.apply(i,e.getElementsByTagName(t)),i;if((a=c[3])&&n.getElementsByClassName&&e.getElementsByClassName)return j.apply(i,e.getElementsByClassName(a)),i}if(n.qsa&&!T[t+" "]&&(!p||!p.test(t))&&(1!==b||"object"!==e.nodeName.toLowerCase())){if(g=t,y=e,1===b&&(V.test(t)||U.test(t))){y=tt.test(t)&>(e.parentNode)||e,y===e&&n.scope||((d=e.getAttribute("id"))?d=d.replace(it,rt):e.setAttribute("id",d=M)),_=o(t),s=_.length;while(s--)_[s]=(d?"#"+d:":scope")+" "+vt(_[s]);g=_.join(",")}try{return j.apply(i,y.querySelectorAll(g)),i}catch(L){T(t,!0)}finally{d===M&&e.removeAttribute("id")}}}return u(t.replace(W,"$1"),e,i,r)}function ut(){var t=[];function e(n,r){return t.push(n+" ")>i.cacheLength&&delete e[t.shift()],e[n+" "]=r}return e}function lt(t){return t[M]=!0,t}function dt(t){var e=f.createElement("fieldset");try{return!!t(e)}catch(Tt){return!1}finally{e.parentNode&&e.parentNode.removeChild(e),e=null}}function ct(t,e){var n=t.split("|"),r=n.length;while(r--)i.attrHandle[n[r]]=e}function ht(t,e){var n=e&&t,i=n&&1===t.nodeType&&1===e.nodeType&&t.sourceIndex-e.sourceIndex;if(i)return i;if(n)while(n=n.nextSibling)if(n===e)return-1;return t?1:-1}function ft(t){return function(e){var n=e.nodeName.toLowerCase();return"input"===n&&e.type===t}}function _t(t){return function(e){var n=e.nodeName.toLowerCase();return("input"===n||"button"===n)&&e.type===t}}function mt(t){return function(e){return"form"in e?e.parentNode&&!1===e.disabled?"label"in e?"label"in e.parentNode?e.parentNode.disabled===t:e.disabled===t:e.isDisabled===t||e.isDisabled!==!t&&ot(e)===t:e.disabled===t:"label"in e&&e.disabled===t}}function pt(t){return lt((function(e){return e=+e,lt((function(n,i){var r,a=t([],n.length,e),o=a.length;while(o--)n[r=a[o]]&&(n[r]=!(i[r]=n[r]))}))}))}function gt(t){return t&&"undefined"!==typeof t.getElementsByTagName&&t}for(e in n=st.support={},a=st.isXML=function(t){var e=t&&t.namespaceURI,n=t&&(t.ownerDocument||t).documentElement;return!J.test(e||n&&n.nodeName||"HTML")},h=st.setDocument=function(t){var e,r,o=t?t.ownerDocument||t:b;return o!=f&&9===o.nodeType&&o.documentElement?(f=o,_=f.documentElement,m=!a(f),b!=f&&(r=f.defaultView)&&r.top!==r&&(r.addEventListener?r.addEventListener("unload",at,!1):r.attachEvent&&r.attachEvent("onunload",at)),n.scope=dt((function(t){return _.appendChild(t).appendChild(f.createElement("div")),"undefined"!==typeof t.querySelectorAll&&!t.querySelectorAll(":scope fieldset div").length})),n.attributes=dt((function(t){return t.className="i",!t.getAttribute("className")})),n.getElementsByTagName=dt((function(t){return t.appendChild(f.createComment("")),!t.getElementsByTagName("*").length})),n.getElementsByClassName=X.test(f.getElementsByClassName),n.getById=dt((function(t){return _.appendChild(t).id=M,!f.getElementsByName||!f.getElementsByName(M).length})),n.getById?(i.filter["ID"]=function(t){var e=t.replace(et,nt);return function(t){return t.getAttribute("id")===e}},i.find["ID"]=function(t,e){if("undefined"!==typeof e.getElementById&&m){var n=e.getElementById(t);return n?[n]:[]}}):(i.filter["ID"]=function(t){var e=t.replace(et,nt);return function(t){var n="undefined"!==typeof t.getAttributeNode&&t.getAttributeNode("id");return n&&n.value===e}},i.find["ID"]=function(t,e){if("undefined"!==typeof e.getElementById&&m){var n,i,r,a=e.getElementById(t);if(a){if(n=a.getAttributeNode("id"),n&&n.value===t)return[a];r=e.getElementsByName(t),i=0;while(a=r[i++])if(n=a.getAttributeNode("id"),n&&n.value===t)return[a]}return[]}}),i.find["TAG"]=n.getElementsByTagName?function(t,e){return"undefined"!==typeof e.getElementsByTagName?e.getElementsByTagName(t):n.qsa?e.querySelectorAll(t):void 0}:function(t,e){var n,i=[],r=0,a=e.getElementsByTagName(t);if("*"===t){while(n=a[r++])1===n.nodeType&&i.push(n);return i}return a},i.find["CLASS"]=n.getElementsByClassName&&function(t,e){if("undefined"!==typeof e.getElementsByClassName&&m)return e.getElementsByClassName(t)},g=[],p=[],(n.qsa=X.test(f.querySelectorAll))&&(dt((function(t){var e;_.appendChild(t).innerHTML="",t.querySelectorAll("[msallowcapture^='']").length&&p.push("[*^$]="+I+"*(?:''|\"\")"),t.querySelectorAll("[selected]").length||p.push("\\["+I+"*(?:value|"+H+")"),t.querySelectorAll("[id~="+M+"-]").length||p.push("~="),e=f.createElement("input"),e.setAttribute("name",""),t.appendChild(e),t.querySelectorAll("[name='']").length||p.push("\\["+I+"*name"+I+"*="+I+"*(?:''|\"\")"),t.querySelectorAll(":checked").length||p.push(":checked"),t.querySelectorAll("a#"+M+"+*").length||p.push(".#.+[+~]"),t.querySelectorAll("\\\f"),p.push("[\\r\\n\\f]")})),dt((function(t){t.innerHTML="";var e=f.createElement("input");e.setAttribute("type","hidden"),t.appendChild(e).setAttribute("name","D"),t.querySelectorAll("[name=d]").length&&p.push("name"+I+"*[*^$|!~]?="),2!==t.querySelectorAll(":enabled").length&&p.push(":enabled",":disabled"),_.appendChild(t).disabled=!0,2!==t.querySelectorAll(":disabled").length&&p.push(":enabled",":disabled"),t.querySelectorAll("*,:x"),p.push(",.*:")}))),(n.matchesSelector=X.test(y=_.matches||_.webkitMatchesSelector||_.mozMatchesSelector||_.oMatchesSelector||_.msMatchesSelector))&&dt((function(t){n.disconnectedMatch=y.call(t,"*"),y.call(t,"[s!='']:x"),g.push("!=",R)})),p=p.length&&new RegExp(p.join("|")),g=g.length&&new RegExp(g.join("|")),e=X.test(_.compareDocumentPosition),v=e||X.test(_.contains)?function(t,e){var n=9===t.nodeType?t.documentElement:t,i=e&&e.parentNode;return t===i||!(!i||1!==i.nodeType||!(n.contains?n.contains(i):t.compareDocumentPosition&&16&t.compareDocumentPosition(i)))}:function(t,e){if(e)while(e=e.parentNode)if(e===t)return!0;return!1},D=e?function(t,e){if(t===e)return c=!0,0;var i=!t.compareDocumentPosition-!e.compareDocumentPosition;return i||(i=(t.ownerDocument||t)==(e.ownerDocument||e)?t.compareDocumentPosition(e):1,1&i||!n.sortDetached&&e.compareDocumentPosition(t)===i?t==f||t.ownerDocument==b&&v(b,t)?-1:e==f||e.ownerDocument==b&&v(b,e)?1:d?C(d,t)-C(d,e):0:4&i?-1:1)}:function(t,e){if(t===e)return c=!0,0;var n,i=0,r=t.parentNode,a=e.parentNode,o=[t],s=[e];if(!r||!a)return t==f?-1:e==f?1:r?-1:a?1:d?C(d,t)-C(d,e):0;if(r===a)return ht(t,e);n=t;while(n=n.parentNode)o.unshift(n);n=e;while(n=n.parentNode)s.unshift(n);while(o[i]===s[i])i++;return i?ht(o[i],s[i]):o[i]==b?-1:s[i]==b?1:0},f):f},st.matches=function(t,e){return st(t,null,null,e)},st.matchesSelector=function(t,e){if(h(t),n.matchesSelector&&m&&!T[e+" "]&&(!g||!g.test(e))&&(!p||!p.test(e)))try{var i=y.call(t,e);if(i||n.disconnectedMatch||t.document&&11!==t.document.nodeType)return i}catch(Tt){T(e,!0)}return st(e,f,null,[t]).length>0},st.contains=function(t,e){return(t.ownerDocument||t)!=f&&h(t),v(t,e)},st.attr=function(t,e){(t.ownerDocument||t)!=f&&h(t);var r=i.attrHandle[e.toLowerCase()],a=r&&S.call(i.attrHandle,e.toLowerCase())?r(t,e,!m):void 0;return void 0!==a?a:n.attributes||!m?t.getAttribute(e):(a=t.getAttributeNode(e))&&a.specified?a.value:null},st.escape=function(t){return(t+"").replace(it,rt)},st.error=function(t){throw new Error("Syntax error, unrecognized expression: "+t)},st.uniqueSort=function(t){var e,i=[],r=0,a=0;if(c=!n.detectDuplicates,d=!n.sortStable&&t.slice(0),t.sort(D),c){while(e=t[a++])e===t[a]&&(r=i.push(a));while(r--)t.splice(i[r],1)}return d=null,t},r=st.getText=function(t){var e,n="",i=0,a=t.nodeType;if(a){if(1===a||9===a||11===a){if("string"===typeof t.textContent)return t.textContent;for(t=t.firstChild;t;t=t.nextSibling)n+=r(t)}else if(3===a||4===a)return t.nodeValue}else while(e=t[i++])n+=r(e);return n},i=st.selectors={cacheLength:50,createPseudo:lt,match:q,attrHandle:{},find:{},relative:{">":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(t){return t[1]=t[1].replace(et,nt),t[3]=(t[3]||t[4]||t[5]||"").replace(et,nt),"~="===t[2]&&(t[3]=" "+t[3]+" "),t.slice(0,4)},CHILD:function(t){return t[1]=t[1].toLowerCase(),"nth"===t[1].slice(0,3)?(t[3]||st.error(t[0]),t[4]=+(t[4]?t[5]+(t[6]||1):2*("even"===t[3]||"odd"===t[3])),t[5]=+(t[7]+t[8]||"odd"===t[3])):t[3]&&st.error(t[0]),t},PSEUDO:function(t){var e,n=!t[6]&&t[2];return q["CHILD"].test(t[0])?null:(t[3]?t[2]=t[4]||t[5]||"":n&&Z.test(n)&&(e=o(n,!0))&&(e=n.indexOf(")",n.length-e)-n.length)&&(t[0]=t[0].slice(0,e),t[2]=n.slice(0,e)),t.slice(0,3))}},filter:{TAG:function(t){var e=t.replace(et,nt).toLowerCase();return"*"===t?function(){return!0}:function(t){return t.nodeName&&t.nodeName.toLowerCase()===e}},CLASS:function(t){var e=x[t+" "];return e||(e=new RegExp("(^|"+I+")"+t+"("+I+"|$)"))&&x(t,(function(t){return e.test("string"===typeof t.className&&t.className||"undefined"!==typeof t.getAttribute&&t.getAttribute("class")||"")}))},ATTR:function(t,e,n){return function(i){var r=st.attr(i,t);return null==r?"!="===e:!e||(r+="","="===e?r===n:"!="===e?r!==n:"^="===e?n&&0===r.indexOf(n):"*="===e?n&&r.indexOf(n)>-1:"$="===e?n&&r.slice(-n.length)===n:"~="===e?(" "+r.replace(F," ")+" ").indexOf(n)>-1:"|="===e&&(r===n||r.slice(0,n.length+1)===n+"-"))}},CHILD:function(t,e,n,i,r){var a="nth"!==t.slice(0,3),o="last"!==t.slice(-4),s="of-type"===e;return 1===i&&0===r?function(t){return!!t.parentNode}:function(e,n,u){var l,d,c,h,f,_,m=a!==o?"nextSibling":"previousSibling",p=e.parentNode,g=s&&e.nodeName.toLowerCase(),y=!u&&!s,v=!1;if(p){if(a){while(m){h=e;while(h=h[m])if(s?h.nodeName.toLowerCase()===g:1===h.nodeType)return!1;_=m="only"===t&&!_&&"nextSibling"}return!0}if(_=[o?p.firstChild:p.lastChild],o&&y){h=p,c=h[M]||(h[M]={}),d=c[h.uniqueID]||(c[h.uniqueID]={}),l=d[t]||[],f=l[0]===L&&l[1],v=f&&l[2],h=f&&p.childNodes[f];while(h=++f&&h&&h[m]||(v=f=0)||_.pop())if(1===h.nodeType&&++v&&h===e){d[t]=[L,f,v];break}}else if(y&&(h=e,c=h[M]||(h[M]={}),d=c[h.uniqueID]||(c[h.uniqueID]={}),l=d[t]||[],f=l[0]===L&&l[1],v=f),!1===v)while(h=++f&&h&&h[m]||(v=f=0)||_.pop())if((s?h.nodeName.toLowerCase()===g:1===h.nodeType)&&++v&&(y&&(c=h[M]||(h[M]={}),d=c[h.uniqueID]||(c[h.uniqueID]={}),d[t]=[L,v]),h===e))break;return v-=r,v===i||v%i===0&&v/i>=0}}},PSEUDO:function(t,e){var n,r=i.pseudos[t]||i.setFilters[t.toLowerCase()]||st.error("unsupported pseudo: "+t);return r[M]?r(e):r.length>1?(n=[t,t,"",e],i.setFilters.hasOwnProperty(t.toLowerCase())?lt((function(t,n){var i,a=r(t,e),o=a.length;while(o--)i=C(t,a[o]),t[i]=!(n[i]=a[o])})):function(t){return r(t,0,n)}):r}},pseudos:{not:lt((function(t){var e=[],n=[],i=s(t.replace(W,"$1"));return i[M]?lt((function(t,e,n,r){var a,o=i(t,null,r,[]),s=t.length;while(s--)(a=o[s])&&(t[s]=!(e[s]=a))})):function(t,r,a){return e[0]=t,i(e,null,a,n),e[0]=null,!n.pop()}})),has:lt((function(t){return function(e){return st(t,e).length>0}})),contains:lt((function(t){return t=t.replace(et,nt),function(e){return(e.textContent||r(e)).indexOf(t)>-1}})),lang:lt((function(t){return $.test(t||"")||st.error("unsupported lang: "+t),t=t.replace(et,nt).toLowerCase(),function(e){var n;do{if(n=m?e.lang:e.getAttribute("xml:lang")||e.getAttribute("lang"))return n=n.toLowerCase(),n===t||0===n.indexOf(t+"-")}while((e=e.parentNode)&&1===e.nodeType);return!1}})),target:function(e){var n=t.location&&t.location.hash;return n&&n.slice(1)===e.id},root:function(t){return t===_},focus:function(t){return t===f.activeElement&&(!f.hasFocus||f.hasFocus())&&!!(t.type||t.href||~t.tabIndex)},enabled:mt(!1),disabled:mt(!0),checked:function(t){var e=t.nodeName.toLowerCase();return"input"===e&&!!t.checked||"option"===e&&!!t.selected},selected:function(t){return t.parentNode&&t.parentNode.selectedIndex,!0===t.selected},empty:function(t){for(t=t.firstChild;t;t=t.nextSibling)if(t.nodeType<6)return!1;return!0},parent:function(t){return!i.pseudos["empty"](t)},header:function(t){return K.test(t.nodeName)},input:function(t){return G.test(t.nodeName)},button:function(t){var e=t.nodeName.toLowerCase();return"input"===e&&"button"===t.type||"button"===e},text:function(t){var e;return"input"===t.nodeName.toLowerCase()&&"text"===t.type&&(null==(e=t.getAttribute("type"))||"text"===e.toLowerCase())},first:pt((function(){return[0]})),last:pt((function(t,e){return[e-1]})),eq:pt((function(t,e,n){return[n<0?n+e:n]})),even:pt((function(t,e){for(var n=0;ne?e:n;--i>=0;)t.push(i);return t})),gt:pt((function(t,e,n){for(var i=n<0?n+e:n;++i1?function(e,n,i){var r=t.length;while(r--)if(!t[r](e,n,i))return!1;return!0}:t[0]}function Lt(t,e,n){for(var i=0,r=e.length;i-1&&(a[l]=!(o[l]=c))}}else g=wt(g===o?g.splice(_,g.length):g),r?r(null,o,g,u):j.apply(o,g)}))}function kt(t){for(var e,n,r,a=t.length,o=i.relative[t[0].type],s=o||i.relative[" "],u=o?1:0,d=Mt((function(t){return t===e}),s,!0),c=Mt((function(t){return C(e,t)>-1}),s,!0),h=[function(t,n,i){var r=!o&&(i||n!==l)||((e=n).nodeType?d(t,n,i):c(t,n,i));return e=null,r}];u1&&bt(h),u>1&&vt(t.slice(0,u-1).concat({value:" "===t[u-2].type?"*":""})).replace(W,"$1"),n,u0,r=t.length>0,a=function(a,o,s,u,d){var c,_,p,g=0,y="0",v=a&&[],M=[],b=l,w=a||r&&i.find["TAG"]("*",d),x=L+=null==b?1:Math.random()||.1,k=w.length;for(d&&(l=o==f||o||d);y!==k&&null!=(c=w[y]);y++){if(r&&c){_=0,o||c.ownerDocument==f||(h(c),s=!m);while(p=t[_++])if(p(c,o||f,s)){u.push(c);break}d&&(L=x)}n&&((c=!p&&c)&&g--,a&&v.push(c))}if(g+=y,n&&y!==g){_=0;while(p=e[_++])p(v,M,o,s);if(a){if(g>0)while(y--)v[y]||M[y]||(M[y]=A.call(u));M=wt(M)}j.apply(u,M),d&&!a&&M.length>0&&g+e.length>1&&st.uniqueSort(u)}return d&&(L=x,l=b),v};return n?lt(a):a}return yt.prototype=i.filters=i.pseudos,i.setFilters=new yt,o=st.tokenize=function(t,e){var n,r,a,o,s,u,l,d=k[t+" "];if(d)return e?0:d.slice(0);s=t,u=[],l=i.preFilter;while(s){for(o in n&&!(r=B.exec(s))||(r&&(s=s.slice(r[0].length)||s),u.push(a=[])),n=!1,(r=U.exec(s))&&(n=r.shift(),a.push({value:n,type:r[0].replace(W," ")}),s=s.slice(n.length)),i.filter)!(r=q[o].exec(s))||l[o]&&!(r=l[o](r))||(n=r.shift(),a.push({value:n,type:o,matches:r}),s=s.slice(n.length));if(!n)break}return e?s.length:s?st.error(t):k(t,u).slice(0)},s=st.compile=function(t,e){var n,i=[],r=[],a=Y[t+" "];if(!a){e||(e=o(t)),n=e.length;while(n--)a=kt(e[n]),a[M]?i.push(a):r.push(a);a=Y(t,Yt(r,i)),a.selector=t}return a},u=st.select=function(t,e,n,r){var a,u,l,d,c,h="function"===typeof t&&t,f=!r&&o(t=h.selector||t);if(n=n||[],1===f.length){if(u=f[0]=f[0].slice(0),u.length>2&&"ID"===(l=u[0]).type&&9===e.nodeType&&m&&i.relative[u[1].type]){if(e=(i.find["ID"](l.matches[0].replace(et,nt),e)||[])[0],!e)return n;h&&(e=e.parentNode),t=t.slice(u.shift().value.length)}a=q["needsContext"].test(t)?0:u.length;while(a--){if(l=u[a],i.relative[d=l.type])break;if((c=i.find[d])&&(r=c(l.matches[0].replace(et,nt),tt.test(u[0].type)&>(e.parentNode)||e))){if(u.splice(a,1),t=r.length&&vt(u),!t)return j.apply(n,r),n;break}}}return(h||s(t,f))(r,e,!m,n,!e||tt.test(t)&>(e.parentNode)||e),n},n.sortStable=M.split("").sort(D).join("")===M,n.detectDuplicates=!!c,h(),n.sortDetached=dt((function(t){return 1&t.compareDocumentPosition(f.createElement("fieldset"))})),dt((function(t){return t.innerHTML="","#"===t.firstChild.getAttribute("href")}))||ct("type|href|height|width",(function(t,e,n){if(!n)return t.getAttribute(e,"type"===e.toLowerCase()?1:2)})),n.attributes&&dt((function(t){return t.innerHTML="",t.firstChild.setAttribute("value",""),""===t.firstChild.getAttribute("value")}))||ct("value",(function(t,e,n){if(!n&&"input"===t.nodeName.toLowerCase())return t.defaultValue})),dt((function(t){return null==t.getAttribute("disabled")}))||ct(H,(function(t,e,n){var i;if(!n)return!0===t[e]?e.toLowerCase():(i=t.getAttributeNode(e))&&i.specified?i.value:null})),st}(n);k.find=T,k.expr=T.selectors,k.expr[":"]=k.expr.pseudos,k.uniqueSort=k.unique=T.uniqueSort,k.text=T.getText,k.isXMLDoc=T.isXML,k.contains=T.contains,k.escapeSelector=T.escape;var D=function(t,e,n){var i=[],r=void 0!==n;while((t=t[e])&&9!==t.nodeType)if(1===t.nodeType){if(r&&k(t).is(n))break;i.push(t)}return i},S=function(t,e){for(var n=[];t;t=t.nextSibling)1===t.nodeType&&t!==e&&n.push(t);return n},P=k.expr.match.needsContext;function A(t,e){return t.nodeName&&t.nodeName.toLowerCase()===e.toLowerCase()}var O=/^<([a-z][^\/\0>:\x20\t\r\n\f]*)[\x20\t\r\n\f]*\/?>(?:<\/\1>|)$/i;function j(t,e,n){return y(e)?k.grep(t,(function(t,i){return!!e.call(t,i,t)!==n})):e.nodeType?k.grep(t,(function(t){return t===e!==n})):"string"!==typeof e?k.grep(t,(function(t){return c.call(e,t)>-1!==n})):k.filter(e,t,n)}k.filter=function(t,e,n){var i=e[0];return n&&(t=":not("+t+")"),1===e.length&&1===i.nodeType?k.find.matchesSelector(i,t)?[i]:[]:k.find.matches(t,k.grep(e,(function(t){return 1===t.nodeType})))},k.fn.extend({find:function(t){var e,n,i=this.length,r=this;if("string"!==typeof t)return this.pushStack(k(t).filter((function(){for(e=0;e1?k.uniqueSort(n):n},filter:function(t){return this.pushStack(j(this,t||[],!1))},not:function(t){return this.pushStack(j(this,t||[],!0))},is:function(t){return!!j(this,"string"===typeof t&&P.test(t)?k(t):t||[],!1).length}});var E,C=/^(?:\s*(<[\w\W]+>)[^>]*|#([\w-]+))$/,H=k.fn.init=function(t,e,n){var i,r;if(!t)return this;if(n=n||E,"string"===typeof t){if(i="<"===t[0]&&">"===t[t.length-1]&&t.length>=3?[null,t,null]:C.exec(t),!i||!i[1]&&e)return!e||e.jquery?(e||n).find(t):this.constructor(e).find(t);if(i[1]){if(e=e instanceof k?e[0]:e,k.merge(this,k.parseHTML(i[1],e&&e.nodeType?e.ownerDocument||e:M,!0)),O.test(i[1])&&k.isPlainObject(e))for(i in e)y(this[i])?this[i](e[i]):this.attr(i,e[i]);return this}return r=M.getElementById(i[2]),r&&(this[0]=r,this.length=1),this}return t.nodeType?(this[0]=t,this.length=1,this):y(t)?void 0!==n.ready?n.ready(t):t(k):k.makeArray(t,this)};H.prototype=k.fn,E=k(M);var I=/^(?:parents|prev(?:Until|All))/,z={children:!0,contents:!0,next:!0,prev:!0};function N(t,e){while((t=t[e])&&1!==t.nodeType);return t}k.fn.extend({has:function(t){var e=k(t,this),n=e.length;return this.filter((function(){for(var t=0;t-1:1===n.nodeType&&k.find.matchesSelector(n,t))){a.push(n);break}return this.pushStack(a.length>1?k.uniqueSort(a):a)},index:function(t){return t?"string"===typeof t?c.call(k(t),this[0]):c.call(this,t.jquery?t[0]:t):this[0]&&this[0].parentNode?this.first().prevAll().length:-1},add:function(t,e){return this.pushStack(k.uniqueSort(k.merge(this.get(),k(t,e))))},addBack:function(t){return this.add(null==t?this.prevObject:this.prevObject.filter(t))}}),k.each({parent:function(t){var e=t.parentNode;return e&&11!==e.nodeType?e:null},parents:function(t){return D(t,"parentNode")},parentsUntil:function(t,e,n){return D(t,"parentNode",n)},next:function(t){return N(t,"nextSibling")},prev:function(t){return N(t,"previousSibling")},nextAll:function(t){return D(t,"nextSibling")},prevAll:function(t){return D(t,"previousSibling")},nextUntil:function(t,e,n){return D(t,"nextSibling",n)},prevUntil:function(t,e,n){return D(t,"previousSibling",n)},siblings:function(t){return S((t.parentNode||{}).firstChild,t)},children:function(t){return S(t.firstChild)},contents:function(t){return null!=t.contentDocument&&s(t.contentDocument)?t.contentDocument:(A(t,"template")&&(t=t.content||t),k.merge([],t.childNodes))}},(function(t,e){k.fn[t]=function(n,i){var r=k.map(this,e,n);return"Until"!==t.slice(-5)&&(i=n),i&&"string"===typeof i&&(r=k.filter(i,r)),this.length>1&&(z[t]||k.uniqueSort(r),I.test(t)&&r.reverse()),this.pushStack(r)}}));var R=/[^\x20\t\r\n\f]+/g;function F(t){var e={};return k.each(t.match(R)||[],(function(t,n){e[n]=!0})),e}function W(t){return t}function B(t){throw t}function U(t,e,n,i){var r;try{t&&y(r=t.promise)?r.call(t).done(e).fail(n):t&&y(r=t.then)?r.call(t,e,n):e.apply(void 0,[t].slice(i))}catch(t){n.apply(void 0,[t])}}k.Callbacks=function(t){t="string"===typeof t?F(t):k.extend({},t);var e,n,i,r,a=[],o=[],s=-1,u=function(){for(r=r||t.once,i=e=!0;o.length;s=-1){n=o.shift();while(++s-1)a.splice(n,1),n<=s&&s--})),this},has:function(t){return t?k.inArray(t,a)>-1:a.length>0},empty:function(){return a&&(a=[]),this},disable:function(){return r=o=[],a=n="",this},disabled:function(){return!a},lock:function(){return r=o=[],n||e||(a=n=""),this},locked:function(){return!!r},fireWith:function(t,n){return r||(n=n||[],n=[t,n.slice?n.slice():n],o.push(n),e||u()),this},fire:function(){return l.fireWith(this,arguments),this},fired:function(){return!!i}};return l},k.extend({Deferred:function(t){var e=[["notify","progress",k.Callbacks("memory"),k.Callbacks("memory"),2],["resolve","done",k.Callbacks("once memory"),k.Callbacks("once memory"),0,"resolved"],["reject","fail",k.Callbacks("once memory"),k.Callbacks("once memory"),1,"rejected"]],i="pending",r={state:function(){return i},always:function(){return a.done(arguments).fail(arguments),this},catch:function(t){return r.then(null,t)},pipe:function(){var t=arguments;return k.Deferred((function(n){k.each(e,(function(e,i){var r=y(t[i[4]])&&t[i[4]];a[i[1]]((function(){var t=r&&r.apply(this,arguments);t&&y(t.promise)?t.promise().progress(n.notify).done(n.resolve).fail(n.reject):n[i[0]+"With"](this,r?[t]:arguments)}))})),t=null})).promise()},then:function(t,i,r){var a=0;function o(t,e,i,r){return function(){var s=this,u=arguments,l=function(){var n,l;if(!(t=a&&(i!==B&&(s=void 0,u=[n]),e.rejectWith(s,u))}};t?d():(k.Deferred.getStackHook&&(d.stackTrace=k.Deferred.getStackHook()),n.setTimeout(d))}}return k.Deferred((function(n){e[0][3].add(o(0,n,y(r)?r:W,n.notifyWith)),e[1][3].add(o(0,n,y(t)?t:W)),e[2][3].add(o(0,n,y(i)?i:B))})).promise()},promise:function(t){return null!=t?k.extend(t,r):r}},a={};return k.each(e,(function(t,n){var o=n[2],s=n[5];r[n[1]]=o.add,s&&o.add((function(){i=s}),e[3-t][2].disable,e[3-t][3].disable,e[0][2].lock,e[0][3].lock),o.add(n[3].fire),a[n[0]]=function(){return a[n[0]+"With"](this===a?void 0:this,arguments),this},a[n[0]+"With"]=o.fireWith})),r.promise(a),t&&t.call(a,a),a},when:function(t){var e=arguments.length,n=e,i=Array(n),r=u.call(arguments),a=k.Deferred(),o=function(t){return function(n){i[t]=this,r[t]=arguments.length>1?u.call(arguments):n,--e||a.resolveWith(i,r)}};if(e<=1&&(U(t,a.done(o(n)).resolve,a.reject,!e),"pending"===a.state()||y(r[n]&&r[n].then)))return a.then();while(n--)U(r[n],o(n),a.reject);return a.promise()}});var V=/^(Eval|Internal|Range|Reference|Syntax|Type|URI)Error$/;k.Deferred.exceptionHook=function(t,e){n.console&&n.console.warn&&t&&V.test(t.name)&&n.console.warn("jQuery.Deferred exception: "+t.message,t.stack,e)},k.readyException=function(t){n.setTimeout((function(){throw t}))};var Z=k.Deferred();function $(){M.removeEventListener("DOMContentLoaded",$),n.removeEventListener("load",$),k.ready()}k.fn.ready=function(t){return Z.then(t).catch((function(t){k.readyException(t)})),this},k.extend({isReady:!1,readyWait:1,ready:function(t){(!0===t?--k.readyWait:k.isReady)||(k.isReady=!0,!0!==t&&--k.readyWait>0||Z.resolveWith(M,[k]))}}),k.ready.then=Z.then,"complete"===M.readyState||"loading"!==M.readyState&&!M.documentElement.doScroll?n.setTimeout(k.ready):(M.addEventListener("DOMContentLoaded",$),n.addEventListener("load",$));var q=function(t,e,n,i,r,a,o){var s=0,u=t.length,l=null==n;if("object"===w(n))for(s in r=!0,n)q(t,e,s,n[s],!0,a,o);else if(void 0!==i&&(r=!0,y(i)||(o=!0),l&&(o?(e.call(t,i),e=null):(l=e,e=function(t,e,n){return l.call(k(t),n)})),e))for(;s1,null,!0)},removeData:function(t){return this.each((function(){nt.remove(this,t)}))}}),k.extend({queue:function(t,e,n){var i;if(t)return e=(e||"fx")+"queue",i=et.get(t,e),n&&(!i||Array.isArray(n)?i=et.access(t,e,k.makeArray(n)):i.push(n)),i||[]},dequeue:function(t,e){e=e||"fx";var n=k.queue(t,e),i=n.length,r=n.shift(),a=k._queueHooks(t,e),o=function(){k.dequeue(t,e)};"inprogress"===r&&(r=n.shift(),i--),r&&("fx"===e&&n.unshift("inprogress"),delete a.stop,r.call(t,o,a)),!i&&a&&a.empty.fire()},_queueHooks:function(t,e){var n=e+"queueHooks";return et.get(t,n)||et.access(t,n,{empty:k.Callbacks("once memory").add((function(){et.remove(t,[e+"queue",n])}))})}}),k.fn.extend({queue:function(t,e){var n=2;return"string"!==typeof t&&(e=t,t="fx",n--),arguments.length\x20\t\r\n\f]*)/i,Mt=/^$|^module$|\/(?:java|ecma)script/i;(function(){var t=M.createDocumentFragment(),e=t.appendChild(M.createElement("div")),n=M.createElement("input");n.setAttribute("type","radio"),n.setAttribute("checked","checked"),n.setAttribute("name","t"),e.appendChild(n),g.checkClone=e.cloneNode(!0).cloneNode(!0).lastChild.checked,e.innerHTML="",g.noCloneChecked=!!e.cloneNode(!0).lastChild.defaultValue,e.innerHTML="",g.option=!!e.lastChild})();var bt={thead:[1,""],col:[2,""],tr:[2,""],td:[3,""],_default:[0,"",""]};function Lt(t,e){var n;return n="undefined"!==typeof t.getElementsByTagName?t.getElementsByTagName(e||"*"):"undefined"!==typeof t.querySelectorAll?t.querySelectorAll(e||"*"):[],void 0===e||e&&A(t,e)?k.merge([t],n):n}function wt(t,e){for(var n=0,i=t.length;n",""]);var xt=/<|?\w+;/;function kt(t,e,n,i,r){for(var a,o,s,u,l,d,c=e.createDocumentFragment(),h=[],f=0,_=t.length;f<_;f++)if(a=t[f],a||0===a)if("object"===w(a))k.merge(h,a.nodeType?[a]:a);else if(xt.test(a)){o=o||c.appendChild(e.createElement("div")),s=(vt.exec(a)||["",""])[1].toLowerCase(),u=bt[s]||bt._default,o.innerHTML=u[1]+k.htmlPrefilter(a)+u[2],d=u[0];while(d--)o=o.lastChild;k.merge(h,o.childNodes),o=c.firstChild,o.textContent=""}else h.push(e.createTextNode(a));c.textContent="",f=0;while(a=h[f++])if(i&&k.inArray(a,i)>-1)r&&r.push(a);else if(l=ct(a),o=Lt(c.appendChild(a),"script"),l&&wt(o),n){d=0;while(a=o[d++])Mt.test(a.type||"")&&n.push(a)}return c}var Yt=/^([^.]*)(?:\.(.+)|)/;function Tt(){return!0}function Dt(){return!1}function St(t,e){return t===Pt()===("focus"===e)}function Pt(){try{return M.activeElement}catch(t){}}function At(t,e,n,i,r,a){var o,s;if("object"===typeof e){for(s in"string"!==typeof n&&(i=i||n,n=void 0),e)At(t,s,n,i,e[s],a);return t}if(null==i&&null==r?(r=n,i=n=void 0):null==r&&("string"===typeof n?(r=i,i=void 0):(r=i,i=n,n=void 0)),!1===r)r=Dt;else if(!r)return t;return 1===a&&(o=r,r=function(t){return k().off(t),o.apply(this,arguments)},r.guid=o.guid||(o.guid=k.guid++)),t.each((function(){k.event.add(this,e,r,i,n)}))}function Ot(t,e,n){n?(et.set(t,e,!1),k.event.add(t,e,{namespace:!1,handler:function(t){var i,r,a=et.get(this,e);if(1&t.isTrigger&&this[e]){if(a.length)(k.event.special[e]||{}).delegateType&&t.stopPropagation();else if(a=u.call(arguments),et.set(this,e,a),i=n(this,e),this[e](),r=et.get(this,e),a!==r||i?et.set(this,e,!1):r={},a!==r)return t.stopImmediatePropagation(),t.preventDefault(),r&&r.value}else a.length&&(et.set(this,e,{value:k.event.trigger(k.extend(a[0],k.Event.prototype),a.slice(1),this)}),t.stopImmediatePropagation())}})):void 0===et.get(t,e)&&k.event.add(t,e,Tt)}k.event={global:{},add:function(t,e,n,i,r){var a,o,s,u,l,d,c,h,f,_,m,p=et.get(t);if(Q(t)){n.handler&&(a=n,n=a.handler,r=a.selector),r&&k.find.matchesSelector(dt,r),n.guid||(n.guid=k.guid++),(u=p.events)||(u=p.events=Object.create(null)),(o=p.handle)||(o=p.handle=function(e){return"undefined"!==typeof k&&k.event.triggered!==e.type?k.event.dispatch.apply(t,arguments):void 0}),e=(e||"").match(R)||[""],l=e.length;while(l--)s=Yt.exec(e[l])||[],f=m=s[1],_=(s[2]||"").split(".").sort(),f&&(c=k.event.special[f]||{},f=(r?c.delegateType:c.bindType)||f,c=k.event.special[f]||{},d=k.extend({type:f,origType:m,data:i,handler:n,guid:n.guid,selector:r,needsContext:r&&k.expr.match.needsContext.test(r),namespace:_.join(".")},a),(h=u[f])||(h=u[f]=[],h.delegateCount=0,c.setup&&!1!==c.setup.call(t,i,_,o)||t.addEventListener&&t.addEventListener(f,o)),c.add&&(c.add.call(t,d),d.handler.guid||(d.handler.guid=n.guid)),r?h.splice(h.delegateCount++,0,d):h.push(d),k.event.global[f]=!0)}},remove:function(t,e,n,i,r){var a,o,s,u,l,d,c,h,f,_,m,p=et.hasData(t)&&et.get(t);if(p&&(u=p.events)){e=(e||"").match(R)||[""],l=e.length;while(l--)if(s=Yt.exec(e[l])||[],f=m=s[1],_=(s[2]||"").split(".").sort(),f){c=k.event.special[f]||{},f=(i?c.delegateType:c.bindType)||f,h=u[f]||[],s=s[2]&&new RegExp("(^|\\.)"+_.join("\\.(?:.*\\.|)")+"(\\.|$)"),o=a=h.length;while(a--)d=h[a],!r&&m!==d.origType||n&&n.guid!==d.guid||s&&!s.test(d.namespace)||i&&i!==d.selector&&("**"!==i||!d.selector)||(h.splice(a,1),d.selector&&h.delegateCount--,c.remove&&c.remove.call(t,d));o&&!h.length&&(c.teardown&&!1!==c.teardown.call(t,_,p.handle)||k.removeEvent(t,f,p.handle),delete u[f])}else for(f in u)k.event.remove(t,f+e[l],n,i,!0);k.isEmptyObject(u)&&et.remove(t,"handle events")}},dispatch:function(t){var e,n,i,r,a,o,s=new Array(arguments.length),u=k.event.fix(t),l=(et.get(this,"events")||Object.create(null))[u.type]||[],d=k.event.special[u.type]||{};for(s[0]=u,e=1;e=1))for(;l!==this;l=l.parentNode||this)if(1===l.nodeType&&("click"!==t.type||!0!==l.disabled)){for(a=[],o={},n=0;n-1:k.find(r,this,null,[l]).length),o[r]&&a.push(i);a.length&&s.push({elem:l,handlers:a})}return l=this,u\s*$/g;function Ht(t,e){return A(t,"table")&&A(11!==e.nodeType?e:e.firstChild,"tr")&&k(t).children("tbody")[0]||t}function It(t){return t.type=(null!==t.getAttribute("type"))+"/"+t.type,t}function zt(t){return"true/"===(t.type||"").slice(0,5)?t.type=t.type.slice(5):t.removeAttribute("type"),t}function Nt(t,e){var n,i,r,a,o,s,u;if(1===e.nodeType){if(et.hasData(t)&&(a=et.get(t),u=a.events,u))for(r in et.remove(e,"handle events"),u)for(n=0,i=u[r].length;n1&&"string"===typeof _&&!g.checkClone&&Et.test(_))return t.each((function(r){var a=t.eq(r);m&&(e[0]=_.call(this,r,a.html())),Ft(a,e,n,i)}));if(h&&(r=kt(e,t[0].ownerDocument,!1,t,i),a=r.firstChild,1===r.childNodes.length&&(r=a),a||i)){for(o=k.map(Lt(r,"script"),It),s=o.length;c0&&wt(o,!u&&Lt(t,"script")),s},cleanData:function(t){for(var e,n,i,r=k.event.special,a=0;void 0!==(n=t[a]);a++)if(Q(n)){if(e=n[et.expando]){if(e.events)for(i in e.events)r[i]?k.event.remove(n,i):k.removeEvent(n,i,e.handle);n[et.expando]=void 0}n[nt.expando]&&(n[nt.expando]=void 0)}}}),k.fn.extend({detach:function(t){return Wt(this,t,!0)},remove:function(t){return Wt(this,t)},text:function(t){return q(this,(function(t){return void 0===t?k.text(this):this.empty().each((function(){1!==this.nodeType&&11!==this.nodeType&&9!==this.nodeType||(this.textContent=t)}))}),null,t,arguments.length)},append:function(){return Ft(this,arguments,(function(t){if(1===this.nodeType||11===this.nodeType||9===this.nodeType){var e=Ht(this,t);e.appendChild(t)}}))},prepend:function(){return Ft(this,arguments,(function(t){if(1===this.nodeType||11===this.nodeType||9===this.nodeType){var e=Ht(this,t);e.insertBefore(t,e.firstChild)}}))},before:function(){return Ft(this,arguments,(function(t){this.parentNode&&this.parentNode.insertBefore(t,this)}))},after:function(){return Ft(this,arguments,(function(t){this.parentNode&&this.parentNode.insertBefore(t,this.nextSibling)}))},empty:function(){for(var t,e=0;null!=(t=this[e]);e++)1===t.nodeType&&(k.cleanData(Lt(t,!1)),t.textContent="");return this},clone:function(t,e){return t=null!=t&&t,e=null==e?t:e,this.map((function(){return k.clone(this,t,e)}))},html:function(t){return q(this,(function(t){var e=this[0]||{},n=0,i=this.length;if(void 0===t&&1===e.nodeType)return e.innerHTML;if("string"===typeof t&&!jt.test(t)&&!bt[(vt.exec(t)||["",""])[1].toLowerCase()]){t=k.htmlPrefilter(t);try{for(;n=0&&(u+=Math.max(0,Math.ceil(t["offset"+e[0].toUpperCase()+e.slice(1)]-a-u-s-.5))||0),u}function oe(t,e,n){var i=Ut(t),r=!g.boxSizingReliable()||n,a=r&&"border-box"===k.css(t,"boxSizing",!1,i),o=a,s=$t(t,e,i),u="offset"+e[0].toUpperCase()+e.slice(1);if(Bt.test(s)){if(!n)return s;s="auto"}return(!g.boxSizingReliable()&&a||!g.reliableTrDimensions()&&A(t,"tr")||"auto"===s||!parseFloat(s)&&"inline"===k.css(t,"display",!1,i))&&t.getClientRects().length&&(a="border-box"===k.css(t,"boxSizing",!1,i),o=u in t,o&&(s=t[u])),s=parseFloat(s)||0,s+ae(t,e,n||(a?"border":"content"),o,i,s)+"px"}function se(t,e,n,i,r){return new se.prototype.init(t,e,n,i,r)}k.extend({cssHooks:{opacity:{get:function(t,e){if(e){var n=$t(t,"opacity");return""===n?"1":n}}}},cssNumber:{animationIterationCount:!0,columnCount:!0,fillOpacity:!0,flexGrow:!0,flexShrink:!0,fontWeight:!0,gridArea:!0,gridColumn:!0,gridColumnEnd:!0,gridColumnStart:!0,gridRow:!0,gridRowEnd:!0,gridRowStart:!0,lineHeight:!0,opacity:!0,order:!0,orphans:!0,widows:!0,zIndex:!0,zoom:!0},cssProps:{},style:function(t,e,n,i){if(t&&3!==t.nodeType&&8!==t.nodeType&&t.style){var r,a,o,s=X(e),u=ee.test(e),l=t.style;if(u||(e=Qt(s)),o=k.cssHooks[e]||k.cssHooks[s],void 0===n)return o&&"get"in o&&void 0!==(r=o.get(t,!1,i))?r:l[e];a=typeof n,"string"===a&&(r=ut.exec(n))&&r[1]&&(n=_t(t,e,r),a="number"),null!=n&&n===n&&("number"!==a||u||(n+=r&&r[3]||(k.cssNumber[s]?"":"px")),g.clearCloneStyle||""!==n||0!==e.indexOf("background")||(l[e]="inherit"),o&&"set"in o&&void 0===(n=o.set(t,n,i))||(u?l.setProperty(e,n):l[e]=n))}},css:function(t,e,n,i){var r,a,o,s=X(e),u=ee.test(e);return u||(e=Qt(s)),o=k.cssHooks[e]||k.cssHooks[s],o&&"get"in o&&(r=o.get(t,!0,n)),void 0===r&&(r=$t(t,e,i)),"normal"===r&&e in ie&&(r=ie[e]),""===n||n?(a=parseFloat(r),!0===n||isFinite(a)?a||0:r):r}}),k.each(["height","width"],(function(t,e){k.cssHooks[e]={get:function(t,n,i){if(n)return!te.test(k.css(t,"display"))||t.getClientRects().length&&t.getBoundingClientRect().width?oe(t,e,i):Vt(t,ne,(function(){return oe(t,e,i)}))},set:function(t,n,i){var r,a=Ut(t),o=!g.scrollboxSize()&&"absolute"===a.position,s=o||i,u=s&&"border-box"===k.css(t,"boxSizing",!1,a),l=i?ae(t,e,i,u,a):0;return u&&o&&(l-=Math.ceil(t["offset"+e[0].toUpperCase()+e.slice(1)]-parseFloat(a[e])-ae(t,e,"border",!1,a)-.5)),l&&(r=ut.exec(n))&&"px"!==(r[3]||"px")&&(t.style[e]=n,n=k.css(t,e)),re(t,n,l)}}})),k.cssHooks.marginLeft=qt(g.reliableMarginLeft,(function(t,e){if(e)return(parseFloat($t(t,"marginLeft"))||t.getBoundingClientRect().left-Vt(t,{marginLeft:0},(function(){return t.getBoundingClientRect().left})))+"px"})),k.each({margin:"",padding:"",border:"Width"},(function(t,e){k.cssHooks[t+e]={expand:function(n){for(var i=0,r={},a="string"===typeof n?n.split(" "):[n];i<4;i++)r[t+lt[i]+e]=a[i]||a[i-2]||a[0];return r}},"margin"!==t&&(k.cssHooks[t+e].set=re)})),k.fn.extend({css:function(t,e){return q(this,(function(t,e,n){var i,r,a={},o=0;if(Array.isArray(e)){for(i=Ut(t),r=e.length;o1)}}),k.Tween=se,se.prototype={constructor:se,init:function(t,e,n,i,r,a){this.elem=t,this.prop=n,this.easing=r||k.easing._default,this.options=e,this.start=this.now=this.cur(),this.end=i,this.unit=a||(k.cssNumber[n]?"":"px")},cur:function(){var t=se.propHooks[this.prop];return t&&t.get?t.get(this):se.propHooks._default.get(this)},run:function(t){var e,n=se.propHooks[this.prop];return this.options.duration?this.pos=e=k.easing[this.easing](t,this.options.duration*t,0,1,this.options.duration):this.pos=e=t,this.now=(this.end-this.start)*e+this.start,this.options.step&&this.options.step.call(this.elem,this.now,this),n&&n.set?n.set(this):se.propHooks._default.set(this),this}},se.prototype.init.prototype=se.prototype,se.propHooks={_default:{get:function(t){var e;return 1!==t.elem.nodeType||null!=t.elem[t.prop]&&null==t.elem.style[t.prop]?t.elem[t.prop]:(e=k.css(t.elem,t.prop,""),e&&"auto"!==e?e:0)},set:function(t){k.fx.step[t.prop]?k.fx.step[t.prop](t):1!==t.elem.nodeType||!k.cssHooks[t.prop]&&null==t.elem.style[Qt(t.prop)]?t.elem[t.prop]=t.now:k.style(t.elem,t.prop,t.now+t.unit)}}},se.propHooks.scrollTop=se.propHooks.scrollLeft={set:function(t){t.elem.nodeType&&t.elem.parentNode&&(t.elem[t.prop]=t.now)}},k.easing={linear:function(t){return t},swing:function(t){return.5-Math.cos(t*Math.PI)/2},_default:"swing"},k.fx=se.prototype.init,k.fx.step={};var ue,le,de=/^(?:toggle|show|hide)$/,ce=/queueHooks$/;function he(){le&&(!1===M.hidden&&n.requestAnimationFrame?n.requestAnimationFrame(he):n.setTimeout(he,k.fx.interval),k.fx.tick())}function fe(){return n.setTimeout((function(){ue=void 0})),ue=Date.now()}function _e(t,e){var n,i=0,r={height:t};for(e=e?1:0;i<4;i+=2-e)n=lt[i],r["margin"+n]=r["padding"+n]=t;return e&&(r.opacity=r.width=t),r}function me(t,e,n){for(var i,r=(ye.tweeners[e]||[]).concat(ye.tweeners["*"]),a=0,o=r.length;a1)},removeAttr:function(t){return this.each((function(){k.removeAttr(this,t)}))}}),k.extend({attr:function(t,e,n){var i,r,a=t.nodeType;if(3!==a&&8!==a&&2!==a)return"undefined"===typeof t.getAttribute?k.prop(t,e,n):(1===a&&k.isXMLDoc(t)||(r=k.attrHooks[e.toLowerCase()]||(k.expr.match.bool.test(e)?ve:void 0)),void 0!==n?null===n?void k.removeAttr(t,e):r&&"set"in r&&void 0!==(i=r.set(t,n,e))?i:(t.setAttribute(e,n+""),n):r&&"get"in r&&null!==(i=r.get(t,e))?i:(i=k.find.attr(t,e),null==i?void 0:i))},attrHooks:{type:{set:function(t,e){if(!g.radioValue&&"radio"===e&&A(t,"input")){var n=t.value;return t.setAttribute("type",e),n&&(t.value=n),e}}}},removeAttr:function(t,e){var n,i=0,r=e&&e.match(R);if(r&&1===t.nodeType)while(n=r[i++])t.removeAttribute(n)}}),ve={set:function(t,e,n){return!1===e?k.removeAttr(t,n):t.setAttribute(n,n),n}},k.each(k.expr.match.bool.source.match(/\w+/g),(function(t,e){var n=Me[e]||k.find.attr;Me[e]=function(t,e,i){var r,a,o=e.toLowerCase();return i||(a=Me[o],Me[o]=r,r=null!=n(t,e,i)?o:null,Me[o]=a),r}}));var be=/^(?:input|select|textarea|button)$/i,Le=/^(?:a|area)$/i;function we(t){var e=t.match(R)||[];return e.join(" ")}function xe(t){return t.getAttribute&&t.getAttribute("class")||""}function ke(t){return Array.isArray(t)?t:"string"===typeof t&&t.match(R)||[]}k.fn.extend({prop:function(t,e){return q(this,k.prop,t,e,arguments.length>1)},removeProp:function(t){return this.each((function(){delete this[k.propFix[t]||t]}))}}),k.extend({prop:function(t,e,n){var i,r,a=t.nodeType;if(3!==a&&8!==a&&2!==a)return 1===a&&k.isXMLDoc(t)||(e=k.propFix[e]||e,r=k.propHooks[e]),void 0!==n?r&&"set"in r&&void 0!==(i=r.set(t,n,e))?i:t[e]=n:r&&"get"in r&&null!==(i=r.get(t,e))?i:t[e]},propHooks:{tabIndex:{get:function(t){var e=k.find.attr(t,"tabindex");return e?parseInt(e,10):be.test(t.nodeName)||Le.test(t.nodeName)&&t.href?0:-1}}},propFix:{for:"htmlFor",class:"className"}}),g.optSelected||(k.propHooks.selected={get:function(t){var e=t.parentNode;return e&&e.parentNode&&e.parentNode.selectedIndex,null},set:function(t){var e=t.parentNode;e&&(e.selectedIndex,e.parentNode&&e.parentNode.selectedIndex)}}),k.each(["tabIndex","readOnly","maxLength","cellSpacing","cellPadding","rowSpan","colSpan","useMap","frameBorder","contentEditable"],(function(){k.propFix[this.toLowerCase()]=this})),k.fn.extend({addClass:function(t){var e,n,i,r,a,o,s,u=0;if(y(t))return this.each((function(e){k(this).addClass(t.call(this,e,xe(this)))}));if(e=ke(t),e.length)while(n=this[u++])if(r=xe(n),i=1===n.nodeType&&" "+we(r)+" ",i){o=0;while(a=e[o++])i.indexOf(" "+a+" ")<0&&(i+=a+" ");s=we(i),r!==s&&n.setAttribute("class",s)}return this},removeClass:function(t){var e,n,i,r,a,o,s,u=0;if(y(t))return this.each((function(e){k(this).removeClass(t.call(this,e,xe(this)))}));if(!arguments.length)return this.attr("class","");if(e=ke(t),e.length)while(n=this[u++])if(r=xe(n),i=1===n.nodeType&&" "+we(r)+" ",i){o=0;while(a=e[o++])while(i.indexOf(" "+a+" ")>-1)i=i.replace(" "+a+" "," ");s=we(i),r!==s&&n.setAttribute("class",s)}return this},toggleClass:function(t,e){var n=typeof t,i="string"===n||Array.isArray(t);return"boolean"===typeof e&&i?e?this.addClass(t):this.removeClass(t):y(t)?this.each((function(n){k(this).toggleClass(t.call(this,n,xe(this),e),e)})):this.each((function(){var e,r,a,o;if(i){r=0,a=k(this),o=ke(t);while(e=o[r++])a.hasClass(e)?a.removeClass(e):a.addClass(e)}else void 0!==t&&"boolean"!==n||(e=xe(this),e&&et.set(this,"__className__",e),this.setAttribute&&this.setAttribute("class",e||!1===t?"":et.get(this,"__className__")||""))}))},hasClass:function(t){var e,n,i=0;e=" "+t+" ";while(n=this[i++])if(1===n.nodeType&&(" "+we(xe(n))+" ").indexOf(e)>-1)return!0;return!1}});var Ye=/\r/g;k.fn.extend({val:function(t){var e,n,i,r=this[0];return arguments.length?(i=y(t),this.each((function(n){var r;1===this.nodeType&&(r=i?t.call(this,n,k(this).val()):t,null==r?r="":"number"===typeof r?r+="":Array.isArray(r)&&(r=k.map(r,(function(t){return null==t?"":t+""}))),e=k.valHooks[this.type]||k.valHooks[this.nodeName.toLowerCase()],e&&"set"in e&&void 0!==e.set(this,r,"value")||(this.value=r))}))):r?(e=k.valHooks[r.type]||k.valHooks[r.nodeName.toLowerCase()],e&&"get"in e&&void 0!==(n=e.get(r,"value"))?n:(n=r.value,"string"===typeof n?n.replace(Ye,""):null==n?"":n)):void 0}}),k.extend({valHooks:{option:{get:function(t){var e=k.find.attr(t,"value");return null!=e?e:we(k.text(t))}},select:{get:function(t){var e,n,i,r=t.options,a=t.selectedIndex,o="select-one"===t.type,s=o?null:[],u=o?a+1:r.length;for(i=a<0?u:o?a:0;i-1)&&(n=!0);return n||(t.selectedIndex=-1),a}}}}),k.each(["radio","checkbox"],(function(){k.valHooks[this]={set:function(t,e){if(Array.isArray(e))return t.checked=k.inArray(k(t).val(),e)>-1}},g.checkOn||(k.valHooks[this].get=function(t){return null===t.getAttribute("value")?"on":t.value})})),g.focusin="onfocusin"in n;var Te=/^(?:focusinfocus|focusoutblur)$/,De=function(t){t.stopPropagation()};k.extend(k.event,{trigger:function(t,e,i,r){var a,o,s,u,l,d,c,h,f=[i||M],m=_.call(t,"type")?t.type:t,p=_.call(t,"namespace")?t.namespace.split("."):[];if(o=h=s=i=i||M,3!==i.nodeType&&8!==i.nodeType&&!Te.test(m+k.event.triggered)&&(m.indexOf(".")>-1&&(p=m.split("."),m=p.shift(),p.sort()),l=m.indexOf(":")<0&&"on"+m,t=t[k.expando]?t:new k.Event(m,"object"===typeof t&&t),t.isTrigger=r?2:3,t.namespace=p.join("."),t.rnamespace=t.namespace?new RegExp("(^|\\.)"+p.join("\\.(?:.*\\.|)")+"(\\.|$)"):null,t.result=void 0,t.target||(t.target=i),e=null==e?[t]:k.makeArray(e,[t]),c=k.event.special[m]||{},r||!c.trigger||!1!==c.trigger.apply(i,e))){if(!r&&!c.noBubble&&!v(i)){for(u=c.delegateType||m,Te.test(u+m)||(o=o.parentNode);o;o=o.parentNode)f.push(o),s=o;s===(i.ownerDocument||M)&&f.push(s.defaultView||s.parentWindow||n)}a=0;while((o=f[a++])&&!t.isPropagationStopped())h=o,t.type=a>1?u:c.bindType||m,d=(et.get(o,"events")||Object.create(null))[t.type]&&et.get(o,"handle"),d&&d.apply(o,e),d=l&&o[l],d&&d.apply&&Q(o)&&(t.result=d.apply(o,e),!1===t.result&&t.preventDefault());return t.type=m,r||t.isDefaultPrevented()||c._default&&!1!==c._default.apply(f.pop(),e)||!Q(i)||l&&y(i[m])&&!v(i)&&(s=i[l],s&&(i[l]=null),k.event.triggered=m,t.isPropagationStopped()&&h.addEventListener(m,De),i[m](),t.isPropagationStopped()&&h.removeEventListener(m,De),k.event.triggered=void 0,s&&(i[l]=s)),t.result}},simulate:function(t,e,n){var i=k.extend(new k.Event,n,{type:t,isSimulated:!0});k.event.trigger(i,null,e)}}),k.fn.extend({trigger:function(t,e){return this.each((function(){k.event.trigger(t,e,this)}))},triggerHandler:function(t,e){var n=this[0];if(n)return k.event.trigger(t,e,n,!0)}}),g.focusin||k.each({focus:"focusin",blur:"focusout"},(function(t,e){var n=function(t){k.event.simulate(e,t.target,k.event.fix(t))};k.event.special[e]={setup:function(){var i=this.ownerDocument||this.document||this,r=et.access(i,e);r||i.addEventListener(t,n,!0),et.access(i,e,(r||0)+1)},teardown:function(){var i=this.ownerDocument||this.document||this,r=et.access(i,e)-1;r?et.access(i,e,r):(i.removeEventListener(t,n,!0),et.remove(i,e))}}}));var Se=n.location,Pe={guid:Date.now()},Ae=/\?/;k.parseXML=function(t){var e,i;if(!t||"string"!==typeof t)return null;try{e=(new n.DOMParser).parseFromString(t,"text/xml")}catch(r){}return i=e&&e.getElementsByTagName("parsererror")[0],e&&!i||k.error("Invalid XML: "+(i?k.map(i.childNodes,(function(t){return t.textContent})).join("\n"):t)),e};var Oe=/\[\]$/,je=/\r?\n/g,Ee=/^(?:submit|button|image|reset|file)$/i,Ce=/^(?:input|select|textarea|keygen)/i;function He(t,e,n,i){var r;if(Array.isArray(e))k.each(e,(function(e,r){n||Oe.test(t)?i(t,r):He(t+"["+("object"===typeof r&&null!=r?e:"")+"]",r,n,i)}));else if(n||"object"!==w(e))i(t,e);else for(r in e)He(t+"["+r+"]",e[r],n,i)}k.param=function(t,e){var n,i=[],r=function(t,e){var n=y(e)?e():e;i[i.length]=encodeURIComponent(t)+"="+encodeURIComponent(null==n?"":n)};if(null==t)return"";if(Array.isArray(t)||t.jquery&&!k.isPlainObject(t))k.each(t,(function(){r(this.name,this.value)}));else for(n in t)He(n,t[n],e,r);return i.join("&")},k.fn.extend({serialize:function(){return k.param(this.serializeArray())},serializeArray:function(){return this.map((function(){var t=k.prop(this,"elements");return t?k.makeArray(t):this})).filter((function(){var t=this.type;return this.name&&!k(this).is(":disabled")&&Ce.test(this.nodeName)&&!Ee.test(t)&&(this.checked||!yt.test(t))})).map((function(t,e){var n=k(this).val();return null==n?null:Array.isArray(n)?k.map(n,(function(t){return{name:e.name,value:t.replace(je,"\r\n")}})):{name:e.name,value:n.replace(je,"\r\n")}})).get()}});var Ie=/%20/g,ze=/#.*$/,Ne=/([?&])_=[^&]*/,Re=/^(.*?):[ \t]*([^\r\n]*)$/gm,Fe=/^(?:about|app|app-storage|.+-extension|file|res|widget):$/,We=/^(?:GET|HEAD)$/,Be=/^\/\//,Ue={},Ve={},Ze="*/".concat("*"),$e=M.createElement("a");function qe(t){return function(e,n){"string"!==typeof e&&(n=e,e="*");var i,r=0,a=e.toLowerCase().match(R)||[];if(y(n))while(i=a[r++])"+"===i[0]?(i=i.slice(1)||"*",(t[i]=t[i]||[]).unshift(n)):(t[i]=t[i]||[]).push(n)}}function Je(t,e,n,i){var r={},a=t===Ve;function o(s){var u;return r[s]=!0,k.each(t[s]||[],(function(t,s){var l=s(e,n,i);return"string"!==typeof l||a||r[l]?a?!(u=l):void 0:(e.dataTypes.unshift(l),o(l),!1)})),u}return o(e.dataTypes[0])||!r["*"]&&o("*")}function Ge(t,e){var n,i,r=k.ajaxSettings.flatOptions||{};for(n in e)void 0!==e[n]&&((r[n]?t:i||(i={}))[n]=e[n]);return i&&k.extend(!0,t,i),t}function Ke(t,e,n){var i,r,a,o,s=t.contents,u=t.dataTypes;while("*"===u[0])u.shift(),void 0===i&&(i=t.mimeType||e.getResponseHeader("Content-Type"));if(i)for(r in s)if(s[r]&&s[r].test(i)){u.unshift(r);break}if(u[0]in n)a=u[0];else{for(r in n){if(!u[0]||t.converters[r+" "+u[0]]){a=r;break}o||(o=r)}a=a||o}if(a)return a!==u[0]&&u.unshift(a),n[a]}function Xe(t,e,n,i){var r,a,o,s,u,l={},d=t.dataTypes.slice();if(d[1])for(o in t.converters)l[o.toLowerCase()]=t.converters[o];a=d.shift();while(a)if(t.responseFields[a]&&(n[t.responseFields[a]]=e),!u&&i&&t.dataFilter&&(e=t.dataFilter(e,t.dataType)),u=a,a=d.shift(),a)if("*"===a)a=u;else if("*"!==u&&u!==a){if(o=l[u+" "+a]||l["* "+a],!o)for(r in l)if(s=r.split(" "),s[1]===a&&(o=l[u+" "+s[0]]||l["* "+s[0]],o)){!0===o?o=l[r]:!0!==l[r]&&(a=s[0],d.unshift(s[1]));break}if(!0!==o)if(o&&t.throws)e=o(e);else try{e=o(e)}catch(c){return{state:"parsererror",error:o?c:"No conversion from "+u+" to "+a}}}return{state:"success",data:e}}$e.href=Se.href,k.extend({active:0,lastModified:{},etag:{},ajaxSettings:{url:Se.href,type:"GET",isLocal:Fe.test(Se.protocol),global:!0,processData:!0,async:!0,contentType:"application/x-www-form-urlencoded; charset=UTF-8",accepts:{"*":Ze,text:"text/plain",html:"text/html",xml:"application/xml, text/xml",json:"application/json, text/javascript"},contents:{xml:/\bxml\b/,html:/\bhtml/,json:/\bjson\b/},responseFields:{xml:"responseXML",text:"responseText",json:"responseJSON"},converters:{"* text":String,"text html":!0,"text json":JSON.parse,"text xml":k.parseXML},flatOptions:{url:!0,context:!0}},ajaxSetup:function(t,e){return e?Ge(Ge(t,k.ajaxSettings),e):Ge(k.ajaxSettings,t)},ajaxPrefilter:qe(Ue),ajaxTransport:qe(Ve),ajax:function(t,e){"object"===typeof t&&(e=t,t=void 0),e=e||{};var i,r,a,o,s,u,l,d,c,h,f=k.ajaxSetup({},e),_=f.context||f,m=f.context&&(_.nodeType||_.jquery)?k(_):k.event,p=k.Deferred(),g=k.Callbacks("once memory"),y=f.statusCode||{},v={},b={},L="canceled",w={readyState:0,getResponseHeader:function(t){var e;if(l){if(!o){o={};while(e=Re.exec(a))o[e[1].toLowerCase()+" "]=(o[e[1].toLowerCase()+" "]||[]).concat(e[2])}e=o[t.toLowerCase()+" "]}return null==e?null:e.join(", ")},getAllResponseHeaders:function(){return l?a:null},setRequestHeader:function(t,e){return null==l&&(t=b[t.toLowerCase()]=b[t.toLowerCase()]||t,v[t]=e),this},overrideMimeType:function(t){return null==l&&(f.mimeType=t),this},statusCode:function(t){var e;if(t)if(l)w.always(t[w.status]);else for(e in t)y[e]=[y[e],t[e]];return this},abort:function(t){var e=t||L;return i&&i.abort(e),x(0,e),this}};if(p.promise(w),f.url=((t||f.url||Se.href)+"").replace(Be,Se.protocol+"//"),f.type=e.method||e.type||f.method||f.type,f.dataTypes=(f.dataType||"*").toLowerCase().match(R)||[""],null==f.crossDomain){u=M.createElement("a");try{u.href=f.url,u.href=u.href,f.crossDomain=$e.protocol+"//"+$e.host!==u.protocol+"//"+u.host}catch(Y){f.crossDomain=!0}}if(f.data&&f.processData&&"string"!==typeof f.data&&(f.data=k.param(f.data,f.traditional)),Je(Ue,f,e,w),l)return w;for(c in d=k.event&&f.global,d&&0===k.active++&&k.event.trigger("ajaxStart"),f.type=f.type.toUpperCase(),f.hasContent=!We.test(f.type),r=f.url.replace(ze,""),f.hasContent?f.data&&f.processData&&0===(f.contentType||"").indexOf("application/x-www-form-urlencoded")&&(f.data=f.data.replace(Ie,"+")):(h=f.url.slice(r.length),f.data&&(f.processData||"string"===typeof f.data)&&(r+=(Ae.test(r)?"&":"?")+f.data,delete f.data),!1===f.cache&&(r=r.replace(Ne,"$1"),h=(Ae.test(r)?"&":"?")+"_="+Pe.guid+++h),f.url=r+h),f.ifModified&&(k.lastModified[r]&&w.setRequestHeader("If-Modified-Since",k.lastModified[r]),k.etag[r]&&w.setRequestHeader("If-None-Match",k.etag[r])),(f.data&&f.hasContent&&!1!==f.contentType||e.contentType)&&w.setRequestHeader("Content-Type",f.contentType),w.setRequestHeader("Accept",f.dataTypes[0]&&f.accepts[f.dataTypes[0]]?f.accepts[f.dataTypes[0]]+("*"!==f.dataTypes[0]?", "+Ze+"; q=0.01":""):f.accepts["*"]),f.headers)w.setRequestHeader(c,f.headers[c]);if(f.beforeSend&&(!1===f.beforeSend.call(_,w,f)||l))return w.abort();if(L="abort",g.add(f.complete),w.done(f.success),w.fail(f.error),i=Je(Ve,f,e,w),i){if(w.readyState=1,d&&m.trigger("ajaxSend",[w,f]),l)return w;f.async&&f.timeout>0&&(s=n.setTimeout((function(){w.abort("timeout")}),f.timeout));try{l=!1,i.send(v,x)}catch(Y){if(l)throw Y;x(-1,Y)}}else x(-1,"No Transport");function x(t,e,o,u){var c,h,v,M,b,L=e;l||(l=!0,s&&n.clearTimeout(s),i=void 0,a=u||"",w.readyState=t>0?4:0,c=t>=200&&t<300||304===t,o&&(M=Ke(f,w,o)),!c&&k.inArray("script",f.dataTypes)>-1&&k.inArray("json",f.dataTypes)<0&&(f.converters["text script"]=function(){}),M=Xe(f,M,w,c),c?(f.ifModified&&(b=w.getResponseHeader("Last-Modified"),b&&(k.lastModified[r]=b),b=w.getResponseHeader("etag"),b&&(k.etag[r]=b)),204===t||"HEAD"===f.type?L="nocontent":304===t?L="notmodified":(L=M.state,h=M.data,v=M.error,c=!v)):(v=L,!t&&L||(L="error",t<0&&(t=0))),w.status=t,w.statusText=(e||L)+"",c?p.resolveWith(_,[h,L,w]):p.rejectWith(_,[w,L,v]),w.statusCode(y),y=void 0,d&&m.trigger(c?"ajaxSuccess":"ajaxError",[w,f,c?h:v]),g.fireWith(_,[w,L]),d&&(m.trigger("ajaxComplete",[w,f]),--k.active||k.event.trigger("ajaxStop")))}return w},getJSON:function(t,e,n){return k.get(t,e,n,"json")},getScript:function(t,e){return k.get(t,void 0,e,"script")}}),k.each(["get","post"],(function(t,e){k[e]=function(t,n,i,r){return y(n)&&(r=r||i,i=n,n=void 0),k.ajax(k.extend({url:t,type:e,dataType:r,data:n,success:i},k.isPlainObject(t)&&t))}})),k.ajaxPrefilter((function(t){var e;for(e in t.headers)"content-type"===e.toLowerCase()&&(t.contentType=t.headers[e]||"")})),k._evalUrl=function(t,e,n){return k.ajax({url:t,type:"GET",dataType:"script",cache:!0,async:!1,global:!1,converters:{"text script":function(){}},dataFilter:function(t){k.globalEval(t,e,n)}})},k.fn.extend({wrapAll:function(t){var e;return this[0]&&(y(t)&&(t=t.call(this[0])),e=k(t,this[0].ownerDocument).eq(0).clone(!0),this[0].parentNode&&e.insertBefore(this[0]),e.map((function(){var t=this;while(t.firstElementChild)t=t.firstElementChild;return t})).append(this)),this},wrapInner:function(t){return y(t)?this.each((function(e){k(this).wrapInner(t.call(this,e))})):this.each((function(){var e=k(this),n=e.contents();n.length?n.wrapAll(t):e.append(t)}))},wrap:function(t){var e=y(t);return this.each((function(n){k(this).wrapAll(e?t.call(this,n):t)}))},unwrap:function(t){return this.parent(t).not("body").each((function(){k(this).replaceWith(this.childNodes)})),this}}),k.expr.pseudos.hidden=function(t){return!k.expr.pseudos.visible(t)},k.expr.pseudos.visible=function(t){return!!(t.offsetWidth||t.offsetHeight||t.getClientRects().length)},k.ajaxSettings.xhr=function(){try{return new n.XMLHttpRequest}catch(t){}};var Qe={0:200,1223:204},tn=k.ajaxSettings.xhr();g.cors=!!tn&&"withCredentials"in tn,g.ajax=tn=!!tn,k.ajaxTransport((function(t){var e,i;if(g.cors||tn&&!t.crossDomain)return{send:function(r,a){var o,s=t.xhr();if(s.open(t.type,t.url,t.async,t.username,t.password),t.xhrFields)for(o in t.xhrFields)s[o]=t.xhrFields[o];for(o in t.mimeType&&s.overrideMimeType&&s.overrideMimeType(t.mimeType),t.crossDomain||r["X-Requested-With"]||(r["X-Requested-With"]="XMLHttpRequest"),r)s.setRequestHeader(o,r[o]);e=function(t){return function(){e&&(e=i=s.onload=s.onerror=s.onabort=s.ontimeout=s.onreadystatechange=null,"abort"===t?s.abort():"error"===t?"number"!==typeof s.status?a(0,"error"):a(s.status,s.statusText):a(Qe[s.status]||s.status,s.statusText,"text"!==(s.responseType||"text")||"string"!==typeof s.responseText?{binary:s.response}:{text:s.responseText},s.getAllResponseHeaders()))}},s.onload=e(),i=s.onerror=s.ontimeout=e("error"),void 0!==s.onabort?s.onabort=i:s.onreadystatechange=function(){4===s.readyState&&n.setTimeout((function(){e&&i()}))},e=e("abort");try{s.send(t.hasContent&&t.data||null)}catch(u){if(e)throw u}},abort:function(){e&&e()}}})),k.ajaxPrefilter((function(t){t.crossDomain&&(t.contents.script=!1)})),k.ajaxSetup({accepts:{script:"text/javascript, application/javascript, application/ecmascript, application/x-ecmascript"},contents:{script:/\b(?:java|ecma)script\b/},converters:{"text script":function(t){return k.globalEval(t),t}}}),k.ajaxPrefilter("script",(function(t){void 0===t.cache&&(t.cache=!1),t.crossDomain&&(t.type="GET")})),k.ajaxTransport("script",(function(t){var e,n;if(t.crossDomain||t.scriptAttrs)return{send:function(i,r){e=k("