<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>http://wiki.paparazziuav.org/w/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=TilmanBaumann</id>
	<title>PaparazziUAV - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="http://wiki.paparazziuav.org/w/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=TilmanBaumann"/>
	<link rel="alternate" type="text/html" href="http://wiki.paparazziuav.org/wiki/Special:Contributions/TilmanBaumann"/>
	<updated>2026-04-28T19:42:43Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.37.1</generator>
	<entry>
		<id>http://wiki.paparazziuav.org/w/index.php?title=Fixedwing_Configuration&amp;diff=13367</id>
		<title>Fixedwing Configuration</title>
		<link rel="alternate" type="text/html" href="http://wiki.paparazziuav.org/w/index.php?title=Fixedwing_Configuration&amp;diff=13367"/>
		<updated>2012-10-18T16:48:33Z</updated>

		<summary type="html">&lt;p&gt;TilmanBaumann: /* Control loops */ introduce control loop types syntax&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;categorytree style=&amp;quot;float:right; clear:right; margin-left:1ex; border: 1px solid gray; padding: 0.7ex;&amp;quot; mode=pages&amp;gt;Airframe_Configuration&amp;lt;/categorytree&amp;gt;&lt;br /&gt;
This page describes configuration options &amp;lt;span style=&amp;quot;color:red&amp;quot;&amp;gt;&amp;lt;b&amp;gt;specific to the fixedwing firmware&amp;lt;/b&amp;gt;&amp;lt;/span&amp;gt; in the [[Airframe_Configuration|airframe file]].&lt;br /&gt;
== Firmware and Hardware definitions ==&lt;br /&gt;
&lt;br /&gt;
=== Select your Board ===&lt;br /&gt;
Make sure you use the &amp;lt;b&amp;gt;fixedwing [[Airframe_Configuration#Firmware|firmware]]&amp;lt;/b&amp;gt; and choose the correct board, e.g.&lt;br /&gt;
{{Box Code|conf/airframes/myplane.xml|&lt;br /&gt;
&amp;lt;source lang=&amp;quot;xml&amp;quot;&amp;gt;&lt;br /&gt;
  &amp;lt;firmware name=&amp;quot;fixedwing&amp;quot;&amp;gt;&lt;br /&gt;
    &amp;lt;target name=&amp;quot;sim&amp;quot; 			board=&amp;quot;pc&amp;quot;/&amp;gt;&lt;br /&gt;
    &amp;lt;target name=&amp;quot;ap&amp;quot; 			board=&amp;quot;twog_1.0&amp;quot;/&amp;gt;&lt;br /&gt;
     ...&lt;br /&gt;
  &amp;lt;/firmware&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
=== Infrared Sensors ===&lt;br /&gt;
To use the IR sensors for attitude estimation add the infrared module and ahrs infrared subsystem:&lt;br /&gt;
{{Box Code|conf/airframes/myplane.xml|&lt;br /&gt;
&amp;lt;source lang=&amp;quot;xml&amp;quot;&amp;gt;&lt;br /&gt;
  &amp;lt;firmware name=&amp;quot;fixedwing&amp;quot;&amp;gt;&lt;br /&gt;
    &amp;lt;target name=&amp;quot;ap&amp;quot;              board=&amp;quot;tiny_2.11&amp;quot;/&amp;gt;&lt;br /&gt;
     ...&lt;br /&gt;
    &amp;lt;subsystem name=&amp;quot;ahrs&amp;quot;     type=&amp;quot;infrared&amp;quot;/&amp;gt;&lt;br /&gt;
  &amp;lt;/firmware&amp;gt;&lt;br /&gt;
  &amp;lt;modules&amp;gt;&lt;br /&gt;
    &amp;lt;load name=&amp;quot;infrared_adc.xml&amp;quot;/&amp;gt;&lt;br /&gt;
  &amp;lt;/modules&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
See the [[Module/infrared|infrared module page]] for more details on configuration.&lt;br /&gt;
&lt;br /&gt;
=== Control loops ===&lt;br /&gt;
&lt;br /&gt;
The [[Control_Loops#Fixed-wing_autopilot|control loops]] can be divided in two largely independent groups : the vertical ones and the horizontal ones (standard files sw/airborne/firmwares/fixedwing/guidance/guidance_v.c and sw/airborne/firmwares/fixedwing/stabilization/stabilization_attitude.c ). Those loops can be commanded at different levels by either the R/C transmitter or the autonomous navigation routine.&lt;br /&gt;
&lt;br /&gt;
Just specify the appropriate subsystem in your firmware section. You can currently choose between no type (see below) and the types '''adaptive''' and '''new'''.&lt;br /&gt;
{{Box Code|conf/airframes/myplane.xml|&lt;br /&gt;
&amp;lt;source lang=&amp;quot;xml&amp;quot;&amp;gt;&lt;br /&gt;
  &amp;lt;firmware name=&amp;quot;fixedwing&amp;quot;&amp;gt;&lt;br /&gt;
    &amp;lt;target name=&amp;quot;ap&amp;quot; 			board=&amp;quot;tiny_2.11&amp;quot;/&amp;gt;&lt;br /&gt;
     ...&lt;br /&gt;
    &amp;lt;subsystem name=&amp;quot;control&amp;quot;/&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- Different control loop types can be enabled instead (Use only one) --&amp;gt;&lt;br /&gt;
    &amp;lt;subsystem name=&amp;quot;control&amp;quot; type=&amp;quot;adaptive&amp;quot;/&amp;gt;&lt;br /&gt;
    &amp;lt;subsystem name=&amp;quot;control&amp;quot; type=&amp;quot;new&amp;quot;/&amp;gt;&lt;br /&gt;
    &amp;lt;subsystem name=&amp;quot;control&amp;quot; type=&amp;quot;energy&amp;quot;/&amp;gt; &amp;lt;!-- Since v4.1.0 --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
  &amp;lt;/firmware&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
== XML Parameters ==&lt;br /&gt;
&lt;br /&gt;
=== Commands ===&lt;br /&gt;
&lt;br /&gt;
The &amp;lt;b&amp;gt;&amp;lt;tt&amp;gt;commands&amp;lt;/tt&amp;gt;&amp;lt;/b&amp;gt; lists the abstract commands you need to control the aircraft. In our example, we have only three:&lt;br /&gt;
&amp;lt;source lang=&amp;quot;xml&amp;quot;&amp;gt;&lt;br /&gt;
 &amp;lt;commands&amp;gt;&lt;br /&gt;
  &amp;lt;axis name=&amp;quot;THROTTLE&amp;quot; failsafe_value=&amp;quot;0&amp;quot;/&amp;gt;&lt;br /&gt;
  &amp;lt;axis name=&amp;quot;ROLL&amp;quot;     failsafe_value=&amp;quot;0&amp;quot;/&amp;gt;&lt;br /&gt;
  &amp;lt;axis name=&amp;quot;PITCH&amp;quot;    failsafe_value=&amp;quot;0&amp;quot;/&amp;gt;&lt;br /&gt;
 &amp;lt;/commands&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Each command is also associated with a failsafe value which will be used if no controller is active, for example during initialization of the autopilot board. The range of these values is [-9600:9600]. For &amp;lt;tt&amp;gt;&amp;quot;THROTTLE&amp;quot;&amp;lt;/tt&amp;gt;, the range is [0, 9600] and in the corresponding &amp;lt;b&amp;gt;&amp;lt;tt&amp;gt;servo&amp;lt;/tt&amp;gt;&amp;lt;/b&amp;gt; definition the &amp;lt;b&amp;gt;&amp;lt;tt&amp;gt;neutral&amp;lt;/tt&amp;gt;&amp;lt;/b&amp;gt; and &amp;lt;b&amp;gt;&amp;lt;tt&amp;gt;min&amp;lt;/tt&amp;gt;&amp;lt;/b&amp;gt; are usually the same (see below). Note that these commands do not necessarily match the servo actuators. For example, the &amp;lt;tt&amp;gt;&amp;quot;ROLL&amp;quot;&amp;lt;/tt&amp;gt; command is typically linked to two aileron actuators.&lt;br /&gt;
&lt;br /&gt;
=== Servos ===&lt;br /&gt;
&lt;br /&gt;
The above commands get translated to the &amp;lt;b&amp;gt;&amp;lt;tt&amp;gt;servos&amp;lt;/tt&amp;gt;&amp;lt;/b&amp;gt; here. In the example below we use two elevons and a motor. ([http://en.wikipedia.org/wiki/Elevon ''Elevons''] are surfaces used for both pitch and roll as on a flying wing.) These servos are listed in the &amp;lt;b&amp;gt;&amp;lt;tt&amp;gt;servos&amp;lt;/tt&amp;gt;&amp;lt;/b&amp;gt; section:&lt;br /&gt;
&amp;lt;source lang=&amp;quot;xml&amp;quot;&amp;gt;&lt;br /&gt;
 &amp;lt;servos&amp;gt;&lt;br /&gt;
  &amp;lt;servo name=&amp;quot;THROTTLE&amp;quot;         no=&amp;quot;0&amp;quot; min=&amp;quot;1000&amp;quot; neutral=&amp;quot;1000&amp;quot; max=&amp;quot;2000&amp;quot;/&amp;gt;&lt;br /&gt;
  &amp;lt;servo name=&amp;quot;ELEVON_LEFTSIDE&amp;quot;  no=&amp;quot;1&amp;quot; min=&amp;quot;2000&amp;quot; neutral=&amp;quot;1500&amp;quot; max=&amp;quot;1000&amp;quot;/&amp;gt;&lt;br /&gt;
  &amp;lt;servo name=&amp;quot;ELEVON_RIGHTSIDE&amp;quot; no=&amp;quot;2&amp;quot; min=&amp;quot;1000&amp;quot; neutral=&amp;quot;1500&amp;quot; max=&amp;quot;2000&amp;quot;/&amp;gt;&lt;br /&gt;
 &amp;lt;/servos&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
Names are associated to the corresponding '''real physical connector''' to which a servo is connected '''on the autopilot board'''. For example no=&amp;quot;2&amp;quot; means connector two on the board. Also the servo neutral value, total range and direction are defined.  Min/max/neutral values are expressed in milliseconds. The direction of travel can be reversed by exchanging min with max (as in &amp;lt;tt&amp;gt;&amp;quot;ELEVON_LEFTSIDE&amp;quot;&amp;lt;/tt&amp;gt;, above).  The ''standard'' travel for a hobby servo is 1000ms - 2000ms with a 1500ms neutral. Trim can be added by changing this neutral value. Absolute servo travel limits can be increased or reduced with the min/max values.  The &amp;lt;tt&amp;gt;&amp;quot;THROTTLE&amp;quot;&amp;lt;/tt&amp;gt; servo typically has the same value for the &amp;lt;b&amp;gt;&amp;lt;tt&amp;gt;neutral&amp;lt;/tt&amp;gt;&amp;lt;/b&amp;gt; and &amp;lt;b&amp;gt;&amp;lt;tt&amp;gt;min&amp;lt;/tt&amp;gt;&amp;lt;/b&amp;gt;.  &lt;br /&gt;
&lt;br /&gt;
Note the following important tips:&lt;br /&gt;
* Reverse the servo direction by exchanging min/max&lt;br /&gt;
* Trim should always be adjusted mechanically if possible to avoid asymmetrical travel&lt;br /&gt;
* Any reduction of the total travel range should be done mechanically to maintain precision&lt;br /&gt;
* Many servos will respond well to values slightly outside the normal 1000-2000ms range but experiment carefully as the servo may not operate reliably outside this range and may even suffer permanent damage.&lt;br /&gt;
* Board connector numbering starts with &amp;lt;b&amp;gt;zero (0)&amp;lt;/b&amp;gt; not with one&lt;br /&gt;
* Servos are also known under the synonym &amp;lt;b&amp;gt;actuators&amp;lt;/b&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The &amp;lt;b&amp;gt;&amp;lt;tt&amp;gt;servos&amp;lt;/tt&amp;gt;&amp;lt;/b&amp;gt; are then linked to the commands in the &amp;lt;b&amp;gt;&amp;lt;tt&amp;gt;command_laws&amp;lt;/tt&amp;gt;&amp;lt;/b&amp;gt; section:&lt;br /&gt;
&amp;lt;source lang=&amp;quot;xml&amp;quot;&amp;gt;&lt;br /&gt;
 &amp;lt;command_laws&amp;gt;&lt;br /&gt;
  &amp;lt;let var=&amp;quot;aileron&amp;quot;            value=&amp;quot;@ROLL  * 0.3&amp;quot;/&amp;gt;&lt;br /&gt;
  &amp;lt;let var=&amp;quot;elevator&amp;quot;           value=&amp;quot;@PITCH * 0.7&amp;quot;/&amp;gt;  &lt;br /&gt;
  &amp;lt;set servo=&amp;quot;THROTTLE&amp;quot;         value=&amp;quot;@THROTTLE&amp;quot;/&amp;gt;&lt;br /&gt;
  &amp;lt;set servo=&amp;quot;ELEVON_LEFTSIDE&amp;quot;  value=&amp;quot;$elevator + $aileron&amp;quot;/&amp;gt;&lt;br /&gt;
  &amp;lt;set servo=&amp;quot;ELEVON_RIGHTSIDE&amp;quot; value=&amp;quot;$elevator - $aileron&amp;quot;/&amp;gt;&lt;br /&gt;
 &amp;lt;/command_laws&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Image:airframe_sign_conventions.jpg|thumb|Sign conventions for flight dynamics]]&lt;br /&gt;
where the third line is the simplest: the throttle servo value equals throttle command value. The other lines define and control the pitch/roll mixing.  Elevon values are computed with a combination of two commands, '''ROLL''' and '''PITCH'''. This ''mixer'' is defined with two intermediate variables '''aileron''' and '''elevator''' introduced with the &amp;lt;b&amp;gt;&amp;lt;tt&amp;gt;let&amp;lt;/tt&amp;gt;&amp;lt;/b&amp;gt; element.  The '''@''' symbol is used to reference a command value in the &amp;lt;b&amp;gt;&amp;lt;tt&amp;gt;value&amp;lt;/tt&amp;gt;&amp;lt;/b&amp;gt; attribute of the &amp;lt;b&amp;gt;&amp;lt;tt&amp;gt;set&amp;lt;/tt&amp;gt;&amp;lt;/b&amp;gt; and &amp;lt;b&amp;gt;&amp;lt;tt&amp;gt;let&amp;lt;/tt&amp;gt;&amp;lt;/b&amp;gt; elements.  In the above example, the servos are limited to +/- 70% of their full travel for pitch and 30% for roll, only in combination can the servos reach 100% deflection.  Note that these numbers ''should add up 100% or more, never less''.  For example, you may want 100% travel available for pitch - this means if a roll is commanded along with maximum pitch only one servo will respond to the roll command as the other has already reached its mechanical limit.  If you find after tuning that these numbers add to less than 100% consider reducing the surface travel mechanically.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Note that the signs used in the description follow the standard convention.&lt;br /&gt;
&lt;br /&gt;
=== Manual ===&lt;br /&gt;
The &amp;lt;tt&amp;gt;rc_command&amp;lt;/tt&amp;gt; sections links the channels of the RC transmitter (defined in the [[Radio_Control|Radio Control]] file) to the &amp;lt;tt&amp;gt;commands&amp;lt;/tt&amp;gt; defined above:&lt;br /&gt;
&amp;lt;source lang=&amp;quot;xml&amp;quot;&amp;gt;&lt;br /&gt;
 &amp;lt;rc_commands&amp;gt;&lt;br /&gt;
   &amp;lt;set command=&amp;quot;THROTTLE&amp;quot; value=&amp;quot;@THROTTLE&amp;quot;/&amp;gt;&lt;br /&gt;
   &amp;lt;set command=&amp;quot;ROLL&amp;quot;     value=&amp;quot;@ROLL&amp;quot;/&amp;gt;&lt;br /&gt;
   &amp;lt;set command=&amp;quot;PITCH&amp;quot;    value=&amp;quot;@PITCH&amp;quot;/&amp;gt;&lt;br /&gt;
 &amp;lt;/rc_commands&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
This example looks trivial since the channel values have the same name than the commands.&lt;br /&gt;
&lt;br /&gt;
=== RC commands in Auto ===&lt;br /&gt;
To control servos or other servo signal compatible devices by RC in Auto1 or Auto2, define them in the &amp;lt;auto_rc_commands&amp;gt; section.&lt;br /&gt;
If you have an airframe with a dedicated rudder (YAW channel) then it is still controllable in auto mode via RC. This is the default behavior and is equivalent to setting the YAW command in auto_rc_commands:&lt;br /&gt;
&amp;lt;source lang=&amp;quot;xml&amp;quot;&amp;gt;&lt;br /&gt;
 &amp;lt;auto_rc_commands&amp;gt;&lt;br /&gt;
   &amp;lt;set command=&amp;quot;YAW&amp;quot; value=&amp;quot;@YAW&amp;quot;/&amp;gt;&lt;br /&gt;
 &amp;lt;/auto_rc_commands&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
To disable this behavior (meaning no RC control of the rudder in auto) define an empty auto_rc_commands section:&lt;br /&gt;
&amp;lt;source lang=&amp;quot;xml&amp;quot;&amp;gt;&lt;br /&gt;
 &amp;lt;auto_rc_commands&amp;gt;&lt;br /&gt;
 &amp;lt;/auto_rc_commands&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Autopilot Only Commands ===&lt;br /&gt;
For certain missions it might be required to control servos (payload) from the autopilot (gcs) at all times (even during manual flight). These commands should not be in the &amp;lt;rc_commands&amp;gt; block but in the special &amp;lt;ap_only_commands&amp;gt; block. This allows for instance the pantilt operator to keep working when in manual flight, or safety logic to automatically close cameras below a certain altitude during manual landings.&lt;br /&gt;
&amp;lt;source lang=&amp;quot;xml&amp;quot;&amp;gt;&lt;br /&gt;
 &amp;lt;ap_only_commands&amp;gt;&lt;br /&gt;
   &amp;lt;copy command=&amp;quot;PAN&amp;quot;/&amp;gt;&lt;br /&gt;
   &amp;lt;copy command=&amp;quot;TILT&amp;quot;/&amp;gt;&lt;br /&gt;
   &amp;lt;copy command=&amp;quot;SHOOT&amp;quot;/&amp;gt;&lt;br /&gt;
 &amp;lt;/ap_only_commands&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Auto1 ===&lt;br /&gt;
The next section, named &amp;lt;b&amp;gt;&amp;lt;tt&amp;gt;AUTO1&amp;lt;/tt&amp;gt;&amp;lt;/b&amp;gt;, gives the maximum roll and pitch (in radians) allowed for the augmented stability mode.&lt;br /&gt;
&amp;lt;source lang=&amp;quot;xml&amp;quot;&amp;gt;&lt;br /&gt;
 &amp;lt;section name=&amp;quot;AUTO1&amp;quot; prefix=&amp;quot;AUTO1_&amp;quot;&amp;gt;&lt;br /&gt;
  &amp;lt;define name=&amp;quot;MAX_ROLL&amp;quot; value=&amp;quot;35&amp;quot; unit=&amp;quot;deg&amp;quot;/&amp;gt;&lt;br /&gt;
  &amp;lt;define name=&amp;quot;MAX_PITCH&amp;quot; value=&amp;quot;5&amp;quot; unit=&amp;quot;deg&amp;quot;/&amp;gt;&lt;br /&gt;
 &amp;lt;/section&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
''NOTE'': [[Units|automatic unit conversion]] using &amp;lt;tt&amp;gt;unit=&amp;quot;deg&amp;quot;&amp;lt;/tt&amp;gt; is supported since v3.9, if you have an older version set it in radians or using &amp;lt;tt&amp;gt;value=&amp;quot;RadOfDeg(35)&amp;quot;&amp;lt;/tt&amp;gt;&lt;br /&gt;
=== Infrared === &lt;br /&gt;
The &amp;lt;b&amp;gt;&amp;lt;tt&amp;gt;INFRARED&amp;lt;/tt&amp;gt;&amp;lt;/b&amp;gt; section describes the configuration of the infrared sensors. For additional configuration to change the defaults, see the [[Module/infrared|infrared module page]].&lt;br /&gt;
&lt;br /&gt;
The only mandatory definitions are the sensor neutral readings and how the IR sensors are mounted.&lt;br /&gt;
&lt;br /&gt;
The electronic neutral of the sensors (a sensor here is a '''pair''' of thermopiles). A perfect sensor should give 512 if it measures the same value on both sides.&lt;br /&gt;
&amp;lt;source lang=&amp;quot;xml&amp;quot;&amp;gt;&lt;br /&gt;
 &amp;lt;section name=&amp;quot;INFRARED&amp;quot; prefix=&amp;quot;IR_&amp;quot;&amp;gt;&lt;br /&gt;
   &amp;lt;define name=&amp;quot;ADC_IR1_NEUTRAL&amp;quot; value=&amp;quot;512&amp;quot;/&amp;gt;&lt;br /&gt;
   &amp;lt;define name=&amp;quot;ADC_IR2_NEUTRAL&amp;quot; value=&amp;quot;512&amp;quot;/&amp;gt;&lt;br /&gt;
   &amp;lt;define name=&amp;quot;ADC_TOP_NEUTRAL&amp;quot; value=&amp;quot;512&amp;quot;/&amp;gt;&lt;br /&gt;
   &amp;lt;define name=&amp;quot;HORIZ_SENSOR_ALIGNED&amp;quot; value=&amp;quot;1&amp;quot;/&amp;gt;&lt;br /&gt;
 &amp;lt;/section&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
These neutrals are tuned with the &amp;quot;cupboard test&amp;quot;: Put the sensor in a close box (a cupboard) and read the values of the IR_SENSORS message (ir1, ir2 and vertical). Set the neutrals (they are subtracted from the measurement) to get null values. E.g. if you read 5 for the ir1 value with ADC_IR1_NEUTRAL equal to 512, change the latter to 517.&lt;br /&gt;
&lt;br /&gt;
In the example above the horizontal sensor is connected to the airframe in ''aligned'' orientation. The other possibility is ''tilted''.&lt;br /&gt;
Define either&lt;br /&gt;
* '''HORIZ_SENSOR_ALIGNED''': ir1 is along the lateral axis (The axis that passes through the plane from wingtip to wingtip) and ir2 along the longitudinal one.&lt;br /&gt;
or&lt;br /&gt;
* '''HORIZ_SENSOR_TILTED''': the sensors are tilted by 45 degrees; ir1 is along rear-left -- front-right, and ir2 along rear-right -- front-left.&lt;br /&gt;
If the airframe construction allows choose an aligned sensor orientation since this gives the best stabilization response results.&lt;br /&gt;
&lt;br /&gt;
=== Gyro ===&lt;br /&gt;
'''This section only applies to versions prior to v3.9 when using a gyro with IR sensors.'''&lt;br /&gt;
Defines the type of gyro installed, each axis neutral, and any required temperature compensation. If the gyro has two axes, the pitch neutral is defined as well. Many gyros output their internal temperature and require a temperature-dependent linear correction be made to the neutral value.  No correction is done for the temperature in this example.(&amp;lt;b&amp;gt;&amp;lt;tt&amp;gt;ADC_TEMP_SLOPE=0&amp;lt;/tt&amp;gt;&amp;lt;/b&amp;gt;).&lt;br /&gt;
&amp;lt;source lang=&amp;quot;xml&amp;quot;&amp;gt;&lt;br /&gt;
 &amp;lt;section name=&amp;quot;GYRO&amp;quot; prefix=&amp;quot;GYRO_&amp;quot;&amp;gt;&lt;br /&gt;
  &amp;lt;define name=&amp;quot;ADC_ROLL_COEFF&amp;quot; value=&amp;quot;1&amp;quot;/&amp;gt;&lt;br /&gt;
  &amp;lt;define name=&amp;quot;ROLL_NEUTRAL&amp;quot; value=&amp;quot;500&amp;quot;/&amp;gt;&lt;br /&gt;
  &amp;lt;define name=&amp;quot;ADC_TEMP_NEUTRAL&amp;quot; value=&amp;quot;476&amp;quot;/&amp;gt;&lt;br /&gt;
  &amp;lt;define name=&amp;quot;ADC_TEMP_SLOPE&amp;quot; value=&amp;quot;0&amp;quot;/&amp;gt;&lt;br /&gt;
 &amp;lt;/section&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Horizontal Control ===&lt;br /&gt;
&amp;lt;source lang=&amp;quot;xml&amp;quot;&amp;gt;&lt;br /&gt;
 &amp;lt;section name=&amp;quot;HORIZONTAL CONTROL&amp;quot; prefix=&amp;quot;H_CTL_&amp;quot;&amp;gt;&lt;br /&gt;
    &amp;lt;define name=&amp;quot;COURSE_PGAIN&amp;quot; value=&amp;quot;0.4&amp;quot;/&amp;gt;&lt;br /&gt;
    &amp;lt;define name=&amp;quot;ROLL_MAX_SETPOINT&amp;quot; value=&amp;quot;20&amp;quot; unit=&amp;quot;deg&amp;quot;/&amp;gt;&lt;br /&gt;
    &amp;lt;define name=&amp;quot;ROLL_ATTITUDE_GAIN&amp;quot; value=&amp;quot;7500.&amp;quot;/&amp;gt;&lt;br /&gt;
    &amp;lt;define name=&amp;quot;ROLL_RATE_GAIN&amp;quot; value=&amp;quot;1500&amp;quot;/&amp;gt;&lt;br /&gt;
    &amp;lt;define name=&amp;quot;PITCH_PGAIN&amp;quot; value=&amp;quot;8000.&amp;quot;/&amp;gt;&lt;br /&gt;
    &amp;lt;define name=&amp;quot;ELEVATOR_OF_ROLL&amp;quot; value=&amp;quot;1250&amp;quot;/&amp;gt;&lt;br /&gt;
  &amp;lt;/section&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
The outer loop acts on the route. It will produce a roll command from a course setpoint and a course measurement. The COURSE_PGAIN parameter is the factor multiplied by the course error (in radian) to get a roll setpoint (in radian). So if the plane is expected to go north (course=0) and is actually flying to 57 degrees (course=1 radian, i.e. ENE), with a gain of '''0.4''', a roll of -0.4 (-23 degrees) will be set for the lower control loop.&lt;br /&gt;
&lt;br /&gt;
The ROLL_ATTITUDE_GAIN is used to compute a ROLL command from the roll error (setpoint minus measurement). If a gyro in installed, the ROLL_RATE_GAIN to keep a null roll rate. So these two gains provide a P-D controller.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''IMPORTANT''': Previous to v3.9 some of the gains need to be set with a '''negative sign''': ''COURSE_PGAIN'', ''ROLL_ATTITUDE_GAIN'', ''ROLL_RATE_GAIN'', ''PITCH_PGAIN''&lt;br /&gt;
&lt;br /&gt;
''NOTE'': [[Units|automatic unit conversion]] using &amp;lt;tt&amp;gt;unit=&amp;quot;deg&amp;quot;&amp;lt;/tt&amp;gt; is supported since v3.9, if you have an older version set it in radians or using &amp;lt;tt&amp;gt;value=&amp;quot;RadOfDeg(20)&amp;quot;&amp;lt;/tt&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The [[Control_Loops#Fixed-wing_autopilot|graphical representation of the control loops]] can help you to visualize the effect of each gain.&lt;br /&gt;
&lt;br /&gt;
===Vertical Control===&lt;br /&gt;
&amp;lt;source lang=&amp;quot;xml&amp;quot;&amp;gt;&lt;br /&gt;
  &amp;lt;section name=&amp;quot;VERTICAL CONTROL&amp;quot; prefix=&amp;quot;V_CTL_&amp;quot;&amp;gt;&lt;br /&gt;
    &amp;lt;!-- outer loop proportional gain --&amp;gt;&lt;br /&gt;
    &amp;lt;define name=&amp;quot;ALTITUDE_PGAIN&amp;quot; value=&amp;quot;0.1&amp;quot; unit=&amp;quot;(m/s)/m&amp;quot;/&amp;gt;&lt;br /&gt;
    &amp;lt;!-- outer loop saturation --&amp;gt;&lt;br /&gt;
    &amp;lt;define name=&amp;quot;ALTITUDE_MAX_CLIMB&amp;quot; value=&amp;quot;3.&amp;quot; unit=&amp;quot;m/s&amp;quot;/&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
These lines are associated with vertical control loops contained in sw/airborne/firmwares/fixedwing/guidance/guidance_v.c.  These are outer loop parameters that calculate a desired climb rate based on altitude error. Here, if the altitude error is 10m, the climb setpoint will be set to 1m/s. ALTITUDE_MAX_CLIMB is a bounded value (in m/s) so that the outer loop does not calculate too large of a climb rate&lt;br /&gt;
&amp;lt;source lang=&amp;quot;xml&amp;quot;&amp;gt;&lt;br /&gt;
    &amp;lt;define name=&amp;quot;AUTO_THROTTLE_NOMINAL_CRUISE_THROTTLE&amp;quot; value=&amp;quot;0.65&amp;quot; unit=&amp;quot;%&amp;quot;/&amp;gt;&lt;br /&gt;
    &amp;lt;define name=&amp;quot;AUTO_THROTTLE_MIN_CRUISE_THROTTLE&amp;quot; value=&amp;quot;.4&amp;quot; unit=&amp;quot;%&amp;quot;/&amp;gt;&lt;br /&gt;
    &amp;lt;define name=&amp;quot;AUTO_THROTTLE_MAX_CRUISE_THROTTLE&amp;quot; value=&amp;quot;1&amp;quot; unit=&amp;quot;%&amp;quot;/&amp;gt;&lt;br /&gt;
    &amp;lt;define name=&amp;quot;AUTO_THROTTLE_LOITER_TRIM&amp;quot; value=&amp;quot;1000&amp;quot; unit=&amp;quot;pprz_t&amp;quot;/&amp;gt;&lt;br /&gt;
    &amp;lt;define name=&amp;quot;AUTO_THROTTLE_DASH_TRIM&amp;quot; value=&amp;quot;-2500&amp;quot; unit=&amp;quot;pprz_t&amp;quot;/&amp;gt;&lt;br /&gt;
    &amp;lt;define name=&amp;quot;AUTO_THROTTLE_CLIMB_THROTTLE_INCREMENT&amp;quot; value=&amp;quot;0.15&amp;quot; unit=&amp;quot;%/(m/s)&amp;quot;/&amp;gt;&lt;br /&gt;
    &amp;lt;define name=&amp;quot;AUTO_THROTTLE_PGAIN&amp;quot; value=&amp;quot;0.008&amp;quot; unit=&amp;quot;%/(m/s)&amp;quot;/&amp;gt;&lt;br /&gt;
    &amp;lt;define name=&amp;quot;AUTO_THROTTLE_IGAIN&amp;quot; value=&amp;quot;0.25&amp;quot;/&amp;gt;&lt;br /&gt;
    &amp;lt;define name=&amp;quot;AUTO_THROTTLE_PITCH_OF_VZ_PGAIN&amp;quot; value=&amp;quot;0.35&amp;quot; unit=&amp;quot;rad/(m/s)&amp;quot;/&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
These lines are associated with vertical rate control loops contained in sw/airborne/firmwares/fixedwing/guidance/guidance_v.c and are used by default in most cases.  The default vertical control law is for the vertical rate to be managed by a combination of throttle and pitch.&lt;br /&gt;
&amp;lt;source lang=&amp;quot;xml&amp;quot;&amp;gt;&lt;br /&gt;
    &amp;lt;define name=&amp;quot;AUTO_PITCH_PGAIN&amp;quot; value=&amp;quot;0.1&amp;quot;/&amp;gt;&lt;br /&gt;
    &amp;lt;define name=&amp;quot;AUTO_PITCH_IGAIN&amp;quot; value=&amp;quot;0.025&amp;quot;/&amp;gt;&lt;br /&gt;
    &amp;lt;define name=&amp;quot;AUTO_PITCH_MAX_PITCH&amp;quot; value=&amp;quot;30&amp;quot; unit=&amp;quot;deg&amp;quot;/&amp;gt;&lt;br /&gt;
    &amp;lt;define name=&amp;quot;AUTO_PITCH_MIN_PITCH&amp;quot; value=&amp;quot;30&amp;quot; unit=&amp;quot;deg&amp;quot;/&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
These lines are associated with vertical control loops contained in sw/airborne/firmwares/fixedwing/guidance/guidance_v.c but are not used in default. The non-default vertical control law is for the vertical rate to be managed by the pitch.&lt;br /&gt;
&amp;lt;source lang=&amp;quot;xml&amp;quot;&amp;gt;&lt;br /&gt;
   &amp;lt;define name=&amp;quot;THROTTLE_SLEW_LIMITER&amp;quot; value=&amp;quot;2&amp;quot; unit=&amp;quot;s&amp;quot;/&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
THROTTLE_SLEW_LIMITER is the required time is seconds to change throttle from 0% to 100%.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''IMPORTANT''': Previous to v3.9 some of the gains need to be set with a '''negative sign''': ''ALTITUDE_PGAIN'', ''AUTO_THROTTLE_PGAIN'', ''AUTO_PITCH_PGAIN'', ''''&lt;br /&gt;
&lt;br /&gt;
''NOTE'': [[Units|automatic unit conversion]] using &amp;lt;tt&amp;gt;unit=&amp;quot;deg&amp;quot;&amp;lt;/tt&amp;gt; is supported since v3.9, if you have an older version set it in radians or using &amp;lt;tt&amp;gt;value=&amp;quot;RadOfDeg(20)&amp;quot;&amp;lt;/tt&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The [[Control_Loops#Fixed-wing_autopilot|graphical representation of the control loops]] can help you to visualize the effect of each gain.&lt;br /&gt;
&lt;br /&gt;
=== Misc ===&lt;br /&gt;
&amp;lt;source lang=&amp;quot;xml&amp;quot;&amp;gt;&lt;br /&gt;
 &amp;lt;section name=&amp;quot;MISC&amp;quot;&amp;gt;&lt;br /&gt;
  &amp;lt;define name=&amp;quot;NOMINAL_AIRSPEED&amp;quot; value =&amp;quot;12.&amp;quot; unit=&amp;quot;m/s&amp;quot;/&amp;gt;&lt;br /&gt;
  &amp;lt;define name=&amp;quot;CARROT&amp;quot; value=&amp;quot;5.&amp;quot; unit=&amp;quot;s&amp;quot;/&amp;gt;&lt;br /&gt;
  &amp;lt;define name=&amp;quot;KILL_MODE_DISTANCE&amp;quot; value=&amp;quot;(1.5*MAX_DIST_FROM_HOME)&amp;quot;/&amp;gt;&lt;br /&gt;
  &amp;lt;define name=&amp;quot;CONTROL_RATE&amp;quot; value=&amp;quot;60&amp;quot; unit=&amp;quot;Hz&amp;quot;/&amp;gt;&lt;br /&gt;
 &amp;lt;/section&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
* The &amp;quot;NOMINAL_AIRSPEED&amp;quot; is mainly used in the simulator.&lt;br /&gt;
* &amp;quot;CARROT&amp;quot; gives the distance (in seconds, so ground speed is taken into account) between the carrot and the aircraft.&lt;br /&gt;
* &amp;quot;KILL_MODE_DISTANCE&amp;quot; is the threshold distance to switch the autopilot into KILL mode (defined descent with no throttle)&lt;br /&gt;
* &amp;quot;CONTROL_RATE&amp;quot; is the rate of the low level control loops in Hertz (60 or 20).&lt;br /&gt;
&lt;br /&gt;
=== Simu ===&lt;br /&gt;
Values from this section can be used to tweak the software in the loop (SITL) simulation.&lt;br /&gt;
&amp;lt;source lang=&amp;quot;xml&amp;quot;&amp;gt;&lt;br /&gt;
 &amp;lt;section name=&amp;quot;SIMU&amp;quot;&amp;gt;&lt;br /&gt;
  &amp;lt;define name=&amp;quot;WEIGHT&amp;quot; value =&amp;quot;1.&amp;quot;/&amp;gt;&lt;br /&gt;
  &amp;lt;define name=&amp;quot;YAW_RESPONSE_FACTOR&amp;quot; value =&amp;quot;1.&amp;quot;/&amp;gt;&lt;br /&gt;
  &amp;lt;define name=&amp;quot;ROLL_RESPONSE_FACTOR&amp;quot; value =&amp;quot;15.&amp;quot;/&amp;gt;&lt;br /&gt;
 &amp;lt;/section&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
* &amp;quot;YAW_RESPONSE_FACTOR&amp;quot; adapts the aircraft's turn rate corresponding to a bank angle; a larger value increases the turn radius&lt;br /&gt;
* &amp;quot;ROLL_RESPONSE_FACTOR&amp;quot; is basically your aileron efficiency; a higher value increases roll agility&lt;br /&gt;
&lt;br /&gt;
If you want to use JSBSim as SITL simulator, you have to make some definitions in this section as well; see [[Simulation#JSBSim|here]].&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:User_Documentation]] [[Category:Airframe_Configuration]]&lt;/div&gt;</summary>
		<author><name>TilmanBaumann</name></author>
	</entry>
	<entry>
		<id>http://wiki.paparazziuav.org/w/index.php?title=Lisa&amp;diff=12929</id>
		<title>Lisa</title>
		<link rel="alternate" type="text/html" href="http://wiki.paparazziuav.org/w/index.php?title=Lisa&amp;diff=12929"/>
		<updated>2012-07-16T16:06:17Z</updated>

		<summary type="html">&lt;p&gt;TilmanBaumann: /* Description */ removed NOT YET UP TO DATE note. Lisa/M_v20 page is in a pretty good condition now&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;categorytree style=&amp;quot;float:right; clear:right; margin-left:1ex; border: 1px solid gray; padding: 0.7ex;&amp;quot; mode=pages&amp;gt;Autopilots&amp;lt;/categorytree&amp;gt;&lt;br /&gt;
__TOC__&lt;br /&gt;
Lisa ( the Lost Illusions Serendipitous Autopilot) is a new range of autopilots based on [http://www.st.com/mcu/inchtml-pages-stm32.html STM32] microcontrollers ( CortexM3@72Mhz ) designed to run Paparazzi.&lt;br /&gt;
There's no such thing as a perfect autopilot, only autopilots adapted to a particular purpose. This is the reason why Lisa comes in different flavors for different usages. &lt;br /&gt;
&lt;br /&gt;
The first members of the family are:&lt;br /&gt;
&lt;br /&gt;
*Lisa/L, a design where the STM32 is associated to a gumstix [http://www.gumstix.net/Setup-and-Programming/cat/Overo-Setup-and-Programming/111.html Overo].&lt;br /&gt;
*Lisa/M, a design focusing on cost and simplicity.&lt;br /&gt;
*Lisa/S, a design focusing on size and weight.&lt;br /&gt;
&lt;br /&gt;
==Lisa/L==&lt;br /&gt;
&lt;br /&gt;
=== Description ===&lt;br /&gt;
&lt;br /&gt;
Lisa/L is a dual processor board autopilot designed to allow the possibility of using Linux for Paparazzi airborne code.&lt;br /&gt;
&lt;br /&gt;
[[Image:lisa_l_bloc_diag_simple.png|360px]]&lt;br /&gt;
[[Image:lisa_l_top.png|360px]] [[Image:lisa_l_bot.png|360px]]&lt;br /&gt;
&lt;br /&gt;
=== Documentation ===&lt;br /&gt;
&lt;br /&gt;
The documentation for Lisa/L is broken into several parts due to board complexity and Gumstix [[Overo]] integration.&lt;br /&gt;
* [[Lisa/L|Main Documentation]] - primary hardware documentation and intro to software&lt;br /&gt;
* [[Dev/LisaL|Additional Developer Documentation]] - additional advanced hardware and software documentation and notes&lt;br /&gt;
* [[LisaL_Gallery|Lisa/L Gallery]] - nice pictures of Lisa/L&lt;br /&gt;
* [[User/LisaL/Tutorial/Quadrocopter|Unfinished Rotorcraft Tutorial]] - rotorcraft tutorial, needs considerable work&lt;br /&gt;
* [[User/LisaL/Tutorial/FixedWing|Unfinished Fixedwing Tutorial]] - fixedwing tutorial, needs considerable work&lt;br /&gt;
* [[OMAP|Gumstix Integration Intro]] - intro and documentation listing for integrating a Gumstix Overo with Lisa/L, including for USB devices and cameras&lt;br /&gt;
&lt;br /&gt;
== Lisa/M ==&lt;br /&gt;
&lt;br /&gt;
=== Description ===&lt;br /&gt;
&lt;br /&gt;
Lisa/M is a great general purpose small-footprint autopilot. There are currently two versions that have been produced. Detailed documentation can be found here:&lt;br /&gt;
* [[Lisa/M_v20|Lisa/M v2.0 (current) Documentation]]&lt;br /&gt;
* [[Lisa/M_v10|Lisa/M v1.0 Documentation]]&lt;br /&gt;
&lt;br /&gt;
[[Image:lisa_m_top_small.png|360px|Lisa/M v1.0 Top View]]&lt;br /&gt;
&lt;br /&gt;
=== Usage scenarios ===&lt;br /&gt;
&lt;br /&gt;
There are many potential applications for the small, relatively inexpensive and flexible Lisa/M. For regular Autopilot boards a full Lisa/M board is needed. For some scenarios just a basic Lisa/M without [[Inertial_Measurement_Units|IMU]] and barometric pressure sensor is needed, which reduces board cost. Here are some ideas (not all have yet been implemented):&lt;br /&gt;
&lt;br /&gt;
* As a basic Autopilot&lt;br /&gt;
** To use the Lisa/M as an autopilot, we need to attach a GPS receiver. A nice [[GPS#u-Blox_LEA_Series_Receivers|uBlox LEA-5H]] or newer will perform great.&lt;br /&gt;
* As an advanced Autopilot&lt;br /&gt;
** Additional sensors for measuring airspeed, current, etc. would enhance a fixed-wing airframe.&lt;br /&gt;
* As a servo extender&lt;br /&gt;
** Sometimes being able to control seven actuators is just not enough. Large airframes may require flaps or an airbrake and automatic landing facilities. Maybe special ACL/Nav lights, or four cameras with zoom. By using a coupled second basic Lisa/M and connecting this to the master AP board we can extend the amount of servos. Large airframes can also benefit from remote and/or redundant servo drivers.&lt;br /&gt;
* As a Safety Pilot Device&lt;br /&gt;
** To provide an extra safety level required in some UAS challenges. A second Lisa board can make it easy to adhere to the rules for such a challenge.&lt;br /&gt;
* As a Data Logger&lt;br /&gt;
** Maybe you have a need only to log all kinds of data, like temperature, volts, amps, height, airspeed, and not control the aircraft. For this we can setup a Lisa/M board. Collecting this data can be to a storage medium like an micro SD card. Sometimes there is no need for realtime data collection through telemetry but just for storing a huge dataset.&lt;br /&gt;
* As a Camera controller&lt;br /&gt;
** On some models that do not require many servos (for example - flying wing with only 3 channels used), spare channels can be used for camera control. In addition, it could be used as an independent pan-tilt unit (PTU) controller.&lt;br /&gt;
* As a Airframe Tracker&lt;br /&gt;
** Tracking an airframe for an antenna or camera on a tripod is one of the many options to use a Lisa/M Board.&lt;br /&gt;
&lt;br /&gt;
== Lia ==&lt;br /&gt;
&lt;br /&gt;
Lia is a lower-cost variant of Lisa/M 2.0. The microcontroller, basic layout, servo outputs, and mounting holes are the same. Major differences:&lt;br /&gt;
* 0.1&amp;quot; through-hole connections for non-servo I/O instead of Molex picoblade&lt;br /&gt;
** PCB size increased slightly to (58x34mm) to accomodate throughholes&lt;br /&gt;
* CAN transceiver removed&lt;br /&gt;
* barometer removed&lt;br /&gt;
* I2C level shifter removed&lt;br /&gt;
* 5V voltage regulator removed&lt;br /&gt;
* Added provisions for multiple BEC input balancing on servo connectors&lt;br /&gt;
&lt;br /&gt;
== Lisa/S ==&lt;br /&gt;
&lt;br /&gt;
Lisa/S is only a project at the moment. The focus for this design is size, weight and power consumption. The intent is to produce an autopilot suited for the smallest airframes.&lt;br /&gt;
For now just a CAD rendering to whet your appetite compared to the Lisa/L, the S is the lower board.&lt;br /&gt;
&lt;br /&gt;
[[Image:lisa_s_cad.png|360px]]&lt;br /&gt;
&lt;br /&gt;
[[Category:Lisa]]&lt;/div&gt;</summary>
		<author><name>TilmanBaumann</name></author>
	</entry>
	<entry>
		<id>http://wiki.paparazziuav.org/w/index.php?title=Bixler&amp;diff=12920</id>
		<title>Bixler</title>
		<link rel="alternate" type="text/html" href="http://wiki.paparazziuav.org/w/index.php?title=Bixler&amp;diff=12920"/>
		<updated>2012-07-13T14:11:59Z</updated>

		<summary type="html">&lt;p&gt;TilmanBaumann: /* Mods */ detachable wings&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot;&lt;br /&gt;
|[[Image:Bixler Table.jpg|thumb|left|Bixler]]&lt;br /&gt;
|&lt;br /&gt;
The HobbyKing Bixler is a very inexpensive airframe with very easy flight characteristics and reasonable payload capacity. Its price and crash resistant EPO foam construction makes this a plane well suited for beginners.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Features ==&lt;br /&gt;
&lt;br /&gt;
* Kit price $37 USD&lt;br /&gt;
* EPO Foam construction&lt;br /&gt;
* Detachable canopy for access to internals&lt;br /&gt;
* Easy access cockpit&lt;br /&gt;
* Nice and stable slow flight especially for RC beginners&lt;br /&gt;
&lt;br /&gt;
== Specifications ==&lt;br /&gt;
* Material: EPO Foam&lt;br /&gt;
* Wingspan: 1400mm&lt;br /&gt;
* Length: 925mm&lt;br /&gt;
* Wing Area: 26dm2&lt;br /&gt;
* Wing Loading: 25g/dm2&lt;br /&gt;
* Flying Weight: 650g&lt;br /&gt;
* Motor: 2620-1900kv Brushless Outrunner &lt;br /&gt;
* ESC: 20A w/BEC &lt;br /&gt;
* Servo: 4 x 9g&lt;br /&gt;
* Propeller: 6x5.5 recommended.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Buy ==&lt;br /&gt;
&lt;br /&gt;
Can be bought directly at HobbyKing [http://www.hobbyking.com/hobbyking/store/uh_viewItem.asp?idProduct=16545]&lt;br /&gt;
&lt;br /&gt;
== Airframe configuration ==&lt;br /&gt;
A simple, sample airframe configuration file can be found in conf/airframes/examples/bixler_lisa_m_2.xml [https://github.com/paparazzi/paparazzi/blob/v3.9/conf/airframes/examples/bixler_lisa_m_2.xml]&lt;br /&gt;
&lt;br /&gt;
Attention: No tuning values in this file yet! It is an untested setup.&lt;br /&gt;
&lt;br /&gt;
== Cockpit ==&lt;br /&gt;
{|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot;&lt;br /&gt;
|[[Image:Bixler Cockpit.jpg|thumb|left|Cockpit]]&lt;br /&gt;
|HobbyKing also offers a very simple plywood FPV mount which can be used to mount the autopilot. [http://www.hobbyking.com/hobbyking/store/uh_viewItem.asp?idProduct=22731]&lt;br /&gt;
&lt;br /&gt;
Note the [[Lisa/M]] board is mounted at a right angle which is the natural orientation of the IMU. This layout also makes wiring much simpler.&lt;br /&gt;
&lt;br /&gt;
This way the IMU is far from the planes' centre of gravity. Mounting the IMU under the wings would be better, but much more complex.&lt;br /&gt;
&lt;br /&gt;
The camera mount for the keyhole camera seen here proved not to be crash resistant enough.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Mods ==&lt;br /&gt;
The plane flies well out of the box. But some modifications are popular:&lt;br /&gt;
&lt;br /&gt;
* Rudder servo can be moved back into the rudder. The original long pushrod in tube setup is far from perfect. Moving the servo into the tail wing will increase accuracy but will also move the centre of gravity severely to the rear. A lot of counterweights in the front will be needed.&lt;br /&gt;
* Increase rudder size either by gluing some strong paper or cardboard on the rudder to make it bigger or by cutting the tail fin at the whole length following the hinge and attaching a full height rudder.&lt;br /&gt;
* Wings can be designed to be detachable. Just don't glue wings and carbon rod in, and hold wing halves together with Velcro. This makes the wings obviously much more fragile. The original carbon rod is not very strong, even if glued in.&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
Plenty of space is available inside, but much of this space is not very easy to access.&lt;br /&gt;
[[Image:Bixler Nose.jpg|thumb|left|Datalink antenna]]&lt;br /&gt;
Here the 2.4Ghz XBee telemetry antenna can be seen pushed out to one side. Pointing down in flight.&lt;br /&gt;
&lt;br /&gt;
Large batteries can be fitted without problems.&lt;br /&gt;
&lt;br /&gt;
== Build Tips ==&lt;br /&gt;
&lt;br /&gt;
The foam hinges are very stiff and need to be exercised quite a bit by hand to make them move well.&lt;/div&gt;</summary>
		<author><name>TilmanBaumann</name></author>
	</entry>
	<entry>
		<id>http://wiki.paparazziuav.org/w/index.php?title=Bixler&amp;diff=12841</id>
		<title>Bixler</title>
		<link rel="alternate" type="text/html" href="http://wiki.paparazziuav.org/w/index.php?title=Bixler&amp;diff=12841"/>
		<updated>2012-07-05T15:26:42Z</updated>

		<summary type="html">&lt;p&gt;TilmanBaumann: /* Cockpit */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot;&lt;br /&gt;
|[[Image:Bixler Table.jpg|thumb|left|Bixler]]&lt;br /&gt;
|&lt;br /&gt;
The HobbyKing Bixler is a very inexpensive airframe with very easy flying characteristics and reasonable payload capacity. Price and its crash resistant EPO foam construction make this a plane well suited for beginners.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Features ==&lt;br /&gt;
&lt;br /&gt;
* Kit price $37 USD&lt;br /&gt;
* EPO Foam construction&lt;br /&gt;
* Detachable canopy for access to internals&lt;br /&gt;
* Easy access cockpit&lt;br /&gt;
* Nice and stable slow flight especially for RC beginners&lt;br /&gt;
&lt;br /&gt;
== Specifications ==&lt;br /&gt;
* Material: EPO Foam&lt;br /&gt;
* Wingspan: 1400mm&lt;br /&gt;
* Length: 925mm&lt;br /&gt;
* Wing Area: 26dm2&lt;br /&gt;
* Wing Loading: 25g/dm2&lt;br /&gt;
* Flying Weight: 650g&lt;br /&gt;
* Motor: 2620-1900kv Brushless Outrunner &lt;br /&gt;
* ESC: 20A w/BEC &lt;br /&gt;
* Servo: 4 x 9g&lt;br /&gt;
* Propeller: 6x5.5 recommended.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Buy ==&lt;br /&gt;
&lt;br /&gt;
Can be bought directly at HobbyKing [http://www.hobbyking.com/hobbyking/store/uh_viewItem.asp?idProduct=16545]&lt;br /&gt;
&lt;br /&gt;
== Airframe configuration ==&lt;br /&gt;
A simple sample airframe congiguration file can be found in conf/airframes/examples/bixler_lisa_m_2.xml [https://github.com/paparazzi/paparazzi/blob/v3.9/conf/airframes/examples/bixler_lisa_m_2.xml]&lt;br /&gt;
&lt;br /&gt;
Attention, no tuning values in this file yet! Untested setup.&lt;br /&gt;
&lt;br /&gt;
== Cockpit ==&lt;br /&gt;
{|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot;&lt;br /&gt;
|[[Image:Bixler Cockpit.jpg|thumb|left|Cockpit]]&lt;br /&gt;
|HobbkyKing also offers a very simple plywood FPV mount which can be used to mount the autopilot. [http://www.hobbyking.com/hobbyking/store/uh_viewItem.asp?idProduct=22731]&lt;br /&gt;
&lt;br /&gt;
Note the [[Lisa/M]] board is mounted at right angle with is the natural orientation of the IMU. This layout also makes wiring much simpler.&lt;br /&gt;
&lt;br /&gt;
This way the IMU is far from the planes centre of gravity. Mounting the IMU under the wings would be better, but much more complex.&lt;br /&gt;
&lt;br /&gt;
The camera mount for the keyhole camera seen here proved not to be crash resistant enough.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Mods ==&lt;br /&gt;
The plane flies well out of the box. But some modifications are popular.&lt;br /&gt;
&lt;br /&gt;
* Rudder servo can be moved back into the rudder. The original long pushrod in tube setup is far from perfect. Moving the servo into the tail wing will increase accuracy but will also move the centre of gravity severely to the rear. A lot of counterweights in the front will be needed&lt;br /&gt;
* Increase rudder size. Either by gluing some strong paper or cardboard on the rudder to make it bigger or by cutting the tail fin at the whole length following the hinge and attaching a full height rudder.&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
Plenty of space is available inside. But much of this space is not very easy to access.&lt;br /&gt;
[[Image:Bixler Nose.jpg|thumb|left|Datalink antenna]]&lt;br /&gt;
Here the 2.4Ghz Xbee telemetry antenna can be seen pushed out to one side. Pointing down in flight.&lt;br /&gt;
&lt;br /&gt;
Large batteries can be fitted without problems.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Build Tips ==&lt;br /&gt;
&lt;br /&gt;
The foam hinges are very stiff and need to be exercised quite a bit by hand to make them move well.&lt;/div&gt;</summary>
		<author><name>TilmanBaumann</name></author>
	</entry>
	<entry>
		<id>http://wiki.paparazziuav.org/w/index.php?title=Talk:Bixler&amp;diff=12840</id>
		<title>Talk:Bixler</title>
		<link rel="alternate" type="text/html" href="http://wiki.paparazziuav.org/w/index.php?title=Talk:Bixler&amp;diff=12840"/>
		<updated>2012-07-05T15:24:15Z</updated>

		<summary type="html">&lt;p&gt;TilmanBaumann: Created page with &amp;quot;Requested permission from HobbyKing to use their product photos.&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Requested permission from HobbyKing to use their product photos.&lt;/div&gt;</summary>
		<author><name>TilmanBaumann</name></author>
	</entry>
	<entry>
		<id>http://wiki.paparazziuav.org/w/index.php?title=RC_Receivers_and_Radios&amp;diff=12839</id>
		<title>RC Receivers and Radios</title>
		<link rel="alternate" type="text/html" href="http://wiki.paparazziuav.org/w/index.php?title=RC_Receivers_and_Radios&amp;diff=12839"/>
		<updated>2012-07-05T14:58:38Z</updated>

		<summary type="html">&lt;p&gt;TilmanBaumann: /* Flight mode switch */  Only available in v.3.9&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== 2.4GHz Systems==&lt;br /&gt;
If using a Lisa/M or Lisa/L autopilot board the whole range of Specktrum/JR transmitters can be used with 1 or 2 Spektrum/JR/Hobbyking satellite receivers. For other autopilot boards to use a 2.4 GHz system a few requirements are necessary&lt;br /&gt;
# Must use [[PPM_Encoder | PPM Encoder]] board. (See [[Get_Hardware|Get Hardware]] page for suppliers) (Except for the Futaba FASST 7 channel receiver R617FS that has a 5 (not 7) channels combined pulse)&lt;br /&gt;
# Needs a three position switch&lt;br /&gt;
# Ability to set failsafe to any or at least 1 channel (pprz-mode) as desired&lt;br /&gt;
# At least one extra channel beyond those needed to control the servos and motor. (throttle-roll-pitch-mode)&lt;br /&gt;
=== Radios ===&lt;br /&gt;
&lt;br /&gt;
====Futaba FASST 7-channel receiver====&lt;br /&gt;
&lt;br /&gt;
[[Image:rs617fasst.jpg|thumb|right]]&lt;br /&gt;
&lt;br /&gt;
* Pin 8 (upper right corner in picture) of the small IC on the right contains 5 PPM pulses and can go directly to paparazzi. Pulse 6 and 7 go directly to the servos. &lt;br /&gt;
* Best is to remove the resistors of one of the channels and connect a small wire to pin 8 to get the combined 5 pulses on the robust 1/10th inch header.&lt;br /&gt;
* Do not forget to use channel 3 (only failsafe channel) as mode switch with fail safe &amp;quot;throttle off&amp;quot; as mode 2.&lt;br /&gt;
&lt;br /&gt;
====Robbe RASST 7 &amp;amp; 8 channed receivers ====&lt;br /&gt;
Robbe has produced line of Futaba FASST compatible receivers that can output only PPM which results ablility to plug into autopilot without encoder.&lt;br /&gt;
* [http://www.robbe.de/empfaenger-r-6007-sp-2-4-g-rasst.html R6007SP 2,4 GHz RASST] - 7 channel, for small aircraft&lt;br /&gt;
* [http://www.robbe.de/empf-r6107sp-2-4-ghz-rasst.html R6107SP 2,4 GHz RASST] - 7 channel, &amp;gt;1000m range&lt;br /&gt;
* [http://www.robbe.de/empf-r6008sp-2-4-ghz-rasst.html R6008SP 2,4 GHz RASST] - 8 channel, upto 3000m range&lt;br /&gt;
&lt;br /&gt;
====Spektrum DX-7====&lt;br /&gt;
[[Image:DX7.jpg|thumb|left]]&lt;br /&gt;
*7 Channels &lt;br /&gt;
* 20-Model memory&lt;br /&gt;
* Airplane and Heli software&lt;br /&gt;
* Switch assignment&lt;br /&gt;
* P-mixes&lt;br /&gt;
* Includes 4 powerful DS821 digital servos with high-tech resin gears&lt;br /&gt;
* 3-axis dual rate &amp;amp; expo&lt;br /&gt;
* 3-position flap (Airplane)&lt;br /&gt;
* 5-point throttle curve (Heli)&lt;br /&gt;
* 3 flight modes plus hold (Heli)&lt;br /&gt;
* Gyro programming (Heli)&lt;br /&gt;
* CCPM, 2-servo 90°, 3-servo 90°, &amp;amp; 3-servo 120°&lt;br /&gt;
* Price $320-$350&lt;br /&gt;
&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
===== Switch Assignment =====&lt;br /&gt;
To assign the three position switch to any other channel but channel 7 follow these steps:&lt;br /&gt;
# Set up aux2(refers to aux2 on rx not the switch on the tx. aka ch7) with its input selected as 3 pos switch.&lt;br /&gt;
# Set up this mix - Gear to Gear (Up=-100, Down=-100, Offset =0). This inhibits the gear switch.&lt;br /&gt;
# Set up another mix - Aux2 to Gear (Up=100, Down=100, Offset = 0).&lt;br /&gt;
Notes: &lt;br /&gt;
#Gear on a DX-7 Air is Channel 5 and AUX2 is CH7. Once again i am referring to the inputs which are labeled on the RX not what the switches are named on the TX. If your using a DX-7 heli please substitute the names for what the rx channels are named into this guide&lt;br /&gt;
# DX7 Heli the 3-pos switch is named &amp;quot;flight mode&amp;quot;&lt;br /&gt;
# DX7 Air the 3-pos switch is named &amp;quot;flaps&amp;quot;&lt;br /&gt;
&lt;br /&gt;
===== Failsafe Setup =====&lt;br /&gt;
To set up the mode channel (3 pos switch) to default to auto2 if connection is lost between rx and tx follow these steps:&lt;br /&gt;
# Put 3 position Switch into AUTO2 Position&lt;br /&gt;
# Put in bind plug&lt;br /&gt;
# Power up&lt;br /&gt;
# REMOVE the bind plug&lt;br /&gt;
# Power up Tx while pushing bind button&lt;br /&gt;
# Wait until light becomes steady and not blinking (it may become steady right off but will then start blinking again so let it go at least 5 seconds)&lt;br /&gt;
&lt;br /&gt;
===Receivers===&lt;br /&gt;
====Jeti Duplex 2.4 GHz Receiver Rsat 2====&lt;br /&gt;
[[Image:Jeti_Duplex_Rsat2.jpg|thumb|left|Jeti RSat 2]]&lt;br /&gt;
* Outputs PPM, no soldering or PPM board required&lt;br /&gt;
* Only 12 gramms&lt;br /&gt;
* Full duplex technology provides safe radio link and redundant telemetry to standard paparazzi telemetry.&lt;br /&gt;
* [http://www.jetimodel.cz/index.php?page=products&amp;amp;old=0&amp;amp;category=4 Transmitter module] can be installed in any receiver.&lt;br /&gt;
See the official [http://www.jetimodel.cz/index.php?page=product&amp;amp;id=165 Homepage of Jeti] or the [http://www.mikrokopter.de/ucwiki/JetiDuplex MikroKopter Wiki].&lt;br /&gt;
&amp;lt;br style=&amp;quot;clear:both&amp;quot;&amp;gt;&lt;br /&gt;
====Spektrum 2.4Ghz Satellite Receiver - Lisa/L implementation====&lt;br /&gt;
[[Image:Lisa l hex 1.jpg|thumb|right|Connection View]] &lt;br /&gt;
[[Image:SPM9545-250.jpg|thumb|left|Remote Receiver [SPM9545]]] &lt;br /&gt;
* [http://www.spektrumrc.com/Products/Default.aspx?ProdID=SPM9545 Specifications]&lt;br /&gt;
* Lisa/L Radio_Control_Spektrum_Primary_Port = Uart 3&lt;br /&gt;
* Lisa/L Radio_Control_Spektrum_Secondary_Port = Uart 5&lt;br /&gt;
* arch files:~/paparazzi/sw/airborne/arch/stm32/subsystems/radio_control/spektrum-arch.h and .c&lt;br /&gt;
* Additional hardware - &lt;br /&gt;
[http://parts.digikey.com/1/parts/355490-conn-housing-5pos-1-25mm-51021-0500.html Molex CONN HOUSING 5POS 1.25MM - 51021-0500], &lt;br /&gt;
&lt;br /&gt;
[http://parts.digikey.com/1/parts/355493-conn-housing-8pos-1-25mm-51021-0800.html Molex CONN HOUSING 8POS 1.25MM - 51021-0800], &lt;br /&gt;
&lt;br /&gt;
[http://uk.rs-online.com/web/search/searchBrowseAction.html?method=getProduct&amp;amp;R=2799544 Molex Socket to free end crimped lead,300mm L], &lt;br /&gt;
&lt;br /&gt;
[http://parts.digikey.com/1/parts/270897-conn-term-female-26-28awg-tin-50079-8000.html Molex CONN TERM FEMALE 26-28AWG TIN], &lt;br /&gt;
&lt;br /&gt;
[http://parts.digikey.com/1/parts/1806245-hand-tool-26-32awg-crimp-638190300.html Molex HAND TOOL 26-32AWG CRIMP]&lt;br /&gt;
* Transmitter options - Spektrum DX6, DX7(see above), DX8, bind compatible JR units up to 12 channels and those bearing the Specktrum DM9 module - note these transmitters must be channel order compatible with Spektrum's protocol (in fact all transmitters that use Spektrum protocol have the same channel ordering regardless which stays consistent across different modes (ie throttle on left / right etc)))  - [http://code.google.com/p/er9x/ here is an example] &lt;br /&gt;
 &lt;br /&gt;
=====Installation=====&lt;br /&gt;
# Cut off original receiver connector and crimp molex connector terminals to the three wires.&lt;br /&gt;
# Insert terminals into appropriate positions-[http://paparazzi.enac.fr/wiki_images/LisaL_v1_0_schematic_3.png CON_USART3]-of the 5 way connector - black to pos1 = GND, orange to pos3 = +3v3, grey to pos5 = STM_USART3_RX.            &lt;br /&gt;
&lt;br /&gt;
=====Bind plug===== &lt;br /&gt;
# Take the 8 way molex connecter and create a loop between pos1 = GND and pos4 = XXX_STM_SPARE_2. This plug is placed in the-[http://paparazzi.enac.fr/wiki_images/LisaL_v1_0_schematic_3.png CON_SPARE]-receptacle housing before power-up to enable the receiver binding state.    &lt;br /&gt;
&lt;br /&gt;
=====Configuration=====&lt;br /&gt;
* Set the spektrum radio parameters for Lisa/M or Lisa/L ap in ~/paparazzi/conf/airframes.xml file. Check 'esden' directory as a possible rotorcraft example. Refer to ~/paparazzi/sw/airborne/arch/stm32/subsystems/radio_control/spektrum-arch.h and .c for other options. Be sure to set actuators, rotor configuration/mixes and channel reversal parameters that are appropriate for the rotorcraft/aircraft (note &amp;quot;lisa_l_1.0&amp;quot; can also be &amp;quot;lisa_m_1.5&amp;quot; or &amp;quot;lisa_m_2.0&amp;quot;):&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;firmware name=&amp;quot;rotorcraft&amp;quot;&amp;gt;&lt;br /&gt;
     &amp;lt;target name=&amp;quot;ap&amp;quot; board=&amp;quot;lisa_l_1.0&amp;quot;&amp;gt;&lt;br /&gt;
 &amp;lt;!--      &amp;lt;define name=&amp;quot;BOOZ_START_DELAY&amp;quot; value=&amp;quot;1&amp;quot;/&amp;gt; --&amp;gt;&lt;br /&gt;
       &amp;lt;subsystem name=&amp;quot;radio_control&amp;quot; type=&amp;quot;spektrum&amp;quot;/&amp;gt;&lt;br /&gt;
       &amp;lt;subsystem name=&amp;quot;actuators&amp;quot;     type=&amp;quot;mkk&amp;quot;/&amp;gt;&lt;br /&gt;
       &amp;lt;subsystem name=&amp;quot;telemetry&amp;quot;     type=&amp;quot;transparent&amp;quot;/&amp;gt;&lt;br /&gt;
       &amp;lt;define name=&amp;quot;RADIO_MODE&amp;quot; value=&amp;quot;RADIO_AUX1&amp;quot;/&amp;gt;&lt;br /&gt;
       &amp;lt;define name=&amp;quot;RADIO_KILL_SWITCH&amp;quot; value=&amp;quot;RADIO_GEAR&amp;quot;/&amp;gt;&lt;br /&gt;
     &amp;lt;/target&amp;gt;&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;target name=&amp;quot;stm_passthrough&amp;quot; board=&amp;quot;lisa_l_1.0&amp;quot;&amp;gt;&lt;br /&gt;
       &amp;lt;subsystem name=&amp;quot;radio_control&amp;quot; type=&amp;quot;spektrum&amp;quot;/&amp;gt;&lt;br /&gt;
       &amp;lt;subsystem name=&amp;quot;imu&amp;quot; type=&amp;quot;b2_v1.2&amp;quot;/&amp;gt;&lt;br /&gt;
     &amp;lt;/target&amp;gt;&lt;br /&gt;
*Create a new transmitter 'airplane' model. Do not introduce any mixes or change the endpoints, subtrims etc. Note that a radio.xml file is not required for this implementation, unlike analogue RC directed autopilots.    &lt;br /&gt;
*Upload ap software in the usual way. &lt;br /&gt;
*Unplug the aircraft battery. Turn transmitter off. Insert the bind plug (see above) in the 8 way CON_SPARE receptacle. Power up the aircraft - specktrum receiver LED should be flashing in readiness to bind. Press and hold bind button on transmitter while turning on. Receiver LED should stop flashing after a few moments to confirm it is bound. Turn everything off in preparation to start in the normal way. Note that the transmitter should now be turned on first to enable the spektrum receiver to acknowledge it.       &lt;br /&gt;
*Should be ready to fly.  &lt;br /&gt;
*Adding a second spektrum satellite receiver requires different wiring dependent on the Lisa board version. As the pinouts to uart5 differ between Lisa-L v1.0 and v1.1. Seek advice from the [http://lists.gnu.org/archive/html/paparazzi-devel/2011-01/index.html paparazzi mailing list] prior to making this addition.&lt;br /&gt;
&lt;br /&gt;
To enable the use of the secondary satellite receiver you have to add two lines to your firmware section in the airframe file:&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;define name=&amp;quot;RADIO_CONTROL_SPEKTRUM_SECONDARY_PORT&amp;quot; value=&amp;quot;UART5&amp;quot;/&amp;gt;&lt;br /&gt;
 &amp;lt;define name=&amp;quot;OVERRIDE_UART5_IRQ_HANDLER&amp;quot;/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== PCM Systems ==&lt;br /&gt;
&lt;br /&gt;
Most of the known PCM transmitter also can be set to PPM mode. If this is set, then the regular description for PPM applies since the PCM receiver like a JR/Gaupner SMC16 Scan can output PPM perfectly. &lt;br /&gt;
&lt;br /&gt;
If PPM out is not setable on your transmitter then the following applies:&lt;br /&gt;
&lt;br /&gt;
# Must use ppm encoder board. (See [[Get_Hardware|Get Hardware]] page for suppliers)&lt;br /&gt;
# Needs a three position switch&lt;br /&gt;
# Ability to set failsafe to any channel as desired&lt;br /&gt;
# At least one extra channel beyond those needed to control the servos and motor.&lt;br /&gt;
&lt;br /&gt;
== PPM Based Systems ==&lt;br /&gt;
=== Configuration ===&lt;br /&gt;
The [[Radio_Control]] page describes how to set up the radio.xml config file.&lt;br /&gt;
&lt;br /&gt;
=== Requirements ===&lt;br /&gt;
To use a 26/27/35/40/41/72/ MHz **(uses PPM) system a few requirements are necessary&lt;br /&gt;
# Need a Transmitter with a three position switch&lt;br /&gt;
# At least one extra channel beyond those needed to control the servos and motor.&lt;br /&gt;
# A modified receiver which outputs a full ppm signal.&lt;br /&gt;
&lt;br /&gt;
===Adding a 3 position switch===&lt;br /&gt;
===== Futaba T6EXAP =====&lt;br /&gt;
For this particular transmitter, the Potentiometer on channel 6 can be replaced with a 3 position switch. Channel 5 appears not to be connected to an ADC converter; therefore it will not support a 3 position switch.&lt;br /&gt;
#Disconnect the potentiometer being careful not to shorten the wires&lt;br /&gt;
#Solder the switch and resistors onto the wires using the wiring diagram as a reference. (Any two equal value resistors should work). I used 10k resistors.&lt;br /&gt;
[[Image:SwitchWiringDiagram.JPG|thumb|left|Switch wiring diagram]]&lt;br /&gt;
[[Image:3positionswitch.JPG|thumb|left|Switch installed in transmitter]]&lt;br /&gt;
&amp;lt;br style=&amp;quot;clear:both&amp;quot;&amp;gt;&lt;br /&gt;
Suitable 3 position switches:&amp;lt;br style=&amp;quot;clear:both&amp;quot;&amp;gt;&lt;br /&gt;
RS Components: [http://australia.rs-online.com/web/search/searchBrowseAction.html?method=getProduct&amp;amp;R=344-710 344-710]&amp;lt;br style=&amp;quot;clear:both&amp;quot;&amp;gt;&lt;br /&gt;
Mouser: [http://au.mouser.com/Search/Refine.aspx?Keyword=633-M202402-RO 633-M202402-RO]&lt;br /&gt;
&lt;br /&gt;
=== R/C Receiver Interface===&lt;br /&gt;
All versions of the Paparazzi autopilot include a connector to interface with a standard R/C receiver for manual or semi-autonomous control during the testing and tuning phases.  Two interface options exist:&lt;br /&gt;
# Tap into the PPM signal running between the RF section and the servo driver of your receiver and route it to the Paparazzi.  Let the Paparazzi generate individual servo signals and connect all servos directly to the autopilot.  This method requires only 3 wires to the receiver (power and PPM), is compatible with all Paparazzi autopilots, and provides 8 manual R/C channels and the potential for more autonomous channels regardless of the capability of the R/C receiver.&lt;br /&gt;
# Cut the PPM trace and route it thru the autopilot and back to the receiver, using the servo driver IC on your R/C receiver to drive the servos.  This option requires 4 wires (Ground, PPM-in, PPM-out, Reset) and your receiver must have a supported servo driver IC.  This allows you to use the large servo connectors on your R/C receiver and does not require any modification to your servos or ESC but does require you to cut a trace on your R/C receiver and limits the number of servos to the capacity of your receiver.  Compatible with Classix and Tiny 1.1.&lt;br /&gt;
# Note that on the Classix the PPM_in pin is FOO2... &lt;br /&gt;
[[Image:RC_Receiver_Timing_Diagram.jpg|thumb|left|PPM Timing Diagram&amp;lt;small&amp;gt;Note 1: Exact value not critical. Depending on RC Transmitter type &amp;amp; Manufacturer.&amp;lt;br&amp;gt;Note 2: Depending on Transmitter number of Channels and t,,n,, durations.&amp;lt;br&amp;gt;Note 3: Not critical. Depending on Synchro detection method.&amp;lt;/small&amp;gt;]]&lt;br /&gt;
[[Image:RC_Receiver_Tiny.jpg|thumb|left|3-Wire setup, driving servos from the autopilot]]&lt;br /&gt;
[[Image:RC_Receiver_classix.jpg|thumb|left|4-Wire setup, driving servos from the R/C receiver]]&lt;br /&gt;
&amp;lt;br style=&amp;quot;clear:both&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Common demux chips ===&lt;br /&gt;
&lt;br /&gt;
Typical used chips are the cmos [http://www.doctronics.co.uk/4015.htm 4015] and [http://www.doctronics.co.uk/4017.htm 4017]. &lt;br /&gt;
&lt;br /&gt;
The 4015 uses either pin 1 or pin 9 for the clock and the input is on 7 and 15. The 4017 has just one shift register and has its clock input on pin 14 and the enable on pint 13.&lt;br /&gt;
&lt;br /&gt;
In most receivers you are after the clock; though some may be pulsed; in which case you need the enable. Note that the 4017 enable has inverted logic (low to be enabled) whereas the input on the 4015 can be either (typically high). If the enable pin is held low (4017) or if the input pin (4015) is held high always;e.g. connected to the ground or the Vcc - then it is fair to assume that the PPM signal is most propably on the clock input. &lt;br /&gt;
&lt;br /&gt;
=== Recommended 35/40Mhz R/C Receivers ===&lt;br /&gt;
&lt;br /&gt;
Note that there is information on modifying other receiver models at [http://mikrokopter.de/ucwiki/RC-Empf%C3%A4nger mikrokopter.de]. It's in German however the pictures contain most of the information or use google translate.&lt;br /&gt;
Shielded wire is recommended for receiver and autopilot connection, as unshielded one may cause noise in receiver. &lt;br /&gt;
&lt;br /&gt;
=====Futaba FP-R116FB 6 Channel FM 35MHz receiver=====&lt;br /&gt;
[[Image:Rc_fut_web.jpg|thumb|left|Wiring of a Futaba R136]]&lt;br /&gt;
*Orange wire is connected to PPM signal&lt;br /&gt;
*Red wire is connected to VCC&lt;br /&gt;
*Brown wire is connected to GND&lt;br /&gt;
&amp;lt;br style=&amp;quot;clear:both&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=====Futaba R136F 6 Channel FM receiver=====&lt;br /&gt;
[[Image:rx_futaba136.jpg|thumb|left|Wiring of a Futaba R136]]&lt;br /&gt;
*41 MHz&lt;br /&gt;
*White wire is connected to PPM signal&lt;br /&gt;
&amp;lt;br style=&amp;quot;clear:both&amp;quot;&amp;gt;&lt;br /&gt;
=====Futaba R168DF 8 Channel dual FM receiver=====&lt;br /&gt;
[[Image:rx_futaba168df.jpg|thumb|left|Wiring of a Futaba R168DF]]&lt;br /&gt;
*35 MHz&lt;br /&gt;
*PPM wire is connected to 862 receiver pin on the board. VCC and GND is on the 8/B original position.&lt;br /&gt;
&amp;lt;br style=&amp;quot;clear:both&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=====ACT Micro-6 FM receiver=====&lt;br /&gt;
[[Image:rx_act_micro-6.jpg|thumb|left|Wiring of a ACT Micro-6]]&lt;br /&gt;
*Available in 35 or 40 MHz versions&lt;br /&gt;
*White wire is connected to PPM signal&lt;br /&gt;
*[http://www.acteurope.com/Micro_6anl.pdf Datasheet (German)]&lt;br /&gt;
&amp;lt;br style=&amp;quot;clear:both&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=====ACT DSL-4top [http://www.mikrokopter.de/ucwiki/DSL4top mikrokopter.de] version=====&lt;br /&gt;
[[Image:DSL4top.jpg|thumb|left|DSL-4top mikrokopter.de version]]&lt;br /&gt;
* Special version for mikrokopter.de - Only available in their [https://www.mikrocontroller.com/index.php?main_page=product_info&amp;amp;products_id=215&amp;amp;zenid=8ce8bab70f3e9d684e01f724316d9690 shop]!&lt;br /&gt;
* '''Outputs PPM directly''' on the channel 1 connector!&lt;br /&gt;
* No soldering necessary&lt;br /&gt;
* ACT Lifetime warranty&lt;br /&gt;
* Sells for ~45 euro&lt;br /&gt;
&amp;lt;br style=&amp;quot;clear:both&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=====Futaba R115F 5 Channel FM receiver=====&lt;br /&gt;
[[Image:pprz_rx115.jpg|thumb|left|Wiring of a Futaba R115]]&lt;br /&gt;
*Available in 35 and 40 MHz versions&lt;br /&gt;
*White wire is connected to PPM signal&lt;br /&gt;
&amp;lt;br style=&amp;quot;clear:both&amp;quot;&amp;gt;&lt;br /&gt;
=====JETI REX 5 plus (no MPD) receiver=====&lt;br /&gt;
[[Image:520_Jeti_5_plus.jpg|thumb|left|Wiring of a REX 5]]&lt;br /&gt;
&lt;br /&gt;
*Popular Czech made micro r/c receiver, available in 35 or 40 MHz versions&lt;br /&gt;
*´folded´ PCB design with parts inside, mostly inaccessable&lt;br /&gt;
*Small grey wire is connected to via with PPM signal&lt;br /&gt;
*Unusual connector used for testing, soldering recommended&lt;br /&gt;
*shielded wire recommended, this one taken from PC parts recycling (former soundcard to m/b connector cable)&lt;br /&gt;
*[http://www.jetimodel.cz/eng/navody_en/rex5_eng.pdf Datasheet (English)]&lt;br /&gt;
&amp;lt;br style=&amp;quot;clear:both&amp;quot;&amp;gt;&lt;br /&gt;
[[Image:DSC02414.JPG|thumb|left|other Layout of REX 5]]&lt;br /&gt;
&amp;lt;br style=&amp;quot;clear:both&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=====Receiver RX-7-SYNTH IPD receiver [http://www.multiplex-rc.de/hp/produkte/artikel_detail.jsp?lfdnr=55880&amp;amp;action=add2notice&amp;amp;qty=1&amp;amp;cachenepper=1227896925116 Multiplex-rc.de]=====&lt;br /&gt;
[[Image:RX-7-SYNTH_IPD.jpg|thumb|left|Wiring of RX-7-SYNTH IPD]]&lt;br /&gt;
&lt;br /&gt;
*Available in 35, 36 and 40 MHz versions&lt;br /&gt;
*A compact, high-quality 7-channel single-conversion FM / PPM IPD receiver&lt;br /&gt;
*Easy modification through connectors, see pictures&lt;br /&gt;
&amp;lt;br style=&amp;quot;clear:both&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== Protech 5FM 35 mHz Receiver ====&lt;br /&gt;
&lt;br /&gt;
The low cost Protech '5FM' receiver makes use of an SMD version of the standard 74AHC164[http://www.ic-on-line.cn/IOL/datasheet/74ahct164_18057.pdf] 8 bit shift register; you are after PIN 1 of this chip. The circuit board has a testpad for just this pin at the top side of the circuit board.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery&amp;gt;&lt;br /&gt;
Image:protech-5fm.jpg|Figure 1. &amp;lt;br&amp;gt;Protech 5FM 35 mHZ Receiver, mark 2&lt;br /&gt;
Image:protech-5fm-pad.jpg|Figure 2. &amp;lt;br&amp;gt; PPM tap location for the Protech 5FM receiver, near the 74AHC164 shift register&lt;br /&gt;
Image:protech-5fm-scope.jpg|Figure 3.&amp;lt;br&amp;gt; Protech 5FM PPM signal - not very clean/digital&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Two physical versions exist; the older one [http://www.protech.be/Manuals/PRO205manual%20web.pdf] and a newer one pictured (fig 1). It has been distributed by protech with various ready-to-fly planes; such as the Skyraider[http://www.modelbouwforum.nl/forums/beginners/50677-protech-skyraider.html].&lt;br /&gt;
&lt;br /&gt;
The solder/testpad you are after the one right next the 74x164 chip its pin 1. In this image it has a jellow wire soldered to it (the yellow wire at the top left is the normal antenna connector (fig 2). Note however that the signal is not very clean (1v/div) - which may cause issues - as shown in the above image (fig 3). &lt;br /&gt;
&lt;br /&gt;
This is further compunded by the relatively noisy electrical engines; which are not brushless. A ferrite coil does not seem to help enough - Papparazi and GPS loose sync often through Xbee. Replacing the engine by a brushless outrunnen resolve the issue completely.&lt;br /&gt;
&lt;br /&gt;
==== Profi Penta 35 MHz ====&lt;br /&gt;
[[Image:DSC00547.JPG]]&lt;br /&gt;
[[Image:DSC00545.JPG]]&lt;br /&gt;
&lt;br /&gt;
=== Recommended 72Mhz R/C Receivers ===&lt;br /&gt;
====Castle Creations [http://www.castlecreations.com/products/berg_ms4l.html Berg 4L]====&lt;br /&gt;
[[Image:berg4L.jpg|thumb|Wiring of a Berg 4L]]&lt;br /&gt;
* Expect fantastic performance from these $40 USD parts but be warned that they are known to have unreliable crystal sockets and brittle antenna wire.  The ''Berg 7'' channel receiver should work equally well and is known to have a better crystal socket - note that either receiver will provide '''8 channels''' in manual R/C mode when used with Paparazzi.  Note: the rugged ''Berg 4'' cannot be modified, only the ''Berg 4L'' and ''Berg 7''.&lt;br /&gt;
To Modify a Berg4L, follow these instructions:&lt;br /&gt;
# Remove the shrink wrap. Use a good knife and be careful to not damage any of the components on the receiver. I would recommend that you cut on the sides (edge of the PCB) to be sure to avoid damaging the shielding&lt;br /&gt;
# Desolder the headers. We will not use them with tiny AP as the servos are connected directly to the AP. This is pretty easy to do when you have a hot air rework station. If you don't have one, your best bet is to cut the header off and remove the left over pins one by one with a regular iron. There is a piece of shielding material that is connected to one of the ground pins of the header. You need to remove it carefully from the header without damaging it and re-solder it to the gnd pad.&lt;br /&gt;
# You need to solder 3 wires to the receiver. Gnd, +5V and PPM. To locate the PPM signal, first locate the PIC micro controller close to the location of the headers. The PPM signal is on the corner pin closest to the corner of the receiver. Soldering a 28guage wire directly to the PIN isn't very difficult. For the power connection, use the pads that were used for the header. The outside pin is Gnd, the second pin is +5V. What I did is solder the wires on the pad going straight down, then I looped the 3 wires 360 degrees and glued them to the PCB with hot glue. This provides good strain relief.&lt;br /&gt;
# While you have the PCB in your hands, take the opportunity to remove the crystal connector and solder your crystal directly to the PCB for added reliability.&lt;br /&gt;
# I also used some hot glue to add more strain relief to the antenna&lt;br /&gt;
# Use some large shrink wrap to cover the entire receiver again&lt;br /&gt;
=====Hitec Electron 6 72MHz Reciever=====&lt;br /&gt;
This was written for MNAV from crossbow but is still usable with PPRZ.&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
[[Image:Electron6mod.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=====Corona Synthesized Dual-Conv Receiver 8Ch=====&lt;br /&gt;
[http://www.corona-rc.com/coproductshowE.asp?ArticleID=63 manual] &amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This receiver is available in 27,35,36,40,72 mhz and a Synthesized receiver, meaning you do not need to change frequency crystals.&lt;br /&gt;
&lt;br /&gt;
How to modify for combined signal&lt;br /&gt;
&lt;br /&gt;
# Cut the 8th channel PWM output pin near the PCB.&lt;br /&gt;
# Connected a pin from the Atmel (see picture) to the 8th channel PWM signal. (optionally, weaving the wire through some holes on the board.) Make sure you have a fine tip on your soldering iron and a magnifying glass strapped to your head! &lt;br /&gt;
# Glue the wire down (CA works)&lt;br /&gt;
# Be sure to glue the pin that you cut in place (previously, being soldered to the board was holding the pin in place)&lt;br /&gt;
&lt;br /&gt;
It is maybe possible to reprogram the atmel with your own firmware. If you succeed in this plz add relevant info here.&lt;br /&gt;
&lt;br /&gt;
That pin provides a 1V to 2V signal, it works with the PPRZ, although its a bit gittery (the slew rate is not real good).&lt;br /&gt;
[[Image:Corona_Synthesized_Receiver_72Mhz_bottom.jpg|thumb]]&lt;br /&gt;
[[Image:Corona_Synthesized_Receiver_72Mhz_top.jpg|thumb]]&lt;br /&gt;
[[Image:Corona_Synthesized_Receiver_72Mhz_top_atmel.jpg]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br style=&amp;quot;clear:both&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==433MHz UHF Systems==&lt;br /&gt;
&lt;br /&gt;
Note that in most countries an amateur radio license is required to use 433MHz UHF.&lt;br /&gt;
&lt;br /&gt;
===Scherrer UHF===&lt;br /&gt;
&lt;br /&gt;
[[Image:ScherrerUHF.jpg|thumb|left|Scherrer UHF Rx]]&lt;br /&gt;
&lt;br /&gt;
The [http://www.webx.dk/rc/uhf-link3/uhf-link3.htm Scherrer UHF] is a high quality diversity radio control system. It has a PPM output and can be connected directely to Paparazzi. A ppm encoder board is not required. It has an RSSI output.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br style=&amp;quot;clear:both&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===ImmersionRC EzUHF===&lt;br /&gt;
&lt;br /&gt;
[[Image:EzUHFTx.jpg|thumb|left|ImmersionRC Tx]]&lt;br /&gt;
&lt;br /&gt;
The [http://www.immersionrc.com/products.htm ImmersionRC EzUHF] is a high quality diversity radio control system. It does not have a PPM output. A ppm encoder board is required to connect to Paparazzi. It connects directely to EzOSD and the TrackR2 which enables RSSI monitoring and head tracking for FPV.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br style=&amp;quot;clear:both&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Flight mode switch ==&lt;br /&gt;
&lt;br /&gt;
A important requirement is a three way flight mode switch to choose between the flight modes MANUAL, AUTO1 and AUTO2.&lt;br /&gt;
&lt;br /&gt;
Cheap entry level radios often don't have this. As a workaround two two-position switches can be used.&lt;br /&gt;
&lt;br /&gt;
The switch designated to RADIO_MODE will switch between MANUAL and AUTO&lt;br /&gt;
And a second switch designated to RADIO_AUTO_MODE one will select between the different AUTO MODES if the first switch is set to AUTO.&lt;br /&gt;
{{Box Code|conf/airframes/myplane.xml|&lt;br /&gt;
&amp;lt;source lang=&amp;quot;xml&amp;quot;&amp;gt;&lt;br /&gt;
  &amp;lt;firmware name=&amp;quot;fixedwing or rotorcraft&amp;quot;&amp;gt;&lt;br /&gt;
     &amp;lt;define name=&amp;quot;RADIO_MODE&amp;quot; value=&amp;quot;RADIO_AUX2&amp;quot;/&amp;gt;&lt;br /&gt;
     &amp;lt;define name=&amp;quot;RADIO_AUTO_MODE&amp;quot; value=&amp;quot;RADIO_AUX1&amp;quot;/&amp;gt;&lt;br /&gt;
  &amp;lt;/firmware&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
This feature is only available in the v3.9 branch.&lt;br /&gt;
&lt;br /&gt;
[[Category:Hardware]] [[Category:User_Documentation]]&lt;/div&gt;</summary>
		<author><name>TilmanBaumann</name></author>
	</entry>
	<entry>
		<id>http://wiki.paparazziuav.org/w/index.php?title=RC_Receivers_and_Radios&amp;diff=12838</id>
		<title>RC Receivers and Radios</title>
		<link rel="alternate" type="text/html" href="http://wiki.paparazziuav.org/w/index.php?title=RC_Receivers_and_Radios&amp;diff=12838"/>
		<updated>2012-07-05T14:56:30Z</updated>

		<summary type="html">&lt;p&gt;TilmanBaumann: Flight mode switch requirement and workaround&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== 2.4GHz Systems==&lt;br /&gt;
If using a Lisa/M or Lisa/L autopilot board the whole range of Specktrum/JR transmitters can be used with 1 or 2 Spektrum/JR/Hobbyking satellite receivers. For other autopilot boards to use a 2.4 GHz system a few requirements are necessary&lt;br /&gt;
# Must use [[PPM_Encoder | PPM Encoder]] board. (See [[Get_Hardware|Get Hardware]] page for suppliers) (Except for the Futaba FASST 7 channel receiver R617FS that has a 5 (not 7) channels combined pulse)&lt;br /&gt;
# Needs a three position switch&lt;br /&gt;
# Ability to set failsafe to any or at least 1 channel (pprz-mode) as desired&lt;br /&gt;
# At least one extra channel beyond those needed to control the servos and motor. (throttle-roll-pitch-mode)&lt;br /&gt;
=== Radios ===&lt;br /&gt;
&lt;br /&gt;
====Futaba FASST 7-channel receiver====&lt;br /&gt;
&lt;br /&gt;
[[Image:rs617fasst.jpg|thumb|right]]&lt;br /&gt;
&lt;br /&gt;
* Pin 8 (upper right corner in picture) of the small IC on the right contains 5 PPM pulses and can go directly to paparazzi. Pulse 6 and 7 go directly to the servos. &lt;br /&gt;
* Best is to remove the resistors of one of the channels and connect a small wire to pin 8 to get the combined 5 pulses on the robust 1/10th inch header.&lt;br /&gt;
* Do not forget to use channel 3 (only failsafe channel) as mode switch with fail safe &amp;quot;throttle off&amp;quot; as mode 2.&lt;br /&gt;
&lt;br /&gt;
====Robbe RASST 7 &amp;amp; 8 channed receivers ====&lt;br /&gt;
Robbe has produced line of Futaba FASST compatible receivers that can output only PPM which results ablility to plug into autopilot without encoder.&lt;br /&gt;
* [http://www.robbe.de/empfaenger-r-6007-sp-2-4-g-rasst.html R6007SP 2,4 GHz RASST] - 7 channel, for small aircraft&lt;br /&gt;
* [http://www.robbe.de/empf-r6107sp-2-4-ghz-rasst.html R6107SP 2,4 GHz RASST] - 7 channel, &amp;gt;1000m range&lt;br /&gt;
* [http://www.robbe.de/empf-r6008sp-2-4-ghz-rasst.html R6008SP 2,4 GHz RASST] - 8 channel, upto 3000m range&lt;br /&gt;
&lt;br /&gt;
====Spektrum DX-7====&lt;br /&gt;
[[Image:DX7.jpg|thumb|left]]&lt;br /&gt;
*7 Channels &lt;br /&gt;
* 20-Model memory&lt;br /&gt;
* Airplane and Heli software&lt;br /&gt;
* Switch assignment&lt;br /&gt;
* P-mixes&lt;br /&gt;
* Includes 4 powerful DS821 digital servos with high-tech resin gears&lt;br /&gt;
* 3-axis dual rate &amp;amp; expo&lt;br /&gt;
* 3-position flap (Airplane)&lt;br /&gt;
* 5-point throttle curve (Heli)&lt;br /&gt;
* 3 flight modes plus hold (Heli)&lt;br /&gt;
* Gyro programming (Heli)&lt;br /&gt;
* CCPM, 2-servo 90°, 3-servo 90°, &amp;amp; 3-servo 120°&lt;br /&gt;
* Price $320-$350&lt;br /&gt;
&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
===== Switch Assignment =====&lt;br /&gt;
To assign the three position switch to any other channel but channel 7 follow these steps:&lt;br /&gt;
# Set up aux2(refers to aux2 on rx not the switch on the tx. aka ch7) with its input selected as 3 pos switch.&lt;br /&gt;
# Set up this mix - Gear to Gear (Up=-100, Down=-100, Offset =0). This inhibits the gear switch.&lt;br /&gt;
# Set up another mix - Aux2 to Gear (Up=100, Down=100, Offset = 0).&lt;br /&gt;
Notes: &lt;br /&gt;
#Gear on a DX-7 Air is Channel 5 and AUX2 is CH7. Once again i am referring to the inputs which are labeled on the RX not what the switches are named on the TX. If your using a DX-7 heli please substitute the names for what the rx channels are named into this guide&lt;br /&gt;
# DX7 Heli the 3-pos switch is named &amp;quot;flight mode&amp;quot;&lt;br /&gt;
# DX7 Air the 3-pos switch is named &amp;quot;flaps&amp;quot;&lt;br /&gt;
&lt;br /&gt;
===== Failsafe Setup =====&lt;br /&gt;
To set up the mode channel (3 pos switch) to default to auto2 if connection is lost between rx and tx follow these steps:&lt;br /&gt;
# Put 3 position Switch into AUTO2 Position&lt;br /&gt;
# Put in bind plug&lt;br /&gt;
# Power up&lt;br /&gt;
# REMOVE the bind plug&lt;br /&gt;
# Power up Tx while pushing bind button&lt;br /&gt;
# Wait until light becomes steady and not blinking (it may become steady right off but will then start blinking again so let it go at least 5 seconds)&lt;br /&gt;
&lt;br /&gt;
===Receivers===&lt;br /&gt;
====Jeti Duplex 2.4 GHz Receiver Rsat 2====&lt;br /&gt;
[[Image:Jeti_Duplex_Rsat2.jpg|thumb|left|Jeti RSat 2]]&lt;br /&gt;
* Outputs PPM, no soldering or PPM board required&lt;br /&gt;
* Only 12 gramms&lt;br /&gt;
* Full duplex technology provides safe radio link and redundant telemetry to standard paparazzi telemetry.&lt;br /&gt;
* [http://www.jetimodel.cz/index.php?page=products&amp;amp;old=0&amp;amp;category=4 Transmitter module] can be installed in any receiver.&lt;br /&gt;
See the official [http://www.jetimodel.cz/index.php?page=product&amp;amp;id=165 Homepage of Jeti] or the [http://www.mikrokopter.de/ucwiki/JetiDuplex MikroKopter Wiki].&lt;br /&gt;
&amp;lt;br style=&amp;quot;clear:both&amp;quot;&amp;gt;&lt;br /&gt;
====Spektrum 2.4Ghz Satellite Receiver - Lisa/L implementation====&lt;br /&gt;
[[Image:Lisa l hex 1.jpg|thumb|right|Connection View]] &lt;br /&gt;
[[Image:SPM9545-250.jpg|thumb|left|Remote Receiver [SPM9545]]] &lt;br /&gt;
* [http://www.spektrumrc.com/Products/Default.aspx?ProdID=SPM9545 Specifications]&lt;br /&gt;
* Lisa/L Radio_Control_Spektrum_Primary_Port = Uart 3&lt;br /&gt;
* Lisa/L Radio_Control_Spektrum_Secondary_Port = Uart 5&lt;br /&gt;
* arch files:~/paparazzi/sw/airborne/arch/stm32/subsystems/radio_control/spektrum-arch.h and .c&lt;br /&gt;
* Additional hardware - &lt;br /&gt;
[http://parts.digikey.com/1/parts/355490-conn-housing-5pos-1-25mm-51021-0500.html Molex CONN HOUSING 5POS 1.25MM - 51021-0500], &lt;br /&gt;
&lt;br /&gt;
[http://parts.digikey.com/1/parts/355493-conn-housing-8pos-1-25mm-51021-0800.html Molex CONN HOUSING 8POS 1.25MM - 51021-0800], &lt;br /&gt;
&lt;br /&gt;
[http://uk.rs-online.com/web/search/searchBrowseAction.html?method=getProduct&amp;amp;R=2799544 Molex Socket to free end crimped lead,300mm L], &lt;br /&gt;
&lt;br /&gt;
[http://parts.digikey.com/1/parts/270897-conn-term-female-26-28awg-tin-50079-8000.html Molex CONN TERM FEMALE 26-28AWG TIN], &lt;br /&gt;
&lt;br /&gt;
[http://parts.digikey.com/1/parts/1806245-hand-tool-26-32awg-crimp-638190300.html Molex HAND TOOL 26-32AWG CRIMP]&lt;br /&gt;
* Transmitter options - Spektrum DX6, DX7(see above), DX8, bind compatible JR units up to 12 channels and those bearing the Specktrum DM9 module - note these transmitters must be channel order compatible with Spektrum's protocol (in fact all transmitters that use Spektrum protocol have the same channel ordering regardless which stays consistent across different modes (ie throttle on left / right etc)))  - [http://code.google.com/p/er9x/ here is an example] &lt;br /&gt;
 &lt;br /&gt;
=====Installation=====&lt;br /&gt;
# Cut off original receiver connector and crimp molex connector terminals to the three wires.&lt;br /&gt;
# Insert terminals into appropriate positions-[http://paparazzi.enac.fr/wiki_images/LisaL_v1_0_schematic_3.png CON_USART3]-of the 5 way connector - black to pos1 = GND, orange to pos3 = +3v3, grey to pos5 = STM_USART3_RX.            &lt;br /&gt;
&lt;br /&gt;
=====Bind plug===== &lt;br /&gt;
# Take the 8 way molex connecter and create a loop between pos1 = GND and pos4 = XXX_STM_SPARE_2. This plug is placed in the-[http://paparazzi.enac.fr/wiki_images/LisaL_v1_0_schematic_3.png CON_SPARE]-receptacle housing before power-up to enable the receiver binding state.    &lt;br /&gt;
&lt;br /&gt;
=====Configuration=====&lt;br /&gt;
* Set the spektrum radio parameters for Lisa/M or Lisa/L ap in ~/paparazzi/conf/airframes.xml file. Check 'esden' directory as a possible rotorcraft example. Refer to ~/paparazzi/sw/airborne/arch/stm32/subsystems/radio_control/spektrum-arch.h and .c for other options. Be sure to set actuators, rotor configuration/mixes and channel reversal parameters that are appropriate for the rotorcraft/aircraft (note &amp;quot;lisa_l_1.0&amp;quot; can also be &amp;quot;lisa_m_1.5&amp;quot; or &amp;quot;lisa_m_2.0&amp;quot;):&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;firmware name=&amp;quot;rotorcraft&amp;quot;&amp;gt;&lt;br /&gt;
     &amp;lt;target name=&amp;quot;ap&amp;quot; board=&amp;quot;lisa_l_1.0&amp;quot;&amp;gt;&lt;br /&gt;
 &amp;lt;!--      &amp;lt;define name=&amp;quot;BOOZ_START_DELAY&amp;quot; value=&amp;quot;1&amp;quot;/&amp;gt; --&amp;gt;&lt;br /&gt;
       &amp;lt;subsystem name=&amp;quot;radio_control&amp;quot; type=&amp;quot;spektrum&amp;quot;/&amp;gt;&lt;br /&gt;
       &amp;lt;subsystem name=&amp;quot;actuators&amp;quot;     type=&amp;quot;mkk&amp;quot;/&amp;gt;&lt;br /&gt;
       &amp;lt;subsystem name=&amp;quot;telemetry&amp;quot;     type=&amp;quot;transparent&amp;quot;/&amp;gt;&lt;br /&gt;
       &amp;lt;define name=&amp;quot;RADIO_MODE&amp;quot; value=&amp;quot;RADIO_AUX1&amp;quot;/&amp;gt;&lt;br /&gt;
       &amp;lt;define name=&amp;quot;RADIO_KILL_SWITCH&amp;quot; value=&amp;quot;RADIO_GEAR&amp;quot;/&amp;gt;&lt;br /&gt;
     &amp;lt;/target&amp;gt;&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;target name=&amp;quot;stm_passthrough&amp;quot; board=&amp;quot;lisa_l_1.0&amp;quot;&amp;gt;&lt;br /&gt;
       &amp;lt;subsystem name=&amp;quot;radio_control&amp;quot; type=&amp;quot;spektrum&amp;quot;/&amp;gt;&lt;br /&gt;
       &amp;lt;subsystem name=&amp;quot;imu&amp;quot; type=&amp;quot;b2_v1.2&amp;quot;/&amp;gt;&lt;br /&gt;
     &amp;lt;/target&amp;gt;&lt;br /&gt;
*Create a new transmitter 'airplane' model. Do not introduce any mixes or change the endpoints, subtrims etc. Note that a radio.xml file is not required for this implementation, unlike analogue RC directed autopilots.    &lt;br /&gt;
*Upload ap software in the usual way. &lt;br /&gt;
*Unplug the aircraft battery. Turn transmitter off. Insert the bind plug (see above) in the 8 way CON_SPARE receptacle. Power up the aircraft - specktrum receiver LED should be flashing in readiness to bind. Press and hold bind button on transmitter while turning on. Receiver LED should stop flashing after a few moments to confirm it is bound. Turn everything off in preparation to start in the normal way. Note that the transmitter should now be turned on first to enable the spektrum receiver to acknowledge it.       &lt;br /&gt;
*Should be ready to fly.  &lt;br /&gt;
*Adding a second spektrum satellite receiver requires different wiring dependent on the Lisa board version. As the pinouts to uart5 differ between Lisa-L v1.0 and v1.1. Seek advice from the [http://lists.gnu.org/archive/html/paparazzi-devel/2011-01/index.html paparazzi mailing list] prior to making this addition.&lt;br /&gt;
&lt;br /&gt;
To enable the use of the secondary satellite receiver you have to add two lines to your firmware section in the airframe file:&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;define name=&amp;quot;RADIO_CONTROL_SPEKTRUM_SECONDARY_PORT&amp;quot; value=&amp;quot;UART5&amp;quot;/&amp;gt;&lt;br /&gt;
 &amp;lt;define name=&amp;quot;OVERRIDE_UART5_IRQ_HANDLER&amp;quot;/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== PCM Systems ==&lt;br /&gt;
&lt;br /&gt;
Most of the known PCM transmitter also can be set to PPM mode. If this is set, then the regular description for PPM applies since the PCM receiver like a JR/Gaupner SMC16 Scan can output PPM perfectly. &lt;br /&gt;
&lt;br /&gt;
If PPM out is not setable on your transmitter then the following applies:&lt;br /&gt;
&lt;br /&gt;
# Must use ppm encoder board. (See [[Get_Hardware|Get Hardware]] page for suppliers)&lt;br /&gt;
# Needs a three position switch&lt;br /&gt;
# Ability to set failsafe to any channel as desired&lt;br /&gt;
# At least one extra channel beyond those needed to control the servos and motor.&lt;br /&gt;
&lt;br /&gt;
== PPM Based Systems ==&lt;br /&gt;
=== Configuration ===&lt;br /&gt;
The [[Radio_Control]] page describes how to set up the radio.xml config file.&lt;br /&gt;
&lt;br /&gt;
=== Requirements ===&lt;br /&gt;
To use a 26/27/35/40/41/72/ MHz **(uses PPM) system a few requirements are necessary&lt;br /&gt;
# Need a Transmitter with a three position switch&lt;br /&gt;
# At least one extra channel beyond those needed to control the servos and motor.&lt;br /&gt;
# A modified receiver which outputs a full ppm signal.&lt;br /&gt;
&lt;br /&gt;
===Adding a 3 position switch===&lt;br /&gt;
===== Futaba T6EXAP =====&lt;br /&gt;
For this particular transmitter, the Potentiometer on channel 6 can be replaced with a 3 position switch. Channel 5 appears not to be connected to an ADC converter; therefore it will not support a 3 position switch.&lt;br /&gt;
#Disconnect the potentiometer being careful not to shorten the wires&lt;br /&gt;
#Solder the switch and resistors onto the wires using the wiring diagram as a reference. (Any two equal value resistors should work). I used 10k resistors.&lt;br /&gt;
[[Image:SwitchWiringDiagram.JPG|thumb|left|Switch wiring diagram]]&lt;br /&gt;
[[Image:3positionswitch.JPG|thumb|left|Switch installed in transmitter]]&lt;br /&gt;
&amp;lt;br style=&amp;quot;clear:both&amp;quot;&amp;gt;&lt;br /&gt;
Suitable 3 position switches:&amp;lt;br style=&amp;quot;clear:both&amp;quot;&amp;gt;&lt;br /&gt;
RS Components: [http://australia.rs-online.com/web/search/searchBrowseAction.html?method=getProduct&amp;amp;R=344-710 344-710]&amp;lt;br style=&amp;quot;clear:both&amp;quot;&amp;gt;&lt;br /&gt;
Mouser: [http://au.mouser.com/Search/Refine.aspx?Keyword=633-M202402-RO 633-M202402-RO]&lt;br /&gt;
&lt;br /&gt;
=== R/C Receiver Interface===&lt;br /&gt;
All versions of the Paparazzi autopilot include a connector to interface with a standard R/C receiver for manual or semi-autonomous control during the testing and tuning phases.  Two interface options exist:&lt;br /&gt;
# Tap into the PPM signal running between the RF section and the servo driver of your receiver and route it to the Paparazzi.  Let the Paparazzi generate individual servo signals and connect all servos directly to the autopilot.  This method requires only 3 wires to the receiver (power and PPM), is compatible with all Paparazzi autopilots, and provides 8 manual R/C channels and the potential for more autonomous channels regardless of the capability of the R/C receiver.&lt;br /&gt;
# Cut the PPM trace and route it thru the autopilot and back to the receiver, using the servo driver IC on your R/C receiver to drive the servos.  This option requires 4 wires (Ground, PPM-in, PPM-out, Reset) and your receiver must have a supported servo driver IC.  This allows you to use the large servo connectors on your R/C receiver and does not require any modification to your servos or ESC but does require you to cut a trace on your R/C receiver and limits the number of servos to the capacity of your receiver.  Compatible with Classix and Tiny 1.1.&lt;br /&gt;
# Note that on the Classix the PPM_in pin is FOO2... &lt;br /&gt;
[[Image:RC_Receiver_Timing_Diagram.jpg|thumb|left|PPM Timing Diagram&amp;lt;small&amp;gt;Note 1: Exact value not critical. Depending on RC Transmitter type &amp;amp; Manufacturer.&amp;lt;br&amp;gt;Note 2: Depending on Transmitter number of Channels and t,,n,, durations.&amp;lt;br&amp;gt;Note 3: Not critical. Depending on Synchro detection method.&amp;lt;/small&amp;gt;]]&lt;br /&gt;
[[Image:RC_Receiver_Tiny.jpg|thumb|left|3-Wire setup, driving servos from the autopilot]]&lt;br /&gt;
[[Image:RC_Receiver_classix.jpg|thumb|left|4-Wire setup, driving servos from the R/C receiver]]&lt;br /&gt;
&amp;lt;br style=&amp;quot;clear:both&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Common demux chips ===&lt;br /&gt;
&lt;br /&gt;
Typical used chips are the cmos [http://www.doctronics.co.uk/4015.htm 4015] and [http://www.doctronics.co.uk/4017.htm 4017]. &lt;br /&gt;
&lt;br /&gt;
The 4015 uses either pin 1 or pin 9 for the clock and the input is on 7 and 15. The 4017 has just one shift register and has its clock input on pin 14 and the enable on pint 13.&lt;br /&gt;
&lt;br /&gt;
In most receivers you are after the clock; though some may be pulsed; in which case you need the enable. Note that the 4017 enable has inverted logic (low to be enabled) whereas the input on the 4015 can be either (typically high). If the enable pin is held low (4017) or if the input pin (4015) is held high always;e.g. connected to the ground or the Vcc - then it is fair to assume that the PPM signal is most propably on the clock input. &lt;br /&gt;
&lt;br /&gt;
=== Recommended 35/40Mhz R/C Receivers ===&lt;br /&gt;
&lt;br /&gt;
Note that there is information on modifying other receiver models at [http://mikrokopter.de/ucwiki/RC-Empf%C3%A4nger mikrokopter.de]. It's in German however the pictures contain most of the information or use google translate.&lt;br /&gt;
Shielded wire is recommended for receiver and autopilot connection, as unshielded one may cause noise in receiver. &lt;br /&gt;
&lt;br /&gt;
=====Futaba FP-R116FB 6 Channel FM 35MHz receiver=====&lt;br /&gt;
[[Image:Rc_fut_web.jpg|thumb|left|Wiring of a Futaba R136]]&lt;br /&gt;
*Orange wire is connected to PPM signal&lt;br /&gt;
*Red wire is connected to VCC&lt;br /&gt;
*Brown wire is connected to GND&lt;br /&gt;
&amp;lt;br style=&amp;quot;clear:both&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=====Futaba R136F 6 Channel FM receiver=====&lt;br /&gt;
[[Image:rx_futaba136.jpg|thumb|left|Wiring of a Futaba R136]]&lt;br /&gt;
*41 MHz&lt;br /&gt;
*White wire is connected to PPM signal&lt;br /&gt;
&amp;lt;br style=&amp;quot;clear:both&amp;quot;&amp;gt;&lt;br /&gt;
=====Futaba R168DF 8 Channel dual FM receiver=====&lt;br /&gt;
[[Image:rx_futaba168df.jpg|thumb|left|Wiring of a Futaba R168DF]]&lt;br /&gt;
*35 MHz&lt;br /&gt;
*PPM wire is connected to 862 receiver pin on the board. VCC and GND is on the 8/B original position.&lt;br /&gt;
&amp;lt;br style=&amp;quot;clear:both&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=====ACT Micro-6 FM receiver=====&lt;br /&gt;
[[Image:rx_act_micro-6.jpg|thumb|left|Wiring of a ACT Micro-6]]&lt;br /&gt;
*Available in 35 or 40 MHz versions&lt;br /&gt;
*White wire is connected to PPM signal&lt;br /&gt;
*[http://www.acteurope.com/Micro_6anl.pdf Datasheet (German)]&lt;br /&gt;
&amp;lt;br style=&amp;quot;clear:both&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=====ACT DSL-4top [http://www.mikrokopter.de/ucwiki/DSL4top mikrokopter.de] version=====&lt;br /&gt;
[[Image:DSL4top.jpg|thumb|left|DSL-4top mikrokopter.de version]]&lt;br /&gt;
* Special version for mikrokopter.de - Only available in their [https://www.mikrocontroller.com/index.php?main_page=product_info&amp;amp;products_id=215&amp;amp;zenid=8ce8bab70f3e9d684e01f724316d9690 shop]!&lt;br /&gt;
* '''Outputs PPM directly''' on the channel 1 connector!&lt;br /&gt;
* No soldering necessary&lt;br /&gt;
* ACT Lifetime warranty&lt;br /&gt;
* Sells for ~45 euro&lt;br /&gt;
&amp;lt;br style=&amp;quot;clear:both&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=====Futaba R115F 5 Channel FM receiver=====&lt;br /&gt;
[[Image:pprz_rx115.jpg|thumb|left|Wiring of a Futaba R115]]&lt;br /&gt;
*Available in 35 and 40 MHz versions&lt;br /&gt;
*White wire is connected to PPM signal&lt;br /&gt;
&amp;lt;br style=&amp;quot;clear:both&amp;quot;&amp;gt;&lt;br /&gt;
=====JETI REX 5 plus (no MPD) receiver=====&lt;br /&gt;
[[Image:520_Jeti_5_plus.jpg|thumb|left|Wiring of a REX 5]]&lt;br /&gt;
&lt;br /&gt;
*Popular Czech made micro r/c receiver, available in 35 or 40 MHz versions&lt;br /&gt;
*´folded´ PCB design with parts inside, mostly inaccessable&lt;br /&gt;
*Small grey wire is connected to via with PPM signal&lt;br /&gt;
*Unusual connector used for testing, soldering recommended&lt;br /&gt;
*shielded wire recommended, this one taken from PC parts recycling (former soundcard to m/b connector cable)&lt;br /&gt;
*[http://www.jetimodel.cz/eng/navody_en/rex5_eng.pdf Datasheet (English)]&lt;br /&gt;
&amp;lt;br style=&amp;quot;clear:both&amp;quot;&amp;gt;&lt;br /&gt;
[[Image:DSC02414.JPG|thumb|left|other Layout of REX 5]]&lt;br /&gt;
&amp;lt;br style=&amp;quot;clear:both&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=====Receiver RX-7-SYNTH IPD receiver [http://www.multiplex-rc.de/hp/produkte/artikel_detail.jsp?lfdnr=55880&amp;amp;action=add2notice&amp;amp;qty=1&amp;amp;cachenepper=1227896925116 Multiplex-rc.de]=====&lt;br /&gt;
[[Image:RX-7-SYNTH_IPD.jpg|thumb|left|Wiring of RX-7-SYNTH IPD]]&lt;br /&gt;
&lt;br /&gt;
*Available in 35, 36 and 40 MHz versions&lt;br /&gt;
*A compact, high-quality 7-channel single-conversion FM / PPM IPD receiver&lt;br /&gt;
*Easy modification through connectors, see pictures&lt;br /&gt;
&amp;lt;br style=&amp;quot;clear:both&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== Protech 5FM 35 mHz Receiver ====&lt;br /&gt;
&lt;br /&gt;
The low cost Protech '5FM' receiver makes use of an SMD version of the standard 74AHC164[http://www.ic-on-line.cn/IOL/datasheet/74ahct164_18057.pdf] 8 bit shift register; you are after PIN 1 of this chip. The circuit board has a testpad for just this pin at the top side of the circuit board.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery&amp;gt;&lt;br /&gt;
Image:protech-5fm.jpg|Figure 1. &amp;lt;br&amp;gt;Protech 5FM 35 mHZ Receiver, mark 2&lt;br /&gt;
Image:protech-5fm-pad.jpg|Figure 2. &amp;lt;br&amp;gt; PPM tap location for the Protech 5FM receiver, near the 74AHC164 shift register&lt;br /&gt;
Image:protech-5fm-scope.jpg|Figure 3.&amp;lt;br&amp;gt; Protech 5FM PPM signal - not very clean/digital&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Two physical versions exist; the older one [http://www.protech.be/Manuals/PRO205manual%20web.pdf] and a newer one pictured (fig 1). It has been distributed by protech with various ready-to-fly planes; such as the Skyraider[http://www.modelbouwforum.nl/forums/beginners/50677-protech-skyraider.html].&lt;br /&gt;
&lt;br /&gt;
The solder/testpad you are after the one right next the 74x164 chip its pin 1. In this image it has a jellow wire soldered to it (the yellow wire at the top left is the normal antenna connector (fig 2). Note however that the signal is not very clean (1v/div) - which may cause issues - as shown in the above image (fig 3). &lt;br /&gt;
&lt;br /&gt;
This is further compunded by the relatively noisy electrical engines; which are not brushless. A ferrite coil does not seem to help enough - Papparazi and GPS loose sync often through Xbee. Replacing the engine by a brushless outrunnen resolve the issue completely.&lt;br /&gt;
&lt;br /&gt;
==== Profi Penta 35 MHz ====&lt;br /&gt;
[[Image:DSC00547.JPG]]&lt;br /&gt;
[[Image:DSC00545.JPG]]&lt;br /&gt;
&lt;br /&gt;
=== Recommended 72Mhz R/C Receivers ===&lt;br /&gt;
====Castle Creations [http://www.castlecreations.com/products/berg_ms4l.html Berg 4L]====&lt;br /&gt;
[[Image:berg4L.jpg|thumb|Wiring of a Berg 4L]]&lt;br /&gt;
* Expect fantastic performance from these $40 USD parts but be warned that they are known to have unreliable crystal sockets and brittle antenna wire.  The ''Berg 7'' channel receiver should work equally well and is known to have a better crystal socket - note that either receiver will provide '''8 channels''' in manual R/C mode when used with Paparazzi.  Note: the rugged ''Berg 4'' cannot be modified, only the ''Berg 4L'' and ''Berg 7''.&lt;br /&gt;
To Modify a Berg4L, follow these instructions:&lt;br /&gt;
# Remove the shrink wrap. Use a good knife and be careful to not damage any of the components on the receiver. I would recommend that you cut on the sides (edge of the PCB) to be sure to avoid damaging the shielding&lt;br /&gt;
# Desolder the headers. We will not use them with tiny AP as the servos are connected directly to the AP. This is pretty easy to do when you have a hot air rework station. If you don't have one, your best bet is to cut the header off and remove the left over pins one by one with a regular iron. There is a piece of shielding material that is connected to one of the ground pins of the header. You need to remove it carefully from the header without damaging it and re-solder it to the gnd pad.&lt;br /&gt;
# You need to solder 3 wires to the receiver. Gnd, +5V and PPM. To locate the PPM signal, first locate the PIC micro controller close to the location of the headers. The PPM signal is on the corner pin closest to the corner of the receiver. Soldering a 28guage wire directly to the PIN isn't very difficult. For the power connection, use the pads that were used for the header. The outside pin is Gnd, the second pin is +5V. What I did is solder the wires on the pad going straight down, then I looped the 3 wires 360 degrees and glued them to the PCB with hot glue. This provides good strain relief.&lt;br /&gt;
# While you have the PCB in your hands, take the opportunity to remove the crystal connector and solder your crystal directly to the PCB for added reliability.&lt;br /&gt;
# I also used some hot glue to add more strain relief to the antenna&lt;br /&gt;
# Use some large shrink wrap to cover the entire receiver again&lt;br /&gt;
=====Hitec Electron 6 72MHz Reciever=====&lt;br /&gt;
This was written for MNAV from crossbow but is still usable with PPRZ.&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
[[Image:Electron6mod.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=====Corona Synthesized Dual-Conv Receiver 8Ch=====&lt;br /&gt;
[http://www.corona-rc.com/coproductshowE.asp?ArticleID=63 manual] &amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This receiver is available in 27,35,36,40,72 mhz and a Synthesized receiver, meaning you do not need to change frequency crystals.&lt;br /&gt;
&lt;br /&gt;
How to modify for combined signal&lt;br /&gt;
&lt;br /&gt;
# Cut the 8th channel PWM output pin near the PCB.&lt;br /&gt;
# Connected a pin from the Atmel (see picture) to the 8th channel PWM signal. (optionally, weaving the wire through some holes on the board.) Make sure you have a fine tip on your soldering iron and a magnifying glass strapped to your head! &lt;br /&gt;
# Glue the wire down (CA works)&lt;br /&gt;
# Be sure to glue the pin that you cut in place (previously, being soldered to the board was holding the pin in place)&lt;br /&gt;
&lt;br /&gt;
It is maybe possible to reprogram the atmel with your own firmware. If you succeed in this plz add relevant info here.&lt;br /&gt;
&lt;br /&gt;
That pin provides a 1V to 2V signal, it works with the PPRZ, although its a bit gittery (the slew rate is not real good).&lt;br /&gt;
[[Image:Corona_Synthesized_Receiver_72Mhz_bottom.jpg|thumb]]&lt;br /&gt;
[[Image:Corona_Synthesized_Receiver_72Mhz_top.jpg|thumb]]&lt;br /&gt;
[[Image:Corona_Synthesized_Receiver_72Mhz_top_atmel.jpg]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br style=&amp;quot;clear:both&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==433MHz UHF Systems==&lt;br /&gt;
&lt;br /&gt;
Note that in most countries an amateur radio license is required to use 433MHz UHF.&lt;br /&gt;
&lt;br /&gt;
===Scherrer UHF===&lt;br /&gt;
&lt;br /&gt;
[[Image:ScherrerUHF.jpg|thumb|left|Scherrer UHF Rx]]&lt;br /&gt;
&lt;br /&gt;
The [http://www.webx.dk/rc/uhf-link3/uhf-link3.htm Scherrer UHF] is a high quality diversity radio control system. It has a PPM output and can be connected directely to Paparazzi. A ppm encoder board is not required. It has an RSSI output.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br style=&amp;quot;clear:both&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===ImmersionRC EzUHF===&lt;br /&gt;
&lt;br /&gt;
[[Image:EzUHFTx.jpg|thumb|left|ImmersionRC Tx]]&lt;br /&gt;
&lt;br /&gt;
The [http://www.immersionrc.com/products.htm ImmersionRC EzUHF] is a high quality diversity radio control system. It does not have a PPM output. A ppm encoder board is required to connect to Paparazzi. It connects directely to EzOSD and the TrackR2 which enables RSSI monitoring and head tracking for FPV.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br style=&amp;quot;clear:both&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Flight mode switch ==&lt;br /&gt;
&lt;br /&gt;
A important requirement is a three way flight mode switch to choose between the flight modes MANUAL, AUTO1 and AUTO2.&lt;br /&gt;
&lt;br /&gt;
Cheap entry level radios often don't have this. As a workaround two two-position switches can be used.&lt;br /&gt;
&lt;br /&gt;
The switch designated to RADIO_MODE will switch between MANUAL and AUTO&lt;br /&gt;
And a second switch designated to RADIO_AUTO_MODE one will select between the different AUTO MODES if the first switch is set to AUTO.&lt;br /&gt;
{{Box Code|conf/airframes/myplane.xml|&lt;br /&gt;
&amp;lt;source lang=&amp;quot;xml&amp;quot;&amp;gt;&lt;br /&gt;
  &amp;lt;firmware name=&amp;quot;fixedwing or rotorcraft&amp;quot;&amp;gt;&lt;br /&gt;
     &amp;lt;define name=&amp;quot;RADIO_MODE&amp;quot; value=&amp;quot;RADIO_AUX2&amp;quot;/&amp;gt;&lt;br /&gt;
     &amp;lt;define name=&amp;quot;RADIO_AUTO_MODE&amp;quot; value=&amp;quot;RADIO_AUX1&amp;quot;/&amp;gt;&lt;br /&gt;
  &amp;lt;/firmware&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
}}&lt;br /&gt;
      &lt;br /&gt;
&lt;br /&gt;
[[Category:Hardware]] [[Category:User_Documentation]]&lt;/div&gt;</summary>
		<author><name>TilmanBaumann</name></author>
	</entry>
	<entry>
		<id>http://wiki.paparazziuav.org/w/index.php?title=User:TilmanBaumann&amp;diff=12837</id>
		<title>User:TilmanBaumann</title>
		<link rel="alternate" type="text/html" href="http://wiki.paparazziuav.org/w/index.php?title=User:TilmanBaumann&amp;diff=12837"/>
		<updated>2012-07-05T14:47:52Z</updated>

		<summary type="html">&lt;p&gt;TilmanBaumann: /* Airframe */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Tilman Baumann ==&lt;br /&gt;
&lt;br /&gt;
No RC experience. I live in South East England. (Guildford)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Airframe ==&lt;br /&gt;
&lt;br /&gt;
[http://www.hobbyking.com/hobbyking/store/__16544__Hobbyking_Bixler_EPO_1400mm_ARF_.html Hobbyking Bixler]&lt;br /&gt;
&lt;br /&gt;
Airframe details [[Bixler]]&lt;br /&gt;
&lt;br /&gt;
== Autopilot ==&lt;br /&gt;
&lt;br /&gt;
[[Lisa/M_v20]]&lt;br /&gt;
&lt;br /&gt;
== Telemetry ==&lt;br /&gt;
&lt;br /&gt;
XBee 2.4 Ghz&lt;br /&gt;
&lt;br /&gt;
== GPS ==&lt;br /&gt;
&lt;br /&gt;
[http://www.csgshop.com/product.php?id_product=62 UBLOX MAX-6Q]&lt;br /&gt;
[[File:GPS Eval MAX pinout.png]]&lt;br /&gt;
&lt;br /&gt;
== RC ==&lt;br /&gt;
&lt;br /&gt;
Spektrum DX5 with two Orangebox Satellites&lt;br /&gt;
&lt;br /&gt;
This radio has no three-way mode switch. Only a channel 5 on-off toggle. I will have to think a bit on how to use that for MANUAL/AUTO1/AUTO2.&lt;br /&gt;
Any ideas anyone?&lt;br /&gt;
&lt;br /&gt;
Hope I don't need a bigger transmitter. Expensive.&lt;br /&gt;
&lt;br /&gt;
== Ground Station ==&lt;br /&gt;
&lt;br /&gt;
Dell mini 9&amp;quot; laptop&lt;br /&gt;
&lt;br /&gt;
== Future Plans ==&lt;br /&gt;
&lt;br /&gt;
* IP telemetry WLAN/UMTS&lt;br /&gt;
* Lisa Servicebus module instead of clunky BEC https://github.com/tbaumann/Paparazzi-Lisa-Servicebus&lt;br /&gt;
&lt;br /&gt;
== Buildlog ==&lt;br /&gt;
&lt;br /&gt;
I will blog here http://tilman-ppz-uav.blogspot.co.uk/ but will also post a summary of all important technical findings here.&lt;/div&gt;</summary>
		<author><name>TilmanBaumann</name></author>
	</entry>
	<entry>
		<id>http://wiki.paparazziuav.org/w/index.php?title=Bixler&amp;diff=12836</id>
		<title>Bixler</title>
		<link rel="alternate" type="text/html" href="http://wiki.paparazziuav.org/w/index.php?title=Bixler&amp;diff=12836"/>
		<updated>2012-07-05T14:45:44Z</updated>

		<summary type="html">&lt;p&gt;TilmanBaumann: /* Cockpit */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot;&lt;br /&gt;
|[[Image:Bixler Table.jpg|thumb|left|Bixler]]&lt;br /&gt;
|&lt;br /&gt;
The HobbyKing Bixler is a very inexpensive airframe with very easy flying characteristics and reasonable payload capacity. Price and its crash resistant EPO foam construction make this a plane well suited for beginners.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Features ==&lt;br /&gt;
&lt;br /&gt;
* Kit price $37 USD&lt;br /&gt;
* EPO Foam construction&lt;br /&gt;
* Detachable canopy for access to internals&lt;br /&gt;
* Easy access cockpit&lt;br /&gt;
* Nice and stable slow flight especially for RC beginners&lt;br /&gt;
&lt;br /&gt;
== Specifications ==&lt;br /&gt;
* Material: EPO Foam&lt;br /&gt;
* Wingspan: 1400mm&lt;br /&gt;
* Length: 925mm&lt;br /&gt;
* Wing Area: 26dm2&lt;br /&gt;
* Wing Loading: 25g/dm2&lt;br /&gt;
* Flying Weight: 650g&lt;br /&gt;
* Motor: 2620-1900kv Brushless Outrunner &lt;br /&gt;
* ESC: 20A w/BEC &lt;br /&gt;
* Servo: 4 x 9g&lt;br /&gt;
* Propeller: 6x5.5 recommended.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Buy ==&lt;br /&gt;
&lt;br /&gt;
Can be bought directly at HobbyKing [http://www.hobbyking.com/hobbyking/store/uh_viewItem.asp?idProduct=16545]&lt;br /&gt;
&lt;br /&gt;
== Airframe configuration ==&lt;br /&gt;
A simple sample airframe congiguration file can be found in conf/airframes/examples/bixler_lisa_m_2.xml [https://github.com/paparazzi/paparazzi/blob/v3.9/conf/airframes/examples/bixler_lisa_m_2.xml]&lt;br /&gt;
&lt;br /&gt;
Attention, no tuning values in this file yet! Untested setup.&lt;br /&gt;
&lt;br /&gt;
== Cockpit ==&lt;br /&gt;
{|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot;&lt;br /&gt;
|[[Image:Bixler Cockpit.jpg|thumb|left|Cockpit]]&lt;br /&gt;
|HobbkyKing also offers a very simple plywood FPV mount which can be used to mount the autopilot. [http://www.hobbyking.com/hobbyking/store/uh_viewItem.asp?idProduct=22731]&lt;br /&gt;
&lt;br /&gt;
Note the [[Lisa/M]] board is mounted at right angle with is the natural orientation of the IMU. This layout also makes wiring much simpler.&lt;br /&gt;
&lt;br /&gt;
This way the IMU is far from the planes centre of gravity. Mounting the IMU under the wings would be better, but much more complex.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Mods ==&lt;br /&gt;
The plane flies well out of the box. But some modifications are popular.&lt;br /&gt;
&lt;br /&gt;
* Rudder servo can be moved back into the rudder. The original long pushrod in tube setup is far from perfect. Moving the servo into the tail wing will increase accuracy but will also move the centre of gravity severely to the rear. A lot of counterweights in the front will be needed&lt;br /&gt;
* Increase rudder size. Either by gluing some strong paper or cardboard on the rudder to make it bigger or by cutting the tail fin at the whole length following the hinge and attaching a full height rudder.&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
Plenty of space is available inside. But much of this space is not very easy to access.&lt;br /&gt;
[[Image:Bixler Nose.jpg|thumb|left|Datalink antenna]]&lt;br /&gt;
Here the 2.4Ghz Xbee telemetry antenna can be seen pushed out to one side. Pointing down in flight.&lt;br /&gt;
&lt;br /&gt;
Large batteries can be fitted without problems.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Build Tips ==&lt;br /&gt;
&lt;br /&gt;
The foam hinges are very stiff and need to be exercised quite a bit by hand to make them move well.&lt;/div&gt;</summary>
		<author><name>TilmanBaumann</name></author>
	</entry>
	<entry>
		<id>http://wiki.paparazziuav.org/w/index.php?title=Bixler&amp;diff=12835</id>
		<title>Bixler</title>
		<link rel="alternate" type="text/html" href="http://wiki.paparazziuav.org/w/index.php?title=Bixler&amp;diff=12835"/>
		<updated>2012-07-05T14:44:30Z</updated>

		<summary type="html">&lt;p&gt;TilmanBaumann: Bixler Airframe&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot;&lt;br /&gt;
|[[Image:Bixler Table.jpg|thumb|left|Bixler]]&lt;br /&gt;
|&lt;br /&gt;
The HobbyKing Bixler is a very inexpensive airframe with very easy flying characteristics and reasonable payload capacity. Price and its crash resistant EPO foam construction make this a plane well suited for beginners.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Features ==&lt;br /&gt;
&lt;br /&gt;
* Kit price $37 USD&lt;br /&gt;
* EPO Foam construction&lt;br /&gt;
* Detachable canopy for access to internals&lt;br /&gt;
* Easy access cockpit&lt;br /&gt;
* Nice and stable slow flight especially for RC beginners&lt;br /&gt;
&lt;br /&gt;
== Specifications ==&lt;br /&gt;
* Material: EPO Foam&lt;br /&gt;
* Wingspan: 1400mm&lt;br /&gt;
* Length: 925mm&lt;br /&gt;
* Wing Area: 26dm2&lt;br /&gt;
* Wing Loading: 25g/dm2&lt;br /&gt;
* Flying Weight: 650g&lt;br /&gt;
* Motor: 2620-1900kv Brushless Outrunner &lt;br /&gt;
* ESC: 20A w/BEC &lt;br /&gt;
* Servo: 4 x 9g&lt;br /&gt;
* Propeller: 6x5.5 recommended.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Buy ==&lt;br /&gt;
&lt;br /&gt;
Can be bought directly at HobbyKing [http://www.hobbyking.com/hobbyking/store/uh_viewItem.asp?idProduct=16545]&lt;br /&gt;
&lt;br /&gt;
== Airframe configuration ==&lt;br /&gt;
A simple sample airframe congiguration file can be found in conf/airframes/examples/bixler_lisa_m_2.xml [https://github.com/paparazzi/paparazzi/blob/v3.9/conf/airframes/examples/bixler_lisa_m_2.xml]&lt;br /&gt;
&lt;br /&gt;
Attention, no tuning values in this file yet! Untested setup.&lt;br /&gt;
&lt;br /&gt;
== Cockpit ==&lt;br /&gt;
{|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot;&lt;br /&gt;
|[[Image:Bixler Cockpit.jpg|thumb|left|Cockpit]]&lt;br /&gt;
|HobbkyKing also offers a very simple plywood FPV mount which can be used to mount the autopilot. [http://www.hobbyking.com/hobbyking/store/uh_viewItem.asp?idProduct=22731]&lt;br /&gt;
&lt;br /&gt;
Note the [Lisa/M] board is mounted at right angle with is the natural orientation of the IMU. This layout also makes wiring much simpler.&lt;br /&gt;
&lt;br /&gt;
This way the IMU is far from the planes centre of gravity. Mounting the IMU under the wings would be better, but much more complex.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Mods ==&lt;br /&gt;
The plane flies well out of the box. But some modifications are popular.&lt;br /&gt;
&lt;br /&gt;
* Rudder servo can be moved back into the rudder. The original long pushrod in tube setup is far from perfect. Moving the servo into the tail wing will increase accuracy but will also move the centre of gravity severely to the rear. A lot of counterweights in the front will be needed&lt;br /&gt;
* Increase rudder size. Either by gluing some strong paper or cardboard on the rudder to make it bigger or by cutting the tail fin at the whole length following the hinge and attaching a full height rudder.&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
Plenty of space is available inside. But much of this space is not very easy to access.&lt;br /&gt;
[[Image:Bixler Nose.jpg|thumb|left|Datalink antenna]]&lt;br /&gt;
Here the 2.4Ghz Xbee telemetry antenna can be seen pushed out to one side. Pointing down in flight.&lt;br /&gt;
&lt;br /&gt;
Large batteries can be fitted without problems.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Build Tips ==&lt;br /&gt;
&lt;br /&gt;
The foam hinges are very stiff and need to be exercised quite a bit by hand to make them move well.&lt;/div&gt;</summary>
		<author><name>TilmanBaumann</name></author>
	</entry>
	<entry>
		<id>http://wiki.paparazziuav.org/w/index.php?title=File:Bixler_Nose.jpg&amp;diff=12834</id>
		<title>File:Bixler Nose.jpg</title>
		<link rel="alternate" type="text/html" href="http://wiki.paparazziuav.org/w/index.php?title=File:Bixler_Nose.jpg&amp;diff=12834"/>
		<updated>2012-07-05T14:11:56Z</updated>

		<summary type="html">&lt;p&gt;TilmanBaumann: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>TilmanBaumann</name></author>
	</entry>
	<entry>
		<id>http://wiki.paparazziuav.org/w/index.php?title=Airframes&amp;diff=12833</id>
		<title>Airframes</title>
		<link rel="alternate" type="text/html" href="http://wiki.paparazziuav.org/w/index.php?title=Airframes&amp;diff=12833"/>
		<updated>2012-07-05T14:11:35Z</updated>

		<summary type="html">&lt;p&gt;TilmanBaumann: Bixler&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__TOC__&lt;br /&gt;
&lt;br /&gt;
== NoVa Quadrotor ==&lt;br /&gt;
{|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot;&lt;br /&gt;
|[[Image:NoVa1.jpg|thumb|left|Nova Quadrotor]]&lt;br /&gt;
|&lt;br /&gt;
The [[NoVa|NoVa]] is an attitude stabilized quadrotor.  It utilizes paparazzi hardware as well as a 6DOF IMU. &lt;br /&gt;
  &lt;br /&gt;
'''[[NoVa|More details...]]'''&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Multiplex FunJet ==&lt;br /&gt;
{|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot;&lt;br /&gt;
|[[Image:Funjet_flight_dawnron1.jpg|thumb|left|Multiplex FunJet]]&lt;br /&gt;
|&lt;br /&gt;
The [[FunJet|FunJet]] is a new electric pusher-prop model from Multiplex made of durable and CA safe Elapor foam.  It offers plenty of room internally for avionics in an attractive package.  &lt;br /&gt;
  &lt;br /&gt;
'''[[FunJet|More details...]]'''&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== ENAC Solar Storm ==&lt;br /&gt;
{|&lt;br /&gt;
|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot;&lt;br /&gt;
|[[Image:SolarStorm1.jpg|thumb|left|ENAC Solar Storm]]&lt;br /&gt;
|&lt;br /&gt;
&lt;br /&gt;
The [[Solar-Storm]] is the result of a conceptual design study for a Hybrid-Solar cell powered MAV.&lt;br /&gt;
'''[[Solar-Storm|More details...]]'''&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Mini Telemaster ==&lt;br /&gt;
{|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot;&lt;br /&gt;
|[[Image:Paparazzitelema1.jpg|thumb|left|Telemaster]]&lt;br /&gt;
|&lt;br /&gt;
The [[Telemaster|Telemaster]] is a great platform for a new Paparazzi user. It provides a stable platform to help a new user to get used to the amazing Paparazzi system&lt;br /&gt;
  &lt;br /&gt;
'''[[Telemaster|More details...]]'''&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Jet powered ==&lt;br /&gt;
{|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot;&lt;br /&gt;
|[[Image:DSCF1855_small.JPG|thumb|left|Jet powered]]&lt;br /&gt;
|&lt;br /&gt;
The [[Jet powered|Jet powered]] is a special implementation of the Paparazzi system. The TWOG producing very stable flight only with IR sensor for this huge glider.&lt;br /&gt;
  &lt;br /&gt;
'''[[Jet powered|More details...]]'''&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Hobbyking Bixler ==&lt;br /&gt;
{|&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot;&lt;br /&gt;
|[[Image:Bixler Table.jpg|thumb|left|Bixler]]&lt;br /&gt;
|&lt;br /&gt;
The Hobbyking Bixler is a cheap copy of the Multiplex EasyStar. It is very inexpensive, easy to obtain and provides superbly easy flying for beginners. Moderately high payloads are possible.&lt;br /&gt;
&lt;br /&gt;
The Bixler is a five channel aircraft with Aileron, Rudder and Elevator.&lt;br /&gt;
  &lt;br /&gt;
'''[[Bixler|More details...]]'''&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Hardware Installation ==&lt;br /&gt;
&lt;br /&gt;
The installation of autopilot, sensors and modem is described [[Hardware_Installation|here]].&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Misc Airframe Notes ==&lt;br /&gt;
&lt;br /&gt;
[http://www.motocalc.com MotoCalc] is an Electric Flight Performance Prediction program for Windows and is available for a 30 day free trial.  MotoCalc has an internal database of thousands of motors/props/etc. and can make power/flight predictions based on data input.&lt;br /&gt;
&lt;br /&gt;
[http://brantuas.com/ezcalc/dma1.asp Electric Motor Calculator] by Diversity Model Aircraft is a free online tool for matching props to motors to batteries.&lt;br /&gt;
&lt;br /&gt;
[http://www.gobrushless.com/testing/thrust_calculator.php?prop=45&amp;amp;rb1=1&amp;amp;Value=9720&amp;amp;submit=Calculate+Now Propeller Thrust Calculator] is a free online calculator to give thrust from given propeller and RPM or vice versa.&lt;br /&gt;
&lt;br /&gt;
[http://www.hanleyinnovations.com/multisurface MultiSurface Aerodynamics] is an airfoil and wing analysis software package. The software predicts lift and drag for multiple interacting wings.&lt;br /&gt;
&lt;br /&gt;
=== Battery Specs ===&lt;br /&gt;
&lt;br /&gt;
'''Nickel Cadmium (NiCd)'''&lt;br /&gt;
&lt;br /&gt;
* Energy/Weight: 40-60 Wh/kg&lt;br /&gt;
* Nominal Cell Voltage: 1.2V&lt;br /&gt;
* Fully Charged Cell Voltage: 1.2V&lt;br /&gt;
* Depleted Cell Voltage: 0.8-1.0V&lt;br /&gt;
&lt;br /&gt;
'''Nickel Metal Hydride (NiMh)'''&lt;br /&gt;
&lt;br /&gt;
* Energy/Weight: 30-80 Wh/kg&lt;br /&gt;
* Nominal Cell Voltage: 1.2V&lt;br /&gt;
* Fully Charged Cell Voltage: 1.35-1.4 V (unloaded)&lt;br /&gt;
* Depleted Cell Voltage: 1.0V&lt;br /&gt;
&lt;br /&gt;
'''Lithium-Ion'''&lt;br /&gt;
&lt;br /&gt;
* Energy/weight: 160 Wh/kg&lt;br /&gt;
* Nominal Cell Voltage: 3.6 / 3.7 V&lt;br /&gt;
* Fully Charged Cell Voltage: 4.2V&lt;br /&gt;
* Lowest Cell Discharge Voltage Before Damage: 2.4v to 3.0v&lt;br /&gt;
&lt;br /&gt;
'''Lithium-Ion Polymer (LiPo)'''&lt;br /&gt;
&lt;br /&gt;
* Energy/weight: 130-200 Wh/kg&lt;br /&gt;
* Nominal Cell Voltage: 3.7V&lt;br /&gt;
* Fully Charged Cell Voltage: 4.23V&lt;br /&gt;
* Lowest Cell Discharge Voltage Before Damage: 3.0V&lt;br /&gt;
&lt;br /&gt;
'''Typical Power Requirements'''&lt;br /&gt;
&lt;br /&gt;
* 70W/kg (35W/lb) for sedate flying from hand launch&lt;br /&gt;
* 100W/kg (50W/lb) for ground take off&lt;br /&gt;
* 150W/kg (75W/lb) for performance / aerobatics&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Mass Figures ==&lt;br /&gt;
&lt;br /&gt;
Provided below are some weights to aid in estimating an all up weight for your uav&lt;br /&gt;
&lt;br /&gt;
* Tiny13 1.1 Weight: 25g (0.88oz)&lt;br /&gt;
* IR Sensor Head: 5g (0.18oz)&lt;br /&gt;
* XBee Pro: 4g (0.14oz)&lt;br /&gt;
* Hitec HS-55 Servo: 8g (0.28)&lt;br /&gt;
* Brushless Outrunner 250W: ~90g (~3oz)&lt;br /&gt;
* FunJet assembled, no hardware: 165g (5.82oz)&lt;br /&gt;
* FMA Encore 5ch Receiver: 11g (0.40oz)&lt;br /&gt;
* Castle Creations Phoenix 35: 24.5g (0.9oz)&lt;br /&gt;
&lt;br /&gt;
[[Category:Airframes]]&lt;/div&gt;</summary>
		<author><name>TilmanBaumann</name></author>
	</entry>
	<entry>
		<id>http://wiki.paparazziuav.org/w/index.php?title=File:Bixler_Table.jpg&amp;diff=12832</id>
		<title>File:Bixler Table.jpg</title>
		<link rel="alternate" type="text/html" href="http://wiki.paparazziuav.org/w/index.php?title=File:Bixler_Table.jpg&amp;diff=12832"/>
		<updated>2012-07-05T14:10:10Z</updated>

		<summary type="html">&lt;p&gt;TilmanBaumann: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>TilmanBaumann</name></author>
	</entry>
	<entry>
		<id>http://wiki.paparazziuav.org/w/index.php?title=File:Bixler_Cockpit.jpg&amp;diff=12831</id>
		<title>File:Bixler Cockpit.jpg</title>
		<link rel="alternate" type="text/html" href="http://wiki.paparazziuav.org/w/index.php?title=File:Bixler_Cockpit.jpg&amp;diff=12831"/>
		<updated>2012-07-05T14:09:45Z</updated>

		<summary type="html">&lt;p&gt;TilmanBaumann: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>TilmanBaumann</name></author>
	</entry>
	<entry>
		<id>http://wiki.paparazziuav.org/w/index.php?title=Talk:Get_Hardware&amp;diff=12830</id>
		<title>Talk:Get Hardware</title>
		<link rel="alternate" type="text/html" href="http://wiki.paparazziuav.org/w/index.php?title=Talk:Get_Hardware&amp;diff=12830"/>
		<updated>2012-07-05T13:40:57Z</updated>

		<summary type="html">&lt;p&gt;TilmanBaumann: /* Auxilary stuff */ new section&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;moved everything around...&lt;br /&gt;
&lt;br /&gt;
Removed Halfbase to clean up the Get Hardware page.  Discussion of his cons/pros can be made here.&lt;br /&gt;
&lt;br /&gt;
Removed non-working links.&lt;br /&gt;
&lt;br /&gt;
== Auxilary stuff ==&lt;br /&gt;
&lt;br /&gt;
Should we put things here like good antenna trackers?&lt;br /&gt;
Or other things that a UAV pilot might want to have but where it is not obvious which to get. Like transport cases, or camera mounts that can hold autopilot boards as well.&lt;br /&gt;
&lt;br /&gt;
I suppose there is a danger of turning into a advertisement billboard.&lt;br /&gt;
&lt;br /&gt;
--[[User:TilmanBaumann|TilmanBaumann]] 13:40, 5 July 2012 (UTC)&lt;/div&gt;</summary>
		<author><name>TilmanBaumann</name></author>
	</entry>
	<entry>
		<id>http://wiki.paparazziuav.org/w/index.php?title=Lisa/M_v2.0&amp;diff=12811</id>
		<title>Lisa/M v2.0</title>
		<link rel="alternate" type="text/html" href="http://wiki.paparazziuav.org/w/index.php?title=Lisa/M_v2.0&amp;diff=12811"/>
		<updated>2012-07-05T09:10:06Z</updated>

		<summary type="html">&lt;p&gt;TilmanBaumann: /* Hardware Change Requests */  Change power/CAN plug&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;div style=&amp;quot;float: right; width: 15%&amp;quot;&amp;gt;&amp;lt;categorytree style=&amp;quot;float:right; clear:right; margin-left:1ex; border: 1px solid gray; padding: 0.7ex;&amp;quot; mode=pages&amp;gt;Autopilots&amp;lt;/categorytree&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;float: right; width: 45%; overflow: hidden&amp;quot;&amp;gt;[[Image:LisaM_V2_0_TopView.JPG|right|500px|Lisa/M V2.0 top view]]&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;float: right; width: 40%&amp;quot;&amp;gt;__TOC__&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Lisa/M is a small, general purpose autopilot designed with flexibility across multiple applications in mind. Small weight and size, with (optional) integrated [[AspirinIMU | Aspirin IMU]] and full size 0.1&amp;quot; servo headers make the Lisa/M suitable for both fixed-wing and rotorcraft vehicles. This autopilot is based on the STM32 for improved peripherals and faster processing.&lt;br /&gt;
&lt;br /&gt;
A number of tutorials are being prepared for getting started with Lisa/M:&lt;br /&gt;
* [[Lisa/M/Tutorial/FixedWing|Fixedwing tutorial]]&lt;br /&gt;
* [[Lisa/M/Tutorial/RotorCraft|Rotorcraft tutorial]]&lt;br /&gt;
&lt;br /&gt;
== Hardware Revision History ==&lt;br /&gt;
&lt;br /&gt;
{|border=&amp;quot;1&amp;quot;  cellspacing=&amp;quot;0&amp;quot; style=&amp;quot;text-align:center&amp;quot; cellpadding=&amp;quot;6&amp;quot;&lt;br /&gt;
!''Version #''!!''Release Date''!!''Release Notes''&lt;br /&gt;
|-&lt;br /&gt;
|v2.0(current)||03/2012||Updated Production Release&lt;br /&gt;
|-&lt;br /&gt;
|v1.1||MM/YYYY||Updated Prototype&lt;br /&gt;
|-&lt;br /&gt;
|v1.0||MM/YYYY||Initial Production Release&lt;br /&gt;
|-&lt;br /&gt;
|v0.1||MM/YYYY||Initial prototype of Lisa/M&lt;br /&gt;
|}&lt;br /&gt;
For detailed hardware revision history, please [[Lisa/M#Detailed_Hardware_Revision_History | see below]].&lt;br /&gt;
&lt;br /&gt;
== Features ==&lt;br /&gt;
&lt;br /&gt;
Lisa/M is based on the 64 pins STM32F105RCT6 [http://www.st.com/internet/mcu/product/221023.jsp connectivity line family] processor featuring 64k of RAM and 256k of FLASH. All the pins are exposed, providing access to the complete set of the STM32 peripherals.&lt;br /&gt;
NOTE: This MCU is different from LISA/L. Lisa/L is based on the 64 pins STM32F103RE processor featuring 64k of RAM and 512k of FLASH, which is part of the [http://www.st.com/internet/mcu/product/164485.jsp high-density performance line family].&lt;br /&gt;
&lt;br /&gt;
* STM32 microcontroller [http://www.st.com/internet/com/TECHNICAL_RESOURCES/TECHNICAL_LITERATURE/DATASHEET/CD00220364.pdf STM32F105RCT6 datasheet] with 256kB flash and 64kB RAM&lt;br /&gt;
* Pressure sensor [http://www.bosch-sensortec.com/content/language1/html/3477.htm BMP085]&lt;br /&gt;
* 7 x Analog input channels&lt;br /&gt;
* 3 x Generic digital in-/out-puts&lt;br /&gt;
* 2 x 3.3V TTL UART (5V tolerant)&lt;br /&gt;
* 8 x Servo PPM outputs (6 w/ second I2C bus in use)&lt;br /&gt;
* 1 x CAN bus&lt;br /&gt;
* 1 x [http://en.wikipedia.org/wiki/Serial_Peripheral_Interface SPI] bus&lt;br /&gt;
* 1 x [http://en.wikipedia.org/wiki/I2c I&amp;lt;sup&amp;gt;2&amp;lt;/sup&amp;gt;C] bus (2 x when using only the first 6 Servo PPM outputs)&lt;br /&gt;
* 1 x Micro USB&lt;br /&gt;
* 4 x status LEDs with attached test point&lt;br /&gt;
* 10.8 grams (0.4 oz) (with Aspirin IMU mounted)&lt;br /&gt;
* 9.9 grams (0.35 oz) (without Aspirin IMU mounted)&lt;br /&gt;
* ~34mm x ~60mm x ~10mm&lt;br /&gt;
* 4 layers PCB design&lt;br /&gt;
&lt;br /&gt;
With mounted Aspirin IMU has the following additional sensors on board:&lt;br /&gt;
&lt;br /&gt;
* 3 Axis Gyroscope&lt;br /&gt;
* 3 Axis Accelerometer&lt;br /&gt;
* 3 Axis Magnetometer&lt;br /&gt;
&lt;br /&gt;
A BMP085 pressure sensor is mounted directly on the board in the first batch of boards as this sensor is not provided by first batch of Aspirin IMU yet. It is however possible to solder a MS5611 sensor on the Aspirin 2.x . To be able to use this baromeric sensor software will be written and likely available late 2012. It would be great to help out if you are able to. &lt;br /&gt;
&lt;br /&gt;
So, except for a GPS unit you have all necessary sensors for full attitude and altitude stabilization in an extremely small package.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery widths=200px heigths=200px&amp;gt;&lt;br /&gt;
Image:LisaM_V2_0_TopView.JPG|Lisa/M V2.0 top view&lt;br /&gt;
Image:LisaM_V2_0_BottomView.JPG|Lisa/M V2.0 bottom view&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Pinout ==&lt;br /&gt;
Pins Name and Type are specified with respect to the Autopilot Board.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;float: right; width: 100%&amp;quot;&amp;gt;&lt;br /&gt;
[[Image:LisaM_V2_0_top_labeled.png|900px]]&lt;br /&gt;
[[Image:LisaM_warning_label.png|200px]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{|border=&amp;quot;1&amp;quot;  cellspacing=&amp;quot;0&amp;quot; style=&amp;quot;text-align:center&amp;quot; cellpadding=&amp;quot;2%&amp;quot; width=&amp;quot;70%&amp;quot;&lt;br /&gt;
|+'''SERVO1/2/3/4/5/6/7/8'''&lt;br /&gt;
!width=&amp;quot;7%&amp;quot;|''Pin #''!!width=&amp;quot;10%&amp;quot;|''Name''!!width=&amp;quot;10%&amp;quot;|''Type''!!''Description''!!width=&amp;quot;5%&amp;quot;|''Color''&lt;br /&gt;
|-&lt;br /&gt;
|1||SERVOx||OUT||Servo signal (PWM)(See Note 1 below)||style=&amp;quot;background:Yellow; color:black&amp;quot;|Yellow&lt;br /&gt;
|-&lt;br /&gt;
|2||SV||PWR||Servo Bus Voltage Rail (conf w/ JP1)||style=&amp;quot;background:red; color:white&amp;quot;|Red&lt;br /&gt;
|-&lt;br /&gt;
|3||GND||PWR||common ground||style=&amp;quot;background:black; color:white&amp;quot;|Black&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{|border=&amp;quot;1&amp;quot;  cellspacing=&amp;quot;0&amp;quot; style=&amp;quot;text-align:center&amp;quot; cellpadding=&amp;quot;2%&amp;quot; width=&amp;quot;70%&amp;quot;&lt;br /&gt;
|+'''JTAG'''&lt;br /&gt;
!width=&amp;quot;7%&amp;quot;|''Pin #''!!width=&amp;quot;10%&amp;quot;|''Name''!!width=&amp;quot;10%&amp;quot;|''Type''!!''Description''!!width=&amp;quot;5%&amp;quot;|''Color''&lt;br /&gt;
|-&lt;br /&gt;
|1||N/A||N/A||JTAG Debug Header (Pin 1 is +3V3)||style=&amp;quot;background:white; color:black&amp;quot;|None&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{|border=&amp;quot;1&amp;quot;  cellspacing=&amp;quot;0&amp;quot; style=&amp;quot;text-align:center&amp;quot; cellpadding=&amp;quot;2%&amp;quot; width=&amp;quot;70%&amp;quot;&lt;br /&gt;
|+'''UART3'''&lt;br /&gt;
!width=&amp;quot;7%&amp;quot;|''Pin #''!!width=&amp;quot;10%&amp;quot;|''Name''!!width=&amp;quot;10%&amp;quot;|''Type''!!''Description''!!width=&amp;quot;5%&amp;quot;|''Color''&lt;br /&gt;
|-&lt;br /&gt;
|1||GND||PWR||common ground||style=&amp;quot;background:black; color:white&amp;quot;|Black&lt;br /&gt;
|-&lt;br /&gt;
|2||V_IN||PWR||UART Voltage (conf w/ JP6 and JP7)||style=&amp;quot;background:Red; color:white&amp;quot;|Red&lt;br /&gt;
|-&lt;br /&gt;
|3||TX||OUT||USART3 Serial Output (3.3V level)||style=&amp;quot;background:Yellow; color:black&amp;quot;|Yellow&lt;br /&gt;
|-&lt;br /&gt;
|4||RX||IN||USART3 Serial Input (3.3V level)(Pullup to Pin 2 voltage)(5V tolerant)||style=&amp;quot;background:Orange; color:white&amp;quot;|Orange&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{|border=&amp;quot;1&amp;quot;  cellspacing=&amp;quot;0&amp;quot; style=&amp;quot;text-align:center&amp;quot; cellpadding=&amp;quot;2%&amp;quot; width=&amp;quot;70%&amp;quot;&lt;br /&gt;
|+'''UART1/5'''&lt;br /&gt;
!width=&amp;quot;7%&amp;quot;|''Pin #''!!width=&amp;quot;10%&amp;quot;|''Name''!!width=&amp;quot;10%&amp;quot;|''Type''!!''Description''!!width=&amp;quot;5%&amp;quot;|''Color''&lt;br /&gt;
|-&lt;br /&gt;
|1||GND||PWR||common ground||style=&amp;quot;background:black; color:white&amp;quot;|Black&lt;br /&gt;
|-&lt;br /&gt;
|2|| +3V3||PWR||3.3V Rail from autopilot (conf w/ JP8 and JP9)||style=&amp;quot;background:Red; color:white&amp;quot;|Red&lt;br /&gt;
|-&lt;br /&gt;
|3||RX1||IN||USART1 Serial Input (3.3V level)(Pullup to Pin 2 voltage)(5V tolerant)||style=&amp;quot;background:Orange; color:white&amp;quot;|Orange&lt;br /&gt;
|-&lt;br /&gt;
|4||GND||PWR||common ground||style=&amp;quot;background:black; color:white&amp;quot;|Black&lt;br /&gt;
|-&lt;br /&gt;
|5|| +3V3||PWR||3.3V Rail from autopilot (conf w/ JP8 and JP9)||style=&amp;quot;background:Red; color:white&amp;quot;|Red&lt;br /&gt;
|-&lt;br /&gt;
|6||RX5||IN||UART5 Serial Input (3.3V level)(Pullup to Pin 5 voltage)(5V tolerant)||style=&amp;quot;background:Orange; color:white&amp;quot;|Orange&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{|border=&amp;quot;1&amp;quot;  cellspacing=&amp;quot;0&amp;quot; style=&amp;quot;text-align:center&amp;quot; cellpadding=&amp;quot;2%&amp;quot; width=&amp;quot;70%&amp;quot;&lt;br /&gt;
|+'''GPIO'''&lt;br /&gt;
!width=&amp;quot;7%&amp;quot;|''Pin #''!!width=&amp;quot;10%&amp;quot;|''Name''!!width=&amp;quot;10%&amp;quot;|''Type''!!''Description''!!width=&amp;quot;5%&amp;quot;|''Color''&lt;br /&gt;
|-&lt;br /&gt;
|1||GND||PWR||common ground||style=&amp;quot;background:black; color:white&amp;quot;|Black&lt;br /&gt;
|-&lt;br /&gt;
|2|| +3V3||PWR||3.3V Rail from autopilot||style=&amp;quot;background:Red; color:white&amp;quot;|Red&lt;br /&gt;
|-&lt;br /&gt;
|4||PC12||I/O||GPIO, connected to PC12 (5V tolerant)||style=&amp;quot;background:#FDC579; color:black&amp;quot;|Dark Tan&lt;br /&gt;
|-&lt;br /&gt;
|5||TRST||I/O||JTAG_TRST (also connected to LED1 cathode)||style=&amp;quot;background:#FED6B1; color:black&amp;quot;|Light Tan&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{|border=&amp;quot;1&amp;quot;  cellspacing=&amp;quot;0&amp;quot; style=&amp;quot;text-align:center&amp;quot; cellpadding=&amp;quot;2%&amp;quot; width=&amp;quot;70%&amp;quot;&lt;br /&gt;
|+'''ANALOG2'''&lt;br /&gt;
!width=&amp;quot;7%&amp;quot;|''Pin #''!!width=&amp;quot;10%&amp;quot;|''Name''!!width=&amp;quot;10%&amp;quot;|''Type''!!''Description''!!width=&amp;quot;5%&amp;quot;|''Color''&lt;br /&gt;
|-&lt;br /&gt;
|1||GND||PWR||common ground||style=&amp;quot;background:black; color:white&amp;quot;|Black&lt;br /&gt;
|-&lt;br /&gt;
|2|| +3V3||PWR||3.3V Rail from autopilot||style=&amp;quot;background:Red; color:white&amp;quot;|Red&lt;br /&gt;
|-&lt;br /&gt;
|3|| +5V||PWR||5V Rail from autopilot||style=&amp;quot;background:Red; color:white&amp;quot;|Red&lt;br /&gt;
|-&lt;br /&gt;
|4||ADC4||I/O||by default connected to LED_4 cathode (Remove LED/resistor to use as ADC4)||style=&amp;quot;background:magenta; color:white&amp;quot;|Magenta&lt;br /&gt;
|-&lt;br /&gt;
|5||ADC6||I/O||by default connected to LED_3 cathode (Remove LED/resistor to use as ADC6)||style=&amp;quot;background:#FFA1B2; color:black&amp;quot;|Pink&lt;br /&gt;
|-&lt;br /&gt;
|6||BOOT0||I/O||BOOT0||style=&amp;quot;background:grey; color:black&amp;quot;|Grey&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{|border=&amp;quot;1&amp;quot;  cellspacing=&amp;quot;0&amp;quot; style=&amp;quot;text-align:center&amp;quot; cellpadding=&amp;quot;2%&amp;quot; width=&amp;quot;70%&amp;quot;&lt;br /&gt;
|+'''USB'''&lt;br /&gt;
!width=&amp;quot;7%&amp;quot;|''Pin #''!!width=&amp;quot;10%&amp;quot;|''Name''!!width=&amp;quot;10%&amp;quot;|''Type''!!''Description''!!width=&amp;quot;5%&amp;quot;|''Color''&lt;br /&gt;
|-&lt;br /&gt;
|1||N/A||N/A||USB (The USB connections are also available as 0.05&amp;quot; (1.27mm) through hole pads underneath the GPIO header)||style=&amp;quot;background:white; color:black&amp;quot;|None&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{|border=&amp;quot;1&amp;quot;  cellspacing=&amp;quot;0&amp;quot; style=&amp;quot;text-align:center&amp;quot; cellpadding=&amp;quot;2%&amp;quot; width=&amp;quot;70%&amp;quot;&lt;br /&gt;
|+'''I2C1 CAN'''&lt;br /&gt;
!width=&amp;quot;7%&amp;quot;|''Pin #''!!width=&amp;quot;10%&amp;quot;|''Name''!!width=&amp;quot;10%&amp;quot;|''Type''!!''Description''!!width=&amp;quot;5%&amp;quot;|''Color''&lt;br /&gt;
|-&lt;br /&gt;
|1||GND||PWR||common ground||style=&amp;quot;background:black; color:white&amp;quot;|Black&lt;br /&gt;
|-&lt;br /&gt;
|2|| V_BATT||PWR||V_BAT Bus on autopilot, voltage divider for V_BAT_MEAS, (conf w/ JP2 to connect to V_IN)||style=&amp;quot;background:Red; color:white&amp;quot;|Red&lt;br /&gt;
|-&lt;br /&gt;
|3|| V_IN||PWR||Connected to autopilot voltage regulator inputs (conf w/ JP1, JP2 and JP3)||style=&amp;quot;background:Red; color:white&amp;quot;|Red&lt;br /&gt;
|-&lt;br /&gt;
|4||CANL||I/O||CANL (5V level)||style=&amp;quot;background:orange; color:white&amp;quot;|Orange&lt;br /&gt;
|-&lt;br /&gt;
|5||CANH||I/O||CANH (5V level)||style=&amp;quot;background:yellow; color:black&amp;quot;|Yellow&lt;br /&gt;
|-&lt;br /&gt;
|6||SCL||I/O||SCL (5V level)(See Note 1 below)||style=&amp;quot;background:green; color:white&amp;quot;|Green&lt;br /&gt;
|-&lt;br /&gt;
|7||SDA||I/O||SDA (5V level)(See Note 1 below)||style=&amp;quot;background:blue; color:white&amp;quot;|Blue&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{|border=&amp;quot;1&amp;quot;  cellspacing=&amp;quot;0&amp;quot; style=&amp;quot;text-align:center&amp;quot; cellpadding=&amp;quot;2%&amp;quot; width=&amp;quot;70%&amp;quot;&lt;br /&gt;
|+'''SPI1'''&lt;br /&gt;
!width=&amp;quot;7%&amp;quot;|''Pin #''!!width=&amp;quot;10%&amp;quot;|''Name''!!width=&amp;quot;10%&amp;quot;|''Type''!!''Description''!!width=&amp;quot;5%&amp;quot;|''Color''&lt;br /&gt;
|-&lt;br /&gt;
|1||GND||PWR||common ground||style=&amp;quot;background:black; color:white&amp;quot;|Black&lt;br /&gt;
|-&lt;br /&gt;
|2|| +3V3||PWR||3.3V Rail from autopilot||style=&amp;quot;background:Red; color:white&amp;quot;|Red&lt;br /&gt;
|-&lt;br /&gt;
|3||MOSI||Out||MOSI||style=&amp;quot;background:orange; color:white&amp;quot;|Orange&lt;br /&gt;
|-&lt;br /&gt;
|4||MISO||In||MISO||style=&amp;quot;background:yellow; color:black&amp;quot;|Yellow&lt;br /&gt;
|-&lt;br /&gt;
|5||SCK||Out||SCK||style=&amp;quot;background:green; color:white&amp;quot;|Green&lt;br /&gt;
|-&lt;br /&gt;
|6||SS||Out||SS||style=&amp;quot;background:blue; color:white&amp;quot;|Blue&lt;br /&gt;
|-&lt;br /&gt;
|7||DRDY||I/O||DRDY||style=&amp;quot;background:#FDC579; color:black&amp;quot;|Dark Tan&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{|border=&amp;quot;1&amp;quot;  cellspacing=&amp;quot;0&amp;quot; style=&amp;quot;text-align:center&amp;quot; cellpadding=&amp;quot;2%&amp;quot; width=&amp;quot;70%&amp;quot;&lt;br /&gt;
|+'''ANALOG1'''&lt;br /&gt;
!width=&amp;quot;7%&amp;quot;|''Pin #''!!width=&amp;quot;10%&amp;quot;|''Name''!!width=&amp;quot;10%&amp;quot;|''Type''!!''Description''!!width=&amp;quot;5%&amp;quot;|''Color''&lt;br /&gt;
|-&lt;br /&gt;
|1||GND||PWR||common ground||style=&amp;quot;background:black; color:white&amp;quot;|Black&lt;br /&gt;
|-&lt;br /&gt;
|2|| +3V3||PWR||3.3V Rail from autopilot||style=&amp;quot;background:Red; color:white&amp;quot;|Red&lt;br /&gt;
|-&lt;br /&gt;
|3|| +5V||PWR||5V Rail from autopilot||style=&amp;quot;background:Red; color:white&amp;quot;|Red&lt;br /&gt;
|-&lt;br /&gt;
|4||ADC1||In||ADC1 (or LED_6 if populated)||style=&amp;quot;background:green; color:white&amp;quot;|Green&lt;br /&gt;
|-&lt;br /&gt;
|5||ADC2||In||ADC2 (or LED_7 if populated)||style=&amp;quot;background:blue; color:white&amp;quot;|Blue&lt;br /&gt;
|-&lt;br /&gt;
|6||ADC3||In||ADC3 (or LED_8 if populated)||style=&amp;quot;background:#FED6B1; color:black&amp;quot;|Light Tan&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{|border=&amp;quot;1&amp;quot;  cellspacing=&amp;quot;0&amp;quot; style=&amp;quot;text-align:center&amp;quot; cellpadding=&amp;quot;2%&amp;quot; width=&amp;quot;70%&amp;quot;&lt;br /&gt;
|+'''UART2'''&lt;br /&gt;
!width=&amp;quot;7%&amp;quot;|''Pin #''!!width=&amp;quot;10%&amp;quot;|''Name''!!width=&amp;quot;10%&amp;quot;|''Type''!!''Description''!!width=&amp;quot;5%&amp;quot;|''Color''&lt;br /&gt;
|-&lt;br /&gt;
|1||GND||PWR||common ground||style=&amp;quot;background:black; color:white&amp;quot;|Black&lt;br /&gt;
|-&lt;br /&gt;
|2|| +3V3||PWR||UART Voltage (conf w/ JP4 and JP5)||style=&amp;quot;background:Red; color:white&amp;quot;|Red&lt;br /&gt;
|-&lt;br /&gt;
|3||TX||OUT||USART2 Serial Output (3.3V level)||style=&amp;quot;background:Yellow; color:black&amp;quot;|Yellow&lt;br /&gt;
|-&lt;br /&gt;
|4||RX||IN||USART2 Serial Input (3.3V level)('''NOT 5V TOLERANT''')(Pullup to Pin 2 voltage)||style=&amp;quot;background:Orange; color:white&amp;quot;|Orange&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{|border=&amp;quot;1&amp;quot;  cellspacing=&amp;quot;0&amp;quot; style=&amp;quot;text-align:center&amp;quot; cellpadding=&amp;quot;2%&amp;quot; width=&amp;quot;70%&amp;quot;&lt;br /&gt;
|+'''I2C2'''&lt;br /&gt;
!width=&amp;quot;7%&amp;quot;|''Pin #''!!width=&amp;quot;10%&amp;quot;|''Name''!!width=&amp;quot;10%&amp;quot;|''Type''!!''Description''!!width=&amp;quot;5%&amp;quot;|''Color''&lt;br /&gt;
|-&lt;br /&gt;
|1||GND||PWR||common ground||style=&amp;quot;background:black; color:white&amp;quot;|Black&lt;br /&gt;
|-&lt;br /&gt;
|2|| +3V3||PWR||3.3V Rail from autopilot||style=&amp;quot;background:Red; color:white&amp;quot;|Red&lt;br /&gt;
|-&lt;br /&gt;
|3||SCL||I/O||SCL (3.3V level)||style=&amp;quot;background:green; color:white&amp;quot;|Green&lt;br /&gt;
|-&lt;br /&gt;
|4||SDA||I/O||SDA (3.3V level)||style=&amp;quot;background:blue; color:white&amp;quot;|Blue&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''NOTE 1''': SERVO7 and SERVO8 are directly connected to I2C1_SCL and I2C1_SDA. As such, SERVO7 and SERVO8 '''CAN NOT''' be used while the second I2C bus (I2C1) also needs to be used for some reason.&lt;br /&gt;
&lt;br /&gt;
=== LEDs ===&lt;br /&gt;
Lisa/M 2.0 has 5 LEDS (+1 power LED). There are 3 additional LEDs (LED_6, LED_7, LED_8) that are not populated by default (in favor of using ADC1-3 on the ANALOG1 connector).&lt;br /&gt;
By default the LEDs are use for:&lt;br /&gt;
; LED_1, red: ''SYS_TIME_LED'': blinks with 1Hz&lt;br /&gt;
; LED_2, green : ''AHRS_ALIGNER_LED'': blinks until the AHRS is aligned (gyro bias initilalized) and then stays on&lt;br /&gt;
; LED_3, green : ''GPS_LED'': blinking if trying to get a fix, on if 3D fix&lt;br /&gt;
; LED_4, red : ''RADIO_CONTROL_LED'': on if RC signal is ok&lt;br /&gt;
; LED_5, green : not set to anything by default&lt;br /&gt;
&lt;br /&gt;
=== Jumper Configuration ===&lt;br /&gt;
There are a number of jumpers on Lisa/M used to configure voltage levels and power input.&lt;br /&gt;
&lt;br /&gt;
The default configuration is UART3 VCC at V_IN, UART1/2/5 VCC at +3V3, with the V_SERVO servo voltage rail NOT connected to the autopilot V_IN rail, allowing one to power the autopilot and servos separately. The +5V regulator is NOT bypassed, allowing a regulated +5V on listed headers and for the CAN transceiver and I2C level shifter. The V_BAT connector is NOT connected to V_IN, so one can attach a battery voltage to the V_BAT pin to measure the battery voltage, if so desired.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery widths=380px heights=205px&amp;gt;&lt;br /&gt;
Image:LisaM_V2_0_top_jumpers_and_leds.png | Lisa/M v2.0 Top Jumpers and LEDs&lt;br /&gt;
Image:LisaM_V2_0_bottom_jumpers.png | Lisa/M v2.0 Bottom Jumpers&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&amp;lt;br style=&amp;quot;clear:both&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{|border=&amp;quot;1&amp;quot;  cellspacing=&amp;quot;0&amp;quot; style=&amp;quot;text-align:center&amp;quot; cellpadding=&amp;quot;2%&amp;quot; width=&amp;quot;70%&amp;quot;&lt;br /&gt;
|+'''Power Jumper Configuration'''&lt;br /&gt;
!width=&amp;quot;7%&amp;quot;|''Jumper''!!width=&amp;quot;20%&amp;quot;|''Bus Connection''!!width=&amp;quot;7%&amp;quot;|''Default''!!''Description''&lt;br /&gt;
|-&lt;br /&gt;
|JP1||SERVO_BUS to V_IN||OPEN||Connects servo header voltage rail SERVO_BUS to autopilot input voltage V_IN rail&lt;br /&gt;
|-&lt;br /&gt;
|JP2||V_BAT to V_IN||OPEN||Connects I2C1/CAN rail V_BAT to autopilot input voltage V_IN rail&lt;br /&gt;
|-&lt;br /&gt;
|JP3||V_IN to +5V||OPEN||Connects autopilot input voltage V_IN rail to autopilot +5V rail, bypassing onboard 5V supply&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{|border=&amp;quot;1&amp;quot;  cellspacing=&amp;quot;0&amp;quot; style=&amp;quot;text-align:center&amp;quot; cellpadding=&amp;quot;2%&amp;quot; width=&amp;quot;70%&amp;quot;&lt;br /&gt;
|+'''UART3 VCC Configuration'''&lt;br /&gt;
!width=&amp;quot;7%&amp;quot;|''Jumper''!!width=&amp;quot;20%&amp;quot;|''Bus Connection''!!width=&amp;quot;7%&amp;quot;|''Default''!!''Description''&lt;br /&gt;
|-&lt;br /&gt;
|JP6||UART3_VCC to V_IN||style=&amp;quot;background:black; color:white&amp;quot;|CLOSED||Connects UART3 connector VCC to autopilot input voltage V_IN rail&lt;br /&gt;
|-&lt;br /&gt;
|JP7||UART3_VCC to +3V3||OPEN||Connects UART3 connector VCC to autopilot +3V3 rail&lt;br /&gt;
|}&lt;br /&gt;
'''WARNING: UART3 GPS Connector is connected to V_IN, check your GPS input voltage before connecting!!!'''&lt;br /&gt;
&lt;br /&gt;
'''WARNING: DO NOT CLOSE BOTH JP6 AND JP7 SIMULTANEOUSLY!!!'''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{|border=&amp;quot;1&amp;quot;  cellspacing=&amp;quot;0&amp;quot; style=&amp;quot;text-align:center&amp;quot; cellpadding=&amp;quot;2%&amp;quot; width=&amp;quot;70%&amp;quot;&lt;br /&gt;
|+'''UART2 VCC Configuration'''&lt;br /&gt;
!width=&amp;quot;7%&amp;quot;|''Jumper''!!width=&amp;quot;20%&amp;quot;|''Bus Connection''!!width=&amp;quot;7%&amp;quot;|''Default''!!''Description''&lt;br /&gt;
|-&lt;br /&gt;
|JP4||UART2_VCC to V_IN||OPEN||Connects UART2 connector VCC to autopilot input voltage V_IN rail '''SEE WARNING BELOW'''&lt;br /&gt;
|-&lt;br /&gt;
|JP5||UART2_VCC to +3V3||style=&amp;quot;background:black; color:white&amp;quot;|CLOSED||Connects UART2 connector VCC to autopilot +3V3 rail&lt;br /&gt;
|}&lt;br /&gt;
'''WARNING: UART2 RX is NOT 5V TOLERANT. Thus, while possible to connect UART2_VCC to V_IN, DO NOT ATTEMPT THIS. Only use JP5 (the default).&lt;br /&gt;
&lt;br /&gt;
'''WARNING: DO NOT CLOSE BOTH JP4 AND JP5 SIMULTANEOUSLY!!!'''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{|border=&amp;quot;1&amp;quot;  cellspacing=&amp;quot;0&amp;quot; style=&amp;quot;text-align:center&amp;quot; cellpadding=&amp;quot;2%&amp;quot; width=&amp;quot;70%&amp;quot;&lt;br /&gt;
|+'''UART1 and UART5 VCC Configuration'''&lt;br /&gt;
!width=&amp;quot;7%&amp;quot;|''Jumper''!!width=&amp;quot;20%&amp;quot;|''Bus Connection''!!width=&amp;quot;7%&amp;quot;|''Default''!!''Description''&lt;br /&gt;
|-&lt;br /&gt;
|JP8||UART1&amp;amp;5_VCC to V_IN||OPEN||Connects UART1 and UART5 connector VCC to autopilot input voltage V_IN rail&lt;br /&gt;
|-&lt;br /&gt;
|JP9||UART1&amp;amp;5_VCC to +3V3||style=&amp;quot;background:black; color:white&amp;quot;|CLOSED||Connects UART1 and UART5 connector VCC to autopilot +3V3 rail&lt;br /&gt;
|}&lt;br /&gt;
'''WARNING: DO NOT CLOSE BOTH JP8 AND JP9 SIMULTANEOUSLY!!!'''&lt;br /&gt;
&lt;br /&gt;
There are additional jumpers on the board for expert or developer configurations, please see [[Lisa/M_v20#Schematic|schematic]] and [[Lisa/M_v20#Downloads|layout]] for more information.&lt;br /&gt;
&lt;br /&gt;
=== Powering the Board ===&lt;br /&gt;
&lt;br /&gt;
[[Image:LisaM_warning_label.png|right|200px]]&lt;br /&gt;
&lt;br /&gt;
The 3.3V regulator on Lisa/M is a [http://www.micrel.com/page.do?page=/product-info/products/mic5209.shtml MIC5209-3.3YM] capable of delivering up to 500mA. While it is possible to power this regulator with up to 16V, '''DO NOT''' do this. By default, the UART3 RX pin is pulled up to the input voltage V_IN. For this reason, 5V is the maximum input voltage. Note that the UART3 GPS Connector is connected to V_IN, check your GPS input voltage before connecting. If one desires to have V_IN at a higher voltage, the jumpers should be adjusted accordingly. As noted, this regulator can handle up to 16V, though experience has shown that this regulator can become very hot in operation with high input voltages, resulting in potential thermal shutdown while in flight. Depending on the expected current draw, it is best to power this regulator with a lower voltage. 5V is the perfect choice. &lt;br /&gt;
&lt;br /&gt;
The onboard 5V regulator on Lisa/M is a [http://www.national.com/pf/LP/LP2992.html LP2992], a low-noise, low-dropout linear regulator capable of delivering up to 250mA. This regulator can be bypassed with JP3, connecting the autopilot V_IN bus directly to the autopilot 5V bus if, for example, one is using an external 5V regulated supply, and a higher current is needed. Unless external use of 5V is required on the ANALOG1 and ANALOG2 headers, the only 5V usage onboard is for the CAN transceiver and the I2C1 level shifter.&lt;br /&gt;
&lt;br /&gt;
When measuring the supply voltage of a battery with the V_BAT pin (could be connected to V_IN through JP2), it is important to note the maximum voltage limit. The voltage divider on the board for measuring with a 3.3V ADC is --'''V_BAT'''--/\/\'''10k'''/\/\--'''V_BAT_MEAS'''--/\/\'''2k2'''/\/\--'''GND'''--. This means that the maximum allowable voltage on V_BAT is&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;V\_BAT_{max} = 3.3V*\frac{10k}{2.2k} = 15V&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
If a higher voltage measurement is desired, another voltage divider is required off-board. Alternatively, one could modify the existing voltage divider (e.g. change 10k resistor to 22k to get 33V maximum). When checking if voltage exceeds the maximum, make sure to consider maximum battery voltage, not nominal voltage (e.g. 4.22V or so for a single lithium cell, not 3.7V nominal, so the maximum number of cells in series is 3, like a 3S LiPo pack).&lt;br /&gt;
&lt;br /&gt;
== Schematic ==&lt;br /&gt;
&amp;lt;gallery widths=250px heights=168px&amp;gt;&lt;br /&gt;
Image:Lisa_m_v2_0_sheet_1.png | LisaM V2.0 Schematic Sheet 1/3&lt;br /&gt;
Image:Lisa_m_v2_0_sheet_2.png | LisaM V2.0 Schematic Sheet 2/3&lt;br /&gt;
Image:Lisa_m_v2_0_sheet_3.png | LisaM V2.0 Schematic Sheet 3/3&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&amp;lt;br style=&amp;quot;clear:both&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Examples of Airborne Equipment Electrical Connections ==&lt;br /&gt;
&lt;br /&gt;
=== Quadrocopter, Spektrum Satellite Receivers and PWM Motor Controllers (ESC) ===&lt;br /&gt;
&lt;br /&gt;
[[File:LisaM_v2_0_wiring_quadrocopter_spektrum_pwmesc.png|700px]]&lt;br /&gt;
&lt;br /&gt;
When using cheap Chinese PWM motor controllers consider replacing their firmware with Simon Kirby firmware that you can find in his [https://github.com/sim-/tgy GitHub repository] to get useful performance of your multicopter!&lt;br /&gt;
&lt;br /&gt;
=== Quadrocopter, Spektrum Satellite Receivers and I2C Motor Controllers (ESC) ===&lt;br /&gt;
&lt;br /&gt;
[[File:LisaM_V2_0_quadrocopter_spektrum_i2c_esc_wiring.png|700px]]&lt;br /&gt;
&lt;br /&gt;
This diagram &amp;quot;should&amp;quot; be the same for AscTec as well as Mikrokopter motor controller based airframes.&lt;br /&gt;
&lt;br /&gt;
=== Fixedwing, Spektrum Satellite Receivers and Elevons Only ===&lt;br /&gt;
&lt;br /&gt;
[[File:LisaM_V2_0_wiring_fixedwing_spektrum_elevons.png|700px]]&lt;br /&gt;
&lt;br /&gt;
=== Fixedwing, Spektrum Satellite Receivers ===&lt;br /&gt;
&lt;br /&gt;
[[File:LisaM_V2_0_wiring_fixedwing_spektrum.png|700px]]&lt;br /&gt;
&lt;br /&gt;
=== Transitioning [http://wiki.thequadshot.com Quadshot] Using Spektrum Receivers ===&lt;br /&gt;
&lt;br /&gt;
[[File:LisaM_V2_0_wiring_quadshot_spektrum.png|700px]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Still need: Large Fixed-wing with advanced power system and/or IC engine, PPM example&lt;br /&gt;
&lt;br /&gt;
=== R/C Receivers ===&lt;br /&gt;
There is Spektrum parser available already, enabling the direct use of 1 or 2 Spektrum satellite receivers.&lt;br /&gt;
&lt;br /&gt;
Also UART pins can be used as general purpose I/O to be used for PPM input. By default connect your PPM out able receiver to servo pin 6. If you do not have or cannot create a PPM out able receiver, additionally a [[PPM_Encoder | PPM encoder board]] can be used to avoid receiver hardware modification.&lt;br /&gt;
&lt;br /&gt;
== PCB ==&lt;br /&gt;
&lt;br /&gt;
=== Gerber &amp;amp; Drill Files  ===&lt;br /&gt;
&lt;br /&gt;
'''''Download  Lisa/M v2.0 gerber &amp;amp; drill files (zip)''''' ''NOT YET AVAILABLE BUT SEE [[Lisa/M#Downloads|Downloads]]''&lt;br /&gt;
Need some generated gerbers and drill files here.&lt;br /&gt;
&lt;br /&gt;
== Assembly ==&lt;br /&gt;
&lt;br /&gt;
===Components Layout===&lt;br /&gt;
&lt;br /&gt;
''NOT YET AVAILABLE BUT SEE [[Lisa/M#Downloads|Downloads]]''&lt;br /&gt;
Need some top and bottom of board images and line drawings here.&lt;br /&gt;
&lt;br /&gt;
=== Bill Of Material ===&lt;br /&gt;
&lt;br /&gt;
'''''Download  Lisa/M v2.0 Bill Of Material (zipped .xls file)''''' ''NOT YET AVAILABLE BUT SEE [[Lisa/M#Downloads|Downloads]]''&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== PCB and assembled boards suppliers ==&lt;br /&gt;
&lt;br /&gt;
Available on [[Get_Hardware|Get Hardware]] page, hopefully :)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Mechanical Dimensions ==&lt;br /&gt;
&lt;br /&gt;
[[Image:LisaM_V2_0_top_mechanical.png|500px|Lisa/M v2.0 Mechanical Dimensions]]&lt;br /&gt;
&lt;br /&gt;
The overall height of the board including the servo connectors is 10mm. Note that the overall length includes the USB connector. The mounting holes are nominal 2mm diameter (with a bit of clearance).&lt;br /&gt;
&lt;br /&gt;
== Downloads ==&lt;br /&gt;
&lt;br /&gt;
'''Source files'''&lt;br /&gt;
:*download available on GitHub: ''[https://github.com/paparazzi/paparazzi-hardware/tree/master/controller/lisa_m/v2.0 Lisa/M v2.0 Cadsoft Eagle 6 Design]''&lt;br /&gt;
'''Gerber &amp;amp; Drill files'''&lt;br /&gt;
:*download ''NOT YET AVAILABLE'' Need generated gerbers and drill files&lt;br /&gt;
'''Assembly files'''&lt;br /&gt;
:*download ''NOT YET AVAILABLE'' Need Lisa/M v2.0 Components layouts (pdf)&lt;br /&gt;
:*download ''NOT YET AVAILABLE'' Need Lisa/M v2.0 Bill Of Material&lt;br /&gt;
&lt;br /&gt;
== Programming ==&lt;br /&gt;
&lt;br /&gt;
Lisa/M v2.0 can be programmed via its micro-USB port using the luftboot bootloader or with a JTAG via the 10-pin Samtec connector.&lt;br /&gt;
All Lisa/M 2.0 from Transition Robotics Inc. come with luftboot preloaded.&lt;br /&gt;
&lt;br /&gt;
=== Using luftboot ===&lt;br /&gt;
&lt;br /&gt;
Paparazzi git dev branch already has support for the bootloader and will by default use the associated DFU loader to program the firmware. (Don't forget to check that your airframe file is set to use Lisa/M 2.0 as its target board)&lt;br /&gt;
&lt;br /&gt;
Currently Paparazzi firmware does not contain the needed USB stack stub to switch into bootloader mode using software.&lt;br /&gt;
To force the bootloader to run, bridge ADC2 and GND by making up a connector.&lt;br /&gt;
This won't be necessary in the future once the USB stack stub is added to Paparazzi.&lt;br /&gt;
&lt;br /&gt;
Once the bridge connector is attached, attach the Lisa/M to the PC via a micro-usb cable and it should start in bootloader mode, and the status LEDs will cycle up and down:&lt;br /&gt;
&lt;br /&gt;
[[File:Luftboot.gif|320px]]&lt;br /&gt;
&lt;br /&gt;
You can and should disconnect the bridge connector after enforcing the bootloader.&lt;br /&gt;
Assuming your build target uses the Lisa/M board, pressing upload should now load code onto the board.&lt;br /&gt;
&lt;br /&gt;
If you overwrite/remove luftboot you can recover it by following the instructions below:&lt;br /&gt;
&lt;br /&gt;
=== Uploading the Paparazzi USB Bootloader ===&lt;br /&gt;
&lt;br /&gt;
This section describes the process on how to upload/recover the luftboot bootloader on your Lisa/M 2.0. It is not needed if you got your Lisa/M 2.0 from Transition Robotics Inc. as the boards come with luftboot preloaded.&lt;br /&gt;
&lt;br /&gt;
[https://github.com/paparazzi/luftboot Luftboot] is a Paparazzi-compatible bootloader for STM32-based autopilots.&lt;br /&gt;
Depending on your vendor, your Lisa/M may already come with a bootloader, in which case you should skip to [[Lisa/M#Programming]]&lt;br /&gt;
&lt;br /&gt;
==== Required components ====&lt;br /&gt;
*Floss-JTAG debugger&lt;br /&gt;
*Lisa/M&lt;br /&gt;
*PC&lt;br /&gt;
&lt;br /&gt;
==== Procedure ====&lt;br /&gt;
&amp;lt;ol&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;&lt;br /&gt;
Checkout [https://github.com/paparazzi/luftboot Luftboot from Github]&lt;br /&gt;
&amp;lt;source lang=bash&amp;gt;git clone https://github.com/paparazzi/luftboot.git&amp;lt;/source&amp;gt;&lt;br /&gt;
&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;&lt;br /&gt;
Change directory into the luftboot/src folder&lt;br /&gt;
&amp;lt;source lang=bash&amp;gt;cd ./luftboot/src&amp;lt;/source&amp;gt;&lt;br /&gt;
&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;&lt;br /&gt;
Build luftboot&lt;br /&gt;
&amp;lt;source lang=bash&amp;gt;make clean &amp;amp;&amp;amp; make&amp;lt;/source&amp;gt;&lt;br /&gt;
&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;&lt;br /&gt;
Flash the Lisa/M&lt;br /&gt;
Attach the floss-jtag unit to the PC and connect it to the Lisa/M via the black connector.&lt;br /&gt;
Power the Lisa/M (easiest way is to connect to the PC via a micro-USB cable).&lt;br /&gt;
&amp;lt;source lang=bash&amp;gt;make flash DEV_SERIAL=&amp;quot;LM2-ser&amp;quot;&amp;lt;/source&amp;gt;&lt;br /&gt;
where &amp;quot;ser&amp;quot; stands for the serial number of your Lisa/M. So for example if you have lisa/m with the serial number 020 this would be:&lt;br /&gt;
&amp;lt;source lang=bash&amp;gt;make clean &amp;amp;&amp;amp; make flash DEV_SERIAL=&amp;quot;LM2-020&amp;quot;&amp;lt;/source&amp;gt;&lt;br /&gt;
&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;/ol&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== Connection Diagram ====&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Boot Sequence ====&lt;br /&gt;
&lt;br /&gt;
* Luftboot&lt;br /&gt;
** Check if ADC2 is configured as output pull down indicating software bootloader request&lt;br /&gt;
*** '''If ADC2 output pull down:''' initialize usb and stay in bootloader mode&lt;br /&gt;
** Setting the ADC2 pin to input pull up&lt;br /&gt;
** Checking if the ADC2 pin is low&lt;br /&gt;
*** '''If ADC2 low:''' initialize USB and stay in bootloader mode&lt;br /&gt;
*** '''If ADC2 high:''' check if there is a payload at 0x8002000&lt;br /&gt;
**** '''If payload detected:''' set vector table pointer to be at 0x8002000 and jump to the reset handler of the payload&lt;br /&gt;
**** '''If payload not detected:''' initialize USB and stay in bootloader mode&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Luftboot USB permissions ====&lt;br /&gt;
&lt;br /&gt;
stm32_mem.py needs permission to write to the the Luftboot USB device. (The error message is quite obscure due to the way python-libusb accesses the device)&lt;br /&gt;
&lt;br /&gt;
[[Installation/Linux#Udev_rules|Copy the udev-rules file]] get write permissions.&lt;br /&gt;
&lt;br /&gt;
=== JTAG ===&lt;br /&gt;
If you are using the Lisa/M 2.0 target board you still can use JTAG for programming and debugging your paparazzi firmware. Using JTAG will not overwrite the bootloader by default. You need to set NO_LUFTBOOT config in your airframe file to force overwrite.&lt;br /&gt;
&lt;br /&gt;
* [[JTAG]] description;&lt;br /&gt;
* General [[Dev/Debugging|debugging information]];&lt;br /&gt;
* [[DevGuide/JTAG-Debug|JTAG usage]], includes Eclipse uplink tutorial.&lt;br /&gt;
&lt;br /&gt;
==== Quick JTAG Upload Guide ====&lt;br /&gt;
# Connect floss-jtag to Lisa via the cortex cable (little black socket)&lt;br /&gt;
# Attach the UART port on the bottom of the floss-jtag to UART2 on the Lisa.&lt;br /&gt;
# Plug in USB port of the floss jtag&lt;br /&gt;
# Plug in USB port of the Lisa&lt;br /&gt;
# Make sure your airframe uses the &amp;lt;target name=&amp;quot;ap&amp;quot; board=&amp;quot;lisa_m_2.0&amp;quot;&amp;gt; definition&lt;br /&gt;
# Click Build, wait until complete, then click Upload.  You should see the following towards the end:&lt;br /&gt;
{{{&lt;br /&gt;
...&lt;br /&gt;
Info : device id = 0x10016418&lt;br /&gt;
Info : flash size = 256kbytes&lt;br /&gt;
stm32x mass erase complete&lt;br /&gt;
Info : Padding image section 1 with 7972 bytes&lt;br /&gt;
wrote 152576 bytes from file src/paparazzi/var/Hexa_LisaL/ap/ap.elf in 7.498179s (19.871 KiB/s)&lt;br /&gt;
Info : JTAG tap: stm32.cpu tap/device found: 0x3ba00477 (mfg: 0x23b, part: 0xba00, ver: 0x3)&lt;br /&gt;
Info : JTAG tap: stm32.bs tap/device found: 0x06418041 (mfg: 0x020, part: 0x6418, ver: 0x0)&lt;br /&gt;
shutdown command invoked&lt;br /&gt;
}}}&lt;br /&gt;
# Run Flight USB-serial at the baud rate you need (default 57600 for rotorcraft)&lt;br /&gt;
# You may need to change the device to /dev/ttyUSB1, and 'Redo' the Data Link&lt;br /&gt;
&lt;br /&gt;
=== Serial Firmware Upload ===&lt;br /&gt;
Firmware upload using the factory integrated bootloader can be useful e.g. if you have overwritten Luftboot accidentally and don´t have access to JTAG.&lt;br /&gt;
&lt;br /&gt;
Due to hardware constraints, the board has to be modified to make use of the bootloader, which is only accessible on UART1:&lt;br /&gt;
# Diode D3 has to be removed (the bigger black brick next to the USB connector). Attention, no more powering via USB after that.&lt;br /&gt;
# BOOT1 has to be set to GND by connecting ACC_DRDY(unused) to GND at the Aspirin pads&lt;br /&gt;
&lt;br /&gt;
Now a boot sequence works as follows:&lt;br /&gt;
#BOOT1 has to be set to 3.3V by use of a jumper cable&lt;br /&gt;
#Connect a 3,3V serial cable (FTDI, MAX232...) to UART1, the TX pin is USB_VBUS&lt;br /&gt;
#Power the board and activate the bootloader program&lt;br /&gt;
&lt;br /&gt;
The according bootloader script can be found at :&lt;br /&gt;
[https://github.com/jsnyder/stm32loader stm32loader from Github]&lt;br /&gt;
&amp;lt;source lang=bash&amp;gt;git clone https://github.com/jsnyder/stm32loader.git&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
To reload Luftboot, upload luftboot.bin&lt;br /&gt;
&lt;br /&gt;
Serial upload can also be used directly from paparazzi Center by adapting the right path in [https://github.com/paparazzi/paparazzi/blob/dev/conf/Makefile.stm32 Makefile.stm32] for the LOADER argument and setting &lt;br /&gt;
&lt;br /&gt;
&amp;lt;define name=&amp;quot;FLASH_MODE&amp;quot; value=&amp;quot;SERIAL&amp;quot;/&amp;gt; &lt;br /&gt;
&lt;br /&gt;
in the target section of the airframe configuration.&lt;br /&gt;
&lt;br /&gt;
== Detailed Hardware Revision History ==&lt;br /&gt;
&lt;br /&gt;
=== Changes Between v1.1 and v2.0 ===&lt;br /&gt;
* Lots of silkscreen improvements&lt;br /&gt;
* Added attributes to all parts to make the usage of bom-ex ulp possible.&lt;br /&gt;
* Improved routing to allow teardropping&lt;br /&gt;
* Fixed stm32f1, f2 and f4 compatibility circuit. (has to jump to ground not to 3v3)&lt;br /&gt;
* Connected existing UART RX pullups to the respective connector power pins instead of 3v3. To prevent connecting 5V over IO pin to the 3v3 power rail.&lt;br /&gt;
* Added pullups on all UART RX lines to prevent undesired floatation.&lt;br /&gt;
* LED's are connected to 3v3 now. To make sure we don't have an issue with voltage tolerance on the gpio pins.&lt;br /&gt;
* ...&lt;br /&gt;
&lt;br /&gt;
=== Changes Between v1.0 and v1.1 ===&lt;br /&gt;
* Removed pull-ups on the USB gpio&lt;br /&gt;
* Removed pull-ups on the CAN gpio&lt;br /&gt;
* Connected usb_vbus to pa9 (needed by the USBotg)&lt;br /&gt;
* Removed USB pullup transistor as usbotg has a built in pullup&lt;br /&gt;
* Swapped UART1 with UART3 (uart1 was used for gps and pa9 was it's tx line, to be able to talk to the gps unit uart3 is a better choice, as uart1 only has an rx line now it is a better choice for spektrum RX modules)&lt;br /&gt;
* Removed USART3 TX gpio from the GPIO connector and moved to the GPS connector&lt;br /&gt;
* Added voltage selector jumpers to the RC RX connector; to enable powering of 3v3 or an 5v receivers&lt;br /&gt;
* Replaced vertical board solution with through hole servo pin headers (easier assembly)&lt;br /&gt;
* Servo connectors are in groups of two; for easier assembly&lt;br /&gt;
* Servo VBUS is connected together on all four layers; for lower resistance&lt;br /&gt;
* Moved LED's from under the analog2 connector; to be able to populate LED's and the connector&lt;br /&gt;
* Moved the RC RX connector a bit; to prevent crashing with the jtag plug&lt;br /&gt;
* Added one additional servo connector; now we have all 8 accessible through the standard servo connectors&lt;br /&gt;
* Fixed servo channel labeling to start at '''S0''' as it is the case on TWOG and Tiny autopilot boards&lt;br /&gt;
* Added secondary through hole picoblade USB connector for easier routing of USB inside an airframe&lt;br /&gt;
* ...&lt;br /&gt;
&lt;br /&gt;
=== Changes Between v0.1 and v1.0 ===&lt;br /&gt;
* Switched to stm32f105 to be able to use usb and can at the same time&lt;br /&gt;
* Added alternative use of the adc lines as led output&lt;br /&gt;
* ...&lt;br /&gt;
&lt;br /&gt;
=== Hardware Change Requests ===&lt;br /&gt;
* REQ: Replace BMP085 with MS5611 (the MS5611 seems to be better in performance then the BMP but it is more expensive and seems to be more difficult to obtain. &lt;br /&gt;
** A: This upgrade will be available through Aspirin v2.0 --[[User:Esden|Esden]] 22:54, 5 January 2012 (CET)&lt;br /&gt;
&lt;br /&gt;
* REQ: Replace 7 Pin CAN with molex with something less risky to be inserted in 7 Pin SPI in relation to powering the board via CAN molex.&lt;br /&gt;
&lt;br /&gt;
* REQ: Separate spot for external power if powered via separate battery. Realizing we can via Servo ports by Bridge J1 but still like to measure board voltage then and have a way to add power without mistakenly inject CAN Molex into SPI.&lt;br /&gt;
&lt;br /&gt;
* REQ: Replace Aspirin IMU board with InvenSense MPU-9150 to reduce thickness and mass once it becomes readily available, maybe around Lisa/M 3.0 ;)&lt;br /&gt;
&lt;br /&gt;
* REQ: Separate CAN and Power plug. Put Power on regular four pin molex with GND, V+5, , V_BATT, V_I (Current sense) --[[User:TilmanBaumann|TilmanBaumann]] 09:10, 5 July 2012 (UTC)&lt;br /&gt;
&lt;br /&gt;
[[Category:Lisa]] [[Category:User_Documentation]]&lt;/div&gt;</summary>
		<author><name>TilmanBaumann</name></author>
	</entry>
	<entry>
		<id>http://wiki.paparazziuav.org/w/index.php?title=Lisa/M_v2.0&amp;diff=12189</id>
		<title>Lisa/M v2.0</title>
		<link rel="alternate" type="text/html" href="http://wiki.paparazziuav.org/w/index.php?title=Lisa/M_v2.0&amp;diff=12189"/>
		<updated>2012-04-26T22:03:22Z</updated>

		<summary type="html">&lt;p&gt;TilmanBaumann: /* Boot Sequence */ Luftboot USB permissions&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;div style=&amp;quot;float: right; width: 15%&amp;quot;&amp;gt;&amp;lt;categorytree style=&amp;quot;float:right; clear:right; margin-left:1ex; border: 1px solid gray; padding: 0.7ex;&amp;quot; mode=pages&amp;gt;Autopilots&amp;lt;/categorytree&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;float: right; width: 45%; overflow: hidden&amp;quot;&amp;gt;[[Image:LisaM_V2_0_TopView.JPG|right|500px|Lisa/M V2.0 top view]]&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;float: right; width: 40%&amp;quot;&amp;gt;__TOC__&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Lisa/M is a small, general purpose autopilot designed with flexibility across multiple applications in mind. Small weight and size, with (optional) integrated [[AspirinIMU | Aspirin IMU]] and full size 0.1&amp;quot; servo headers make the Lisa/M suitable for both fixed-wing and rotorcraft vehicles. This autopilot is based on the STM32 for improved peripherals and faster processing.&lt;br /&gt;
&lt;br /&gt;
A number of tutorials are being prepared for getting started with Lisa/M:&lt;br /&gt;
* [[Lisa/M/Tutorial/FixedWing|Fixedwing tutorial]]&lt;br /&gt;
* [[Lisa/M/Tutorial/RotorCraft|Rotorcraft tutorial]]&lt;br /&gt;
&lt;br /&gt;
== Hardware Revision History ==&lt;br /&gt;
&lt;br /&gt;
{|border=&amp;quot;1&amp;quot;  cellspacing=&amp;quot;0&amp;quot; style=&amp;quot;text-align:center&amp;quot; cellpadding=&amp;quot;6&amp;quot;&lt;br /&gt;
!''Version #''!!''Release Date''!!''Release Notes''&lt;br /&gt;
|-&lt;br /&gt;
|v2.0(current)||03/2012||Updated Production Release&lt;br /&gt;
|-&lt;br /&gt;
|v1.1||MM/YYYY||Updated Prototype&lt;br /&gt;
|-&lt;br /&gt;
|v1.0||MM/YYYY||Initial Production Release&lt;br /&gt;
|-&lt;br /&gt;
|v0.1||MM/YYYY||Initial prototype of Lisa/M&lt;br /&gt;
|}&lt;br /&gt;
For detailed hardware revision history, please [[Lisa/M#Detailed_Hardware_Revision_History | see below]].&lt;br /&gt;
&lt;br /&gt;
== Features ==&lt;br /&gt;
&lt;br /&gt;
Lisa/M is based on the 64 pins STM32F105RCT6 [http://www.st.com/internet/mcu/product/221023.jsp connectivity line family] processor featuring 64k of RAM and 256k of FLASH. All the pins are exposed, providing access to the complete set of the STM32 peripherals.&lt;br /&gt;
NOTE: This MCU is different from LISA/L. Lisa/L is based on the 64 pins STM32F103RE processor featuring 64k of RAM and 512k of FLASH, which is part of the [http://www.st.com/internet/mcu/product/164485.jsp high-density performance line family].&lt;br /&gt;
&lt;br /&gt;
* STM32 microcontroller [http://www.st.com/internet/com/TECHNICAL_RESOURCES/TECHNICAL_LITERATURE/DATASHEET/CD00220364.pdf STM32F105RCT6 datasheet] with 256kB flash and 64kB RAM&lt;br /&gt;
* Pressure sensor [http://www.bosch-sensortec.com/content/language1/html/3477.htm BMP085]&lt;br /&gt;
* 7 x Analog input channels&lt;br /&gt;
* 3 x Generic digital in-/out-puts&lt;br /&gt;
* 2 x 3.3V TTL UART (5V tolerant)&lt;br /&gt;
* 8 x Servo PPM outputs (6 w/ second I2C bus in use)&lt;br /&gt;
* 1 x CAN bus&lt;br /&gt;
* 1 x [http://en.wikipedia.org/wiki/Serial_Peripheral_Interface SPI] bus&lt;br /&gt;
* 1 x [http://en.wikipedia.org/wiki/I2c I&amp;lt;sup&amp;gt;2&amp;lt;/sup&amp;gt;C] bus (2 when using only 6 Servo PPM outputs)&lt;br /&gt;
* 1 x Micro USB&lt;br /&gt;
* 4 x status LEDs with attached test point&lt;br /&gt;
* 10.8 grams (0.4 oz) (with Aspirin IMU mounted)&lt;br /&gt;
* 9.9 grams (0.35 oz) (without Aspirin IMU mounted)&lt;br /&gt;
* ~34mm x ~60mm x ~10mm&lt;br /&gt;
* 4 layers PCB design&lt;br /&gt;
&lt;br /&gt;
with mounted IMU has the following additional sensors on board:&lt;br /&gt;
&lt;br /&gt;
* 3 Axis Gyroscope&lt;br /&gt;
* 3 Axis Accelerometer&lt;br /&gt;
* 3 Axis Magnetometer&lt;br /&gt;
&lt;br /&gt;
The pressure sensor is mounted directly on the board as this sensor is not provided by Aspirin (''v0.1 - v1.1''). Except for a GPS unit you have all necessary sensors for full attitude and altitude stabilization in an extremely small package.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery widths=200px heigths=200px&amp;gt;&lt;br /&gt;
Image:LisaM_V2_0_TopView.JPG|Lisa/M V2.0 top view&lt;br /&gt;
Image:LisaM_V2_0_BottomView.JPG|Lisa/M V2.0 bottom view&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Pinout ==&lt;br /&gt;
Pins Name and Type are specified with respect to the Autopilot Board.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;float: right; width: 100%&amp;quot;&amp;gt;&lt;br /&gt;
[[Image:LisaM_V2_0_top_labeled.png|900px]]&lt;br /&gt;
[[Image:LisaM_warning_label.png|200px]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{|border=&amp;quot;1&amp;quot;  cellspacing=&amp;quot;0&amp;quot; style=&amp;quot;text-align:center&amp;quot; cellpadding=&amp;quot;2%&amp;quot; width=&amp;quot;70%&amp;quot;&lt;br /&gt;
|+'''SERVO1/2/3/4/5/6/7/8'''&lt;br /&gt;
!width=&amp;quot;7%&amp;quot;|''Pin #''!!width=&amp;quot;10%&amp;quot;|''Name''!!width=&amp;quot;10%&amp;quot;|''Type''!!''Description''!!width=&amp;quot;5%&amp;quot;|''Color''&lt;br /&gt;
|-&lt;br /&gt;
|1||SERVOx||OUT||Servo signal (PWM)(See Note 1 below)||style=&amp;quot;background:Yellow; color:black&amp;quot;|Yellow&lt;br /&gt;
|-&lt;br /&gt;
|2||SV||PWR||Servo Bus Voltage Rail (conf w/ JP1)||style=&amp;quot;background:red; color:white&amp;quot;|Red&lt;br /&gt;
|-&lt;br /&gt;
|3||GND||PWR||common ground||style=&amp;quot;background:black; color:white&amp;quot;|Black&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{|border=&amp;quot;1&amp;quot;  cellspacing=&amp;quot;0&amp;quot; style=&amp;quot;text-align:center&amp;quot; cellpadding=&amp;quot;2%&amp;quot; width=&amp;quot;70%&amp;quot;&lt;br /&gt;
|+'''JTAG'''&lt;br /&gt;
!width=&amp;quot;7%&amp;quot;|''Pin #''!!width=&amp;quot;10%&amp;quot;|''Name''!!width=&amp;quot;10%&amp;quot;|''Type''!!''Description''!!width=&amp;quot;5%&amp;quot;|''Color''&lt;br /&gt;
|-&lt;br /&gt;
|1||N/A||N/A||JTAG Debug Header (Pin 1 is +3V3)||style=&amp;quot;background:white; color:black&amp;quot;|None&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{|border=&amp;quot;1&amp;quot;  cellspacing=&amp;quot;0&amp;quot; style=&amp;quot;text-align:center&amp;quot; cellpadding=&amp;quot;2%&amp;quot; width=&amp;quot;70%&amp;quot;&lt;br /&gt;
|+'''UART3'''&lt;br /&gt;
!width=&amp;quot;7%&amp;quot;|''Pin #''!!width=&amp;quot;10%&amp;quot;|''Name''!!width=&amp;quot;10%&amp;quot;|''Type''!!''Description''!!width=&amp;quot;5%&amp;quot;|''Color''&lt;br /&gt;
|-&lt;br /&gt;
|1||GND||PWR||common ground||style=&amp;quot;background:black; color:white&amp;quot;|Black&lt;br /&gt;
|-&lt;br /&gt;
|2||V_IN||PWR||UART Voltage (conf w/ JP6 and JP7)||style=&amp;quot;background:Red; color:white&amp;quot;|Red&lt;br /&gt;
|-&lt;br /&gt;
|3||TX||OUT||USART3 Serial Output (3.3V level)||style=&amp;quot;background:Yellow; color:black&amp;quot;|Yellow&lt;br /&gt;
|-&lt;br /&gt;
|4||RX||IN||USART3 Serial Input (3.3V level)(Pullup to Pin 2 voltage)(5V tolerant)||style=&amp;quot;background:Orange; color:white&amp;quot;|Orange&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{|border=&amp;quot;1&amp;quot;  cellspacing=&amp;quot;0&amp;quot; style=&amp;quot;text-align:center&amp;quot; cellpadding=&amp;quot;2%&amp;quot; width=&amp;quot;70%&amp;quot;&lt;br /&gt;
|+'''UART1/5'''&lt;br /&gt;
!width=&amp;quot;7%&amp;quot;|''Pin #''!!width=&amp;quot;10%&amp;quot;|''Name''!!width=&amp;quot;10%&amp;quot;|''Type''!!''Description''!!width=&amp;quot;5%&amp;quot;|''Color''&lt;br /&gt;
|-&lt;br /&gt;
|1||GND||PWR||common ground||style=&amp;quot;background:black; color:white&amp;quot;|Black&lt;br /&gt;
|-&lt;br /&gt;
|2|| +3V3||PWR||3.3V Rail from autopilot (conf w/ JP8 and JP9)||style=&amp;quot;background:Red; color:white&amp;quot;|Red&lt;br /&gt;
|-&lt;br /&gt;
|3||RX1||IN||USART1 Serial Input (3.3V level)(Pullup to Pin 2 voltage)(5V tolerant)||style=&amp;quot;background:Orange; color:white&amp;quot;|Orange&lt;br /&gt;
|-&lt;br /&gt;
|4||GND||PWR||common ground||style=&amp;quot;background:black; color:white&amp;quot;|Black&lt;br /&gt;
|-&lt;br /&gt;
|5|| +3V3||PWR||3.3V Rail from autopilot (conf w/ JP8 and JP9)||style=&amp;quot;background:Red; color:white&amp;quot;|Red&lt;br /&gt;
|-&lt;br /&gt;
|6||RX5||IN||UART5 Serial Input (3.3V level)(Pullup to Pin 5 voltage)(5V tolerant)||style=&amp;quot;background:Orange; color:white&amp;quot;|Orange&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{|border=&amp;quot;1&amp;quot;  cellspacing=&amp;quot;0&amp;quot; style=&amp;quot;text-align:center&amp;quot; cellpadding=&amp;quot;2%&amp;quot; width=&amp;quot;70%&amp;quot;&lt;br /&gt;
|+'''GPIO'''&lt;br /&gt;
!width=&amp;quot;7%&amp;quot;|''Pin #''!!width=&amp;quot;10%&amp;quot;|''Name''!!width=&amp;quot;10%&amp;quot;|''Type''!!''Description''!!width=&amp;quot;5%&amp;quot;|''Color''&lt;br /&gt;
|-&lt;br /&gt;
|1||GND||PWR||common ground||style=&amp;quot;background:black; color:white&amp;quot;|Black&lt;br /&gt;
|-&lt;br /&gt;
|2|| +3V3||PWR||3.3V Rail from autopilot||style=&amp;quot;background:Red; color:white&amp;quot;|Red&lt;br /&gt;
|-&lt;br /&gt;
|4||PC12||I/O||GPIO, connected to PC12 (5V tolerant)||style=&amp;quot;background:#FDC579; color:black&amp;quot;|Dark Tan&lt;br /&gt;
|-&lt;br /&gt;
|5||TRST||I/O||JTAG_TRST (also connected to LED1 cathode)||style=&amp;quot;background:#FED6B1; color:black&amp;quot;|Light Tan&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{|border=&amp;quot;1&amp;quot;  cellspacing=&amp;quot;0&amp;quot; style=&amp;quot;text-align:center&amp;quot; cellpadding=&amp;quot;2%&amp;quot; width=&amp;quot;70%&amp;quot;&lt;br /&gt;
|+'''ANALOG1'''&lt;br /&gt;
!width=&amp;quot;7%&amp;quot;|''Pin #''!!width=&amp;quot;10%&amp;quot;|''Name''!!width=&amp;quot;10%&amp;quot;|''Type''!!''Description''!!width=&amp;quot;5%&amp;quot;|''Color''&lt;br /&gt;
|-&lt;br /&gt;
|1||GND||PWR||common ground||style=&amp;quot;background:black; color:white&amp;quot;|Black&lt;br /&gt;
|-&lt;br /&gt;
|2|| +3V3||PWR||3.3V Rail from autopilot||style=&amp;quot;background:Red; color:white&amp;quot;|Red&lt;br /&gt;
|-&lt;br /&gt;
|3|| +5V||PWR||5V Rail from autopilot||style=&amp;quot;background:Red; color:white&amp;quot;|Red&lt;br /&gt;
|-&lt;br /&gt;
|4||ADC4||I/O||ADC4, by default connected to LED7 cathode (Remove LED/resistor to use as ADC)||style=&amp;quot;background:magenta; color:white&amp;quot;|Magenta&lt;br /&gt;
|-&lt;br /&gt;
|5||ADC6||I/O||ADC6, by default connected to LED8 cathode (Remove LED/resistor to use as ADC)||style=&amp;quot;background:#FFA1B2; color:black&amp;quot;|Pink&lt;br /&gt;
|-&lt;br /&gt;
|6||BOOT0||I/O||BOOT0||style=&amp;quot;background:grey; color:black&amp;quot;|Grey&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{|border=&amp;quot;1&amp;quot;  cellspacing=&amp;quot;0&amp;quot; style=&amp;quot;text-align:center&amp;quot; cellpadding=&amp;quot;2%&amp;quot; width=&amp;quot;70%&amp;quot;&lt;br /&gt;
|+'''USB'''&lt;br /&gt;
!width=&amp;quot;7%&amp;quot;|''Pin #''!!width=&amp;quot;10%&amp;quot;|''Name''!!width=&amp;quot;10%&amp;quot;|''Type''!!''Description''!!width=&amp;quot;5%&amp;quot;|''Color''&lt;br /&gt;
|-&lt;br /&gt;
|1||N/A||N/A||USB (The USB connections are also available as 0.05&amp;quot; (1.27mm) through hole pads underneath the GPIO header)||style=&amp;quot;background:white; color:black&amp;quot;|None&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{|border=&amp;quot;1&amp;quot;  cellspacing=&amp;quot;0&amp;quot; style=&amp;quot;text-align:center&amp;quot; cellpadding=&amp;quot;2%&amp;quot; width=&amp;quot;70%&amp;quot;&lt;br /&gt;
|+'''I2C1 CAN'''&lt;br /&gt;
!width=&amp;quot;7%&amp;quot;|''Pin #''!!width=&amp;quot;10%&amp;quot;|''Name''!!width=&amp;quot;10%&amp;quot;|''Type''!!''Description''!!width=&amp;quot;5%&amp;quot;|''Color''&lt;br /&gt;
|-&lt;br /&gt;
|1||GND||PWR||common ground||style=&amp;quot;background:black; color:white&amp;quot;|Black&lt;br /&gt;
|-&lt;br /&gt;
|2|| V_BATT||PWR||V_BAT Bus on autopilot, voltage divider for V_BAT_MEAS, (conf w/ JP2 to connect to V_IN)||style=&amp;quot;background:Red; color:white&amp;quot;|Red&lt;br /&gt;
|-&lt;br /&gt;
|3|| V_IN||PWR||Connected to autopilot voltage regulator inputs (conf w/ JP1, JP2 and JP3)||style=&amp;quot;background:Red; color:white&amp;quot;|Red&lt;br /&gt;
|-&lt;br /&gt;
|4||CANL||I/O||CANL (5V level)||style=&amp;quot;background:orange; color:white&amp;quot;|Orange&lt;br /&gt;
|-&lt;br /&gt;
|5||CANH||I/O||CANH (5V level)||style=&amp;quot;background:yellow; color:black&amp;quot;|Yellow&lt;br /&gt;
|-&lt;br /&gt;
|6||SCL||I/O||SCL (5V level)(See Note 1 below)||style=&amp;quot;background:green; color:white&amp;quot;|Green&lt;br /&gt;
|-&lt;br /&gt;
|7||SDA||I/O||SDA (5V level)(See Note 1 below)||style=&amp;quot;background:blue; color:white&amp;quot;|Blue&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{|border=&amp;quot;1&amp;quot;  cellspacing=&amp;quot;0&amp;quot; style=&amp;quot;text-align:center&amp;quot; cellpadding=&amp;quot;2%&amp;quot; width=&amp;quot;70%&amp;quot;&lt;br /&gt;
|+'''SPI1'''&lt;br /&gt;
!width=&amp;quot;7%&amp;quot;|''Pin #''!!width=&amp;quot;10%&amp;quot;|''Name''!!width=&amp;quot;10%&amp;quot;|''Type''!!''Description''!!width=&amp;quot;5%&amp;quot;|''Color''&lt;br /&gt;
|-&lt;br /&gt;
|1||GND||PWR||common ground||style=&amp;quot;background:black; color:white&amp;quot;|Black&lt;br /&gt;
|-&lt;br /&gt;
|2|| +3V3||PWR||3.3V Rail from autopilot||style=&amp;quot;background:Red; color:white&amp;quot;|Red&lt;br /&gt;
|-&lt;br /&gt;
|3||MOSI||Out||MOSI||style=&amp;quot;background:orange; color:white&amp;quot;|Orange&lt;br /&gt;
|-&lt;br /&gt;
|4||MISO||In||MISO||style=&amp;quot;background:yellow; color:black&amp;quot;|Yellow&lt;br /&gt;
|-&lt;br /&gt;
|5||SCK||Out||SCK||style=&amp;quot;background:green; color:white&amp;quot;|Green&lt;br /&gt;
|-&lt;br /&gt;
|6||SS||Out||SS||style=&amp;quot;background:blue; color:white&amp;quot;|Blue&lt;br /&gt;
|-&lt;br /&gt;
|7||DRDY||I/O||DRDY||style=&amp;quot;background:#FDC579; color:black&amp;quot;|Dark Tan&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{|border=&amp;quot;1&amp;quot;  cellspacing=&amp;quot;0&amp;quot; style=&amp;quot;text-align:center&amp;quot; cellpadding=&amp;quot;2%&amp;quot; width=&amp;quot;70%&amp;quot;&lt;br /&gt;
|+'''ANALOG2'''&lt;br /&gt;
!width=&amp;quot;7%&amp;quot;|''Pin #''!!width=&amp;quot;10%&amp;quot;|''Name''!!width=&amp;quot;10%&amp;quot;|''Type''!!''Description''!!width=&amp;quot;5%&amp;quot;|''Color''&lt;br /&gt;
|-&lt;br /&gt;
|1||GND||PWR||common ground||style=&amp;quot;background:black; color:white&amp;quot;|Black&lt;br /&gt;
|-&lt;br /&gt;
|2|| +3V3||PWR||3.3V Rail from autopilot||style=&amp;quot;background:Red; color:white&amp;quot;|Red&lt;br /&gt;
|-&lt;br /&gt;
|3|| +5V||PWR||5V Rail from autopilot||style=&amp;quot;background:Red; color:white&amp;quot;|Red&lt;br /&gt;
|-&lt;br /&gt;
|4||ADC1||In||ADC1||style=&amp;quot;background:green; color:white&amp;quot;|Green&lt;br /&gt;
|-&lt;br /&gt;
|5||ADC2||In||ADC2||style=&amp;quot;background:blue; color:white&amp;quot;|Blue&lt;br /&gt;
|-&lt;br /&gt;
|6||ADC3||In||ADC3||style=&amp;quot;background:#FED6B1; color:black&amp;quot;|Light Tan&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{|border=&amp;quot;1&amp;quot;  cellspacing=&amp;quot;0&amp;quot; style=&amp;quot;text-align:center&amp;quot; cellpadding=&amp;quot;2%&amp;quot; width=&amp;quot;70%&amp;quot;&lt;br /&gt;
|+'''UART2'''&lt;br /&gt;
!width=&amp;quot;7%&amp;quot;|''Pin #''!!width=&amp;quot;10%&amp;quot;|''Name''!!width=&amp;quot;10%&amp;quot;|''Type''!!''Description''!!width=&amp;quot;5%&amp;quot;|''Color''&lt;br /&gt;
|-&lt;br /&gt;
|1||GND||PWR||common ground||style=&amp;quot;background:black; color:white&amp;quot;|Black&lt;br /&gt;
|-&lt;br /&gt;
|2|| +3V3||PWR||UART Voltage (conf w/ JP4 and JP5)||style=&amp;quot;background:Red; color:white&amp;quot;|Red&lt;br /&gt;
|-&lt;br /&gt;
|3||TX||OUT||USART2 Serial Output (3.3V level)||style=&amp;quot;background:Yellow; color:black&amp;quot;|Yellow&lt;br /&gt;
|-&lt;br /&gt;
|4||RX||IN||USART2 Serial Input (3.3V level)('''NOT 5V TOLERANT''')(Pullup to Pin 2 voltage)||style=&amp;quot;background:Orange; color:white&amp;quot;|Orange&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{|border=&amp;quot;1&amp;quot;  cellspacing=&amp;quot;0&amp;quot; style=&amp;quot;text-align:center&amp;quot; cellpadding=&amp;quot;2%&amp;quot; width=&amp;quot;70%&amp;quot;&lt;br /&gt;
|+'''I2C2'''&lt;br /&gt;
!width=&amp;quot;7%&amp;quot;|''Pin #''!!width=&amp;quot;10%&amp;quot;|''Name''!!width=&amp;quot;10%&amp;quot;|''Type''!!''Description''!!width=&amp;quot;5%&amp;quot;|''Color''&lt;br /&gt;
|-&lt;br /&gt;
|1||GND||PWR||common ground||style=&amp;quot;background:black; color:white&amp;quot;|Black&lt;br /&gt;
|-&lt;br /&gt;
|2|| +3V3||PWR||3.3V Rail from autopilot||style=&amp;quot;background:Red; color:white&amp;quot;|Red&lt;br /&gt;
|-&lt;br /&gt;
|3||SCL||I/O||SCL (3.3V level)||style=&amp;quot;background:green; color:white&amp;quot;|Green&lt;br /&gt;
|-&lt;br /&gt;
|4||SDA||I/O||SDA (3.3V level)||style=&amp;quot;background:blue; color:white&amp;quot;|Blue&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''NOTE 1''': SERVO7 and SERVO8 are directly connected to I2C1_SCL and I2C1_SDA. As such, SERVO7 and SERVO8 '''CAN NOT''' be used while I2C1 is being used.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Jumper Configuration ===&lt;br /&gt;
There are a number of jumpers on Lisa/M used to configure voltage levels and power input.&lt;br /&gt;
&lt;br /&gt;
The default configuration is UART3 VCC at V_IN, UART1/2/5 VCC at +3V3, with the V_SERVO servo voltage rail NOT connected to the autopilot V_IN rail, allowing one to power the autopilot and servos separately. The +5V regulator is NOT bypassed, allowing a regulated +5V on listed headers and for the CAN transceiver and I2C level shifter. The V_BAT connector is NOT connected to V_IN, so one can attach a battery voltage to the V_BAT pin to measure the battery voltage, if so desired.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery widths=380px heights=205px&amp;gt;&lt;br /&gt;
Image:LisaM_V2_0_top_jumpers_and_leds.png | Lisa/M v2.0 Top Jumpers and LEDs&lt;br /&gt;
Image:LisaM_V2_0_bottom_jumpers.png | Lisa/M v2.0 Bottom Jumpers&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&amp;lt;br style=&amp;quot;clear:both&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{|border=&amp;quot;1&amp;quot;  cellspacing=&amp;quot;0&amp;quot; style=&amp;quot;text-align:center&amp;quot; cellpadding=&amp;quot;2%&amp;quot; width=&amp;quot;70%&amp;quot;&lt;br /&gt;
|+'''Power Jumper Configuration'''&lt;br /&gt;
!width=&amp;quot;7%&amp;quot;|''Jumper''!!width=&amp;quot;20%&amp;quot;|''Bus Connection''!!width=&amp;quot;7%&amp;quot;|''Default''!!''Description''&lt;br /&gt;
|-&lt;br /&gt;
|JP1||SERVO_BUS to V_IN||OPEN||Connects servo header voltage rail SERVO_BUS to autopilot input voltage V_IN rail&lt;br /&gt;
|-&lt;br /&gt;
|JP2||V_BAT to V_IN||OPEN||Connects I2C1/CAN rail V_BAT to autopilot input voltage V_IN rail&lt;br /&gt;
|-&lt;br /&gt;
|JP3||V_IN to +5V||OPEN||Connects autopilot input voltage V_IN rail to autopilot +5V rail, bypassing onboard 5V supply&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{|border=&amp;quot;1&amp;quot;  cellspacing=&amp;quot;0&amp;quot; style=&amp;quot;text-align:center&amp;quot; cellpadding=&amp;quot;2%&amp;quot; width=&amp;quot;70%&amp;quot;&lt;br /&gt;
|+'''UART3 VCC Configuration'''&lt;br /&gt;
!width=&amp;quot;7%&amp;quot;|''Jumper''!!width=&amp;quot;20%&amp;quot;|''Bus Connection''!!width=&amp;quot;7%&amp;quot;|''Default''!!''Description''&lt;br /&gt;
|-&lt;br /&gt;
|JP6||UART3_VCC to V_IN||style=&amp;quot;background:black; color:white&amp;quot;|CLOSED||Connects UART3 connector VCC to autopilot input voltage V_IN rail&lt;br /&gt;
|-&lt;br /&gt;
|JP7||UART3_VCC to +3V3||OPEN||Connects UART3 connector VCC to autopilot +3V3 rail&lt;br /&gt;
|}&lt;br /&gt;
'''WARNING: UART3 GPS Connector is connected to V_IN, check your GPS input voltage before connecting!!!'''&lt;br /&gt;
&lt;br /&gt;
'''WARNING: DO NOT CLOSE BOTH JP6 AND JP7 SIMULTANEOUSLY!!!'''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{|border=&amp;quot;1&amp;quot;  cellspacing=&amp;quot;0&amp;quot; style=&amp;quot;text-align:center&amp;quot; cellpadding=&amp;quot;2%&amp;quot; width=&amp;quot;70%&amp;quot;&lt;br /&gt;
|+'''UART2 VCC Configuration'''&lt;br /&gt;
!width=&amp;quot;7%&amp;quot;|''Jumper''!!width=&amp;quot;20%&amp;quot;|''Bus Connection''!!width=&amp;quot;7%&amp;quot;|''Default''!!''Description''&lt;br /&gt;
|-&lt;br /&gt;
|JP4||UART2_VCC to V_IN||OPEN||Connects UART2 connector VCC to autopilot input voltage V_IN rail '''SEE WARNING BELOW'''&lt;br /&gt;
|-&lt;br /&gt;
|JP5||UART2_VCC to +3V3||style=&amp;quot;background:black; color:white&amp;quot;|CLOSED||Connects UART2 connector VCC to autopilot +3V3 rail&lt;br /&gt;
|}&lt;br /&gt;
'''WARNING: UART2 RX is NOT 5V TOLERANT. Thus, while possible to connect UART2_VCC to V_IN, DO NOT ATTEMPT THIS. Only use JP5 (the default).&lt;br /&gt;
&lt;br /&gt;
'''WARNING: DO NOT CLOSE BOTH JP4 AND JP5 SIMULTANEOUSLY!!!'''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{|border=&amp;quot;1&amp;quot;  cellspacing=&amp;quot;0&amp;quot; style=&amp;quot;text-align:center&amp;quot; cellpadding=&amp;quot;2%&amp;quot; width=&amp;quot;70%&amp;quot;&lt;br /&gt;
|+'''UART1 and UART5 VCC Configuration'''&lt;br /&gt;
!width=&amp;quot;7%&amp;quot;|''Jumper''!!width=&amp;quot;20%&amp;quot;|''Bus Connection''!!width=&amp;quot;7%&amp;quot;|''Default''!!''Description''&lt;br /&gt;
|-&lt;br /&gt;
|JP8||UART1&amp;amp;5_VCC to V_IN||OPEN||Connects UART1 and UART5 connector VCC to autopilot input voltage V_IN rail&lt;br /&gt;
|-&lt;br /&gt;
|JP9||UART1&amp;amp;5_VCC to +3V3||style=&amp;quot;background:black; color:white&amp;quot;|CLOSED||Connects UART1 and UART5 connector VCC to autopilot +3V3 rail&lt;br /&gt;
|}&lt;br /&gt;
'''WARNING: DO NOT CLOSE BOTH JP8 AND JP9 SIMULTANEOUSLY!!!'''&lt;br /&gt;
&lt;br /&gt;
There are additional jumpers on the board for expert or developer configurations, please see [[Lisa/M_v20#Schematic|schematic]] and [[Lisa/M_v20#Downloads|layout]] for more information.&lt;br /&gt;
&lt;br /&gt;
=== Powering the Board ===&lt;br /&gt;
&lt;br /&gt;
[[Image:LisaM_warning_label.png|right|200px]]&lt;br /&gt;
&lt;br /&gt;
The 3.3V regulator on Lisa/M is a [http://www.micrel.com/page.do?page=/product-info/products/mic5209.shtml MIC5209-3.3YM] capable of delivering up to 500mA. While it is possible to power this regulator with up to 16V, '''DO NOT''' do this. By default, the UART3 RX pin is pulled up to the input voltage V_IN. For this reason, 5V is the maximum input voltage. Note that the UART3 GPS Connector is connected to V_IN, check your GPS input voltage before connecting. If one desires to have V_IN at a higher voltage, the jumpers should be adjusted accordingly. As noted, this regulator can handle up to 16V, though experience has shown that this regulator can become very hot in operation with high input voltages, resulting in potential thermal shutdown while in flight. Depending on the expected current draw, it is best to power this regulator with a lower voltage. 5V is the perfect choice. &lt;br /&gt;
&lt;br /&gt;
The onboard 5V regulator on Lisa/M is a [http://www.national.com/pf/LP/LP2992.html LP2992], a low-noise, low-dropout linear regulator capable of delivering up to 250mA. This regulator can be bypassed with JP3, connecting the autopilot V_IN bus directly to the autopilot 5V bus if, for example, one is using an external 5V regulated supply, and a higher current is needed. Unless external use of 5V is required on the ANALOG1 and ANALOG2 headers, the only 5V usage onboard is for the CAN transceiver and the I2C1 level shifter.&lt;br /&gt;
&lt;br /&gt;
When measuring the supply voltage of a battery with the V_BAT pin (could be connected to V_IN through JP2), it is important to note the maximum voltage limit. The voltage divider on the board for measuring with a 3.3V ADC is --'''V_BAT'''--/\/\'''10k'''/\/\--'''V_BAT_MEAS'''--/\/\'''2k2'''/\/\--'''GND'''--. This means that the maximum allowable voltage on V_BAT is&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;V\_BAT_{max} = 3.3V*\frac{10k}{2.2k} = 15V&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
If a higher voltage measurement is desired, another voltage divider is required off-board. Alternatively, one could modify the existing voltage divider (e.g. change 10k resistor to 22k to get 33V maximum). When checking if voltage exceeds the maximum, make sure to consider maximum battery voltage, not nominal voltage (e.g. 4.22V or so for a single lithium cell, not 3.7V nominal, so the maximum number of cells in series is 3, like a 3S LiPo pack).&lt;br /&gt;
&lt;br /&gt;
== Schematic ==&lt;br /&gt;
&amp;lt;gallery widths=250px heights=168px&amp;gt;&lt;br /&gt;
Image:Lisa_m_v2_0_sheet_1.png | LisaM V2.0 Schematic Sheet 1/3&lt;br /&gt;
Image:Lisa_m_v2_0_sheet_2.png | LisaM V2.0 Schematic Sheet 2/3&lt;br /&gt;
Image:Lisa_m_v2_0_sheet_3.png | LisaM V2.0 Schematic Sheet 3/3&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&amp;lt;br style=&amp;quot;clear:both&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Examples of Airborne Equipment Electrical Connections ==&lt;br /&gt;
=== Small Aircraft Connection Diagram ===&lt;br /&gt;
Need an Umarim_v1.0-style ([[Umarim_v10#Small_Aircraft_Connection_Diagram | here]]) small aircraft airborne equipment electrical connections here.&lt;br /&gt;
&amp;lt;br style=&amp;quot;clear:both&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Large Aircraft Connection Diagram ===&lt;br /&gt;
Need an Umarim V1.0-style ([[Umarim_v10#Large_Aircraft_Connection_Diagram | here]]) large aircraft airborne equipment electrical connections diagram here.&lt;br /&gt;
&amp;lt;br style=&amp;quot;clear:both&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== R/C Receivers ===&lt;br /&gt;
There is Spektrum parser available already, enabling the direct use of 1 or 2 Spektrum satellite receivers.&lt;br /&gt;
&lt;br /&gt;
Also UART pins can be used as general purpose I/O to be used for PPM input. Additionally [[PPM_Encoder | PPM encoder]] can be used to avoid receiver hardware modification.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== PCB ==&lt;br /&gt;
&lt;br /&gt;
=== Gerber &amp;amp; Drill Files  ===&lt;br /&gt;
&lt;br /&gt;
'''''Download  Lisa/M v2.0 gerber &amp;amp; drill files (zip)''''' ''NOT YET AVAILABLE BUT SEE [[Lisa/M#Downloads|Downloads]]''&lt;br /&gt;
Need some generated gerbers and drill files here.&lt;br /&gt;
&lt;br /&gt;
== Assembly ==&lt;br /&gt;
&lt;br /&gt;
===Components Layout===&lt;br /&gt;
&lt;br /&gt;
''NOT YET AVAILABLE BUT SEE [[Lisa/M#Downloads|Downloads]]''&lt;br /&gt;
Need some top and bottom of board images and line drawings here.&lt;br /&gt;
&lt;br /&gt;
=== Bill Of Material ===&lt;br /&gt;
&lt;br /&gt;
'''''Download  Lisa/M v2.0 Bill Of Material (zipped .xls file)''''' ''NOT YET AVAILABLE BUT SEE [[Lisa/M#Downloads|Downloads]]''&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== PCB and assembled boards suppliers ==&lt;br /&gt;
&lt;br /&gt;
Available on [[Get_Hardware|Get Hardware]] page, hopefully :)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Mechanical Dimensions ==&lt;br /&gt;
&lt;br /&gt;
[[Image:LisaM_V2_0_top_mechanical.png|500px|Lisa/M v2.0 Mechanical Dimensions]]&lt;br /&gt;
&lt;br /&gt;
The overall height of the board including the servo connectors is 10mm. Note that the overall length includes the USB connector. The mounting holes are nominal 2mm diameter (with a bit of clearance).&lt;br /&gt;
&lt;br /&gt;
== Downloads ==&lt;br /&gt;
&lt;br /&gt;
'''Source files'''&lt;br /&gt;
:*download available on GitHub: ''[https://github.com/paparazzi/paparazzi-hardware/tree/master/controller/lisa_m/v2.0 Lisa/M v2.0 Cadsoft Eagle 6 Design]''&lt;br /&gt;
'''Gerber &amp;amp; Drill files'''&lt;br /&gt;
:*download ''NOT YET AVAILABLE'' Need generated gerbers and drill files&lt;br /&gt;
'''Assembly files'''&lt;br /&gt;
:*download ''NOT YET AVAILABLE'' Need Lisa/M v2.0 Components layouts (pdf)&lt;br /&gt;
:*download ''NOT YET AVAILABLE'' Need Lisa/M v2.0 Bill Of Material&lt;br /&gt;
&lt;br /&gt;
== Programming ==&lt;br /&gt;
&lt;br /&gt;
Lisa/M v2.0 can be programmed via its micro-USB port using the luftboot bootloader or with a JTAG via the 10-pin Samtec connector.&lt;br /&gt;
All Lisa/M 2.0 from Transition Robotics Inc. come with luftboot preloaded.&lt;br /&gt;
&lt;br /&gt;
=== Using luftboot ===&lt;br /&gt;
&lt;br /&gt;
Paparazzi git dev branch already has support for the bootloader and will by default use the associated DFU loader to program the firmware. (Don't forget to check that your airframe file is set to use Lisa/M 2.0 as its target board)&lt;br /&gt;
&lt;br /&gt;
Currently Paparazzi firmware does not contain the needed USB stack stub to switch into bootloader mode using software.&lt;br /&gt;
To force the bootloader to run, bridge ADC2 and GND by making up a connector.&lt;br /&gt;
This won't be necessary in the future once the USB stack stub is added to Paparazzi.&lt;br /&gt;
&lt;br /&gt;
Once the bridge connector is attached, attach the Lisa/M to the PC via a micro-usb cable and it should start in bootloader mode, and the status LEDs will cycle up and down:&lt;br /&gt;
&lt;br /&gt;
[[File:Luftboot.gif|320px]]&lt;br /&gt;
&lt;br /&gt;
You can and should disconnect the bridge connector after enforcing the bootloader.&lt;br /&gt;
Assuming your build target uses the Lisa/M board, pressing upload should now load code onto the board.&lt;br /&gt;
&lt;br /&gt;
If you overwrite/remove luftboot you can recover it by following the instructions below:&lt;br /&gt;
&lt;br /&gt;
=== Uploading the Paparazzi USB Bootloader ===&lt;br /&gt;
&lt;br /&gt;
This section describes the process on how to upload/recover the luftboot bootloader on your Lisa/M 2.0. It is not needed if you got your Lisa/M 2.0 from Transition Robotics Inc. as the boards come with luftboot preloaded.&lt;br /&gt;
&lt;br /&gt;
[https://github.com/paparazzi/luftboot Luftboot] is a Paparazzi-compatible bootloader for STM32-based autopilots.&lt;br /&gt;
Depending on your vendor, your Lisa/M may already come with a bootloader, in which case you should skip to [[Lisa/M#Programming]]&lt;br /&gt;
&lt;br /&gt;
==== Required components ====&lt;br /&gt;
*Floss-JTAG debugger&lt;br /&gt;
*Lisa/M&lt;br /&gt;
*PC&lt;br /&gt;
&lt;br /&gt;
==== Procedure ====&lt;br /&gt;
&amp;lt;ol&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;&lt;br /&gt;
Checkout [https://github.com/paparazzi/luftboot Luftboot from Github]&lt;br /&gt;
&amp;lt;source lang=bash&amp;gt;git clone https://github.com/paparazzi/luftboot.git&amp;lt;/source&amp;gt;&lt;br /&gt;
&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;&lt;br /&gt;
Change directory into the luftboot/src folder&lt;br /&gt;
&amp;lt;source lang=bash&amp;gt;cd ./luftboot/src&amp;lt;/source&amp;gt;&lt;br /&gt;
&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;&lt;br /&gt;
Build luftboot&lt;br /&gt;
&amp;lt;source lang=bash&amp;gt;make clean &amp;amp;&amp;amp; make&amp;lt;/source&amp;gt;&lt;br /&gt;
&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;&lt;br /&gt;
Flash the Lisa/M&lt;br /&gt;
Attach the floss-jtag unit to the PC and connect it to the Lisa/M via the black connector.&lt;br /&gt;
Power the Lisa/M (easiest way is to connect to the PC via a micro-USB cable).&lt;br /&gt;
&amp;lt;source lang=bash&amp;gt;make flash DEV_SERIAL=&amp;quot;LM2-ser&amp;quot;&amp;lt;/source&amp;gt;&lt;br /&gt;
where &amp;quot;ser&amp;quot; stands for the serial number of your Lisa/M. So for example if you have lisa/m with the serial number 020 this would be:&lt;br /&gt;
&amp;lt;source lang=bash&amp;gt;make clean &amp;amp;&amp;amp; make flash DEV_SERIAL=&amp;quot;LM2-020&amp;quot;&amp;lt;/source&amp;gt;&lt;br /&gt;
&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;/ol&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== Connection Diagram ====&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Boot Sequence ====&lt;br /&gt;
&lt;br /&gt;
* Luftboot&lt;br /&gt;
** Check if ADC2 is configured as output pull down indicating software bootloader request&lt;br /&gt;
*** '''If ADC2 output pull down:''' initialize usb and stay in bootloader mode&lt;br /&gt;
** Setting the ADC2 pin to input pull up&lt;br /&gt;
** Checking if the ADC2 pin is low&lt;br /&gt;
*** '''If ADC2 low:''' initialize USB and stay in bootloader mode&lt;br /&gt;
*** '''If ADC2 high:''' check if there is a payload at 0x8002000&lt;br /&gt;
**** '''If payload detected:''' set vector table pointer to be at 0x8002000 and jump to the reset handler of the payload&lt;br /&gt;
**** '''If payload not detected:''' initialize USB and stay in bootloader mode&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Luftboot USB permissions ====&lt;br /&gt;
&lt;br /&gt;
stm32_mem.py needs permission to write to the the Luftboot USB device. (The error message is quite obscure due to the way python-libusb accesses the device)&lt;br /&gt;
&lt;br /&gt;
Add this rule to your paparazzi udev rules file&lt;br /&gt;
 ATTRS{idVendor}==&amp;quot;0483&amp;quot;, ATTRS{idProduct}==&amp;quot;df11&amp;quot;, GROUP=&amp;quot;plugdev&amp;quot;&lt;br /&gt;
&lt;br /&gt;
=== JTAG ===&lt;br /&gt;
If you are using the Lisa/M 2.0 target board you still can use JTAG for programming and debugging your paparazzi firmware. Using JTAG will not overwrite the bootloader by default. You need to set NO_LUFTBOOT config in your airframe file to force overwrite.&lt;br /&gt;
&lt;br /&gt;
* [[JTAG]] description;&lt;br /&gt;
* General [[Dev/Debugging|debugging information]];&lt;br /&gt;
* [[DevGuide/JTAG-Debug|JTAG usage]], includes Eclipse uplink tutorial.&lt;br /&gt;
&lt;br /&gt;
==== Quick JTAG Upload Guide ====&lt;br /&gt;
# Connect floss-jtag to Lisa via the cortex cable (little black socket)&lt;br /&gt;
# Attach the UART port on the bottom of the floss-jtag to UART2 on the Lisa.&lt;br /&gt;
# Plug in USB port of the floss jtag&lt;br /&gt;
# Plug in USB port of the Lisa&lt;br /&gt;
# Make sure your airframe uses the &amp;lt;target name=&amp;quot;ap&amp;quot; board=&amp;quot;lisa_m_2.0&amp;quot;&amp;gt; definition&lt;br /&gt;
# Click Build, wait until complete, then click Upload.  You should see the following towards the end:&lt;br /&gt;
{{{&lt;br /&gt;
...&lt;br /&gt;
Info : device id = 0x10016418&lt;br /&gt;
Info : flash size = 256kbytes&lt;br /&gt;
stm32x mass erase complete&lt;br /&gt;
Info : Padding image section 1 with 7972 bytes&lt;br /&gt;
wrote 152576 bytes from file src/paparazzi/var/Hexa_LisaL/ap/ap.elf in 7.498179s (19.871 KiB/s)&lt;br /&gt;
Info : JTAG tap: stm32.cpu tap/device found: 0x3ba00477 (mfg: 0x23b, part: 0xba00, ver: 0x3)&lt;br /&gt;
Info : JTAG tap: stm32.bs tap/device found: 0x06418041 (mfg: 0x020, part: 0x6418, ver: 0x0)&lt;br /&gt;
shutdown command invoked&lt;br /&gt;
}}}&lt;br /&gt;
# Run Flight USB-serial at the baud rate you need (default 57600 for rotorcraft)&lt;br /&gt;
# You may need to change the device to /dev/ttyUSB1, and 'Redo' the Data Link&lt;br /&gt;
&lt;br /&gt;
=== Serial Firmware Upload ===&lt;br /&gt;
Firmware upload using the factory integrated bootloader can be useful e.g. if you have overwritten Luftboot accidentally and don´t have access to JTAG.&lt;br /&gt;
&lt;br /&gt;
Due to hardware constraints, the board has to be modified to make use of the bootloader, which is only accessible on UART1:&lt;br /&gt;
# Diode D3 has to be removed (the bigger black brick next to the USB connector). Attention, no more powering via USB after that.&lt;br /&gt;
# BOOT1 has to be set to GND by connecting ACC_DRDY(unused) to GND at the Aspirin pads&lt;br /&gt;
&lt;br /&gt;
Now a boot sequence works as follows:&lt;br /&gt;
#BOOT1 has to be set to 3.3V by use of a jumper cable&lt;br /&gt;
#Connect a 3,3V serial cable (FTDI, MAX232...) to UART1, the TX pin is USB_VBUS&lt;br /&gt;
#Power the board and activate the bootloader program&lt;br /&gt;
&lt;br /&gt;
The according bootloader script can be found at :&lt;br /&gt;
[https://github.com/jsnyder/stm32loader stm32loader from Github]&lt;br /&gt;
&amp;lt;source lang=bash&amp;gt;git clone https://github.com/jsnyder/stm32loader.git&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
To reload Luftboot, upload luftboot.bin&lt;br /&gt;
&lt;br /&gt;
Serial upload can also be used directly from paparazzi Center by adapting the right path in [https://github.com/paparazzi/paparazzi/blob/dev/conf/Makefile.stm32 Makefile.stm32] for the LOADER argument and setting &lt;br /&gt;
&lt;br /&gt;
&amp;lt;define name=&amp;quot;FLASH_MODE&amp;quot; value=&amp;quot;SERIAL&amp;quot;/&amp;gt; &lt;br /&gt;
&lt;br /&gt;
in the target section of the airframe configuration.&lt;br /&gt;
&lt;br /&gt;
== Detailed Hardware Revision History ==&lt;br /&gt;
&lt;br /&gt;
=== Changes Between v1.1 and v2.0 ===&lt;br /&gt;
* Lots of silkscreen improvements&lt;br /&gt;
* Added attributes to all parts to make the usage of bom-ex ulp possible.&lt;br /&gt;
* Improved routing to allow teardropping&lt;br /&gt;
* Fixed stm32f1, f2 and f4 compatibility circuit. (has to jump to ground not to 3v3)&lt;br /&gt;
* Connected existing UART RX pullups to the respective connector power pins instead of 3v3. To prevent connecting 5V over IO pin to the 3v3 power rail.&lt;br /&gt;
* Added pullups on all UART RX lines to prevent undesired floatation.&lt;br /&gt;
* LED's are connected to 3v3 now. To make sure we don't have an issue with voltage tolerance on the gpio pins.&lt;br /&gt;
* ...&lt;br /&gt;
&lt;br /&gt;
=== Changes Between v1.0 and v1.1 ===&lt;br /&gt;
* Removed pull-ups on the USB gpio&lt;br /&gt;
* Removed pull-ups on the CAN gpio&lt;br /&gt;
* Connected usb_vbus to pa9 (needed by the USBotg)&lt;br /&gt;
* Removed USB pullup transistor as usbotg has a built in pullup&lt;br /&gt;
* Swapped UART1 with UART3 (uart1 was used for gps and pa9 was it's tx line, to be able to talk to the gps unit uart3 is a better choice, as uart1 only has an rx line now it is a better choice for spektrum RX modules)&lt;br /&gt;
* Removed USART3 TX gpio from the GPIO connector and moved to the GPS connector&lt;br /&gt;
* Added voltage selector jumpers to the RC RX connector; to enable powering of 3v3 or an 5v receivers&lt;br /&gt;
* Replaced vertical board solution with through hole servo pin headers (easier assembly)&lt;br /&gt;
* Servo connectors are in groups of two; for easier assembly&lt;br /&gt;
* Servo VBUS is connected together on all four layers; for lower resistance&lt;br /&gt;
* Moved LED's from under the analog2 connector; to be able to populate LED's and the connector&lt;br /&gt;
* Moved the RC RX connector a bit; to prevent crashing with the jtag plug&lt;br /&gt;
* Added one additional servo connector; now we have all 8 accessible through the standard servo connectors&lt;br /&gt;
* Fixed servo channel labeling to start at '''S0''' as it is the case on TWOG and Tiny autopilot boards&lt;br /&gt;
* Added secondary through hole picoblade USB connector for easier routing of USB inside an airframe&lt;br /&gt;
* ...&lt;br /&gt;
&lt;br /&gt;
=== Changes Between v0.1 and v1.0 ===&lt;br /&gt;
* Switched to stm32f105 to be able to use usb and can at the same time&lt;br /&gt;
* Added alternative use of the adc lines as led output&lt;br /&gt;
* ...&lt;br /&gt;
&lt;br /&gt;
=== Hardware Change Requests ===&lt;br /&gt;
* REQ: Replace BMP085 with MS5611 (the MS5611 seems to be better in performance then the BMP but it is more expensive and seems to be more difficult to obtain. &lt;br /&gt;
** A: This upgrade will be available through Aspirin v2.0 --[[User:Esden|Esden]] 22:54, 5 January 2012 (CET)&lt;br /&gt;
&lt;br /&gt;
* REQ: Replace 7 Pin CAN with molex with something less risky to be inserted in 7 Pin SPI in relation to powering the board via CAN molex.&lt;br /&gt;
&lt;br /&gt;
* REQ: Separate spot for external power if powered via separate battery. Realizing we can via Servo ports by Bridge J1 but still like to measure board voltage then and have a way to add power without mistakenly inject CAN Molex into SPI.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Lisa]] [[Category:User_Documentation]]&lt;/div&gt;</summary>
		<author><name>TilmanBaumann</name></author>
	</entry>
	<entry>
		<id>http://wiki.paparazziuav.org/w/index.php?title=User:TilmanBaumann&amp;diff=12089</id>
		<title>User:TilmanBaumann</title>
		<link rel="alternate" type="text/html" href="http://wiki.paparazziuav.org/w/index.php?title=User:TilmanBaumann&amp;diff=12089"/>
		<updated>2012-04-16T10:05:43Z</updated>

		<summary type="html">&lt;p&gt;TilmanBaumann: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Tilman Baumann ==&lt;br /&gt;
&lt;br /&gt;
No RC experience. I live in South East England. (Guildford)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Airframe ==&lt;br /&gt;
&lt;br /&gt;
[http://www.hobbyking.com/hobbyking/store/__16544__Hobbyking_Bixler_EPO_1400mm_ARF_.html Hobbyking Bixler]&lt;br /&gt;
&lt;br /&gt;
== Autopilot ==&lt;br /&gt;
&lt;br /&gt;
[[Lisa/M_v20]]&lt;br /&gt;
&lt;br /&gt;
== Telemetry ==&lt;br /&gt;
&lt;br /&gt;
XBee 2.4 Ghz&lt;br /&gt;
&lt;br /&gt;
== GPS ==&lt;br /&gt;
&lt;br /&gt;
[http://www.csgshop.com/product.php?id_product=62 UBLOX MAX-6Q]&lt;br /&gt;
[[File:GPS Eval MAX pinout.png]]&lt;br /&gt;
&lt;br /&gt;
== RC ==&lt;br /&gt;
&lt;br /&gt;
Spektrum DX5 with two Orangebox Satellites&lt;br /&gt;
&lt;br /&gt;
This radio has no three-way mode switch. Only a channel 5 on-off toggle. I will have to think a bit on how to use that for MANUAL/AUTO1/AUTO2.&lt;br /&gt;
Any ideas anyone?&lt;br /&gt;
&lt;br /&gt;
Hope I don't need a bigger transmitter. Expensive.&lt;br /&gt;
&lt;br /&gt;
== Ground Station ==&lt;br /&gt;
&lt;br /&gt;
Dell mini 9&amp;quot; laptop&lt;br /&gt;
&lt;br /&gt;
== Future Plans ==&lt;br /&gt;
&lt;br /&gt;
* IP telemetry WLAN/UMTS&lt;br /&gt;
* Lisa Servicebus module instead of clunky BEC https://github.com/tbaumann/Paparazzi-Lisa-Servicebus&lt;br /&gt;
&lt;br /&gt;
== Buildlog ==&lt;br /&gt;
&lt;br /&gt;
I will blog here http://tilman-ppz-uav.blogspot.co.uk/ but will also post a summary of all important technical findings here.&lt;/div&gt;</summary>
		<author><name>TilmanBaumann</name></author>
	</entry>
	<entry>
		<id>http://wiki.paparazziuav.org/w/index.php?title=User:TilmanBaumann&amp;diff=12085</id>
		<title>User:TilmanBaumann</title>
		<link rel="alternate" type="text/html" href="http://wiki.paparazziuav.org/w/index.php?title=User:TilmanBaumann&amp;diff=12085"/>
		<updated>2012-04-13T13:09:16Z</updated>

		<summary type="html">&lt;p&gt;TilmanBaumann: /* GPS */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Tilman Baumann ==&lt;br /&gt;
&lt;br /&gt;
No RC experience. I live in South East England. (Guildford)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Airframe ==&lt;br /&gt;
&lt;br /&gt;
[http://www.hobbyking.com/hobbyking/store/__16544__Hobbyking_Bixler_EPO_1400mm_ARF_.html Hobbyking Bixler]&lt;br /&gt;
&lt;br /&gt;
== Autopilot ==&lt;br /&gt;
&lt;br /&gt;
[[Lisa/M_v20]]&lt;br /&gt;
&lt;br /&gt;
== Telemetry ==&lt;br /&gt;
&lt;br /&gt;
XBee 2.4 Ghz&lt;br /&gt;
&lt;br /&gt;
== GPS ==&lt;br /&gt;
&lt;br /&gt;
[http://www.csgshop.com/product.php?id_product=62 UBLOX MAX-6Q]&lt;br /&gt;
[[File:GPS Eval MAX pinout.png]]&lt;br /&gt;
&lt;br /&gt;
== RC ==&lt;br /&gt;
&lt;br /&gt;
Spektrum DX5 with two Orangebox Satellites&lt;br /&gt;
&lt;br /&gt;
== Ground Station ==&lt;br /&gt;
&lt;br /&gt;
Dell mini 9&amp;quot; laptop&lt;br /&gt;
&lt;br /&gt;
== Future Plans ==&lt;br /&gt;
&lt;br /&gt;
* IP telemetry WLAN/UMTS&lt;br /&gt;
* Lisa Servicebus module instead of clunky BEC https://github.com/tbaumann/Paparazzi-Lisa-Servicebus&lt;br /&gt;
&lt;br /&gt;
== Buildlog ==&lt;br /&gt;
&lt;br /&gt;
I will blog here http://tilman-ppz-uav.blogspot.co.uk/ but will also post a summary of all important technical findings here.&lt;/div&gt;</summary>
		<author><name>TilmanBaumann</name></author>
	</entry>
	<entry>
		<id>http://wiki.paparazziuav.org/w/index.php?title=File:GPS_Eval_MAX_pinout.png&amp;diff=12084</id>
		<title>File:GPS Eval MAX pinout.png</title>
		<link rel="alternate" type="text/html" href="http://wiki.paparazziuav.org/w/index.php?title=File:GPS_Eval_MAX_pinout.png&amp;diff=12084"/>
		<updated>2012-04-13T13:07:10Z</updated>

		<summary type="html">&lt;p&gt;TilmanBaumann: UBLOX MAX-6Q GPS Eval board pinout.
3.3V logic level&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;UBLOX MAX-6Q GPS Eval board pinout.&lt;br /&gt;
3.3V logic level&lt;/div&gt;</summary>
		<author><name>TilmanBaumann</name></author>
	</entry>
	<entry>
		<id>http://wiki.paparazziuav.org/w/index.php?title=User:TilmanBaumann&amp;diff=12080</id>
		<title>User:TilmanBaumann</title>
		<link rel="alternate" type="text/html" href="http://wiki.paparazziuav.org/w/index.php?title=User:TilmanBaumann&amp;diff=12080"/>
		<updated>2012-04-13T10:38:13Z</updated>

		<summary type="html">&lt;p&gt;TilmanBaumann: /* Buildlog */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Tilman Baumann ==&lt;br /&gt;
&lt;br /&gt;
No RC experience. I live in South East England. (Guildford)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Airframe ==&lt;br /&gt;
&lt;br /&gt;
[http://www.hobbyking.com/hobbyking/store/__16544__Hobbyking_Bixler_EPO_1400mm_ARF_.html Hobbyking Bixler]&lt;br /&gt;
&lt;br /&gt;
== Autopilot ==&lt;br /&gt;
&lt;br /&gt;
[[Lisa/M_v20]]&lt;br /&gt;
&lt;br /&gt;
== Telemetry ==&lt;br /&gt;
&lt;br /&gt;
XBee 2.4 Ghz&lt;br /&gt;
&lt;br /&gt;
== GPS ==&lt;br /&gt;
&lt;br /&gt;
[http://www.csgshop.com/product.php?id_product=62 UBLOX MAX-6Q]&lt;br /&gt;
&lt;br /&gt;
== RC ==&lt;br /&gt;
&lt;br /&gt;
Spektrum DX5 with two Orangebox Satellites&lt;br /&gt;
&lt;br /&gt;
== Ground Station ==&lt;br /&gt;
&lt;br /&gt;
Dell mini 9&amp;quot; laptop&lt;br /&gt;
&lt;br /&gt;
== Future Plans ==&lt;br /&gt;
&lt;br /&gt;
* IP telemetry WLAN/UMTS&lt;br /&gt;
* Lisa Servicebus module instead of clunky BEC https://github.com/tbaumann/Paparazzi-Lisa-Servicebus&lt;br /&gt;
&lt;br /&gt;
== Buildlog ==&lt;br /&gt;
&lt;br /&gt;
I will blog here http://tilman-ppz-uav.blogspot.co.uk/ but will also post a summary of all important technical findings here.&lt;/div&gt;</summary>
		<author><name>TilmanBaumann</name></author>
	</entry>
	<entry>
		<id>http://wiki.paparazziuav.org/w/index.php?title=User:TilmanBaumann&amp;diff=12075</id>
		<title>User:TilmanBaumann</title>
		<link rel="alternate" type="text/html" href="http://wiki.paparazziuav.org/w/index.php?title=User:TilmanBaumann&amp;diff=12075"/>
		<updated>2012-04-12T11:19:52Z</updated>

		<summary type="html">&lt;p&gt;TilmanBaumann: links&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Tilman Baumann ==&lt;br /&gt;
&lt;br /&gt;
No RC experience. I live in South East England. (Guildford)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Airframe ==&lt;br /&gt;
&lt;br /&gt;
[http://www.hobbyking.com/hobbyking/store/__16544__Hobbyking_Bixler_EPO_1400mm_ARF_.html Hobbyking Bixler]&lt;br /&gt;
&lt;br /&gt;
== Autopilot ==&lt;br /&gt;
&lt;br /&gt;
[[Lisa/M_v20]]&lt;br /&gt;
&lt;br /&gt;
== Telemetry ==&lt;br /&gt;
&lt;br /&gt;
XBee 2.4 Ghz&lt;br /&gt;
&lt;br /&gt;
== GPS ==&lt;br /&gt;
&lt;br /&gt;
[http://www.csgshop.com/product.php?id_product=62 UBLOX MAX-6Q]&lt;br /&gt;
&lt;br /&gt;
== RC ==&lt;br /&gt;
&lt;br /&gt;
Spektrum DX5 with two Orangebox Satellites&lt;br /&gt;
&lt;br /&gt;
== Ground Station ==&lt;br /&gt;
&lt;br /&gt;
Dell mini 9&amp;quot; laptop&lt;br /&gt;
&lt;br /&gt;
== Future Plans ==&lt;br /&gt;
&lt;br /&gt;
* IP telemetry WLAN/UMTS&lt;br /&gt;
* Lisa Servicebus module instead of clunky BEC https://github.com/tbaumann/Paparazzi-Lisa-Servicebus&lt;br /&gt;
&lt;br /&gt;
== Buildlog ==&lt;br /&gt;
&lt;br /&gt;
No entries yet&lt;/div&gt;</summary>
		<author><name>TilmanBaumann</name></author>
	</entry>
	<entry>
		<id>http://wiki.paparazziuav.org/w/index.php?title=User:TilmanBaumann&amp;diff=12074</id>
		<title>User:TilmanBaumann</title>
		<link rel="alternate" type="text/html" href="http://wiki.paparazziuav.org/w/index.php?title=User:TilmanBaumann&amp;diff=12074"/>
		<updated>2012-04-12T10:19:49Z</updated>

		<summary type="html">&lt;p&gt;TilmanBaumann: Created page with &amp;quot; == Tilman Baumann ==  No RC experience. I live in South East England. (Guildford)   == Airframe ==  Hobbyking Bixler  == Autopilot ==  Lisa/M_v20  == Telemetry ==  XBee 2.4 …&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
== Tilman Baumann ==&lt;br /&gt;
&lt;br /&gt;
No RC experience. I live in South East England. (Guildford)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Airframe ==&lt;br /&gt;
&lt;br /&gt;
Hobbyking Bixler&lt;br /&gt;
&lt;br /&gt;
== Autopilot ==&lt;br /&gt;
&lt;br /&gt;
[[Lisa/M_v20]]&lt;br /&gt;
&lt;br /&gt;
== Telemetry ==&lt;br /&gt;
&lt;br /&gt;
XBee 2.4 Ghz&lt;br /&gt;
&lt;br /&gt;
== GPS ==&lt;br /&gt;
&lt;br /&gt;
UBLOX MAX-6Q&lt;br /&gt;
&lt;br /&gt;
== RC ==&lt;br /&gt;
&lt;br /&gt;
Spektrum DX5 with two Orangebox Satellites&lt;br /&gt;
&lt;br /&gt;
== Ground Station ==&lt;br /&gt;
&lt;br /&gt;
Dell mini 9&amp;quot; laptop&lt;br /&gt;
&lt;br /&gt;
== Future Plans ==&lt;br /&gt;
&lt;br /&gt;
* IP telemetry WLAN/UMTS&lt;br /&gt;
* Lisa Servicebus module instead of clunky BEC https://github.com/tbaumann/Paparazzi-Lisa-Servicebus&lt;br /&gt;
&lt;br /&gt;
== Buildlog ==&lt;br /&gt;
&lt;br /&gt;
No entries yet&lt;/div&gt;</summary>
		<author><name>TilmanBaumann</name></author>
	</entry>
	<entry>
		<id>http://wiki.paparazziuav.org/w/index.php?title=Get_Hardware&amp;diff=11865</id>
		<title>Get Hardware</title>
		<link rel="alternate" type="text/html" href="http://wiki.paparazziuav.org/w/index.php?title=Get_Hardware&amp;diff=11865"/>
		<updated>2012-03-06T16:52:15Z</updated>

		<summary type="html">&lt;p&gt;TilmanBaumann: /* DIYDrones */ buildyourowndrone.co.uk&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;As an open-source project, all source code and hardware plans are [https://github.com/paparazzi/paparazzi-hardware freely available on GitHub] for anyone to produce, use, modify, and redistribute in accordance with the [http://www.gnu.org/licenses/gpl.txt GPL License Agreement] which requires only that the open-source nature of the project be maintained by all who redistribute it.&lt;br /&gt;
&lt;br /&gt;
We encourage the distribution of hardware for profit or otherwise and invite any users with paparazzi-related hardware to post links and purchasing information on this page.  Please use the [[Talk:Get_Hardware&amp;amp;action=edit|Discussion Tab]] to describe your experiences with any of these vendors.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;hr&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br style=&amp;quot;clear:both&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;br style=&amp;quot;clear:both&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= [http://aerofu.com [[image:aerofu_logo.png]]  Aerofu.com ] =&lt;br /&gt;
&lt;br /&gt;
Low cost Paparazzi hardware from Australia. &lt;br /&gt;
Licenced to export to [http://aerofu.com/index.php?main_page=page&amp;amp;id=2 33 countries], including Europe and North America. Recentry restocked with:&lt;br /&gt;
&amp;lt;ul&amp;gt;&lt;br /&gt;
 &amp;lt;li&amp;gt;&lt;br /&gt;
[http://www.aerofu.com/index.php?main_page=product_info&amp;amp;cPath=11&amp;amp;products_id=30 Tiny] &lt;br /&gt;
and&lt;br /&gt;
[http://www.aerofu.com/index.php?main_page=product_info&amp;amp;cPath=11&amp;amp;products_id=31 TWOG]&lt;br /&gt;
autopilots.&lt;br /&gt;
 &amp;lt;/li&amp;gt;&lt;br /&gt;
 &amp;lt;li&amp;gt;&lt;br /&gt;
Complete Kits ([http://www.aerofu.com/index.php?main_page=product_info&amp;amp;cPath=11&amp;amp;products_id=48 Tiny] or [http://www.aerofu.com/index.php?main_page=product_info&amp;amp;cPath=11&amp;amp;products_id=49 TWOG] based).&lt;br /&gt;
 &amp;lt;/li&amp;gt;&lt;br /&gt;
 &amp;lt;li&amp;gt;&lt;br /&gt;
[http://www.aerofu.com/index.php?main_page=product_info&amp;amp;cPath=10&amp;amp;products_id=20 PPM Encoders] and [http://www.aerofu.com/index.php?main_page=product_info&amp;amp;cPath=8&amp;amp;products_id=44 IR Sensors] from the Paparazzi project.&lt;br /&gt;
 &amp;lt;/li&amp;gt;&lt;br /&gt;
 &amp;lt;li&amp;gt;&lt;br /&gt;
Inexpensive [http://www.aerofu.com/index.php?main_page=product_info&amp;amp;cPath=7&amp;amp;products_id=12 uBlox LEA-5H GPS units].&lt;br /&gt;
 &amp;lt;/li&amp;gt;&lt;br /&gt;
 &amp;lt;li&amp;gt;various PCBs&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;/ul&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= [http://chebuzz.com/paparazzi [[Image:CheBuzzPprz.gif]] CheBuzz Paparazzi] =&lt;br /&gt;
Due to an unexpected change in my &amp;quot;real&amp;quot; job, I will regrettably be returning to the United States in the near future.  As such, I will be closing my webshop for good.  It has been a pleasure getting to know so many paparazzi users and an honor to supply hardware to you.  Thanks for all the help and support I have received.&lt;br /&gt;
&lt;br /&gt;
I apologize for the short notice.  But I will be taking orders until Friday 24 September, so anybody wishing to purchase paparazzi equipment from my store will be able to do so until that time.&lt;br /&gt;
&lt;br /&gt;
Thankfully somebody has offered to step up and take my place.  I have been working with Chris and AeroFu (aerofu.com) and he has agreed to continue providing paparazzi hardware and to selling out the remainder of my inventory.  I am confident he will continue to provide a high level of service and support for those looking to get into the hobby and into the paparazzi project.&lt;br /&gt;
&lt;br /&gt;
Again, thanks to all and happy flying!&lt;br /&gt;
&lt;br /&gt;
Buzz &lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
&amp;lt;br style=&amp;quot;clear:both&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= [http://paparazzi.enac.fr/wiki/Get_Hardware#Transition_Robotics_Inc.___Lisa.2FL_STM32.2FOvero_autopilot__Lisa.2FL_STM32.2FOvero_autopilot JobyRobotics.com]  =&lt;br /&gt;
[[Image:JobyRobotics.jpg]] &lt;br /&gt;
Please see [http://paparazzi.enac.fr/wiki/Get_Hardware#Transition_Robotics_Inc.___Lisa.2FL_STM32.2FOvero_autopilot__Lisa.2FL_STM32.2FOvero_autopilot Transition Robotics Inc..]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br style=&amp;quot;clear:both&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;br style=&amp;quot;clear:both&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= [http://www.ppzuav.com/ [[Image:Ppzuav.jpg]]] PPZUAV.com [[Image:All ppz autopilots med.jpg|thumb|400px|Paparazzi controllers]] =&lt;br /&gt;
&amp;lt;h2&amp;gt;Providing professionally assembled and tested hardware for your Paparazzi Projects since 2007&amp;lt;/h2&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;&lt;br /&gt;
Confused what to buy? Just give us an email and we will help you decide ('''sales@ppzuav.com''').&lt;br /&gt;
&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;We make it simple. Each autopilot is &amp;lt;b&amp;gt;professionally assembled&amp;lt;/b&amp;gt; in a large factory by automated pick and place and reflow to ISO9000 standards. &lt;br /&gt;
To be sure yours will work we open every one and test before shipping. If it fails we don't sell it.&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;Our testing includes:&lt;br /&gt;
&amp;lt;ol&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;Burn in testing: We Power it with a current limited power supply to verify voltages and current draw&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;Load the usb bootloader so it can be programmed via USB&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;/ol&amp;gt;&lt;br /&gt;
&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;&lt;br /&gt;
Please eMail with any questions or special requests before you place your orders. We return emails as quickly as possible. If it's an easy question within hours. More complex or longer explanation requests may take some time to read then write your answer so be patient.&lt;br /&gt;
&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;&lt;br /&gt;
Visit the PPZUAZ [https://store.ppzuav.com WebStore] to see the latest offerings.&amp;lt;/b&amp;gt;&lt;br /&gt;
&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;&lt;br /&gt;
&amp;lt;h3&amp;gt;NEW ITEM:   [https://store.ppzuav.com/osc/product_info.php?products_id=139 Umarim] Finally fully factory assembled Umarim! Taking pre-orders now.&amp;lt;/h3&amp;gt;&lt;br /&gt;
&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;br style=&amp;quot;clear:both&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;br style=&amp;quot;clear:both&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= [http://transition-robotics.com [[Image:Transition_Robotics_Logo.png|100px]] Transition Robotics Inc.] [[Image:Lisa_M_V1_0_top_with_coin.jpg|thumb|Lisa/M V1.0 top view]][[Image:Lisa_M_V1_0_bottom_with_coin.jpg|thumb|Lisa/M V1.0 bottom view]] =&lt;br /&gt;
Transition Robotics Inc. is a young company developing new solutions for and with Paparazzi UAV platform. Their core product is the [[Image:Quadshot_Logo.jpg|100px|link=http://thequadshot.com|Quadshot]], a VTOL transitioning aircraft.&lt;br /&gt;
&lt;br /&gt;
Beside Quadshot itself they develop and provide hardware and software that is especially optimized for Paparazzi, such as the Lisa Autopilots, Aspirin IMUs and associated accessories.&lt;br /&gt;
&lt;br /&gt;
They have a shop on their [http://thequadshot.com Quadshot product page].&lt;br /&gt;
&lt;br /&gt;
As of February 2012, Transition Robotics, Inc. has acquired all IP and Paparazzi related inventory from Joby Robotics. We are thankful to Joby Robotics for their important and faithful support of Paparazzi related hardware projects, and hope to carry on this tradition. Hardware formerly supplied by Joby Robotics may now be purchased at the [http://thequadshot.com/collections/all Transition Robotics/Quadshot webstore.]&lt;br /&gt;
&lt;br /&gt;
The [http://thequadshot.com/collections/all TRI/Quadshot Webstore] also stocks pre-crimped Molex Picoblade wires and connector housings.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br style=&amp;quot;clear:both&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Other =&lt;br /&gt;
&lt;br /&gt;
==[http://www.olimex.com/pcb/ Olimex]==&lt;br /&gt;
[[image:pcb-green.jpg|thumb|250px|Olimex PCBs]]&lt;br /&gt;
*Fast PCB Prototypes [http://www.olimex.com/pcb/ www.olimex.com/pcb]&lt;br /&gt;
*Development Boards [http://www.olimex.com/dev/index.html www.olimex.com/dev/]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br style=&amp;quot;clear:both&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;br style=&amp;quot;clear:both&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==[http://www.sparkfun.com Sparkfun]==&lt;br /&gt;
[[image:P1030095.jpg|thumb|250px|Sparkfun]]&lt;br /&gt;
Sparkfun is a great source of miscellaneous electronics like:&lt;br /&gt;
* Development boards&lt;br /&gt;
* GPS&lt;br /&gt;
* Gyros&lt;br /&gt;
* Accelerometers&lt;br /&gt;
* Pressure sensors&lt;br /&gt;
* Ultrasonic distance sensors&lt;br /&gt;
* Temperature/humidity sensors&lt;br /&gt;
* USB to Serial converters&lt;br /&gt;
* LEDs&lt;br /&gt;
* Etc.&lt;br /&gt;
They also have an inexpensive PCB service, [http://batchpcb.com/index.php/Products BatchPCB].&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br style=&amp;quot;clear:both&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;br style=&amp;quot;clear:both&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''Sparkfun distributors in Europe'''&lt;br /&gt;
&lt;br /&gt;
Incomplete list.&lt;br /&gt;
*http://www.lipoly.de/index.php?main_page=index&amp;amp;cPath=880_883&amp;amp;language=en&lt;br /&gt;
*http://www.watterott.com/en/SparkFun&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== [https://store.diydrones.com/ DIYDrones] ==&lt;br /&gt;
Mainly focused on ArduPilot hardware. But carries Paparazzi compatible Telemetry and sensor boards.&lt;br /&gt;
&lt;br /&gt;
'''DIYDrones distributors in Europe'''&lt;br /&gt;
*http://www.lipoly.de/index.php?main_page=index&amp;amp;cPath=880_1912 [DE]&lt;br /&gt;
*http://www.buildyourowndrone.co.uk/ [UK]&lt;br /&gt;
&lt;br /&gt;
==u-Blox GPS receivers==&lt;br /&gt;
&lt;br /&gt;
There seems to be a few alternative source of u-Blox GPS out there. They are considerably cheaper then the samples u-Blox offers&lt;br /&gt;
&lt;br /&gt;
If you do order from any of them, please update this page with your feedback.&lt;br /&gt;
&lt;br /&gt;
Here's a few link worth exploring:&lt;br /&gt;
&lt;br /&gt;
*[http://www.navilock.de/produkte/gruppen/13/Boards_und_Module Navilock] (also available on [http://www.amazon.de Amazon.de] by searching for Navilock)&lt;br /&gt;
*http://www.rfdesign.co.za/pages/5645456/Products/GPS-Products/Antaris-4-Modules.asp (Also [http://www.rfdesign.co.za/pages/5645456/Products/GPS-Products/u-blox-5-Modules.asp u-blox 5] and [http://www.rfdesign.co.za/pages/5645456/Products/GPS-Products/u-blox-6-Modules.asp u-blox 6] modules avialable)&lt;br /&gt;
*http://www.comet.srl.ro/shop/info.html?ID=6195 ( Link error, you can find them in this list: http://www.comet.srl.ro/shop/statements.html?Type=MOD&amp;amp;Subtype=GPS )&lt;br /&gt;
*http://www.expedienttech.com/  ( Singapore )&lt;br /&gt;
*http://www.csgshop.com/category.php?id_category=16 (US UBLOX MAX-6Q)&lt;br /&gt;
&lt;br /&gt;
==Airspeed Sensors==&lt;br /&gt;
&lt;br /&gt;
Eagle Tree Systems makes a small standalone airspeed sensor that can be connected via i2c. They also sell pitot tubes standalone for other differential pressure sensors. For integration, please see [[Sensors/Airspeed]].&lt;br /&gt;
*[http://www.eagletreesystems.com/Standalone/standalone.htm Eagle Tree Systems] (Also available from a number of distributors)&lt;br /&gt;
&lt;br /&gt;
[[Category:Hardware]] [[Category:User_Documentation]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== DIGI XBee telemetry modules ==&lt;br /&gt;
For detailed shopping guide see [Modems]&lt;br /&gt;
*http://www.watterott.com/en/Digi (DE EU)&lt;br /&gt;
*https://store.diydrones.com/ (US See above for local distributors)&lt;br /&gt;
*http://mouser.com/ (AU and other regions)&lt;/div&gt;</summary>
		<author><name>TilmanBaumann</name></author>
	</entry>
	<entry>
		<id>http://wiki.paparazziuav.org/w/index.php?title=Get_Hardware&amp;diff=11840</id>
		<title>Get Hardware</title>
		<link rel="alternate" type="text/html" href="http://wiki.paparazziuav.org/w/index.php?title=Get_Hardware&amp;diff=11840"/>
		<updated>2012-03-05T10:43:31Z</updated>

		<summary type="html">&lt;p&gt;TilmanBaumann: /* Airspeed Sensors */ DIGI XBee telemetry modules&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;As an open-source project, all source code and hardware plans are [https://github.com/paparazzi/paparazzi-hardware freely available on GitHub] for anyone to produce, use, modify, and redistribute in accordance with the [http://www.gnu.org/licenses/gpl.txt GPL License Agreement] which requires only that the open-source nature of the project be maintained by all who redistribute it.&lt;br /&gt;
&lt;br /&gt;
We encourage the distribution of hardware for profit or otherwise and invite any users with paparazzi-related hardware to post links and purchasing information on this page.  Please use the [[Talk:Get_Hardware&amp;amp;action=edit|Discussion Tab]] to describe your experiences with any of these vendors.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;hr&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br style=&amp;quot;clear:both&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;br style=&amp;quot;clear:both&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= [http://aerofu.com [[image:aerofu_logo.png]]  Aerofu.com ] =&lt;br /&gt;
&lt;br /&gt;
Low cost Paparazzi hardware from Australia. &lt;br /&gt;
Licenced to export to [http://aerofu.com/index.php?main_page=page&amp;amp;id=2 33 countries], including Europe and North America. Recentry restocked with:&lt;br /&gt;
&amp;lt;ul&amp;gt;&lt;br /&gt;
 &amp;lt;li&amp;gt;&lt;br /&gt;
[http://www.aerofu.com/index.php?main_page=product_info&amp;amp;cPath=11&amp;amp;products_id=30 Tiny] &lt;br /&gt;
and&lt;br /&gt;
[http://www.aerofu.com/index.php?main_page=product_info&amp;amp;cPath=11&amp;amp;products_id=31 TWOG]&lt;br /&gt;
autopilots.&lt;br /&gt;
 &amp;lt;/li&amp;gt;&lt;br /&gt;
 &amp;lt;li&amp;gt;&lt;br /&gt;
Complete Kits ([http://www.aerofu.com/index.php?main_page=product_info&amp;amp;cPath=11&amp;amp;products_id=48 Tiny] or [http://www.aerofu.com/index.php?main_page=product_info&amp;amp;cPath=11&amp;amp;products_id=49 TWOG] based).&lt;br /&gt;
 &amp;lt;/li&amp;gt;&lt;br /&gt;
 &amp;lt;li&amp;gt;&lt;br /&gt;
[http://www.aerofu.com/index.php?main_page=product_info&amp;amp;cPath=10&amp;amp;products_id=20 PPM Encoders] and [http://www.aerofu.com/index.php?main_page=product_info&amp;amp;cPath=8&amp;amp;products_id=44 IR Sensors] from the Paparazzi project.&lt;br /&gt;
 &amp;lt;/li&amp;gt;&lt;br /&gt;
 &amp;lt;li&amp;gt;&lt;br /&gt;
Inexpensive [http://www.aerofu.com/index.php?main_page=product_info&amp;amp;cPath=7&amp;amp;products_id=12 uBlox LEA-5H GPS units].&lt;br /&gt;
 &amp;lt;/li&amp;gt;&lt;br /&gt;
 &amp;lt;li&amp;gt;various PCBs&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;/ul&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= [http://chebuzz.com/paparazzi [[Image:CheBuzzPprz.gif]] CheBuzz Paparazzi] =&lt;br /&gt;
Due to an unexpected change in my &amp;quot;real&amp;quot; job, I will regrettably be returning to the United States in the near future.  As such, I will be closing my webshop for good.  It has been a pleasure getting to know so many paparazzi users and an honor to supply hardware to you.  Thanks for all the help and support I have received.&lt;br /&gt;
&lt;br /&gt;
I apologize for the short notice.  But I will be taking orders until Friday 24 September, so anybody wishing to purchase paparazzi equipment from my store will be able to do so until that time.&lt;br /&gt;
&lt;br /&gt;
Thankfully somebody has offered to step up and take my place.  I have been working with Chris and AeroFu (aerofu.com) and he has agreed to continue providing paparazzi hardware and to selling out the remainder of my inventory.  I am confident he will continue to provide a high level of service and support for those looking to get into the hobby and into the paparazzi project.&lt;br /&gt;
&lt;br /&gt;
Again, thanks to all and happy flying!&lt;br /&gt;
&lt;br /&gt;
Buzz &lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
&amp;lt;br style=&amp;quot;clear:both&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= [http://paparazzi.enac.fr/wiki/Get_Hardware#Transition_Robotics_Inc.___Lisa.2FL_STM32.2FOvero_autopilot__Lisa.2FL_STM32.2FOvero_autopilot JobyRobotics.com]  =&lt;br /&gt;
[[Image:JobyRobotics.jpg]] &lt;br /&gt;
Please see [http://paparazzi.enac.fr/wiki/Get_Hardware#Transition_Robotics_Inc.___Lisa.2FL_STM32.2FOvero_autopilot__Lisa.2FL_STM32.2FOvero_autopilot Transition Robotics Inc..]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br style=&amp;quot;clear:both&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;br style=&amp;quot;clear:both&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= [http://www.ppzuav.com/ [[Image:Ppzuav.jpg]]] PPZUAV.com [[Image:All ppz autopilots med.jpg|thumb|400px|Paparazzi controllers]] =&lt;br /&gt;
&amp;lt;h2&amp;gt;Providing professionally assembled and tested hardware for your Paparazzi Projects since 2007&amp;lt;/h2&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;&lt;br /&gt;
Confused what to buy? Just give us an email and we will help you decide ('''sales@ppzuav.com''').&lt;br /&gt;
&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;We make it simple. Each autopilot is &amp;lt;b&amp;gt;professionally assembled&amp;lt;/b&amp;gt; in a large factory by automated pick and place and reflow to ISO9000 standards. &lt;br /&gt;
To be sure yours will work we open every one and test before shipping. If it fails we don't sell it.&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;Our testing includes:&lt;br /&gt;
&amp;lt;ol&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;Burn in testing: We Power it with a current limited power supply to verify voltages and current draw&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;Load the usb bootloader so it can be programmed via USB&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;/ol&amp;gt;&lt;br /&gt;
&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;&lt;br /&gt;
Please eMail with any questions or special requests before you place your orders. We return emails as quickly as possible. If it's an easy question within hours. More complex or longer explanation requests may take some time to read then write your answer so be patient.&lt;br /&gt;
&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;&lt;br /&gt;
Visit the PPZUAZ [https://store.ppzuav.com WebStore] to see the latest offerings.&amp;lt;/b&amp;gt;&lt;br /&gt;
&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;&lt;br /&gt;
&amp;lt;h3&amp;gt;NEW ITEM:   [https://store.ppzuav.com/osc/product_info.php?products_id=139 Umarim] Finally fully factory assembled Umarim! Taking pre-orders now.&amp;lt;/h3&amp;gt;&lt;br /&gt;
&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;br style=&amp;quot;clear:both&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;br style=&amp;quot;clear:both&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= [http://transition-robotics.com [[Image:Transition_Robotics_Logo.png|100px]] Transition Robotics Inc.] [[Image:Lisa_M_V1_0_top_with_coin.jpg|thumb|Lisa/M V1.0 top view]][[Image:Lisa_M_V1_0_bottom_with_coin.jpg|thumb|Lisa/M V1.0 bottom view]] =&lt;br /&gt;
Transition Robotics Inc. is a young company developing new solutions for and with Paparazzi UAV platform. Their core product is the [[Image:Quadshot_Logo.jpg|100px|link=http://thequadshot.com|Quadshot]], a VTOL transitioning aircraft.&lt;br /&gt;
&lt;br /&gt;
Beside Quadshot itself they develop and provide hardware and software that is especially optimized for Paparazzi, such as the Lisa Autopilots, Aspirin IMUs and associated accessories.&lt;br /&gt;
&lt;br /&gt;
They have a shop on their [http://thequadshot.com Quadshot product page].&lt;br /&gt;
&lt;br /&gt;
As of February 2012, Transition Robotics, Inc. has acquired all IP and Paparazzi related inventory from Joby Robotics. We are thankful to Joby Robotics for their important and faithful support of Paparazzi related hardware projects, and hope to carry on this tradition. Hardware formerly supplied by Joby Robotics may now be purchased at the [http://thequadshot.com/collections/all Transition Robotics/Quadshot webstore.]&lt;br /&gt;
&lt;br /&gt;
The [http://thequadshot.com/collections/all TRI/Quadshot Webstore] also stocks pre-crimped Molex Picoblade wires and connector housings.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br style=&amp;quot;clear:both&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Other =&lt;br /&gt;
&lt;br /&gt;
==[http://www.olimex.com/pcb/ Olimex]==&lt;br /&gt;
[[image:pcb-green.jpg|thumb|250px|Olimex PCBs]]&lt;br /&gt;
*Fast PCB Prototypes [http://www.olimex.com/pcb/ www.olimex.com/pcb]&lt;br /&gt;
*Development Boards [http://www.olimex.com/dev/index.html www.olimex.com/dev/]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br style=&amp;quot;clear:both&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;br style=&amp;quot;clear:both&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==[http://www.sparkfun.com Sparkfun]==&lt;br /&gt;
[[image:P1030095.jpg|thumb|250px|Sparkfun]]&lt;br /&gt;
Sparkfun is a great source of miscellaneous electronics like:&lt;br /&gt;
* Development boards&lt;br /&gt;
* GPS&lt;br /&gt;
* Gyros&lt;br /&gt;
* Accelerometers&lt;br /&gt;
* Pressure sensors&lt;br /&gt;
* Ultrasonic distance sensors&lt;br /&gt;
* Temperature/humidity sensors&lt;br /&gt;
* USB to Serial converters&lt;br /&gt;
* LEDs&lt;br /&gt;
* Etc.&lt;br /&gt;
They also have an inexpensive PCB service, [http://batchpcb.com/index.php/Products BatchPCB].&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br style=&amp;quot;clear:both&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;br style=&amp;quot;clear:both&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''Sparkfun distributors in Europe'''&lt;br /&gt;
&lt;br /&gt;
Incomplete list.&lt;br /&gt;
*http://www.lipoly.de/index.php?main_page=index&amp;amp;cPath=880_883&amp;amp;language=en&lt;br /&gt;
*http://www.watterott.com/en/SparkFun&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== [https://store.diydrones.com/ DIYDrones] ==&lt;br /&gt;
Mainly focused on ArduPilot hardware. But carries Paparazzi compatible Telemetry and sensor boards.&lt;br /&gt;
&lt;br /&gt;
'''DIYDrones distributors in Europe'''&lt;br /&gt;
*http://www.lipoly.de/index.php?main_page=index&amp;amp;cPath=880_1912&lt;br /&gt;
&lt;br /&gt;
==u-Blox GPS receivers==&lt;br /&gt;
&lt;br /&gt;
There seems to be a few alternative source of u-Blox GPS out there. They are considerably cheaper then the samples u-Blox offers&lt;br /&gt;
&lt;br /&gt;
If you do order from any of them, please update this page with your feedback.&lt;br /&gt;
&lt;br /&gt;
Here's a few link worth exploring:&lt;br /&gt;
&lt;br /&gt;
*[http://www.navilock.de/produkte/gruppen/13/Boards_und_Module Navilock] (also available on [http://www.amazon.de Amazon.de] by searching for Navilock)&lt;br /&gt;
*http://www.rfdesign.co.za/pages/5645456/Products/GPS-Products/Antaris-4-Modules.asp (Also [http://www.rfdesign.co.za/pages/5645456/Products/GPS-Products/u-blox-5-Modules.asp u-blox 5] and [http://www.rfdesign.co.za/pages/5645456/Products/GPS-Products/u-blox-6-Modules.asp u-blox 6] modules avialable)&lt;br /&gt;
*http://www.comet.srl.ro/shop/info.html?ID=6195 ( Link error, you can find them in this list: http://www.comet.srl.ro/shop/statements.html?Type=MOD&amp;amp;Subtype=GPS )&lt;br /&gt;
*http://www.expedienttech.com/  ( Singapore )&lt;br /&gt;
*http://www.csgshop.com/category.php?id_category=16 (US UBLOX MAX-6Q)&lt;br /&gt;
&lt;br /&gt;
==Airspeed Sensors==&lt;br /&gt;
&lt;br /&gt;
Eagle Tree Systems makes a small standalone airspeed sensor that can be connected via i2c. They also sell pitot tubes standalone for other differential pressure sensors. For integration, please see [[Sensors/Airspeed]].&lt;br /&gt;
*[http://www.eagletreesystems.com/Standalone/standalone.htm Eagle Tree Systems] (Also available from a number of distributors)&lt;br /&gt;
&lt;br /&gt;
[[Category:Hardware]] [[Category:User_Documentation]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== DIGI XBee telemetry modules ==&lt;br /&gt;
For detailed shopping guide see [Modems]&lt;br /&gt;
*http://www.watterott.com/en/Digi (DE EU)&lt;br /&gt;
*https://store.diydrones.com/ (US See above for local distributors)&lt;br /&gt;
*http://mouser.com/ (AU and other regions)&lt;/div&gt;</summary>
		<author><name>TilmanBaumann</name></author>
	</entry>
	<entry>
		<id>http://wiki.paparazziuav.org/w/index.php?title=Get_Hardware&amp;diff=11838</id>
		<title>Get Hardware</title>
		<link rel="alternate" type="text/html" href="http://wiki.paparazziuav.org/w/index.php?title=Get_Hardware&amp;diff=11838"/>
		<updated>2012-03-05T10:37:17Z</updated>

		<summary type="html">&lt;p&gt;TilmanBaumann: /* Sparkfun */ DIYDrones&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;As an open-source project, all source code and hardware plans are [https://github.com/paparazzi/paparazzi-hardware freely available on GitHub] for anyone to produce, use, modify, and redistribute in accordance with the [http://www.gnu.org/licenses/gpl.txt GPL License Agreement] which requires only that the open-source nature of the project be maintained by all who redistribute it.&lt;br /&gt;
&lt;br /&gt;
We encourage the distribution of hardware for profit or otherwise and invite any users with paparazzi-related hardware to post links and purchasing information on this page.  Please use the [[Talk:Get_Hardware&amp;amp;action=edit|Discussion Tab]] to describe your experiences with any of these vendors.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;hr&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br style=&amp;quot;clear:both&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;br style=&amp;quot;clear:both&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= [http://aerofu.com [[image:aerofu_logo.png]]  Aerofu.com ] =&lt;br /&gt;
&lt;br /&gt;
Low cost Paparazzi hardware from Australia. &lt;br /&gt;
Licenced to export to [http://aerofu.com/index.php?main_page=page&amp;amp;id=2 33 countries], including Europe and North America. Recentry restocked with:&lt;br /&gt;
&amp;lt;ul&amp;gt;&lt;br /&gt;
 &amp;lt;li&amp;gt;&lt;br /&gt;
[http://www.aerofu.com/index.php?main_page=product_info&amp;amp;cPath=11&amp;amp;products_id=30 Tiny] &lt;br /&gt;
and&lt;br /&gt;
[http://www.aerofu.com/index.php?main_page=product_info&amp;amp;cPath=11&amp;amp;products_id=31 TWOG]&lt;br /&gt;
autopilots.&lt;br /&gt;
 &amp;lt;/li&amp;gt;&lt;br /&gt;
 &amp;lt;li&amp;gt;&lt;br /&gt;
Complete Kits ([http://www.aerofu.com/index.php?main_page=product_info&amp;amp;cPath=11&amp;amp;products_id=48 Tiny] or [http://www.aerofu.com/index.php?main_page=product_info&amp;amp;cPath=11&amp;amp;products_id=49 TWOG] based).&lt;br /&gt;
 &amp;lt;/li&amp;gt;&lt;br /&gt;
 &amp;lt;li&amp;gt;&lt;br /&gt;
[http://www.aerofu.com/index.php?main_page=product_info&amp;amp;cPath=10&amp;amp;products_id=20 PPM Encoders] and [http://www.aerofu.com/index.php?main_page=product_info&amp;amp;cPath=8&amp;amp;products_id=44 IR Sensors] from the Paparazzi project.&lt;br /&gt;
 &amp;lt;/li&amp;gt;&lt;br /&gt;
 &amp;lt;li&amp;gt;&lt;br /&gt;
Inexpensive [http://www.aerofu.com/index.php?main_page=product_info&amp;amp;cPath=7&amp;amp;products_id=12 uBlox LEA-5H GPS units].&lt;br /&gt;
 &amp;lt;/li&amp;gt;&lt;br /&gt;
 &amp;lt;li&amp;gt;various PCBs&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;/ul&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= [http://chebuzz.com/paparazzi [[Image:CheBuzzPprz.gif]] CheBuzz Paparazzi] =&lt;br /&gt;
Due to an unexpected change in my &amp;quot;real&amp;quot; job, I will regrettably be returning to the United States in the near future.  As such, I will be closing my webshop for good.  It has been a pleasure getting to know so many paparazzi users and an honor to supply hardware to you.  Thanks for all the help and support I have received.&lt;br /&gt;
&lt;br /&gt;
I apologize for the short notice.  But I will be taking orders until Friday 24 September, so anybody wishing to purchase paparazzi equipment from my store will be able to do so until that time.&lt;br /&gt;
&lt;br /&gt;
Thankfully somebody has offered to step up and take my place.  I have been working with Chris and AeroFu (aerofu.com) and he has agreed to continue providing paparazzi hardware and to selling out the remainder of my inventory.  I am confident he will continue to provide a high level of service and support for those looking to get into the hobby and into the paparazzi project.&lt;br /&gt;
&lt;br /&gt;
Again, thanks to all and happy flying!&lt;br /&gt;
&lt;br /&gt;
Buzz &lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
&amp;lt;br style=&amp;quot;clear:both&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= [http://paparazzi.enac.fr/wiki/Get_Hardware#Transition_Robotics_Inc.___Lisa.2FL_STM32.2FOvero_autopilot__Lisa.2FL_STM32.2FOvero_autopilot JobyRobotics.com]  =&lt;br /&gt;
[[Image:JobyRobotics.jpg]] &lt;br /&gt;
Please see [http://paparazzi.enac.fr/wiki/Get_Hardware#Transition_Robotics_Inc.___Lisa.2FL_STM32.2FOvero_autopilot__Lisa.2FL_STM32.2FOvero_autopilot Transition Robotics Inc..]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br style=&amp;quot;clear:both&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;br style=&amp;quot;clear:both&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= [http://www.ppzuav.com/ [[Image:Ppzuav.jpg]]] PPZUAV.com [[Image:All ppz autopilots med.jpg|thumb|400px|Paparazzi controllers]] =&lt;br /&gt;
&amp;lt;h2&amp;gt;Providing professionally assembled and tested hardware for your Paparazzi Projects since 2007&amp;lt;/h2&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;&lt;br /&gt;
Confused what to buy? Just give us an email and we will help you decide ('''sales@ppzuav.com''').&lt;br /&gt;
&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;We make it simple. Each autopilot is &amp;lt;b&amp;gt;professionally assembled&amp;lt;/b&amp;gt; in a large factory by automated pick and place and reflow to ISO9000 standards. &lt;br /&gt;
To be sure yours will work we open every one and test before shipping. If it fails we don't sell it.&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;Our testing includes:&lt;br /&gt;
&amp;lt;ol&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;Burn in testing: We Power it with a current limited power supply to verify voltages and current draw&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;Load the usb bootloader so it can be programmed via USB&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;/ol&amp;gt;&lt;br /&gt;
&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;&lt;br /&gt;
Please eMail with any questions or special requests before you place your orders. We return emails as quickly as possible. If it's an easy question within hours. More complex or longer explanation requests may take some time to read then write your answer so be patient.&lt;br /&gt;
&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;&lt;br /&gt;
Visit the PPZUAZ [https://store.ppzuav.com WebStore] to see the latest offerings.&amp;lt;/b&amp;gt;&lt;br /&gt;
&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;&lt;br /&gt;
&amp;lt;h3&amp;gt;NEW ITEM:   [https://store.ppzuav.com/osc/product_info.php?products_id=139 Umarim] Finally fully factory assembled Umarim! Taking pre-orders now.&amp;lt;/h3&amp;gt;&lt;br /&gt;
&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;br style=&amp;quot;clear:both&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;br style=&amp;quot;clear:both&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= [http://transition-robotics.com [[Image:Transition_Robotics_Logo.png|100px]] Transition Robotics Inc.] [[Image:Lisa_M_V1_0_top_with_coin.jpg|thumb|Lisa/M V1.0 top view]][[Image:Lisa_M_V1_0_bottom_with_coin.jpg|thumb|Lisa/M V1.0 bottom view]] =&lt;br /&gt;
Transition Robotics Inc. is a young company developing new solutions for and with Paparazzi UAV platform. Their core product is the [[Image:Quadshot_Logo.jpg|100px|link=http://thequadshot.com|Quadshot]], a VTOL transitioning aircraft.&lt;br /&gt;
&lt;br /&gt;
Beside Quadshot itself they develop and provide hardware and software that is especially optimized for Paparazzi, such as the Lisa Autopilots, Aspirin IMUs and associated accessories.&lt;br /&gt;
&lt;br /&gt;
They have a shop on their [http://thequadshot.com Quadshot product page].&lt;br /&gt;
&lt;br /&gt;
As of February 2012, Transition Robotics, Inc. has acquired all IP and Paparazzi related inventory from Joby Robotics. We are thankful to Joby Robotics for their important and faithful support of Paparazzi related hardware projects, and hope to carry on this tradition. Hardware formerly supplied by Joby Robotics may now be purchased at the [http://thequadshot.com/collections/all Transition Robotics/Quadshot webstore.]&lt;br /&gt;
&lt;br /&gt;
The [http://thequadshot.com/collections/all TRI/Quadshot Webstore] also stocks pre-crimped Molex Picoblade wires and connector housings.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br style=&amp;quot;clear:both&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Other =&lt;br /&gt;
&lt;br /&gt;
==[http://www.olimex.com/pcb/ Olimex]==&lt;br /&gt;
[[image:pcb-green.jpg|thumb|250px|Olimex PCBs]]&lt;br /&gt;
*Fast PCB Prototypes [http://www.olimex.com/pcb/ www.olimex.com/pcb]&lt;br /&gt;
*Development Boards [http://www.olimex.com/dev/index.html www.olimex.com/dev/]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br style=&amp;quot;clear:both&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;br style=&amp;quot;clear:both&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==[http://www.sparkfun.com Sparkfun]==&lt;br /&gt;
[[image:P1030095.jpg|thumb|250px|Sparkfun]]&lt;br /&gt;
Sparkfun is a great source of miscellaneous electronics like:&lt;br /&gt;
* Development boards&lt;br /&gt;
* GPS&lt;br /&gt;
* Gyros&lt;br /&gt;
* Accelerometers&lt;br /&gt;
* Pressure sensors&lt;br /&gt;
* Ultrasonic distance sensors&lt;br /&gt;
* Temperature/humidity sensors&lt;br /&gt;
* USB to Serial converters&lt;br /&gt;
* LEDs&lt;br /&gt;
* Etc.&lt;br /&gt;
They also have an inexpensive PCB service, [http://batchpcb.com/index.php/Products BatchPCB].&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br style=&amp;quot;clear:both&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;br style=&amp;quot;clear:both&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''Sparkfun distributors in Europe'''&lt;br /&gt;
&lt;br /&gt;
Incomplete list.&lt;br /&gt;
*http://www.lipoly.de/index.php?main_page=index&amp;amp;cPath=880_883&amp;amp;language=en&lt;br /&gt;
*http://www.watterott.com/en/SparkFun&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== [https://store.diydrones.com/ DIYDrones] ==&lt;br /&gt;
Mainly focused on ArduPilot hardware. But carries Paparazzi compatible Telemetry and sensor boards.&lt;br /&gt;
&lt;br /&gt;
'''DIYDrones distributors in Europe'''&lt;br /&gt;
*http://www.lipoly.de/index.php?main_page=index&amp;amp;cPath=880_1912&lt;br /&gt;
&lt;br /&gt;
==u-Blox GPS receivers==&lt;br /&gt;
&lt;br /&gt;
There seems to be a few alternative source of u-Blox GPS out there. They are considerably cheaper then the samples u-Blox offers&lt;br /&gt;
&lt;br /&gt;
If you do order from any of them, please update this page with your feedback.&lt;br /&gt;
&lt;br /&gt;
Here's a few link worth exploring:&lt;br /&gt;
&lt;br /&gt;
*[http://www.navilock.de/produkte/gruppen/13/Boards_und_Module Navilock] (also available on [http://www.amazon.de Amazon.de] by searching for Navilock)&lt;br /&gt;
*http://www.rfdesign.co.za/pages/5645456/Products/GPS-Products/Antaris-4-Modules.asp (Also [http://www.rfdesign.co.za/pages/5645456/Products/GPS-Products/u-blox-5-Modules.asp u-blox 5] and [http://www.rfdesign.co.za/pages/5645456/Products/GPS-Products/u-blox-6-Modules.asp u-blox 6] modules avialable)&lt;br /&gt;
*http://www.comet.srl.ro/shop/info.html?ID=6195 ( Link error, you can find them in this list: http://www.comet.srl.ro/shop/statements.html?Type=MOD&amp;amp;Subtype=GPS )&lt;br /&gt;
*http://www.expedienttech.com/  ( Singapore )&lt;br /&gt;
*http://www.csgshop.com/category.php?id_category=16 (US UBLOX MAX-6Q)&lt;br /&gt;
&lt;br /&gt;
==Airspeed Sensors==&lt;br /&gt;
&lt;br /&gt;
Eagle Tree Systems makes a small standalone airspeed sensor that can be connected via i2c. They also sell pitot tubes standalone for other differential pressure sensors. For integration, please see [[Sensors/Airspeed]].&lt;br /&gt;
*[http://www.eagletreesystems.com/Standalone/standalone.htm Eagle Tree Systems] (Also available from a number of distributors)&lt;br /&gt;
&lt;br /&gt;
[[Category:Hardware]] [[Category:User_Documentation]]&lt;/div&gt;</summary>
		<author><name>TilmanBaumann</name></author>
	</entry>
	<entry>
		<id>http://wiki.paparazziuav.org/w/index.php?title=Get_Hardware&amp;diff=11837</id>
		<title>Get Hardware</title>
		<link rel="alternate" type="text/html" href="http://wiki.paparazziuav.org/w/index.php?title=Get_Hardware&amp;diff=11837"/>
		<updated>2012-03-05T10:32:09Z</updated>

		<summary type="html">&lt;p&gt;TilmanBaumann: /* Sparkfun */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;As an open-source project, all source code and hardware plans are [https://github.com/paparazzi/paparazzi-hardware freely available on GitHub] for anyone to produce, use, modify, and redistribute in accordance with the [http://www.gnu.org/licenses/gpl.txt GPL License Agreement] which requires only that the open-source nature of the project be maintained by all who redistribute it.&lt;br /&gt;
&lt;br /&gt;
We encourage the distribution of hardware for profit or otherwise and invite any users with paparazzi-related hardware to post links and purchasing information on this page.  Please use the [[Talk:Get_Hardware&amp;amp;action=edit|Discussion Tab]] to describe your experiences with any of these vendors.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;hr&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br style=&amp;quot;clear:both&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;br style=&amp;quot;clear:both&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= [http://aerofu.com [[image:aerofu_logo.png]]  Aerofu.com ] =&lt;br /&gt;
&lt;br /&gt;
Low cost Paparazzi hardware from Australia. &lt;br /&gt;
Licenced to export to [http://aerofu.com/index.php?main_page=page&amp;amp;id=2 33 countries], including Europe and North America. Recentry restocked with:&lt;br /&gt;
&amp;lt;ul&amp;gt;&lt;br /&gt;
 &amp;lt;li&amp;gt;&lt;br /&gt;
[http://www.aerofu.com/index.php?main_page=product_info&amp;amp;cPath=11&amp;amp;products_id=30 Tiny] &lt;br /&gt;
and&lt;br /&gt;
[http://www.aerofu.com/index.php?main_page=product_info&amp;amp;cPath=11&amp;amp;products_id=31 TWOG]&lt;br /&gt;
autopilots.&lt;br /&gt;
 &amp;lt;/li&amp;gt;&lt;br /&gt;
 &amp;lt;li&amp;gt;&lt;br /&gt;
Complete Kits ([http://www.aerofu.com/index.php?main_page=product_info&amp;amp;cPath=11&amp;amp;products_id=48 Tiny] or [http://www.aerofu.com/index.php?main_page=product_info&amp;amp;cPath=11&amp;amp;products_id=49 TWOG] based).&lt;br /&gt;
 &amp;lt;/li&amp;gt;&lt;br /&gt;
 &amp;lt;li&amp;gt;&lt;br /&gt;
[http://www.aerofu.com/index.php?main_page=product_info&amp;amp;cPath=10&amp;amp;products_id=20 PPM Encoders] and [http://www.aerofu.com/index.php?main_page=product_info&amp;amp;cPath=8&amp;amp;products_id=44 IR Sensors] from the Paparazzi project.&lt;br /&gt;
 &amp;lt;/li&amp;gt;&lt;br /&gt;
 &amp;lt;li&amp;gt;&lt;br /&gt;
Inexpensive [http://www.aerofu.com/index.php?main_page=product_info&amp;amp;cPath=7&amp;amp;products_id=12 uBlox LEA-5H GPS units].&lt;br /&gt;
 &amp;lt;/li&amp;gt;&lt;br /&gt;
 &amp;lt;li&amp;gt;various PCBs&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;/ul&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= [http://chebuzz.com/paparazzi [[Image:CheBuzzPprz.gif]] CheBuzz Paparazzi] =&lt;br /&gt;
Due to an unexpected change in my &amp;quot;real&amp;quot; job, I will regrettably be returning to the United States in the near future.  As such, I will be closing my webshop for good.  It has been a pleasure getting to know so many paparazzi users and an honor to supply hardware to you.  Thanks for all the help and support I have received.&lt;br /&gt;
&lt;br /&gt;
I apologize for the short notice.  But I will be taking orders until Friday 24 September, so anybody wishing to purchase paparazzi equipment from my store will be able to do so until that time.&lt;br /&gt;
&lt;br /&gt;
Thankfully somebody has offered to step up and take my place.  I have been working with Chris and AeroFu (aerofu.com) and he has agreed to continue providing paparazzi hardware and to selling out the remainder of my inventory.  I am confident he will continue to provide a high level of service and support for those looking to get into the hobby and into the paparazzi project.&lt;br /&gt;
&lt;br /&gt;
Again, thanks to all and happy flying!&lt;br /&gt;
&lt;br /&gt;
Buzz &lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
&amp;lt;br style=&amp;quot;clear:both&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= [http://paparazzi.enac.fr/wiki/Get_Hardware#Transition_Robotics_Inc.___Lisa.2FL_STM32.2FOvero_autopilot__Lisa.2FL_STM32.2FOvero_autopilot JobyRobotics.com]  =&lt;br /&gt;
[[Image:JobyRobotics.jpg]] &lt;br /&gt;
Please see [http://paparazzi.enac.fr/wiki/Get_Hardware#Transition_Robotics_Inc.___Lisa.2FL_STM32.2FOvero_autopilot__Lisa.2FL_STM32.2FOvero_autopilot Transition Robotics Inc..]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br style=&amp;quot;clear:both&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;br style=&amp;quot;clear:both&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= [http://www.ppzuav.com/ [[Image:Ppzuav.jpg]]] PPZUAV.com [[Image:All ppz autopilots med.jpg|thumb|400px|Paparazzi controllers]] =&lt;br /&gt;
&amp;lt;h2&amp;gt;Providing professionally assembled and tested hardware for your Paparazzi Projects since 2007&amp;lt;/h2&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;&lt;br /&gt;
Confused what to buy? Just give us an email and we will help you decide ('''sales@ppzuav.com''').&lt;br /&gt;
&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;We make it simple. Each autopilot is &amp;lt;b&amp;gt;professionally assembled&amp;lt;/b&amp;gt; in a large factory by automated pick and place and reflow to ISO9000 standards. &lt;br /&gt;
To be sure yours will work we open every one and test before shipping. If it fails we don't sell it.&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;Our testing includes:&lt;br /&gt;
&amp;lt;ol&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;Burn in testing: We Power it with a current limited power supply to verify voltages and current draw&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;Load the usb bootloader so it can be programmed via USB&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;/ol&amp;gt;&lt;br /&gt;
&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;&lt;br /&gt;
Please eMail with any questions or special requests before you place your orders. We return emails as quickly as possible. If it's an easy question within hours. More complex or longer explanation requests may take some time to read then write your answer so be patient.&lt;br /&gt;
&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;&lt;br /&gt;
Visit the PPZUAZ [https://store.ppzuav.com WebStore] to see the latest offerings.&amp;lt;/b&amp;gt;&lt;br /&gt;
&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;&lt;br /&gt;
&amp;lt;h3&amp;gt;NEW ITEM:   [https://store.ppzuav.com/osc/product_info.php?products_id=139 Umarim] Finally fully factory assembled Umarim! Taking pre-orders now.&amp;lt;/h3&amp;gt;&lt;br /&gt;
&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;br style=&amp;quot;clear:both&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;br style=&amp;quot;clear:both&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= [http://transition-robotics.com [[Image:Transition_Robotics_Logo.png|100px]] Transition Robotics Inc.] [[Image:Lisa_M_V1_0_top_with_coin.jpg|thumb|Lisa/M V1.0 top view]][[Image:Lisa_M_V1_0_bottom_with_coin.jpg|thumb|Lisa/M V1.0 bottom view]] =&lt;br /&gt;
Transition Robotics Inc. is a young company developing new solutions for and with Paparazzi UAV platform. Their core product is the [[Image:Quadshot_Logo.jpg|100px|link=http://thequadshot.com|Quadshot]], a VTOL transitioning aircraft.&lt;br /&gt;
&lt;br /&gt;
Beside Quadshot itself they develop and provide hardware and software that is especially optimized for Paparazzi, such as the Lisa Autopilots, Aspirin IMUs and associated accessories.&lt;br /&gt;
&lt;br /&gt;
They have a shop on their [http://thequadshot.com Quadshot product page].&lt;br /&gt;
&lt;br /&gt;
As of February 2012, Transition Robotics, Inc. has acquired all IP and Paparazzi related inventory from Joby Robotics. We are thankful to Joby Robotics for their important and faithful support of Paparazzi related hardware projects, and hope to carry on this tradition. Hardware formerly supplied by Joby Robotics may now be purchased at the [http://thequadshot.com/collections/all Transition Robotics/Quadshot webstore.]&lt;br /&gt;
&lt;br /&gt;
The [http://thequadshot.com/collections/all TRI/Quadshot Webstore] also stocks pre-crimped Molex Picoblade wires and connector housings.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br style=&amp;quot;clear:both&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Other =&lt;br /&gt;
&lt;br /&gt;
==[http://www.olimex.com/pcb/ Olimex]==&lt;br /&gt;
[[image:pcb-green.jpg|thumb|250px|Olimex PCBs]]&lt;br /&gt;
*Fast PCB Prototypes [http://www.olimex.com/pcb/ www.olimex.com/pcb]&lt;br /&gt;
*Development Boards [http://www.olimex.com/dev/index.html www.olimex.com/dev/]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br style=&amp;quot;clear:both&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;br style=&amp;quot;clear:both&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==[http://www.sparkfun.com Sparkfun]==&lt;br /&gt;
[[image:P1030095.jpg|thumb|250px|Sparkfun]]&lt;br /&gt;
Sparkfun is a great source of miscellaneous electronics like:&lt;br /&gt;
* Development boards&lt;br /&gt;
* GPS&lt;br /&gt;
* Gyros&lt;br /&gt;
* Accelerometers&lt;br /&gt;
* Pressure sensors&lt;br /&gt;
* Ultrasonic distance sensors&lt;br /&gt;
* Temperature/humidity sensors&lt;br /&gt;
* USB to Serial converters&lt;br /&gt;
* LEDs&lt;br /&gt;
* Etc.&lt;br /&gt;
They also have an inexpensive PCB service, [http://batchpcb.com/index.php/Products BatchPCB].&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br style=&amp;quot;clear:both&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;br style=&amp;quot;clear:both&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''Sparkfun distributors in Europe'''&lt;br /&gt;
&lt;br /&gt;
Incomplete list.&lt;br /&gt;
*http://www.lipoly.de/index.php?main_page=index&amp;amp;cPath=880_883&amp;amp;language=en&lt;br /&gt;
*http://www.watterott.com/en/SparkFun&lt;br /&gt;
&lt;br /&gt;
==u-Blox GPS receivers==&lt;br /&gt;
&lt;br /&gt;
There seems to be a few alternative source of u-Blox GPS out there. They are considerably cheaper then the samples u-Blox offers&lt;br /&gt;
&lt;br /&gt;
If you do order from any of them, please update this page with your feedback.&lt;br /&gt;
&lt;br /&gt;
Here's a few link worth exploring:&lt;br /&gt;
&lt;br /&gt;
*[http://www.navilock.de/produkte/gruppen/13/Boards_und_Module Navilock] (also available on [http://www.amazon.de Amazon.de] by searching for Navilock)&lt;br /&gt;
*http://www.rfdesign.co.za/pages/5645456/Products/GPS-Products/Antaris-4-Modules.asp (Also [http://www.rfdesign.co.za/pages/5645456/Products/GPS-Products/u-blox-5-Modules.asp u-blox 5] and [http://www.rfdesign.co.za/pages/5645456/Products/GPS-Products/u-blox-6-Modules.asp u-blox 6] modules avialable)&lt;br /&gt;
*http://www.comet.srl.ro/shop/info.html?ID=6195 ( Link error, you can find them in this list: http://www.comet.srl.ro/shop/statements.html?Type=MOD&amp;amp;Subtype=GPS )&lt;br /&gt;
*http://www.expedienttech.com/  ( Singapore )&lt;br /&gt;
*http://www.csgshop.com/category.php?id_category=16 (US UBLOX MAX-6Q)&lt;br /&gt;
&lt;br /&gt;
==Airspeed Sensors==&lt;br /&gt;
&lt;br /&gt;
Eagle Tree Systems makes a small standalone airspeed sensor that can be connected via i2c. They also sell pitot tubes standalone for other differential pressure sensors. For integration, please see [[Sensors/Airspeed]].&lt;br /&gt;
*[http://www.eagletreesystems.com/Standalone/standalone.htm Eagle Tree Systems] (Also available from a number of distributors)&lt;br /&gt;
&lt;br /&gt;
[[Category:Hardware]] [[Category:User_Documentation]]&lt;/div&gt;</summary>
		<author><name>TilmanBaumann</name></author>
	</entry>
	<entry>
		<id>http://wiki.paparazziuav.org/w/index.php?title=Get_Hardware&amp;diff=11836</id>
		<title>Get Hardware</title>
		<link rel="alternate" type="text/html" href="http://wiki.paparazziuav.org/w/index.php?title=Get_Hardware&amp;diff=11836"/>
		<updated>2012-03-05T10:28:27Z</updated>

		<summary type="html">&lt;p&gt;TilmanBaumann: /* u-Blox GPS receivers */ Added csgshop.com&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;As an open-source project, all source code and hardware plans are [https://github.com/paparazzi/paparazzi-hardware freely available on GitHub] for anyone to produce, use, modify, and redistribute in accordance with the [http://www.gnu.org/licenses/gpl.txt GPL License Agreement] which requires only that the open-source nature of the project be maintained by all who redistribute it.&lt;br /&gt;
&lt;br /&gt;
We encourage the distribution of hardware for profit or otherwise and invite any users with paparazzi-related hardware to post links and purchasing information on this page.  Please use the [[Talk:Get_Hardware&amp;amp;action=edit|Discussion Tab]] to describe your experiences with any of these vendors.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;hr&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br style=&amp;quot;clear:both&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;br style=&amp;quot;clear:both&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= [http://aerofu.com [[image:aerofu_logo.png]]  Aerofu.com ] =&lt;br /&gt;
&lt;br /&gt;
Low cost Paparazzi hardware from Australia. &lt;br /&gt;
Licenced to export to [http://aerofu.com/index.php?main_page=page&amp;amp;id=2 33 countries], including Europe and North America. Recentry restocked with:&lt;br /&gt;
&amp;lt;ul&amp;gt;&lt;br /&gt;
 &amp;lt;li&amp;gt;&lt;br /&gt;
[http://www.aerofu.com/index.php?main_page=product_info&amp;amp;cPath=11&amp;amp;products_id=30 Tiny] &lt;br /&gt;
and&lt;br /&gt;
[http://www.aerofu.com/index.php?main_page=product_info&amp;amp;cPath=11&amp;amp;products_id=31 TWOG]&lt;br /&gt;
autopilots.&lt;br /&gt;
 &amp;lt;/li&amp;gt;&lt;br /&gt;
 &amp;lt;li&amp;gt;&lt;br /&gt;
Complete Kits ([http://www.aerofu.com/index.php?main_page=product_info&amp;amp;cPath=11&amp;amp;products_id=48 Tiny] or [http://www.aerofu.com/index.php?main_page=product_info&amp;amp;cPath=11&amp;amp;products_id=49 TWOG] based).&lt;br /&gt;
 &amp;lt;/li&amp;gt;&lt;br /&gt;
 &amp;lt;li&amp;gt;&lt;br /&gt;
[http://www.aerofu.com/index.php?main_page=product_info&amp;amp;cPath=10&amp;amp;products_id=20 PPM Encoders] and [http://www.aerofu.com/index.php?main_page=product_info&amp;amp;cPath=8&amp;amp;products_id=44 IR Sensors] from the Paparazzi project.&lt;br /&gt;
 &amp;lt;/li&amp;gt;&lt;br /&gt;
 &amp;lt;li&amp;gt;&lt;br /&gt;
Inexpensive [http://www.aerofu.com/index.php?main_page=product_info&amp;amp;cPath=7&amp;amp;products_id=12 uBlox LEA-5H GPS units].&lt;br /&gt;
 &amp;lt;/li&amp;gt;&lt;br /&gt;
 &amp;lt;li&amp;gt;various PCBs&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;/ul&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= [http://chebuzz.com/paparazzi [[Image:CheBuzzPprz.gif]] CheBuzz Paparazzi] =&lt;br /&gt;
Due to an unexpected change in my &amp;quot;real&amp;quot; job, I will regrettably be returning to the United States in the near future.  As such, I will be closing my webshop for good.  It has been a pleasure getting to know so many paparazzi users and an honor to supply hardware to you.  Thanks for all the help and support I have received.&lt;br /&gt;
&lt;br /&gt;
I apologize for the short notice.  But I will be taking orders until Friday 24 September, so anybody wishing to purchase paparazzi equipment from my store will be able to do so until that time.&lt;br /&gt;
&lt;br /&gt;
Thankfully somebody has offered to step up and take my place.  I have been working with Chris and AeroFu (aerofu.com) and he has agreed to continue providing paparazzi hardware and to selling out the remainder of my inventory.  I am confident he will continue to provide a high level of service and support for those looking to get into the hobby and into the paparazzi project.&lt;br /&gt;
&lt;br /&gt;
Again, thanks to all and happy flying!&lt;br /&gt;
&lt;br /&gt;
Buzz &lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
&amp;lt;br style=&amp;quot;clear:both&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= [http://paparazzi.enac.fr/wiki/Get_Hardware#Transition_Robotics_Inc.___Lisa.2FL_STM32.2FOvero_autopilot__Lisa.2FL_STM32.2FOvero_autopilot JobyRobotics.com]  =&lt;br /&gt;
[[Image:JobyRobotics.jpg]] &lt;br /&gt;
Please see [http://paparazzi.enac.fr/wiki/Get_Hardware#Transition_Robotics_Inc.___Lisa.2FL_STM32.2FOvero_autopilot__Lisa.2FL_STM32.2FOvero_autopilot Transition Robotics Inc..]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br style=&amp;quot;clear:both&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;br style=&amp;quot;clear:both&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= [http://www.ppzuav.com/ [[Image:Ppzuav.jpg]]] PPZUAV.com [[Image:All ppz autopilots med.jpg|thumb|400px|Paparazzi controllers]] =&lt;br /&gt;
&amp;lt;h2&amp;gt;Providing professionally assembled and tested hardware for your Paparazzi Projects since 2007&amp;lt;/h2&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;&lt;br /&gt;
Confused what to buy? Just give us an email and we will help you decide ('''sales@ppzuav.com''').&lt;br /&gt;
&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;We make it simple. Each autopilot is &amp;lt;b&amp;gt;professionally assembled&amp;lt;/b&amp;gt; in a large factory by automated pick and place and reflow to ISO9000 standards. &lt;br /&gt;
To be sure yours will work we open every one and test before shipping. If it fails we don't sell it.&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;Our testing includes:&lt;br /&gt;
&amp;lt;ol&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;Burn in testing: We Power it with a current limited power supply to verify voltages and current draw&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;Load the usb bootloader so it can be programmed via USB&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;/ol&amp;gt;&lt;br /&gt;
&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;&lt;br /&gt;
Please eMail with any questions or special requests before you place your orders. We return emails as quickly as possible. If it's an easy question within hours. More complex or longer explanation requests may take some time to read then write your answer so be patient.&lt;br /&gt;
&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;&lt;br /&gt;
Visit the PPZUAZ [https://store.ppzuav.com WebStore] to see the latest offerings.&amp;lt;/b&amp;gt;&lt;br /&gt;
&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;&lt;br /&gt;
&amp;lt;h3&amp;gt;NEW ITEM:   [https://store.ppzuav.com/osc/product_info.php?products_id=139 Umarim] Finally fully factory assembled Umarim! Taking pre-orders now.&amp;lt;/h3&amp;gt;&lt;br /&gt;
&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;br style=&amp;quot;clear:both&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;br style=&amp;quot;clear:both&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= [http://transition-robotics.com [[Image:Transition_Robotics_Logo.png|100px]] Transition Robotics Inc.] [[Image:Lisa_M_V1_0_top_with_coin.jpg|thumb|Lisa/M V1.0 top view]][[Image:Lisa_M_V1_0_bottom_with_coin.jpg|thumb|Lisa/M V1.0 bottom view]] =&lt;br /&gt;
Transition Robotics Inc. is a young company developing new solutions for and with Paparazzi UAV platform. Their core product is the [[Image:Quadshot_Logo.jpg|100px|link=http://thequadshot.com|Quadshot]], a VTOL transitioning aircraft.&lt;br /&gt;
&lt;br /&gt;
Beside Quadshot itself they develop and provide hardware and software that is especially optimized for Paparazzi, such as the Lisa Autopilots, Aspirin IMUs and associated accessories.&lt;br /&gt;
&lt;br /&gt;
They have a shop on their [http://thequadshot.com Quadshot product page].&lt;br /&gt;
&lt;br /&gt;
As of February 2012, Transition Robotics, Inc. has acquired all IP and Paparazzi related inventory from Joby Robotics. We are thankful to Joby Robotics for their important and faithful support of Paparazzi related hardware projects, and hope to carry on this tradition. Hardware formerly supplied by Joby Robotics may now be purchased at the [http://thequadshot.com/collections/all Transition Robotics/Quadshot webstore.]&lt;br /&gt;
&lt;br /&gt;
The [http://thequadshot.com/collections/all TRI/Quadshot Webstore] also stocks pre-crimped Molex Picoblade wires and connector housings.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br style=&amp;quot;clear:both&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Other =&lt;br /&gt;
&lt;br /&gt;
==[http://www.olimex.com/pcb/ Olimex]==&lt;br /&gt;
[[image:pcb-green.jpg|thumb|250px|Olimex PCBs]]&lt;br /&gt;
*Fast PCB Prototypes [http://www.olimex.com/pcb/ www.olimex.com/pcb]&lt;br /&gt;
*Development Boards [http://www.olimex.com/dev/index.html www.olimex.com/dev/]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br style=&amp;quot;clear:both&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;br style=&amp;quot;clear:both&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==[http://www.sparkfun.com Sparkfun]==&lt;br /&gt;
[[image:P1030095.jpg|thumb|250px|Sparkfun]]&lt;br /&gt;
Sparkfun is a great source of miscellaneous electronics like:&lt;br /&gt;
* Development boards&lt;br /&gt;
* GPS&lt;br /&gt;
* Gyros&lt;br /&gt;
* Accelerometers&lt;br /&gt;
* Pressure sensors&lt;br /&gt;
* Ultrasonic distance sensors&lt;br /&gt;
* Temperature/humidity sensors&lt;br /&gt;
* USB to Serial converters&lt;br /&gt;
* LEDs&lt;br /&gt;
* Etc.&lt;br /&gt;
They also have an inexpensive PCB service, [http://batchpcb.com/index.php/Products BatchPCB].&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br style=&amp;quot;clear:both&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;br style=&amp;quot;clear:both&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==u-Blox GPS receivers==&lt;br /&gt;
&lt;br /&gt;
There seems to be a few alternative source of u-Blox GPS out there. They are considerably cheaper then the samples u-Blox offers&lt;br /&gt;
&lt;br /&gt;
If you do order from any of them, please update this page with your feedback.&lt;br /&gt;
&lt;br /&gt;
Here's a few link worth exploring:&lt;br /&gt;
&lt;br /&gt;
*[http://www.navilock.de/produkte/gruppen/13/Boards_und_Module Navilock] (also available on [http://www.amazon.de Amazon.de] by searching for Navilock)&lt;br /&gt;
*http://www.rfdesign.co.za/pages/5645456/Products/GPS-Products/Antaris-4-Modules.asp (Also [http://www.rfdesign.co.za/pages/5645456/Products/GPS-Products/u-blox-5-Modules.asp u-blox 5] and [http://www.rfdesign.co.za/pages/5645456/Products/GPS-Products/u-blox-6-Modules.asp u-blox 6] modules avialable)&lt;br /&gt;
*http://www.comet.srl.ro/shop/info.html?ID=6195 ( Link error, you can find them in this list: http://www.comet.srl.ro/shop/statements.html?Type=MOD&amp;amp;Subtype=GPS )&lt;br /&gt;
*http://www.expedienttech.com/  ( Singapore )&lt;br /&gt;
*http://www.csgshop.com/category.php?id_category=16 (US UBLOX MAX-6Q)&lt;br /&gt;
&lt;br /&gt;
==Airspeed Sensors==&lt;br /&gt;
&lt;br /&gt;
Eagle Tree Systems makes a small standalone airspeed sensor that can be connected via i2c. They also sell pitot tubes standalone for other differential pressure sensors. For integration, please see [[Sensors/Airspeed]].&lt;br /&gt;
*[http://www.eagletreesystems.com/Standalone/standalone.htm Eagle Tree Systems] (Also available from a number of distributors)&lt;br /&gt;
&lt;br /&gt;
[[Category:Hardware]] [[Category:User_Documentation]]&lt;/div&gt;</summary>
		<author><name>TilmanBaumann</name></author>
	</entry>
</feed>