mirror of
https://github.com/CopterExpress/clover.git
synced 2026-05-26 11:43:25 +00:00
Add editorconfig-checker (#149)
* Add editorconfig-checker * Editorconfig-check fix * Remove temporal cat
This commit is contained in:
@@ -85,6 +85,14 @@ jobs:
|
||||
- pip install GitPython PyGithub
|
||||
script:
|
||||
- PYTHONUNBUFFERED=1 python ./gen_changelog.py
|
||||
- stage: Build
|
||||
name: Editorconfig-lint
|
||||
language: generic
|
||||
before_script:
|
||||
- wget https://github.com/okalachev/editorconfig-checker/releases/download/1.2.1-disable-spaces-amount/ec-linux-amd64
|
||||
- chmod +x ec-linux-amd64
|
||||
script:
|
||||
- ./ec-linux-amd64 -spaces-after-tabs -e "roslib.js|ros3d.js|eventemitter2.js|draw.cpp|BinUtils.swift|\.idea|apps/android/app|Assets.xcassets|test_parser_pass.txt|test_node_failure.txt"
|
||||
stages:
|
||||
- Build
|
||||
- Annotate
|
||||
|
||||
@@ -23,19 +23,18 @@ function throttle(func, ms) {
|
||||
}
|
||||
|
||||
function postAppMessage(msg) {
|
||||
if (window.webkit != undefined) {
|
||||
if (window.webkit.messageHandlers.appInterface != undefined) {
|
||||
window.webkit.messageHandlers.appInterface.postMessage(JSON.stringify(msg));
|
||||
}
|
||||
}
|
||||
else if (window.appInterface != undefined) {
|
||||
window.appInterface.postMessage(JSON.stringify(msg));
|
||||
}
|
||||
if (window.webkit != undefined) {
|
||||
if (window.webkit.messageHandlers.appInterface != undefined) {
|
||||
window.webkit.messageHandlers.appInterface.postMessage(JSON.stringify(msg));
|
||||
}
|
||||
} else if (window.appInterface != undefined) {
|
||||
window.appInterface.postMessage(JSON.stringify(msg));
|
||||
}
|
||||
}
|
||||
|
||||
function callNativeApp(name, msg) {
|
||||
try {
|
||||
postAppMessage(msg);
|
||||
postAppMessage(msg);
|
||||
return true;
|
||||
} catch(err) {
|
||||
console.warn('The native context does not exist yet');
|
||||
@@ -109,12 +108,12 @@ function stickTouchStart(e) {
|
||||
|
||||
function stickTouchMove(e) {
|
||||
for (touch of e.changedTouches) {
|
||||
onStickTouchMove(touch);
|
||||
}
|
||||
//onStickTouchMove(e.changedTouches[0]);
|
||||
rcPublishThrottled();
|
||||
e.stopPropagation();
|
||||
e.preventDefault();
|
||||
onStickTouchMove(touch);
|
||||
}
|
||||
//onStickTouchMove(e.changedTouches[0]);
|
||||
rcPublishThrottled();
|
||||
e.stopPropagation();
|
||||
e.preventDefault();
|
||||
}
|
||||
|
||||
function stickTouchEnd(e) {
|
||||
@@ -136,4 +135,4 @@ stickRight.addEventListener('touchmove', stickTouchMove);
|
||||
stickLeft.addEventListener('touchstart', stickTouchStart);
|
||||
stickRight.addEventListener('touchstart', stickTouchStart);
|
||||
stickLeft.addEventListener('touchend', stickTouchEnd);
|
||||
stickRight.addEventListener('touchend', stickTouchEnd);
|
||||
stickRight.addEventListener('touchend', stickTouchEnd);
|
||||
|
||||
@@ -173,7 +173,7 @@ target_link_libraries(aruco_pose
|
||||
# See http://ros.org/doc/api/catkin/html/adv_user_guide/variables.html
|
||||
|
||||
## Mark executable scripts (Python etc.) for installation
|
||||
## in contrast to setup.py, you can choose the destination
|
||||
## in contrast to setup.py, you can choose the destination
|
||||
# install(PROGRAMS
|
||||
# scripts/my_python_script
|
||||
# DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION}
|
||||
|
||||
@@ -120,70 +120,65 @@ void _drawPlanarBoard(Board *_board, Size outSize, OutputArray _img, int marginS
|
||||
|
||||
/* Draw a (potentially partially visible) line. */
|
||||
static void linePartial(InputOutputArray image, Point3f p1, Point3f p2, const Scalar& color,
|
||||
int thickness = 1, int lineType = LINE_8, int shift = 0)
|
||||
int thickness = 1, int lineType = LINE_8, int shift = 0)
|
||||
{
|
||||
// If both points are behind the screen, don't draw anything
|
||||
if (p1.z <= 0 && p2.z <= 0)
|
||||
{
|
||||
return;
|
||||
}
|
||||
Point2f p1p{p1.x, p1.y};
|
||||
Point2f p2p{p2.x, p2.y};
|
||||
// If points are on the different sides of the plane, compute intersection point
|
||||
if (p1.z * p2.z < 0)
|
||||
{
|
||||
// Compute intersection point with the screen
|
||||
// We denote alpha as such:
|
||||
// xi = (1 - alpha) * x1 + alpha * x2
|
||||
// yi = (1 - alpha) * y1 + alpha * y2
|
||||
// zi = (1 - alpha) * z1 + alpha * z2 = 0
|
||||
// Thus, alpha can be expressed as
|
||||
// alpha = z1 / (z1 - z2)
|
||||
float alpha = p1.z / (p1.z - p2.z);
|
||||
Point2f pi{(1 - alpha) * p1.x + alpha * p2.x, (1 - alpha) * p1.y + alpha * p2.y};
|
||||
// Now, if z1 is negative, we draw the line from (xi, yi) to (x2, y2), else we draw from (x1, y1) to (xi, yi)
|
||||
if (p1.z < 0)
|
||||
{
|
||||
p1p = pi;
|
||||
}
|
||||
else
|
||||
{
|
||||
p2p = pi;
|
||||
}
|
||||
}
|
||||
line(image, p1p, p2p, color, thickness, lineType, shift);
|
||||
// If both points are behind the screen, don't draw anything
|
||||
if (p1.z <= 0 && p2.z <= 0) {
|
||||
return;
|
||||
}
|
||||
Point2f p1p{p1.x, p1.y};
|
||||
Point2f p2p{p2.x, p2.y};
|
||||
// If points are on the different sides of the plane, compute intersection point
|
||||
if (p1.z * p2.z < 0) {
|
||||
// Compute intersection point with the screen
|
||||
// We denote alpha as such:
|
||||
// xi = (1 - alpha) * x1 + alpha * x2
|
||||
// yi = (1 - alpha) * y1 + alpha * y2
|
||||
// zi = (1 - alpha) * z1 + alpha * z2 = 0
|
||||
// Thus, alpha can be expressed as
|
||||
// alpha = z1 / (z1 - z2)
|
||||
float alpha = p1.z / (p1.z - p2.z);
|
||||
Point2f pi{(1 - alpha) * p1.x + alpha * p2.x, (1 - alpha) * p1.y + alpha * p2.y};
|
||||
// Now, if z1 is negative, we draw the line from (xi, yi) to (x2, y2), else we draw from (x1, y1) to (xi, yi)
|
||||
if (p1.z < 0) {
|
||||
p1p = pi;
|
||||
} else {
|
||||
p2p = pi;
|
||||
}
|
||||
}
|
||||
line(image, p1p, p2p, color, thickness, lineType, shift);
|
||||
}
|
||||
|
||||
void _drawAxis(InputOutputArray _image, InputArray _cameraMatrix, InputArray _distCoeffs,
|
||||
InputArray _rvec, InputArray _tvec, float length) {
|
||||
|
||||
CV_Assert(_image.getMat().total() != 0 &&
|
||||
(_image.getMat().channels() == 1 || _image.getMat().channels() == 3));
|
||||
CV_Assert(length > 0);
|
||||
CV_Assert(_image.getMat().total() != 0 &&
|
||||
(_image.getMat().channels() == 1 || _image.getMat().channels() == 3));
|
||||
CV_Assert(length > 0);
|
||||
|
||||
// project axis points
|
||||
std::vector< Point3f > axisPoints;
|
||||
axisPoints.push_back(Point3f(0, 0, 0));
|
||||
axisPoints.push_back(Point3f(length, 0, 0));
|
||||
axisPoints.push_back(Point3f(0, length, 0));
|
||||
axisPoints.push_back(Point3f(0, 0, length));
|
||||
std::vector< Point3f > imagePointsZ;
|
||||
_projectPoints(axisPoints, _rvec, _tvec, _cameraMatrix, _distCoeffs, imagePointsZ);
|
||||
// project axis points
|
||||
std::vector<Point3f> axisPoints;
|
||||
axisPoints.push_back(Point3f(0, 0, 0));
|
||||
axisPoints.push_back(Point3f(length, 0, 0));
|
||||
axisPoints.push_back(Point3f(0, length, 0));
|
||||
axisPoints.push_back(Point3f(0, 0, length));
|
||||
std::vector<Point3f> imagePointsZ;
|
||||
_projectPoints(axisPoints, _rvec, _tvec, _cameraMatrix, _distCoeffs, imagePointsZ);
|
||||
|
||||
// draw axis lines
|
||||
linePartial(_image, imagePointsZ[0], imagePointsZ[1], Scalar(0, 0, 255), 3);
|
||||
linePartial(_image, imagePointsZ[0], imagePointsZ[2], Scalar(0, 255, 0), 3);
|
||||
linePartial(_image, imagePointsZ[0], imagePointsZ[3], Scalar(255, 0, 0), 3);
|
||||
// draw axis lines
|
||||
linePartial(_image, imagePointsZ[0], imagePointsZ[1], Scalar(0, 0, 255), 3);
|
||||
linePartial(_image, imagePointsZ[0], imagePointsZ[2], Scalar(0, 255, 0), 3);
|
||||
linePartial(_image, imagePointsZ[0], imagePointsZ[3], Scalar(255, 0, 0), 3);
|
||||
}
|
||||
|
||||
static CvMat _cvMat(const cv::Mat& m)
|
||||
{
|
||||
CvMat self;
|
||||
CV_DbgAssert(m.dims <= 2);
|
||||
self = cvMat(m.rows, m.dims == 1 ? 1 : m.cols, m.type(), m.data);
|
||||
self.step = (int)m.step[0];
|
||||
self.type = (self.type & ~cv::Mat::CONTINUOUS_FLAG) | (m.flags & cv::Mat::CONTINUOUS_FLAG);
|
||||
return self;
|
||||
CvMat self;
|
||||
CV_DbgAssert(m.dims <= 2);
|
||||
self = cvMat(m.rows, m.dims == 1 ? 1 : m.cols, m.type(), m.data);
|
||||
self.step = (int)m.step[0];
|
||||
self.type = (self.type & ~cv::Mat::CONTINUOUS_FLAG) | (m.flags & cv::Mat::CONTINUOUS_FLAG);
|
||||
return self;
|
||||
}
|
||||
|
||||
static void _projectPoints( InputArray _opoints,
|
||||
@@ -195,47 +190,47 @@ static void _projectPoints( InputArray _opoints,
|
||||
OutputArray _jacobian,
|
||||
double aspectRatio )
|
||||
{
|
||||
Mat opoints = _opoints.getMat();
|
||||
int npoints = opoints.checkVector(3), depth = opoints.depth();
|
||||
CV_Assert(npoints >= 0 && (depth == CV_32F || depth == CV_64F));
|
||||
Mat opoints = _opoints.getMat();
|
||||
int npoints = opoints.checkVector(3), depth = opoints.depth();
|
||||
CV_Assert(npoints >= 0 && (depth == CV_32F || depth == CV_64F));
|
||||
|
||||
CvMat dpdrot, dpdt, dpdf, dpdc, dpddist;
|
||||
CvMat *pdpdrot=0, *pdpdt=0, *pdpdf=0, *pdpdc=0, *pdpddist=0;
|
||||
CvMat dpdrot, dpdt, dpdf, dpdc, dpddist;
|
||||
CvMat *pdpdrot = 0, *pdpdt = 0, *pdpdf = 0, *pdpdc = 0, *pdpddist = 0;
|
||||
|
||||
CV_Assert( _ipoints.needed() );
|
||||
CV_Assert(_ipoints.needed());
|
||||
|
||||
_ipoints.create(npoints, 1, CV_MAKETYPE(depth, 3), -1, true);
|
||||
Mat imagePoints = _ipoints.getMat();
|
||||
CvMat c_imagePoints = _cvMat(imagePoints);
|
||||
CvMat c_objectPoints = _cvMat(opoints);
|
||||
Mat cameraMatrix = _cameraMatrix.getMat();
|
||||
_ipoints.create(npoints, 1, CV_MAKETYPE(depth, 3), -1, true);
|
||||
Mat imagePoints = _ipoints.getMat();
|
||||
CvMat c_imagePoints = _cvMat(imagePoints);
|
||||
CvMat c_objectPoints = _cvMat(opoints);
|
||||
Mat cameraMatrix = _cameraMatrix.getMat();
|
||||
|
||||
Mat rvec = _rvec.getMat(), tvec = _tvec.getMat();
|
||||
CvMat c_cameraMatrix = _cvMat(cameraMatrix);
|
||||
CvMat c_rvec = _cvMat(rvec), c_tvec = _cvMat(tvec);
|
||||
Mat rvec = _rvec.getMat(), tvec = _tvec.getMat();
|
||||
CvMat c_cameraMatrix = _cvMat(cameraMatrix);
|
||||
CvMat c_rvec = _cvMat(rvec), c_tvec = _cvMat(tvec);
|
||||
|
||||
double dc0buf[5]={0};
|
||||
Mat dc0(5,1,CV_64F,dc0buf);
|
||||
Mat distCoeffs = _distCoeffs.getMat();
|
||||
if( distCoeffs.empty() )
|
||||
distCoeffs = dc0;
|
||||
CvMat c_distCoeffs = _cvMat(distCoeffs);
|
||||
int ndistCoeffs = distCoeffs.rows + distCoeffs.cols - 1;
|
||||
double dc0buf[5] = {0};
|
||||
Mat dc0(5, 1, CV_64F, dc0buf);
|
||||
Mat distCoeffs = _distCoeffs.getMat();
|
||||
if (distCoeffs.empty())
|
||||
distCoeffs = dc0;
|
||||
CvMat c_distCoeffs = _cvMat(distCoeffs);
|
||||
int ndistCoeffs = distCoeffs.rows + distCoeffs.cols - 1;
|
||||
|
||||
Mat jacobian;
|
||||
if( _jacobian.needed() )
|
||||
{
|
||||
_jacobian.create(npoints*2, 3+3+2+2+ndistCoeffs, CV_64F);
|
||||
jacobian = _jacobian.getMat();
|
||||
pdpdrot = &(dpdrot = _cvMat(jacobian.colRange(0, 3)));
|
||||
pdpdt = &(dpdt = _cvMat(jacobian.colRange(3, 6)));
|
||||
pdpdf = &(dpdf = _cvMat(jacobian.colRange(6, 8)));
|
||||
pdpdc = &(dpdc = _cvMat(jacobian.colRange(8, 10)));
|
||||
pdpddist = &(dpddist = _cvMat(jacobian.colRange(10, 10+ndistCoeffs)));
|
||||
}
|
||||
Mat jacobian;
|
||||
if (_jacobian.needed())
|
||||
{
|
||||
_jacobian.create(npoints * 2, 3 + 3 + 2 + 2 + ndistCoeffs, CV_64F);
|
||||
jacobian = _jacobian.getMat();
|
||||
pdpdrot = &(dpdrot = _cvMat(jacobian.colRange(0, 3)));
|
||||
pdpdt = &(dpdt = _cvMat(jacobian.colRange(3, 6)));
|
||||
pdpdf = &(dpdf = _cvMat(jacobian.colRange(6, 8)));
|
||||
pdpdc = &(dpdc = _cvMat(jacobian.colRange(8, 10)));
|
||||
pdpddist = &(dpddist = _cvMat(jacobian.colRange(10, 10 + ndistCoeffs)));
|
||||
}
|
||||
|
||||
_cvProjectPoints2( &c_objectPoints, &c_rvec, &c_tvec, &c_cameraMatrix, &c_distCoeffs,
|
||||
&c_imagePoints, pdpdrot, pdpdt, pdpdf, pdpdc, pdpddist, aspectRatio );
|
||||
_cvProjectPoints2(&c_objectPoints, &c_rvec, &c_tvec, &c_cameraMatrix, &c_distCoeffs,
|
||||
&c_imagePoints, pdpdrot, pdpdt, pdpdf, pdpdc, pdpddist, aspectRatio);
|
||||
}
|
||||
|
||||
namespace _detail
|
||||
|
||||
@@ -4,6 +4,6 @@
|
||||
#include <opencv2/aruco.hpp>
|
||||
|
||||
void _drawPlanarBoard(cv::aruco::Board *_board, cv::Size outSize, cv::OutputArray _img,
|
||||
int marginSize, int borderBits, bool drawAxis);
|
||||
int marginSize, int borderBits, bool drawAxis); // editorconfig-checker-disable-line
|
||||
void _drawAxis(cv::InputOutputArray image, cv::InputArray cameraMatrix, cv::InputArray distCoeffs,
|
||||
cv::InputArray rvec, cv::InputArray tvec, float length);
|
||||
cv::InputArray rvec, cv::InputArray tvec, float length); // editorconfig-checker-disable-line
|
||||
|
||||
@@ -30,8 +30,7 @@ static void param(ros::NodeHandle nh, const std::string& param_name, T& param_va
|
||||
}
|
||||
}
|
||||
|
||||
static void parseCameraInfo(const sensor_msgs::CameraInfoConstPtr& cinfo,
|
||||
cv::Mat& matrix, cv::Mat& dist)
|
||||
static void parseCameraInfo(const sensor_msgs::CameraInfoConstPtr& cinfo, cv::Mat& matrix, cv::Mat& dist)
|
||||
{
|
||||
for (unsigned int i = 0; i < 3; ++i)
|
||||
for (unsigned int j = 0; j < 3; ++j)
|
||||
|
||||
@@ -287,7 +287,7 @@ def check_camera(name):
|
||||
if not optical or not cable:
|
||||
info('%s: custom camera orientation detected', name)
|
||||
else:
|
||||
info('camera is oriented %s, camera cable goes %s', optical, cable)
|
||||
info('camera is oriented %s, camera cable goes %s', optical, cable)
|
||||
|
||||
except tf2_ros.TransformException:
|
||||
failure('cannot transform from base_link to camera frame')
|
||||
@@ -397,8 +397,8 @@ def check_vpe():
|
||||
if delay != 0:
|
||||
failure('EKF2_EV_DELAY is %.2f, but it should be zero', delay)
|
||||
info('EKF2_EVA_NOISE is %.3f, EKF2_EVP_NOISE is %.3f',
|
||||
get_param('EKF2_EVA_NOISE'),
|
||||
get_param('EKF2_EVP_NOISE'))
|
||||
get_param('EKF2_EVA_NOISE'),
|
||||
get_param('EKF2_EVP_NOISE'))
|
||||
|
||||
if not vis:
|
||||
return
|
||||
|
||||
@@ -155,7 +155,7 @@ void handleLocalPosition(const PoseStamped& pose)
|
||||
|
||||
// wait for transform without interrupting publishing setpoints
|
||||
inline bool waitTransform(const string& target, const string& source,
|
||||
const ros::Time& stamp, const ros::Duration& timeout)
|
||||
const ros::Time& stamp, const ros::Duration& timeout) // editorconfig-checker-disable-line
|
||||
{
|
||||
ros::Rate r(100);
|
||||
auto start = ros::Time::now();
|
||||
@@ -484,9 +484,9 @@ inline void checkState()
|
||||
#define ENSURE_FINITE(var) { if (!std::isfinite(var)) throw std::runtime_error(#var " argument cannot be NaN or Inf"); }
|
||||
|
||||
bool serve(enum setpoint_type_t sp_type, float x, float y, float z, float vx, float vy, float vz,
|
||||
float pitch, float roll, float yaw, float pitch_rate, float roll_rate, float yaw_rate,
|
||||
float lat, float lon, float thrust, float speed, string frame_id, bool auto_arm,
|
||||
uint8_t& success, string& message)
|
||||
float pitch, float roll, float yaw, float pitch_rate, float roll_rate, float yaw_rate, // editorconfig-checker-disable-line
|
||||
float lat, float lon, float thrust, float speed, string frame_id, bool auto_arm, // editorconfig-checker-disable-line
|
||||
uint8_t& success, string& message) // editorconfig-checker-disable-line
|
||||
{
|
||||
auto stamp = ros::Time::now();
|
||||
|
||||
|
||||
@@ -1,735 +0,0 @@
|
||||
# Onboard parameters for Vehicle 1
|
||||
#
|
||||
# Stack: PX4 Pro
|
||||
# Vehicle: Multi-Rotor
|
||||
# Version: 1.7.0
|
||||
# Git Revision: cbdb08bb6109c1ea
|
||||
#
|
||||
# Vehicle-Id Component-Id Name Value Type
|
||||
1 1 ATT_ACC_COMP 1 6
|
||||
1 1 ATT_BIAS_MAX 0.050000000745058060 9
|
||||
1 1 ATT_EXT_HDG_M 0 6
|
||||
1 1 ATT_MAG_DECL 0.000000000000000000 9
|
||||
1 1 ATT_MAG_DECL_A 1 6
|
||||
1 1 ATT_W_ACC 0.200000002980232239 9
|
||||
1 1 ATT_W_EXT_HDG 0.100000001490116119 9
|
||||
1 1 ATT_W_GYRO_BIAS 0.100000001490116119 9
|
||||
1 1 ATT_W_MAG 0.100000001490116119 9
|
||||
1 1 BAT_A_PER_V 15.391030311584472656 9
|
||||
1 1 BAT_CAPACITY -1.000000000000000000 9
|
||||
1 1 BAT_CNT_V_CURR 0.000805664050858468 9
|
||||
1 1 BAT_CNT_V_VOLT 0.000805664050858468 9
|
||||
1 1 BAT_CRIT_THR 0.070000000298023224 9
|
||||
1 1 BAT_EMERGEN_THR 0.050000000745058060 9
|
||||
1 1 BAT_LOW_THR 0.150000005960464478 9
|
||||
1 1 BAT_N_CELLS 4 6
|
||||
1 1 BAT_R_INTERNAL -1.000000000000000000 9
|
||||
1 1 BAT_SOURCE 0 6
|
||||
1 1 BAT_V_CHARGED 4.199999809265136719 9
|
||||
1 1 BAT_V_DIV 10.887768745422363281 9
|
||||
1 1 BAT_V_EMPTY 3.400000095367431641 9
|
||||
1 1 BAT_V_LOAD_DROP 0.300000011920928955 9
|
||||
1 1 BAT_V_OFFS_CURR 0.000000000000000000 9
|
||||
1 1 CAL_ACC0_EN 1 6
|
||||
1 1 CAL_ACC0_ID 1246218 6
|
||||
1 1 CAL_ACC0_XOFF 0.081070423126220703 9
|
||||
1 1 CAL_ACC0_XSCALE 0.996176421642303467 9
|
||||
1 1 CAL_ACC0_YOFF -0.182177066802978516 9
|
||||
1 1 CAL_ACC0_YSCALE 1.000774979591369629 9
|
||||
1 1 CAL_ACC0_ZOFF 0.506614208221435547 9
|
||||
1 1 CAL_ACC0_ZSCALE 0.991645038127899170 9
|
||||
1 1 CAL_ACC1_EN 1 6
|
||||
1 1 CAL_ACC1_ID 1114634 6
|
||||
1 1 CAL_ACC1_XOFF 0.864228248596191406 9
|
||||
1 1 CAL_ACC1_XSCALE 1.004844427108764648 9
|
||||
1 1 CAL_ACC1_YOFF 0.980560302734375000 9
|
||||
1 1 CAL_ACC1_YSCALE 0.980703771114349365 9
|
||||
1 1 CAL_ACC1_ZOFF 0.873121738433837891 9
|
||||
1 1 CAL_ACC1_ZSCALE 0.989114820957183838 9
|
||||
1 1 CAL_ACC2_XOFF 0.000000000000000000 9
|
||||
1 1 CAL_ACC2_XSCALE 1.000000000000000000 9
|
||||
1 1 CAL_ACC2_YOFF 0.000000000000000000 9
|
||||
1 1 CAL_ACC2_YSCALE 1.000000000000000000 9
|
||||
1 1 CAL_ACC2_ZOFF 0.000000000000000000 9
|
||||
1 1 CAL_ACC2_ZSCALE 1.000000000000000000 9
|
||||
1 1 CAL_AIR_CMODEL 0 6
|
||||
1 1 CAL_AIR_TUBED_MM 1.500000000000000000 9
|
||||
1 1 CAL_AIR_TUBELEN 0.200000002980232239 9
|
||||
1 1 CAL_GYRO0_EN 1 6
|
||||
1 1 CAL_GYRO0_ID 2163722 6
|
||||
1 1 CAL_GYRO0_XOFF 0.013700588606297970 9
|
||||
1 1 CAL_GYRO0_XSCALE 1.000000000000000000 9
|
||||
1 1 CAL_GYRO0_YOFF 0.049494847655296326 9
|
||||
1 1 CAL_GYRO0_YSCALE 1.000000000000000000 9
|
||||
1 1 CAL_GYRO0_ZOFF -0.032555881887674332 9
|
||||
1 1 CAL_GYRO0_ZSCALE 1.000000000000000000 9
|
||||
1 1 CAL_GYRO1_EN 1 6
|
||||
1 1 CAL_GYRO1_ID 2228490 6
|
||||
1 1 CAL_GYRO1_XOFF -0.007464688271284103 9
|
||||
1 1 CAL_GYRO1_XSCALE 1.000000000000000000 9
|
||||
1 1 CAL_GYRO1_YOFF 0.008172192610800266 9
|
||||
1 1 CAL_GYRO1_YSCALE 1.000000000000000000 9
|
||||
1 1 CAL_GYRO1_ZOFF -0.010663406923413277 9
|
||||
1 1 CAL_GYRO1_ZSCALE 1.000000000000000000 9
|
||||
1 1 CAL_GYRO2_XOFF 0.000000000000000000 9
|
||||
1 1 CAL_GYRO2_XSCALE 1.000000000000000000 9
|
||||
1 1 CAL_GYRO2_YOFF 0.000000000000000000 9
|
||||
1 1 CAL_GYRO2_YSCALE 1.000000000000000000 9
|
||||
1 1 CAL_GYRO2_ZOFF 0.000000000000000000 9
|
||||
1 1 CAL_GYRO2_ZSCALE 1.000000000000000000 9
|
||||
1 1 CAL_MAG0_EN 1 6
|
||||
1 1 CAL_MAG0_ID 131594 6
|
||||
1 1 CAL_MAG0_ROT -1 6
|
||||
1 1 CAL_MAG0_XOFF -0.020210459828376770 9
|
||||
1 1 CAL_MAG0_XSCALE 1.033145427703857422 9
|
||||
1 1 CAL_MAG0_YOFF 0.100117556750774384 9
|
||||
1 1 CAL_MAG0_YSCALE 1.017574071884155273 9
|
||||
1 1 CAL_MAG0_ZOFF -0.113783776760101318 9
|
||||
1 1 CAL_MAG0_ZSCALE 0.933741152286529541 9
|
||||
1 1 CAL_MAG1_ID 0 6
|
||||
1 1 CAL_MAG1_ROT -1 6
|
||||
1 1 CAL_MAG1_XOFF 0.000000000000000000 9
|
||||
1 1 CAL_MAG1_XSCALE 1.000000000000000000 9
|
||||
1 1 CAL_MAG1_YOFF 0.000000000000000000 9
|
||||
1 1 CAL_MAG1_YSCALE 1.000000000000000000 9
|
||||
1 1 CAL_MAG1_ZOFF 0.000000000000000000 9
|
||||
1 1 CAL_MAG1_ZSCALE 1.000000000000000000 9
|
||||
1 1 CAL_MAG2_ID 0 6
|
||||
1 1 CAL_MAG2_ROT -1 6
|
||||
1 1 CAL_MAG2_XOFF 0.000000000000000000 9
|
||||
1 1 CAL_MAG2_XSCALE 1.000000000000000000 9
|
||||
1 1 CAL_MAG2_YOFF 0.000000000000000000 9
|
||||
1 1 CAL_MAG2_YSCALE 1.000000000000000000 9
|
||||
1 1 CAL_MAG2_ZOFF 0.000000000000000000 9
|
||||
1 1 CAL_MAG2_ZSCALE 1.000000000000000000 9
|
||||
1 1 CAL_MAG3_ID 0 6
|
||||
1 1 CAL_MAG3_ROT -1 6
|
||||
1 1 CAL_MAG3_XOFF 0.000000000000000000 9
|
||||
1 1 CAL_MAG3_XSCALE 1.000000000000000000 9
|
||||
1 1 CAL_MAG3_YOFF 0.000000000000000000 9
|
||||
1 1 CAL_MAG3_YSCALE 1.000000000000000000 9
|
||||
1 1 CAL_MAG3_ZOFF 0.000000000000000000 9
|
||||
1 1 CAL_MAG3_ZSCALE 1.000000000000000000 9
|
||||
1 1 CAL_MAG_SIDES 63 6
|
||||
1 1 CBRK_AIRSPD_CHK 0 6
|
||||
1 1 CBRK_ENGINEFAIL 284953 6
|
||||
1 1 CBRK_FLIGHTTERM 121212 6
|
||||
1 1 CBRK_GPSFAIL 240024 6
|
||||
1 1 CBRK_IO_SAFETY 22027 6
|
||||
1 1 CBRK_RATE_CTRL 0 6
|
||||
1 1 CBRK_SUPPLY_CHK 894281 6
|
||||
1 1 CBRK_USB_CHK 197848 6
|
||||
1 1 CBRK_VELPOSERR 0 6
|
||||
1 1 COM_ARM_AUTH 256010 6
|
||||
1 1 COM_ARM_EKF_AB 0.004999999888241291 9
|
||||
1 1 COM_ARM_EKF_GB 0.000869999988935888 9
|
||||
1 1 COM_ARM_EKF_HGT 1.000000000000000000 9
|
||||
1 1 COM_ARM_EKF_POS 0.500000000000000000 9
|
||||
1 1 COM_ARM_EKF_VEL 0.500000000000000000 9
|
||||
1 1 COM_ARM_EKF_YAW 0.500000000000000000 9
|
||||
1 1 COM_ARM_IMU_ACC 0.699999988079071045 9
|
||||
1 1 COM_ARM_IMU_GYR 0.200000002980232239 9
|
||||
1 1 COM_ARM_MIS_REQ 0 6
|
||||
1 1 COM_ARM_SWISBTN 0 6
|
||||
1 1 COM_ARM_WO_GPS 1 6
|
||||
1 1 COM_DISARM_LAND 1 6
|
||||
1 1 COM_DL_LOSS_T 10 6
|
||||
1 1 COM_DL_REG_T 0 6
|
||||
1 1 COM_EF_C2T 5.000000000000000000 9
|
||||
1 1 COM_EF_THROT 0.500000000000000000 9
|
||||
1 1 COM_EF_TIME 10.000000000000000000 9
|
||||
1 1 COM_FLIGHT_UUID 34 6
|
||||
1 1 COM_FLTMODE1 8 6
|
||||
1 1 COM_FLTMODE2 -1 6
|
||||
1 1 COM_FLTMODE3 -1 6
|
||||
1 1 COM_FLTMODE4 1 6
|
||||
1 1 COM_FLTMODE5 -1 6
|
||||
1 1 COM_FLTMODE6 2 6
|
||||
1 1 COM_HOME_H_T 5.000000000000000000 9
|
||||
1 1 COM_HOME_V_T 10.000000000000000000 9
|
||||
1 1 COM_LOW_BAT_ACT 2 6
|
||||
1 1 COM_OBL_ACT 0 6
|
||||
1 1 COM_OBL_RC_ACT 0 6
|
||||
1 1 COM_OF_LOSS_T 0.000000000000000000 9
|
||||
1 1 COM_POSCTL_NAVL 0 6
|
||||
1 1 COM_POS_FS_DELAY 1 6
|
||||
1 1 COM_POS_FS_GAIN 10 6
|
||||
1 1 COM_POS_FS_PROB 30 6
|
||||
1 1 COM_RC_ARM_HYST 1000 6
|
||||
1 1 COM_RC_IN_MODE 0 6
|
||||
1 1 COM_RC_LOSS_T 0.500000000000000000 9
|
||||
1 1 COM_RC_OVERRIDE 0 6
|
||||
1 1 COM_RC_STICK_OV 12.000000000000000000 9
|
||||
1 1 FW_CLMBOUT_DIFF 10.000000000000000000 9
|
||||
1 1 FW_MAN_P_SC 1.000000000000000000 9
|
||||
1 1 FW_MAN_R_SC 1.000000000000000000 9
|
||||
1 1 FW_MAN_Y_SC 1.000000000000000000 9
|
||||
1 1 GF_ACTION 1 6
|
||||
1 1 GF_ALTMODE 0 6
|
||||
1 1 GF_COUNT -1 6
|
||||
1 1 GF_MAX_HOR_DIST 0.000000000000000000 9
|
||||
1 1 GF_MAX_VER_DIST 0.000000000000000000 9
|
||||
1 1 GF_SOURCE 0 6
|
||||
1 1 GPS_DUMP_COMM 0 6
|
||||
1 1 GPS_UBX_DYNMODEL 7 6
|
||||
1 1 IMU_ACCEL_CUTOFF 30.000000000000000000 9
|
||||
1 1 IMU_GYRO_CUTOFF 30.000000000000000000 9
|
||||
1 1 LED_RGB_MAXBRT 15 6
|
||||
1 1 LNDMC_ALT_MAX 10000.000000000000000000 9
|
||||
1 1 LNDMC_FFALL_THR 2.000000000000000000 9
|
||||
1 1 LNDMC_FFALL_TTRI 0.300000011920928955 9
|
||||
1 1 LNDMC_ROT_MAX 20.000000000000000000 9
|
||||
1 1 LNDMC_THR_RANGE 0.100000001490116119 9
|
||||
1 1 LNDMC_XY_VEL_MAX 1.500000000000000000 9
|
||||
1 1 LNDMC_Z_VEL_MAX 0.500000000000000000 9
|
||||
1 1 LND_FLIGHT_T_HI 0 6
|
||||
1 1 LND_FLIGHT_T_LO 959960540 6
|
||||
1 1 LPE_ACC_XY 0.012000000104308128 9
|
||||
1 1 LPE_ACC_Z 0.019999999552965164 9
|
||||
1 1 LPE_BAR_Z 3.000000000000000000 9
|
||||
1 1 LPE_EPH_MAX 3.000000000000000000 9
|
||||
1 1 LPE_EPV_MAX 5.000000000000000000 9
|
||||
1 1 LPE_FAKE_ORIGIN 1 6
|
||||
1 1 LPE_FGYRO_HP 0.001000000047497451 9
|
||||
1 1 LPE_FLW_OFF_Z 0.000000000000000000 9
|
||||
1 1 LPE_FLW_QMIN 150 6
|
||||
1 1 LPE_FLW_R 7.000000000000000000 9
|
||||
1 1 LPE_FLW_RR 7.000000000000000000 9
|
||||
1 1 LPE_FLW_SCALE 1.299999952316284180 9
|
||||
1 1 LPE_FUSION 28 6
|
||||
1 1 LPE_GPS_DELAY 0.289999991655349731 9
|
||||
1 1 LPE_GPS_VXY 0.250000000000000000 9
|
||||
1 1 LPE_GPS_VZ 0.250000000000000000 9
|
||||
1 1 LPE_GPS_XY 1.000000000000000000 9
|
||||
1 1 LPE_GPS_Z 3.000000000000000000 9
|
||||
1 1 LPE_LAND_VXY 0.050000000745058060 9
|
||||
1 1 LPE_LAND_Z 0.029999999329447746 9
|
||||
1 1 LPE_LAT 47.397743225097656250 9
|
||||
1 1 LPE_LDR_OFF_Z 0.000000000000000000 9
|
||||
1 1 LPE_LDR_Z 0.029999999329447746 9
|
||||
1 1 LPE_LON 8.545594215393066406 9
|
||||
1 1 LPE_PN_B 0.001000000047497451 9
|
||||
1 1 LPE_PN_P 0.100000001490116119 9
|
||||
1 1 LPE_PN_T 0.001000000047497451 9
|
||||
1 1 LPE_PN_V 0.100000001490116119 9
|
||||
1 1 LPE_SNR_OFF_Z 0.000000000000000000 9
|
||||
1 1 LPE_SNR_Z 0.050000000745058060 9
|
||||
1 1 LPE_T_MAX_GRADE 1.000000000000000000 9
|
||||
1 1 LPE_VIC_P 0.001000000047497451 9
|
||||
1 1 LPE_VIS_DELAY 0.000000000000000000 9
|
||||
1 1 LPE_VIS_XY 0.100000001490116119 9
|
||||
1 1 LPE_VIS_Z 0.100000001490116119 9
|
||||
1 1 LPE_VXY_PUB 0.300000011920928955 9
|
||||
1 1 LPE_X_LP 5.000000000000000000 9
|
||||
1 1 LPE_Z_PUB 1.000000000000000000 9
|
||||
1 1 MAV_BROADCAST 0 6
|
||||
1 1 MAV_COMP_ID 1 6
|
||||
1 1 MAV_FWDEXTSP 1 6
|
||||
1 1 MAV_PROTO_VER 0 6
|
||||
1 1 MAV_RADIO_ID 0 6
|
||||
1 1 MAV_SYS_ID 1 6
|
||||
1 1 MAV_TEST_PAR 1 6
|
||||
1 1 MAV_TYPE 2 6
|
||||
1 1 MAV_USEHILGPS 0 6
|
||||
1 1 MC_ACRO_EXPO 0.689999997615814209 9
|
||||
1 1 MC_ACRO_P_MAX 360.000000000000000000 9
|
||||
1 1 MC_ACRO_R_MAX 360.000000000000000000 9
|
||||
1 1 MC_ACRO_SUPEXPO 0.699999988079071045 9
|
||||
1 1 MC_ACRO_Y_MAX 360.000000000000000000 9
|
||||
1 1 MC_BAT_SCALE_EN 0 6
|
||||
1 1 MC_PITCHRATE_D 0.003000000026077032 9
|
||||
1 1 MC_PITCHRATE_FF 0.000000000000000000 9
|
||||
1 1 MC_PITCHRATE_I 0.045000001788139343 9
|
||||
1 1 MC_PITCHRATE_MAX 220.000000000000000000 9
|
||||
1 1 MC_PITCHRATE_P 0.144999995827674866 9
|
||||
1 1 MC_PITCH_P 6.500000000000000000 9
|
||||
1 1 MC_PITCH_TC 0.200000002980232239 9
|
||||
1 1 MC_PR_INT_LIM 0.300000011920928955 9
|
||||
1 1 MC_RATT_TH 0.800000011920928955 9
|
||||
1 1 MC_ROLLRATE_D 0.003000000026077032 9
|
||||
1 1 MC_ROLLRATE_FF 0.000000000000000000 9
|
||||
1 1 MC_ROLLRATE_I 0.045000001788139343 9
|
||||
1 1 MC_ROLLRATE_MAX 220.000000000000000000 9
|
||||
1 1 MC_ROLLRATE_P 0.144999995827674866 9
|
||||
1 1 MC_ROLL_P 6.500000000000000000 9
|
||||
1 1 MC_ROLL_TC 0.200000002980232239 9
|
||||
1 1 MC_RR_INT_LIM 0.300000011920928955 9
|
||||
1 1 MC_TPA_BREAK_D 1.000000000000000000 9
|
||||
1 1 MC_TPA_BREAK_I 1.000000000000000000 9
|
||||
1 1 MC_TPA_BREAK_P 1.000000000000000000 9
|
||||
1 1 MC_TPA_RATE_D 0.000000000000000000 9
|
||||
1 1 MC_TPA_RATE_I 0.000000000000000000 9
|
||||
1 1 MC_TPA_RATE_P 0.000000000000000000 9
|
||||
1 1 MC_YAWRATE_D 0.000000000000000000 9
|
||||
1 1 MC_YAWRATE_FF 0.000000000000000000 9
|
||||
1 1 MC_YAWRATE_I 0.100000001490116119 9
|
||||
1 1 MC_YAWRATE_MAX 200.000000000000000000 9
|
||||
1 1 MC_YAWRATE_P 0.200000002980232239 9
|
||||
1 1 MC_YAWRAUTO_MAX 45.000000000000000000 9
|
||||
1 1 MC_YAW_FF 0.500000000000000000 9
|
||||
1 1 MC_YAW_P 2.799999952316284180 9
|
||||
1 1 MC_YR_INT_LIM 0.300000011920928955 9
|
||||
1 1 MIS_ALTMODE 1 6
|
||||
1 1 MIS_DIST_1WP 900.000000000000000000 9
|
||||
1 1 MIS_DIST_WPS 900.000000000000000000 9
|
||||
1 1 MIS_LTRMIN_ALT -1.000000000000000000 9
|
||||
1 1 MIS_ONBOARD_EN 1 6
|
||||
1 1 MIS_TAKEOFF_ALT 2.500000000000000000 9
|
||||
1 1 MIS_YAWMODE 1 6
|
||||
1 1 MIS_YAW_ERR 12.000000000000000000 9
|
||||
1 1 MIS_YAW_TMT -1.000000000000000000 9
|
||||
1 1 MNT_MODE_IN -1 6
|
||||
1 1 MOT_SLEW_MAX 0.000000000000000000 9
|
||||
1 1 MPC_ACC_DOWN_MAX 5.000000000000000000 9
|
||||
1 1 MPC_ACC_HOR 5.000000000000000000 9
|
||||
1 1 MPC_ACC_HOR_MAX 5.000000000000000000 9
|
||||
1 1 MPC_ACC_UP_MAX 5.000000000000000000 9
|
||||
1 1 MPC_ALT_MODE 0 6
|
||||
1 1 MPC_CRUISE_90 3.000000000000000000 9
|
||||
1 1 MPC_DEC_HOR_SLOW 5.000000000000000000 9
|
||||
1 1 MPC_HOLD_DZ 0.100000001490116119 9
|
||||
1 1 MPC_HOLD_MAX_XY 0.800000011920928955 9
|
||||
1 1 MPC_HOLD_MAX_Z 0.600000023841857910 9
|
||||
1 1 MPC_JERK_MAX 0.000000000000000000 9
|
||||
1 1 MPC_JERK_MIN 1.000000000000000000 9
|
||||
1 1 MPC_LAND_ALT1 10.000000000000000000 9
|
||||
1 1 MPC_LAND_ALT2 5.000000000000000000 9
|
||||
1 1 MPC_LAND_SPEED 0.500000000000000000 9
|
||||
1 1 MPC_MANTHR_MAX 0.899999976158142090 9
|
||||
1 1 MPC_MANTHR_MIN 0.079999998211860657 9
|
||||
1 1 MPC_MAN_TILT_MAX 35.000000000000000000 9
|
||||
1 1 MPC_MAN_Y_MAX 200.000000000000000000 9
|
||||
1 1 MPC_THR_HOVER 0.500000000000000000 9
|
||||
1 1 MPC_THR_MAX 0.899999976158142090 9
|
||||
1 1 MPC_THR_MIN 0.119999997317790985 9
|
||||
1 1 MPC_TILTMAX_AIR 45.000000000000000000 9
|
||||
1 1 MPC_TILTMAX_LND 12.000000000000000000 9
|
||||
1 1 MPC_TKO_RAMP_T 0.400000005960464478 9
|
||||
1 1 MPC_TKO_SPEED 1.500000000000000000 9
|
||||
1 1 MPC_VELD_LP 5.000000000000000000 9
|
||||
1 1 MPC_VEL_MANUAL 10.000000000000000000 9
|
||||
1 1 MPC_XY_CRUISE 5.000000000000000000 9
|
||||
1 1 MPC_XY_MAN_EXPO 0.000000000000000000 9
|
||||
1 1 MPC_XY_P 0.949999988079071045 9
|
||||
1 1 MPC_XY_VEL_D 0.009999999776482582 9
|
||||
1 1 MPC_XY_VEL_I 0.019999999552965164 9
|
||||
1 1 MPC_XY_VEL_MAX 8.000000000000000000 9
|
||||
1 1 MPC_XY_VEL_P 0.090000003576278687 9
|
||||
1 1 MPC_Z_MAN_EXPO 0.000000000000000000 9
|
||||
1 1 MPC_Z_P 1.000000000000000000 9
|
||||
1 1 MPC_Z_VEL_D 0.000000000000000000 9
|
||||
1 1 MPC_Z_VEL_I 0.019999999552965164 9
|
||||
1 1 MPC_Z_VEL_MAX_DN 1.000000000000000000 9
|
||||
1 1 MPC_Z_VEL_MAX_UP 3.000000000000000000 9
|
||||
1 1 MPC_Z_VEL_P 0.200000002980232239 9
|
||||
1 1 NAV_ACC_RAD 2.000000000000000000 9
|
||||
1 1 NAV_AH_ALT 600.000000000000000000 9
|
||||
1 1 NAV_AH_LAT -265847810 6
|
||||
1 1 NAV_AH_LON 1518423250 6
|
||||
1 1 NAV_DLL_ACT 0 6
|
||||
1 1 NAV_DLL_AH_T 120.000000000000000000 9
|
||||
1 1 NAV_DLL_CHSK 0 6
|
||||
1 1 NAV_DLL_CH_ALT 600.000000000000000000 9
|
||||
1 1 NAV_DLL_CH_LAT -266072120 6
|
||||
1 1 NAV_DLL_CH_LON 1518453890 6
|
||||
1 1 NAV_DLL_CH_T 120.000000000000000000 9
|
||||
1 1 NAV_DLL_N 2 6
|
||||
1 1 NAV_FORCE_VT 1 6
|
||||
1 1 NAV_FT_DST 8.000000000000000000 9
|
||||
1 1 NAV_FT_FS 1 6
|
||||
1 1 NAV_FT_RS 0.500000000000000000 9
|
||||
1 1 NAV_FW_ALT_RAD 10.000000000000000000 9
|
||||
1 1 NAV_GPSF_LT 30.000000000000000000 9
|
||||
1 1 NAV_GPSF_P 0.000000000000000000 9
|
||||
1 1 NAV_GPSF_R 15.000000000000000000 9
|
||||
1 1 NAV_GPSF_TR 0.699999988079071045 9
|
||||
1 1 NAV_LOITER_RAD 50.000000000000000000 9
|
||||
1 1 NAV_MC_ALT_RAD 0.800000011920928955 9
|
||||
1 1 NAV_MIN_FT_HT 8.000000000000000000 9
|
||||
1 1 NAV_RCL_ACT 3 6
|
||||
1 1 NAV_RCL_LT 120.000000000000000000 9
|
||||
1 1 NAV_TRAFF_AVOID 1 6
|
||||
1 1 PWM_AUX_DIS1 -1 6
|
||||
1 1 PWM_AUX_DIS2 -1 6
|
||||
1 1 PWM_AUX_DIS3 -1 6
|
||||
1 1 PWM_AUX_DIS4 -1 6
|
||||
1 1 PWM_AUX_DIS5 -1 6
|
||||
1 1 PWM_AUX_DIS6 -1 6
|
||||
1 1 PWM_AUX_DISARMED 1500 6
|
||||
1 1 PWM_AUX_MAX 2000 6
|
||||
1 1 PWM_AUX_MIN 1000 6
|
||||
1 1 PWM_AUX_REV1 0 6
|
||||
1 1 PWM_AUX_REV2 0 6
|
||||
1 1 PWM_AUX_REV3 0 6
|
||||
1 1 PWM_AUX_REV4 0 6
|
||||
1 1 PWM_AUX_REV5 0 6
|
||||
1 1 PWM_AUX_REV6 0 6
|
||||
1 1 PWM_AUX_TRIM1 0.000000000000000000 9
|
||||
1 1 PWM_AUX_TRIM2 0.000000000000000000 9
|
||||
1 1 PWM_AUX_TRIM3 0.000000000000000000 9
|
||||
1 1 PWM_AUX_TRIM4 0.000000000000000000 9
|
||||
1 1 PWM_AUX_TRIM5 0.000000000000000000 9
|
||||
1 1 PWM_AUX_TRIM6 0.000000000000000000 9
|
||||
1 1 PWM_DISARMED 900 6
|
||||
1 1 PWM_MAIN_DIS1 -1 6
|
||||
1 1 PWM_MAIN_DIS2 -1 6
|
||||
1 1 PWM_MAIN_DIS3 -1 6
|
||||
1 1 PWM_MAIN_DIS4 -1 6
|
||||
1 1 PWM_MAIN_DIS5 -1 6
|
||||
1 1 PWM_MAIN_DIS6 -1 6
|
||||
1 1 PWM_MAIN_DIS7 -1 6
|
||||
1 1 PWM_MAIN_DIS8 -1 6
|
||||
1 1 PWM_MAIN_REV1 0 6
|
||||
1 1 PWM_MAIN_REV2 0 6
|
||||
1 1 PWM_MAIN_REV3 0 6
|
||||
1 1 PWM_MAIN_REV4 0 6
|
||||
1 1 PWM_MAIN_REV5 0 6
|
||||
1 1 PWM_MAIN_REV6 0 6
|
||||
1 1 PWM_MAIN_REV7 0 6
|
||||
1 1 PWM_MAIN_REV8 0 6
|
||||
1 1 PWM_MAIN_TRIM1 0.000000000000000000 9
|
||||
1 1 PWM_MAIN_TRIM2 0.000000000000000000 9
|
||||
1 1 PWM_MAIN_TRIM3 0.000000000000000000 9
|
||||
1 1 PWM_MAIN_TRIM4 0.000000000000000000 9
|
||||
1 1 PWM_MAIN_TRIM5 0.000000000000000000 9
|
||||
1 1 PWM_MAIN_TRIM6 0.000000000000000000 9
|
||||
1 1 PWM_MAIN_TRIM7 0.000000000000000000 9
|
||||
1 1 PWM_MAIN_TRIM8 0.000000000000000000 9
|
||||
1 1 PWM_MAX 1950 6
|
||||
1 1 PWM_MIN 1075 6
|
||||
1 1 PWM_RATE 400 6
|
||||
1 1 PWM_SBUS_MODE 0 6
|
||||
1 1 RC10_DZ 0.000000000000000000 9
|
||||
1 1 RC10_MAX 2000.000000000000000000 9
|
||||
1 1 RC10_MIN 1000.000000000000000000 9
|
||||
1 1 RC10_REV 1.000000000000000000 9
|
||||
1 1 RC10_TRIM 1500.000000000000000000 9
|
||||
1 1 RC11_DZ 0.000000000000000000 9
|
||||
1 1 RC11_MAX 2000.000000000000000000 9
|
||||
1 1 RC11_MIN 1000.000000000000000000 9
|
||||
1 1 RC11_REV 1.000000000000000000 9
|
||||
1 1 RC11_TRIM 1500.000000000000000000 9
|
||||
1 1 RC12_DZ 0.000000000000000000 9
|
||||
1 1 RC12_MAX 2000.000000000000000000 9
|
||||
1 1 RC12_MIN 1000.000000000000000000 9
|
||||
1 1 RC12_REV 1.000000000000000000 9
|
||||
1 1 RC12_TRIM 1500.000000000000000000 9
|
||||
1 1 RC13_DZ 0.000000000000000000 9
|
||||
1 1 RC13_MAX 2000.000000000000000000 9
|
||||
1 1 RC13_MIN 1000.000000000000000000 9
|
||||
1 1 RC13_REV 1.000000000000000000 9
|
||||
1 1 RC13_TRIM 1500.000000000000000000 9
|
||||
1 1 RC14_DZ 0.000000000000000000 9
|
||||
1 1 RC14_MAX 2000.000000000000000000 9
|
||||
1 1 RC14_MIN 1000.000000000000000000 9
|
||||
1 1 RC14_REV 1.000000000000000000 9
|
||||
1 1 RC14_TRIM 1500.000000000000000000 9
|
||||
1 1 RC15_DZ 0.000000000000000000 9
|
||||
1 1 RC15_MAX 2000.000000000000000000 9
|
||||
1 1 RC15_MIN 1000.000000000000000000 9
|
||||
1 1 RC15_REV 1.000000000000000000 9
|
||||
1 1 RC15_TRIM 1500.000000000000000000 9
|
||||
1 1 RC16_DZ 0.000000000000000000 9
|
||||
1 1 RC16_MAX 2000.000000000000000000 9
|
||||
1 1 RC16_MIN 1000.000000000000000000 9
|
||||
1 1 RC16_REV 1.000000000000000000 9
|
||||
1 1 RC16_TRIM 1500.000000000000000000 9
|
||||
1 1 RC17_DZ 0.000000000000000000 9
|
||||
1 1 RC17_MAX 2000.000000000000000000 9
|
||||
1 1 RC17_MIN 1000.000000000000000000 9
|
||||
1 1 RC17_REV 1.000000000000000000 9
|
||||
1 1 RC17_TRIM 1500.000000000000000000 9
|
||||
1 1 RC18_DZ 0.000000000000000000 9
|
||||
1 1 RC18_MAX 2000.000000000000000000 9
|
||||
1 1 RC18_MIN 1000.000000000000000000 9
|
||||
1 1 RC18_REV 1.000000000000000000 9
|
||||
1 1 RC18_TRIM 1500.000000000000000000 9
|
||||
1 1 RC1_DZ 10.000000000000000000 9
|
||||
1 1 RC1_MAX 1999.000000000000000000 9
|
||||
1 1 RC1_MIN 1000.000000000000000000 9
|
||||
1 1 RC1_REV 1.000000000000000000 9
|
||||
1 1 RC1_TRIM 1499.000000000000000000 9
|
||||
1 1 RC2_DZ 10.000000000000000000 9
|
||||
1 1 RC2_MAX 2000.000000000000000000 9
|
||||
1 1 RC2_MIN 1001.000000000000000000 9
|
||||
1 1 RC2_REV 1.000000000000000000 9
|
||||
1 1 RC2_TRIM 1499.000000000000000000 9
|
||||
1 1 RC3_DZ 10.000000000000000000 9
|
||||
1 1 RC3_MAX 1989.000000000000000000 9
|
||||
1 1 RC3_MIN 1000.000000000000000000 9
|
||||
1 1 RC3_REV 1.000000000000000000 9
|
||||
1 1 RC3_TRIM 1000.000000000000000000 9
|
||||
1 1 RC4_DZ 10.000000000000000000 9
|
||||
1 1 RC4_MAX 1999.000000000000000000 9
|
||||
1 1 RC4_MIN 1018.000000000000000000 9
|
||||
1 1 RC4_REV 1.000000000000000000 9
|
||||
1 1 RC4_TRIM 1501.000000000000000000 9
|
||||
1 1 RC5_DZ 10.000000000000000000 9
|
||||
1 1 RC5_MAX 2000.000000000000000000 9
|
||||
1 1 RC5_MIN 1000.000000000000000000 9
|
||||
1 1 RC5_REV 1.000000000000000000 9
|
||||
1 1 RC5_TRIM 1500.000000000000000000 9
|
||||
1 1 RC6_DZ 10.000000000000000000 9
|
||||
1 1 RC6_MAX 2000.000000000000000000 9
|
||||
1 1 RC6_MIN 1000.000000000000000000 9
|
||||
1 1 RC6_REV 1.000000000000000000 9
|
||||
1 1 RC6_TRIM 1500.000000000000000000 9
|
||||
1 1 RC7_DZ 10.000000000000000000 9
|
||||
1 1 RC7_MAX 2000.000000000000000000 9
|
||||
1 1 RC7_MIN 1000.000000000000000000 9
|
||||
1 1 RC7_REV 1.000000000000000000 9
|
||||
1 1 RC7_TRIM 1500.000000000000000000 9
|
||||
1 1 RC8_DZ 10.000000000000000000 9
|
||||
1 1 RC8_MAX 2000.000000000000000000 9
|
||||
1 1 RC8_MIN 1000.000000000000000000 9
|
||||
1 1 RC8_REV 1.000000000000000000 9
|
||||
1 1 RC8_TRIM 1500.000000000000000000 9
|
||||
1 1 RC9_DZ 0.000000000000000000 9
|
||||
1 1 RC9_MAX 2000.000000000000000000 9
|
||||
1 1 RC9_MIN 1000.000000000000000000 9
|
||||
1 1 RC9_REV 1.000000000000000000 9
|
||||
1 1 RC9_TRIM 1500.000000000000000000 9
|
||||
1 1 RC_ACRO_TH 0.500000000000000000 9
|
||||
1 1 RC_ARMSWITCH_TH 0.250000000000000000 9
|
||||
1 1 RC_ASSIST_TH 0.250000000000000000 9
|
||||
1 1 RC_AUTO_TH 0.750000000000000000 9
|
||||
1 1 RC_CHAN_CNT 8 6
|
||||
1 1 RC_FAILS_THR 0 6
|
||||
1 1 RC_FLT_CUTOFF 10.000000000000000000 9
|
||||
1 1 RC_FLT_SMP_RATE 50.000000000000000000 9
|
||||
1 1 RC_GEAR_TH 0.250000000000000000 9
|
||||
1 1 RC_KILLSWITCH_TH 0.250000000000000000 9
|
||||
1 1 RC_LOITER_TH 0.500000000000000000 9
|
||||
1 1 RC_MAN_TH 0.500000000000000000 9
|
||||
1 1 RC_MAP_ACRO_SW 0 6
|
||||
1 1 RC_MAP_ARM_SW 0 6
|
||||
1 1 RC_MAP_AUX1 0 6
|
||||
1 1 RC_MAP_AUX2 0 6
|
||||
1 1 RC_MAP_AUX3 0 6
|
||||
1 1 RC_MAP_AUX4 0 6
|
||||
1 1 RC_MAP_AUX5 0 6
|
||||
1 1 RC_MAP_FAILSAFE 0 6
|
||||
1 1 RC_MAP_FLAPS 0 6
|
||||
1 1 RC_MAP_FLTMODE 5 6
|
||||
1 1 RC_MAP_GEAR_SW 0 6
|
||||
1 1 RC_MAP_KILL_SW 6 6
|
||||
1 1 RC_MAP_LOITER_SW 0 6
|
||||
1 1 RC_MAP_MAN_SW 0 6
|
||||
1 1 RC_MAP_MODE_SW 0 6
|
||||
1 1 RC_MAP_OFFB_SW 0 6
|
||||
1 1 RC_MAP_PARAM1 0 6
|
||||
1 1 RC_MAP_PARAM2 0 6
|
||||
1 1 RC_MAP_PARAM3 0 6
|
||||
1 1 RC_MAP_PITCH 2 6
|
||||
1 1 RC_MAP_POSCTL_SW 0 6
|
||||
1 1 RC_MAP_RATT_SW 0 6
|
||||
1 1 RC_MAP_RETURN_SW 0 6
|
||||
1 1 RC_MAP_ROLL 1 6
|
||||
1 1 RC_MAP_STAB_SW 0 6
|
||||
1 1 RC_MAP_THROTTLE 3 6
|
||||
1 1 RC_MAP_TRANS_SW 0 6
|
||||
1 1 RC_MAP_YAW 4 6
|
||||
1 1 RC_OFFB_TH 0.500000000000000000 9
|
||||
1 1 RC_POSCTL_TH 0.500000000000000000 9
|
||||
1 1 RC_RATT_TH 0.500000000000000000 9
|
||||
1 1 RC_RETURN_TH 0.500000000000000000 9
|
||||
1 1 RC_RSSI_PWM_CHAN 0 6
|
||||
1 1 RC_RSSI_PWM_MAX 1000 6
|
||||
1 1 RC_RSSI_PWM_MIN 2000 6
|
||||
1 1 RC_STAB_TH 0.500000000000000000 9
|
||||
1 1 RC_TRANS_TH 0.250000000000000000 9
|
||||
1 1 RTL_DESCEND_ALT 10.000000000000000000 9
|
||||
1 1 RTL_LAND_DELAY 0.000000000000000000 9
|
||||
1 1 RTL_MIN_DIST 5.000000000000000000 9
|
||||
1 1 RTL_RETURN_ALT 30.000000000000000000 9
|
||||
1 1 SDLOG_DIRS_MAX 0 6
|
||||
1 1 SDLOG_MODE 0 6
|
||||
1 1 SDLOG_PROFILE 3 6
|
||||
1 1 SDLOG_UTC_OFFSET 0 6
|
||||
1 1 SENS_BARO_QNH 1013.250000000000000000 9
|
||||
1 1 SENS_BOARD_ROT 0 6
|
||||
1 1 SENS_BOARD_X_OFF 0.576516091823577881 9
|
||||
1 1 SENS_BOARD_Y_OFF 2.084044218063354492 9
|
||||
1 1 SENS_BOARD_Z_OFF 0.000000000000000000 9
|
||||
1 1 SENS_DPRES_ANSC 0.000000000000000000 9
|
||||
1 1 SENS_DPRES_OFF 0.000000000000000000 9
|
||||
1 1 SENS_EN_LL40LS 0 6
|
||||
1 1 SENS_EN_MB12XX 0 6
|
||||
1 1 SENS_EN_SF0X 0 6
|
||||
1 1 SENS_EN_SF1XX 0 6
|
||||
1 1 SENS_EN_THERMAL -1 6
|
||||
1 1 SENS_EN_TRANGER 0 6
|
||||
1 1 SYS_AUTOCONFIG 0 6
|
||||
1 1 SYS_AUTOSTART 4001 6
|
||||
1 1 SYS_CAL_ACCEL 0 6
|
||||
1 1 SYS_CAL_BARO 0 6
|
||||
1 1 SYS_CAL_GYRO 0 6
|
||||
1 1 SYS_CAL_TDEL 24 6
|
||||
1 1 SYS_CAL_TMAX 10 6
|
||||
1 1 SYS_CAL_TMIN 5 6
|
||||
1 1 SYS_COMPANION 921600 6
|
||||
1 1 SYS_FMU_TASK 0 6
|
||||
1 1 SYS_HITL 0 6
|
||||
1 1 SYS_LOGGER 1 6
|
||||
1 1 SYS_MC_EST_GROUP 1 6
|
||||
1 1 SYS_PARAM_VER 1 6
|
||||
1 1 SYS_RESTART_TYPE 0 6
|
||||
1 1 SYS_STCK_EN 1 6
|
||||
1 1 SYS_USE_IO 1 6
|
||||
1 1 TC_A0_ID 0 6
|
||||
1 1 TC_A0_SCL_0 1.000000000000000000 9
|
||||
1 1 TC_A0_SCL_1 1.000000000000000000 9
|
||||
1 1 TC_A0_SCL_2 1.000000000000000000 9
|
||||
1 1 TC_A0_TMAX 100.000000000000000000 9
|
||||
1 1 TC_A0_TMIN 0.000000000000000000 9
|
||||
1 1 TC_A0_TREF 25.000000000000000000 9
|
||||
1 1 TC_A0_X0_0 0.000000000000000000 9
|
||||
1 1 TC_A0_X0_1 0.000000000000000000 9
|
||||
1 1 TC_A0_X0_2 0.000000000000000000 9
|
||||
1 1 TC_A0_X1_0 0.000000000000000000 9
|
||||
1 1 TC_A0_X1_1 0.000000000000000000 9
|
||||
1 1 TC_A0_X1_2 0.000000000000000000 9
|
||||
1 1 TC_A0_X2_0 0.000000000000000000 9
|
||||
1 1 TC_A0_X2_1 0.000000000000000000 9
|
||||
1 1 TC_A0_X2_2 0.000000000000000000 9
|
||||
1 1 TC_A0_X3_0 0.000000000000000000 9
|
||||
1 1 TC_A0_X3_1 0.000000000000000000 9
|
||||
1 1 TC_A0_X3_2 0.000000000000000000 9
|
||||
1 1 TC_A1_ID 0 6
|
||||
1 1 TC_A1_SCL_0 1.000000000000000000 9
|
||||
1 1 TC_A1_SCL_1 1.000000000000000000 9
|
||||
1 1 TC_A1_SCL_2 1.000000000000000000 9
|
||||
1 1 TC_A1_TMAX 100.000000000000000000 9
|
||||
1 1 TC_A1_TMIN 0.000000000000000000 9
|
||||
1 1 TC_A1_TREF 25.000000000000000000 9
|
||||
1 1 TC_A1_X0_0 0.000000000000000000 9
|
||||
1 1 TC_A1_X0_1 0.000000000000000000 9
|
||||
1 1 TC_A1_X0_2 0.000000000000000000 9
|
||||
1 1 TC_A1_X1_0 0.000000000000000000 9
|
||||
1 1 TC_A1_X1_1 0.000000000000000000 9
|
||||
1 1 TC_A1_X1_2 0.000000000000000000 9
|
||||
1 1 TC_A1_X2_0 0.000000000000000000 9
|
||||
1 1 TC_A1_X2_1 0.000000000000000000 9
|
||||
1 1 TC_A1_X2_2 0.000000000000000000 9
|
||||
1 1 TC_A1_X3_0 0.000000000000000000 9
|
||||
1 1 TC_A1_X3_1 0.000000000000000000 9
|
||||
1 1 TC_A1_X3_2 0.000000000000000000 9
|
||||
1 1 TC_A2_ID 0 6
|
||||
1 1 TC_A2_SCL_0 1.000000000000000000 9
|
||||
1 1 TC_A2_SCL_1 1.000000000000000000 9
|
||||
1 1 TC_A2_SCL_2 1.000000000000000000 9
|
||||
1 1 TC_A2_TMAX 100.000000000000000000 9
|
||||
1 1 TC_A2_TMIN 0.000000000000000000 9
|
||||
1 1 TC_A2_TREF 25.000000000000000000 9
|
||||
1 1 TC_A2_X0_0 0.000000000000000000 9
|
||||
1 1 TC_A2_X0_1 0.000000000000000000 9
|
||||
1 1 TC_A2_X0_2 0.000000000000000000 9
|
||||
1 1 TC_A2_X1_0 0.000000000000000000 9
|
||||
1 1 TC_A2_X1_1 0.000000000000000000 9
|
||||
1 1 TC_A2_X1_2 0.000000000000000000 9
|
||||
1 1 TC_A2_X2_0 0.000000000000000000 9
|
||||
1 1 TC_A2_X2_1 0.000000000000000000 9
|
||||
1 1 TC_A2_X2_2 0.000000000000000000 9
|
||||
1 1 TC_A2_X3_0 0.000000000000000000 9
|
||||
1 1 TC_A2_X3_1 0.000000000000000000 9
|
||||
1 1 TC_A2_X3_2 0.000000000000000000 9
|
||||
1 1 TC_A_ENABLE 0 6
|
||||
1 1 TC_B0_ID 0 6
|
||||
1 1 TC_B0_SCL 1.000000000000000000 9
|
||||
1 1 TC_B0_TMAX 75.000000000000000000 9
|
||||
1 1 TC_B0_TMIN 5.000000000000000000 9
|
||||
1 1 TC_B0_TREF 40.000000000000000000 9
|
||||
1 1 TC_B0_X0 0.000000000000000000 9
|
||||
1 1 TC_B0_X1 0.000000000000000000 9
|
||||
1 1 TC_B0_X2 0.000000000000000000 9
|
||||
1 1 TC_B0_X3 0.000000000000000000 9
|
||||
1 1 TC_B0_X4 0.000000000000000000 9
|
||||
1 1 TC_B0_X5 0.000000000000000000 9
|
||||
1 1 TC_B1_ID 0 6
|
||||
1 1 TC_B1_SCL 1.000000000000000000 9
|
||||
1 1 TC_B1_TMAX 75.000000000000000000 9
|
||||
1 1 TC_B1_TMIN 5.000000000000000000 9
|
||||
1 1 TC_B1_TREF 40.000000000000000000 9
|
||||
1 1 TC_B1_X0 0.000000000000000000 9
|
||||
1 1 TC_B1_X1 0.000000000000000000 9
|
||||
1 1 TC_B1_X2 0.000000000000000000 9
|
||||
1 1 TC_B1_X3 0.000000000000000000 9
|
||||
1 1 TC_B1_X4 0.000000000000000000 9
|
||||
1 1 TC_B1_X5 0.000000000000000000 9
|
||||
1 1 TC_B2_ID 0 6
|
||||
1 1 TC_B2_SCL 1.000000000000000000 9
|
||||
1 1 TC_B2_TMAX 75.000000000000000000 9
|
||||
1 1 TC_B2_TMIN 5.000000000000000000 9
|
||||
1 1 TC_B2_TREF 40.000000000000000000 9
|
||||
1 1 TC_B2_X0 0.000000000000000000 9
|
||||
1 1 TC_B2_X1 0.000000000000000000 9
|
||||
1 1 TC_B2_X2 0.000000000000000000 9
|
||||
1 1 TC_B2_X3 0.000000000000000000 9
|
||||
1 1 TC_B2_X4 0.000000000000000000 9
|
||||
1 1 TC_B2_X5 0.000000000000000000 9
|
||||
1 1 TC_B_ENABLE 0 6
|
||||
1 1 TC_G0_ID 0 6
|
||||
1 1 TC_G0_SCL_0 1.000000000000000000 9
|
||||
1 1 TC_G0_SCL_1 1.000000000000000000 9
|
||||
1 1 TC_G0_SCL_2 1.000000000000000000 9
|
||||
1 1 TC_G0_TMAX 100.000000000000000000 9
|
||||
1 1 TC_G0_TMIN 0.000000000000000000 9
|
||||
1 1 TC_G0_TREF 25.000000000000000000 9
|
||||
1 1 TC_G0_X0_0 0.000000000000000000 9
|
||||
1 1 TC_G0_X0_1 0.000000000000000000 9
|
||||
1 1 TC_G0_X0_2 0.000000000000000000 9
|
||||
1 1 TC_G0_X1_0 0.000000000000000000 9
|
||||
1 1 TC_G0_X1_1 0.000000000000000000 9
|
||||
1 1 TC_G0_X1_2 0.000000000000000000 9
|
||||
1 1 TC_G0_X2_0 0.000000000000000000 9
|
||||
1 1 TC_G0_X2_1 0.000000000000000000 9
|
||||
1 1 TC_G0_X2_2 0.000000000000000000 9
|
||||
1 1 TC_G0_X3_0 0.000000000000000000 9
|
||||
1 1 TC_G0_X3_1 0.000000000000000000 9
|
||||
1 1 TC_G0_X3_2 0.000000000000000000 9
|
||||
1 1 TC_G1_ID 0 6
|
||||
1 1 TC_G1_SCL_0 1.000000000000000000 9
|
||||
1 1 TC_G1_SCL_1 1.000000000000000000 9
|
||||
1 1 TC_G1_SCL_2 1.000000000000000000 9
|
||||
1 1 TC_G1_TMAX 100.000000000000000000 9
|
||||
1 1 TC_G1_TMIN 0.000000000000000000 9
|
||||
1 1 TC_G1_TREF 25.000000000000000000 9
|
||||
1 1 TC_G1_X0_0 0.000000000000000000 9
|
||||
1 1 TC_G1_X0_1 0.000000000000000000 9
|
||||
1 1 TC_G1_X0_2 0.000000000000000000 9
|
||||
1 1 TC_G1_X1_0 0.000000000000000000 9
|
||||
1 1 TC_G1_X1_1 0.000000000000000000 9
|
||||
1 1 TC_G1_X1_2 0.000000000000000000 9
|
||||
1 1 TC_G1_X2_0 0.000000000000000000 9
|
||||
1 1 TC_G1_X2_1 0.000000000000000000 9
|
||||
1 1 TC_G1_X2_2 0.000000000000000000 9
|
||||
1 1 TC_G1_X3_0 0.000000000000000000 9
|
||||
1 1 TC_G1_X3_1 0.000000000000000000 9
|
||||
1 1 TC_G1_X3_2 0.000000000000000000 9
|
||||
1 1 TC_G2_ID 0 6
|
||||
1 1 TC_G2_SCL_0 1.000000000000000000 9
|
||||
1 1 TC_G2_SCL_1 1.000000000000000000 9
|
||||
1 1 TC_G2_SCL_2 1.000000000000000000 9
|
||||
1 1 TC_G2_TMAX 100.000000000000000000 9
|
||||
1 1 TC_G2_TMIN 0.000000000000000000 9
|
||||
1 1 TC_G2_TREF 25.000000000000000000 9
|
||||
1 1 TC_G2_X0_0 0.000000000000000000 9
|
||||
1 1 TC_G2_X0_1 0.000000000000000000 9
|
||||
1 1 TC_G2_X0_2 0.000000000000000000 9
|
||||
1 1 TC_G2_X1_0 0.000000000000000000 9
|
||||
1 1 TC_G2_X1_1 0.000000000000000000 9
|
||||
1 1 TC_G2_X1_2 0.000000000000000000 9
|
||||
1 1 TC_G2_X2_0 0.000000000000000000 9
|
||||
1 1 TC_G2_X2_1 0.000000000000000000 9
|
||||
1 1 TC_G2_X2_2 0.000000000000000000 9
|
||||
1 1 TC_G2_X3_0 0.000000000000000000 9
|
||||
1 1 TC_G2_X3_1 0.000000000000000000 9
|
||||
1 1 TC_G2_X3_2 0.000000000000000000 9
|
||||
1 1 TC_G_ENABLE 0 6
|
||||
1 1 THR_MDL_FAC 0.000000000000000000 9
|
||||
1 1 TRIG_MODE 0 6
|
||||
1 1 TRIM_PITCH 0.000000000000000000 9
|
||||
1 1 TRIM_ROLL 0.000000000000000000 9
|
||||
1 1 TRIM_YAW 0.000000000000000000 9
|
||||
1 1 VT_B_DEC_MSS 2.000000000000000000 9
|
||||
1 1 VT_B_REV_DEL 0.000000000000000000 9
|
||||
Reference in New Issue
Block a user