mirror of
https://github.com/paparazzi/paparazzi.git
synced 2026-05-09 22:49:53 +08:00
Futaba16SZ, units in circular formation, and no IMU in default msg cfg (#2382)
* fixed tab and IMU not necessary in default * explicit units * Futaba T16SZ conf file * units * fixed tab and IMU not necessary in default * explicit units * Futaba T16SZ conf file * units
This commit is contained in:
committed by
Kirk Scheper
parent
6d36c581cb
commit
46a8bfb0a2
@@ -0,0 +1,64 @@
|
||||
<?xml version="1.0"?>
|
||||
<!-- $Id$
|
||||
--
|
||||
-- (c) 2013 Gautier Hattenberger
|
||||
--
|
||||
-- This file is part of paparazzi.
|
||||
--
|
||||
-- paparazzi is free software; you can redistribute it and/or modify
|
||||
-- it under the terms of the GNU General Public License as published by
|
||||
-- the Free Software Foundation; either version 2, or (at your option)
|
||||
-- any later version.
|
||||
--
|
||||
-- paparazzi is distributed in the hope that it will be useful,
|
||||
-- but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
-- GNU General Public License for more details.
|
||||
--
|
||||
-- You should have received a copy of the GNU General Public License
|
||||
-- along with paparazzi; see the file COPYING. If not, write to
|
||||
-- the Free Software Foundation, 59 Temple Place - Suite 330,
|
||||
-- Boston, MA 02111-1307, USA.
|
||||
-->
|
||||
|
||||
<!--
|
||||
-- Attributes of root (Radio) tag :
|
||||
-- name: name of RC
|
||||
-- data_min: min width of a pulse to be considered as a data pulse
|
||||
-- data_max: max width of a pulse to be considered as a data pulse
|
||||
-- sync_min: min width of a pulse to be considered as a synchro pulse
|
||||
-- sync_max: max width of a pulse to be considered as a synchro pulse
|
||||
-- pulse_type: POSITIVE ( Futaba and others) | NEGATIVE (JR)
|
||||
-- min, max and sync are expressed in micro-seconds
|
||||
-->
|
||||
|
||||
<!--
|
||||
-- Attributes of channel tag :
|
||||
-- ctl: name of the command on the transmitter - only for displaying
|
||||
-- function: logical command
|
||||
-- average: (boolean) channel filtered through several frames (for discrete commands)
|
||||
-- min: minimum pulse length (micro-seconds)
|
||||
-- max: maximum pulse length (micro-seconds)
|
||||
-- neutral: neutral pulse length (micro-seconds)
|
||||
-- Note: a command may be reversed by exchanging min and max values
|
||||
-->
|
||||
|
||||
<!DOCTYPE radio SYSTEM "radio.dtd">
|
||||
<radio name="Futaba T16SZ with SBUS" data_min="1000" data_max="2000" sync_min ="5000" sync_max ="15000" pulse_type="POSITIVE">
|
||||
<channel ctl="A" function="ROLL" min="1000" neutral="1500" max="2000" average="0"/>
|
||||
<channel ctl="B" function="PITCH" min="1000" neutral="1500" max="2000" average="0"/>
|
||||
<channel ctl="C" function="THROTTLE" min="1000" neutral="1000" max="2000" average="0"/>
|
||||
<channel ctl="D" function="YAW" min="1000" neutral="1500" max="2000" average="0"/>
|
||||
<channel ctl="E" function="MODE" max="1000" neutral="1520" min="2000" average="1"/>
|
||||
<channel ctl="F" function="GAIN1" min="1000" neutral="1520" max="2000" average="0"/>
|
||||
<channel ctl="G" function="GAIN2" min="1000" neutral="1520" max="2000" average="0"/>
|
||||
<channel ctl="H" function="GAIN3" min="1000" neutral="1500" max="2000" average="0"/>
|
||||
<channel ctl="I" function="GAIN4" min="1000" neutral="1500" max="2000" average="0"/>
|
||||
<channel ctl="J" function="GAIN5" min="2000" neutral="2000" max="1000" average="0"/>
|
||||
<channel ctl="K" function="GAIN6" min="1000" neutral="1500" max="2000" average="0"/>
|
||||
<channel ctl="N" function="GAIN7" max="1000" neutral="1520" min="2000" average="1"/>
|
||||
<channel ctl="M" function="GAIN8" min="1000" neutral="1520" max="2000" average="0"/>
|
||||
<channel ctl="L" function="GAIN9" min="1000" neutral="1520" max="2000" average="0"/>
|
||||
<channel ctl="O" function="GAIN10" min="1000" neutral="1500" max="2000" average="0"/>
|
||||
<channel ctl="P" function="GAIN11" min="1000" neutral="1500" max="2000" average="0"/>
|
||||
</radio>
|
||||
@@ -23,7 +23,6 @@
|
||||
<message name="DATALINK_REPORT" period="5.1"/>
|
||||
<message name="DL_VALUE" period="1.5"/>
|
||||
<message name="IR_SENSORS" period="1.2"/>
|
||||
<message name="IMU_GYRO" period="1.1"/>
|
||||
<message name="SURVEY" period="2.1"/>
|
||||
<message name="GPS_SOL" period="2.0"/>
|
||||
<message name="CAM" period="0.5"/>
|
||||
|
||||
@@ -61,9 +61,9 @@ class FormationControl:
|
||||
self.verbose = verbose
|
||||
self.ids = self.config['ids']
|
||||
self.B = np.array(self.config['topology'])
|
||||
self.Zdesired = np.array(self.config['desired_intervehicle_angles'])
|
||||
self.Zdesired = np.array(self.config['desired_intervehicle_angles_degrees'])*np.pi/180
|
||||
self.k = np.array(self.config['gain'])
|
||||
self.radius = np.array(self.config['desired_stationary_radius'])
|
||||
self.radius = np.array(self.config['desired_stationary_radius_meters'])
|
||||
self.aircraft = [Aircraft(i) for i in self.ids]
|
||||
self.sigmas = np.zeros(len(self.aircraft))
|
||||
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
[-1, 1],
|
||||
[ 0,-1]
|
||||
],
|
||||
"desired_intervehicle_angles": [0, 0],
|
||||
"desired_intervehicle_angles_degrees": [0, 0],
|
||||
"gain": 10,
|
||||
"desired_stationary_radius": 80
|
||||
"desired_stationary_radius_meters": 80
|
||||
}
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
[ 1],
|
||||
[-1]
|
||||
],
|
||||
"desired_intervehicle_angles": [0],
|
||||
"desired_intervehicle_angles_degrees": [0],
|
||||
"gain": 10,
|
||||
"desired_stationary_radius": 80
|
||||
"desired_stationary_radius_meters": 80
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user