1
0
mirror of https://bitbucket.org/librepilot/librepilot.git synced 2025-01-18 03:52:11 +01:00

Merge branch 'master' into os/features/pid-tuning-from-transmitter

This commit is contained in:
Oleg Semyonov 2012-01-07 01:22:30 +02:00
commit 99e73a4ae9
28 changed files with 2237 additions and 41 deletions

View File

@ -622,6 +622,8 @@ void ConfigInputWidget::setChannel(int newChan)
m_config->wzText->setText(QString(tr("Please enable throttle hold mode and move the collective pitch stick"))); m_config->wzText->setText(QString(tr("Please enable throttle hold mode and move the collective pitch stick")));
else if (newChan == ManualControlSettings::CHANNELGROUPS_FLIGHTMODE) else if (newChan == ManualControlSettings::CHANNELGROUPS_FLIGHTMODE)
m_config->wzText->setText(QString(tr("Please flick the flight mode switch. For switches you may have to repeat this rapidly."))); m_config->wzText->setText(QString(tr("Please flick the flight mode switch. For switches you may have to repeat this rapidly.")));
else if((transmitterType == heli) && (newChan == ManualControlSettings::CHANNELGROUPS_THROTTLE))
m_config->wzText->setText(QString(tr("Please disable throttle hold mode and move the throttle stick")));
else else
m_config->wzText->setText(QString(tr("Please move each control once at a time according to the instructions and picture below.\n\n" m_config->wzText->setText(QString(tr("Please move each control once at a time according to the instructions and picture below.\n\n"
"Move the %1 stick")).arg(manualSettingsObj->getField("ChannelGroups")->getElementNames().at(newChan))); "Move the %1 stick")).arg(manualSettingsObj->getField("ChannelGroups")->getElementNames().at(newChan)));

View File

@ -20,7 +20,7 @@
<string>Form</string> <string>Form</string>
</property> </property>
<property name="styleSheet"> <property name="styleSheet">
<string notr="true">background:transparent</string> <string notr="true"/>
</property> </property>
<layout class="QVBoxLayout" name="verticalLayout_2"> <layout class="QVBoxLayout" name="verticalLayout_2">
<property name="spacing"> <property name="spacing">
@ -30,42 +30,41 @@
<number>5</number> <number>5</number>
</property> </property>
<item> <item>
<layout class="QVBoxLayout" name="verticalLayout"> <layout class="QVBoxLayout" name="verticalLayout"/>
</item>
<item>
<layout class="QHBoxLayout" name="horizontalLayout">
<item> <item>
<layout class="QHBoxLayout" name="horizontalLayout"> <widget class="QCheckBox" name="checkBoxGcsControl">
<item> <property name="text">
<widget class="QCheckBox" name="checkBoxGcsControl"> <string>GCS Control</string>
<property name="text"> </property>
<string>GCS Control</string> </widget>
</property> </item>
</widget> <item>
</item> <widget class="QCheckBox" name="checkBoxArmed">
<item> <property name="text">
<widget class="QCheckBox" name="checkBoxArmed"> <string>Armed</string>
<property name="text"> </property>
<string>Armed</string> </widget>
</property> </item>
</widget> <item>
</item> <widget class="QLabel" name="label">
<item> <property name="text">
<widget class="QLabel" name="label"> <string>Flight Mode:</string>
<property name="text"> </property>
<string>Flight Mode:</string> <property name="alignment">
</property> <set>Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set>
<property name="alignment"> </property>
<set>Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set> </widget>
</property> </item>
</widget> <item>
</item> <widget class="QComboBox" name="comboBoxFlightMode"/>
<item>
<widget class="QComboBox" name="comboBoxFlightMode"/>
</item>
</layout>
</item> </item>
</layout> </layout>
</item> </item>
<item> <item>
<layout class="QGridLayout" name="gridLayout" columnstretch="0,0,0,0"> <layout class="QGridLayout" name="gridLayout" columnstretch="0,0,0">
<property name="horizontalSpacing"> <property name="horizontalSpacing">
<number>10</number> <number>10</number>
</property> </property>
@ -121,6 +120,9 @@
<height>100</height> <height>100</height>
</size> </size>
</property> </property>
<property name="styleSheet">
<string notr="true">background:transparent</string>
</property>
</widget> </widget>
</item> </item>
</layout> </layout>

View File

@ -67,7 +67,6 @@ GCSControlGadgetWidget::GCSControlGadgetWidget(QWidget *parent) : QLabel(parent)
// Connect object updated event from UAVObject to also update check boxes and dropdown // Connect object updated event from UAVObject to also update check boxes and dropdown
connect(obj, SIGNAL(objectUpdated(UAVObject*)), this, SLOT(mccChanged(UAVObject*))); connect(obj, SIGNAL(objectUpdated(UAVObject*)), this, SLOT(mccChanged(UAVObject*)));
leftX = 0; leftX = 0;
leftY = 0; leftY = 0;
rightX = 0; rightX = 0;

View File

@ -627,10 +627,8 @@ void UploaderGadgetWidget::versionMatchCheck()
qDebug()<<QDate::fromString(boardDescription.buildDate.mid(0,8),"yyyyMMdd"); qDebug()<<QDate::fromString(boardDescription.buildDate.mid(0,8),"yyyyMMdd");
qDebug()<<QDate::fromString(gcsDescription.mid(gcsDescription.indexOf(" ")+1,8),"yyyyMMdd"); qDebug()<<QDate::fromString(gcsDescription.mid(gcsDescription.indexOf(" ")+1,8),"yyyyMMdd");
qDebug()<<QDate::fromString(boardDescription.buildDate.mid(0,8),"yyyyMMdd").daysTo(QDate::fromString(gcsDescription.mid(gcsDescription.indexOf(" ")+1,8),"yyyyMMdd")); qDebug()<<QDate::fromString(boardDescription.buildDate.mid(0,8),"yyyyMMdd").daysTo(QDate::fromString(gcsDescription.mid(gcsDescription.indexOf(" ")+1,8),"yyyyMMdd"));
if(QDate::fromString(boardDescription.buildDate.mid(0,8),"yyyyMMdd").daysTo(QDate::fromString(gcsDescription.mid(gcsDescription.indexOf(" ")+1,8),"yyyyMMdd"))>0) msg->showMessage(QString(tr("GCS and FW versions do not match which can cause configuration problems.")) + " \n" +
msg->showMessage(QString("Incompatible GCS and FW detected, you should upgrade your board's Firmware to %1 version.").arg(gcsDescription)); QString(tr("GCS Versions: ")) + gcsDescription + " \n" +
else QString(tr("FW Versions: ")) + boardDescription.gitTag+":"+boardDescription.buildDate);
msg->showMessage(QString("Incompatible GCS and FW detected, you should upgrade your GCS to %1 version.").arg(boardDescription.gitTag+":"+boardDescription.buildDate));
} }
} }

View File

@ -0,0 +1,18 @@
------------------------------------------------------------------------------------------
Gerber File Extension Report For: Spektrum Adapter SMD.GBR 2/11/2011 2:24:15 PM
------------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------
Layer Extension Layer Description
------------------------------------------------------------------------------------------
.GTL Top Layer
.GPB Bottom Pad Master
.GPT Top Pad Master
.GTP Top Paste
.GTS Top Solder
.GM5 Board Dimensions
.GM13 Mechanical 13
.GM15 Mechanical 15
.GKO Keep-Out Layer
------------------------------------------------------------------------------------------

View File

@ -0,0 +1,26 @@
%FSLAX25Y25*%
%MOIN*%
G70*
G01*
G75*
G04 Layer_Color=16711935*
%ADD10C,0.01000*%
%ADD11R,0.07087X0.04724*%
%ADD12R,0.06102X0.02362*%
%ADD13R,0.04331X0.05512*%
%ADD14R,0.03543X0.02559*%
%ADD15R,0.03543X0.03150*%
%ADD16R,0.06299X0.02756*%
%ADD17R,0.07480X0.04331*%
%ADD18R,0.02047X0.06510*%
%ADD19R,0.02900X0.06510*%
%ADD20R,0.07488X0.05126*%
%ADD21R,0.06504X0.02764*%
%ADD22R,0.05131X0.06312*%
%ADD23R,0.04143X0.03159*%
%ADD24R,0.04343X0.03950*%
%ADD25R,0.07099X0.03556*%
%ADD26R,0.08280X0.05131*%
%ADD27C,0.00100*%
%ADD28C,0.00394*%
M02*

View File

@ -0,0 +1,59 @@
%FSLAX25Y25*%
%MOIN*%
G70*
G01*
G75*
G04 Layer_Color=16711935*
%ADD10C,0.01000*%
%ADD11R,0.07087X0.04724*%
%ADD12R,0.06102X0.02362*%
%ADD13R,0.04331X0.05512*%
%ADD14R,0.03543X0.02559*%
%ADD15R,0.03543X0.03150*%
%ADD16R,0.06299X0.02756*%
%ADD17R,0.07480X0.04331*%
%ADD18R,0.02047X0.06510*%
%ADD19R,0.02900X0.06510*%
%ADD20R,0.07488X0.05126*%
%ADD21R,0.06504X0.02764*%
%ADD22R,0.05131X0.06312*%
%ADD23R,0.04143X0.03159*%
%ADD24R,0.04343X0.03950*%
%ADD25R,0.07099X0.03556*%
%ADD26R,0.08280X0.05131*%
%ADD27C,0.00100*%
%ADD28C,0.00394*%
D28*
X32669Y2646D02*
X41331D01*
X32669Y8354D02*
X41331D01*
Y2646D02*
Y8354D01*
X32669Y2646D02*
Y8354D01*
X41843Y10148D02*
Y22352D01*
X34757Y10148D02*
Y22352D01*
Y10148D02*
X41843D01*
X34757Y22352D02*
X41843D01*
X34169Y30354D02*
X42831D01*
X34169Y24646D02*
X42831D01*
X34169D02*
Y30354D01*
X42831Y24646D02*
Y30354D01*
X26630Y22555D02*
X30370D01*
X26630Y29445D02*
X30370D01*
X26630Y22555D02*
Y29445D01*
X30370Y22555D02*
Y29445D01*
M02*

View File

@ -0,0 +1,75 @@
%FSLAX25Y25*%
%MOIN*%
G70*
G01*
G75*
G04 Layer_Color=32768*
%ADD10C,0.01000*%
%ADD11R,0.07087X0.04724*%
%ADD12R,0.06102X0.02362*%
%ADD13R,0.04331X0.05512*%
%ADD14R,0.03543X0.02559*%
%ADD15R,0.03543X0.03150*%
%ADD16R,0.06299X0.02756*%
%ADD17R,0.07480X0.04331*%
%ADD18R,0.02047X0.06510*%
%ADD19R,0.02900X0.06510*%
%ADD20R,0.07488X0.05126*%
%ADD21R,0.06504X0.02764*%
%ADD22R,0.05131X0.06312*%
%ADD23R,0.04143X0.03159*%
%ADD24R,0.04343X0.03950*%
%ADD25R,0.07099X0.03556*%
%ADD26R,0.08280X0.05131*%
%ADD27C,0.00100*%
%ADD28C,0.00394*%
D28*
X37000Y3531D02*
Y7468D01*
X35032Y5500D02*
X38969D01*
X31488Y2350D02*
X42512D01*
X31488Y8650D02*
X42512D01*
Y2350D02*
Y8650D01*
X31488Y2350D02*
Y8650D01*
X45190Y9754D02*
Y22746D01*
X31410Y9754D02*
Y22746D01*
Y9754D02*
X45190D01*
X31410Y22746D02*
X45190D01*
X36331Y16250D02*
X40268D01*
X38300Y14281D02*
Y18218D01*
X38500Y25532D02*
Y29469D01*
X36531Y27500D02*
X40468D01*
X32988Y30650D02*
X44012D01*
X32988Y24350D02*
X44012D01*
X32988D02*
Y30650D01*
X44012Y24350D02*
Y30650D01*
X26335Y21276D02*
X30665D01*
X26335Y30724D02*
X30665D01*
X26335Y21276D02*
Y30724D01*
X30665Y21276D02*
Y30724D01*
X28500Y24130D02*
Y27870D01*
X26630Y26000D02*
X30370D01*
M02*

View File

@ -0,0 +1,33 @@
%FSLAX25Y25*%
%MOIN*%
G70*
G01*
G75*
G04 Layer_Color=16711935*
%ADD10C,0.01000*%
%ADD11R,0.07087X0.04724*%
%ADD12R,0.06102X0.02362*%
%ADD13R,0.04331X0.05512*%
%ADD14R,0.03543X0.02559*%
%ADD15R,0.03543X0.03150*%
%ADD16R,0.06299X0.02756*%
%ADD17R,0.07480X0.04331*%
%ADD18R,0.02047X0.06510*%
%ADD19R,0.02900X0.06510*%
%ADD20R,0.07488X0.05126*%
%ADD21R,0.06504X0.02764*%
%ADD22R,0.05131X0.06312*%
%ADD23R,0.04143X0.03159*%
%ADD24R,0.04343X0.03950*%
%ADD25R,0.07099X0.03556*%
%ADD26R,0.08280X0.05131*%
%ADD27C,0.00100*%
D27*
X0Y0D02*
Y34000D01*
Y0D02*
X69500D01*
Y34000D01*
X0D02*
X69500D01*
M02*

View File

@ -0,0 +1,17 @@
%FSLAX25Y25*%
%MOIN*%
G70*
G01*
G75*
G04 Layer_Color=255*
%ADD10C,0.01000*%
%ADD11R,0.07087X0.04724*%
%ADD12R,0.06102X0.02362*%
%ADD13R,0.04331X0.05512*%
%ADD14R,0.03543X0.02559*%
%ADD15R,0.03543X0.03150*%
%ADD16R,0.06299X0.02756*%
%ADD17R,0.07480X0.04331*%
%ADD18R,0.02047X0.06510*%
%ADD19R,0.02900X0.06510*%
M02*

View File

@ -0,0 +1,67 @@
%FSLAX25Y25*%
%MOIN*%
G70*
G01*
G75*
%ADD10C,0.01000*%
%ADD11R,0.07087X0.04724*%
%ADD12R,0.06102X0.02362*%
%ADD13R,0.04331X0.05512*%
%ADD14R,0.03543X0.02559*%
%ADD15R,0.03543X0.03150*%
%ADD16R,0.06299X0.02756*%
%ADD17R,0.07480X0.04331*%
%ADD18R,0.02047X0.06510*%
%ADD19R,0.02900X0.06510*%
D11*
X65747Y28274D02*
D03*
Y6226D02*
D03*
D12*
X50590Y23155D02*
D03*
Y15281D02*
D03*
Y11344D02*
D03*
Y19218D02*
D03*
D13*
X39953Y5500D02*
D03*
X34047D02*
D03*
X35547Y27500D02*
D03*
X41453D02*
D03*
D14*
X43024Y12510D02*
D03*
Y16250D02*
D03*
Y19990D02*
D03*
X33576D02*
D03*
Y12510D02*
D03*
D15*
X28500Y23244D02*
D03*
Y28756D02*
D03*
D16*
X21500Y22906D02*
D03*
Y17000D02*
D03*
Y11095D02*
D03*
D17*
X6500Y30583D02*
D03*
Y3417D02*
D03*
M02*

View File

@ -0,0 +1,486 @@
%FSLAX25Y25*%
%MOIN*%
G70*
G01*
G75*
G04 Layer_Physical_Order=1*
G04 Layer_Color=255*
%ADD10C,0.01000*%
%ADD11R,0.07087X0.04724*%
%ADD12R,0.06102X0.02362*%
%ADD13R,0.04331X0.05512*%
%ADD14R,0.03543X0.02559*%
%ADD15R,0.03543X0.03150*%
%ADD16R,0.06299X0.02756*%
%ADD17R,0.07480X0.04331*%
%ADD18R,0.02047X0.06510*%
%ADD19R,0.02900X0.06510*%
G36*
X69000Y31436D02*
X61404D01*
Y25111D01*
X69000D01*
Y9389D01*
X61404D01*
Y3064D01*
X69000D01*
Y500D01*
X11040D01*
Y6383D01*
X1960D01*
Y500D01*
X500D01*
Y33600D01*
X1960D01*
Y33600D01*
Y33548D01*
X1960Y33176D01*
X1960Y33176D01*
X1960D01*
Y27617D01*
X11040D01*
Y33176D01*
X11040Y33176D01*
D01*
D01*
X11040Y33548D01*
D01*
X11092Y33600D01*
X18825D01*
X18892Y33544D01*
X19098Y33046D01*
X12376Y26324D01*
X12214Y26126D01*
X12093Y25900D01*
X12019Y25655D01*
X11994Y25400D01*
Y15700D01*
X12019Y15445D01*
X12093Y15200D01*
X12214Y14974D01*
X12214Y14974D01*
X12214Y14974D01*
X12376Y14776D01*
X14192Y12961D01*
Y12956D01*
Y12956D01*
X14239Y12913D01*
X15901Y11251D01*
X15901Y11251D01*
X15900Y11250D01*
X15929Y11223D01*
X16982Y10171D01*
X16982Y10171D01*
X17180Y10008D01*
X17406Y9888D01*
X17550Y9844D01*
Y8917D01*
X25450D01*
Y13272D01*
X19792D01*
X19728Y13279D01*
Y13279D01*
X19724Y13274D01*
X19144Y13307D01*
X18567Y13405D01*
X18005Y13567D01*
X17464Y13791D01*
X16952Y14074D01*
X16475Y14413D01*
X16098Y14749D01*
X16041Y14806D01*
X16041Y14806D01*
X16041Y14806D01*
X14606Y16241D01*
Y24859D01*
X20741Y30994D01*
X38487D01*
Y23944D01*
X40646D01*
Y22070D01*
X40453D01*
Y17911D01*
X44932D01*
Y17499D01*
X44957Y17244D01*
X45032Y16999D01*
X45152Y16773D01*
X45315Y16575D01*
X45946Y15944D01*
X45888Y15347D01*
X45586Y15145D01*
X45100Y14906D01*
X44588Y14731D01*
X44057Y14626D01*
X43522Y14591D01*
X43516Y14596D01*
Y14596D01*
X43453Y14589D01*
X40453D01*
Y10430D01*
X45596D01*
Y11360D01*
X45716Y11424D01*
X45914Y11586D01*
X46547Y12220D01*
X46582Y12250D01*
X46580Y12252D01*
X46886Y12558D01*
X47159Y12791D01*
X47514Y13009D01*
X47899Y13169D01*
X48304Y13266D01*
X48715Y13298D01*
X48720Y13294D01*
Y13294D01*
X48783Y13300D01*
X54441D01*
Y17237D01*
Y18024D01*
X54644Y18132D01*
X54842Y18295D01*
X55303Y18756D01*
X55331Y18780D01*
X55329Y18782D01*
X55329Y18782D01*
X57015Y20467D01*
X57037Y20488D01*
X57036Y20489D01*
X57036Y20489D01*
X57624Y21076D01*
X57624Y21076D01*
X57786Y21274D01*
X57907Y21500D01*
X57981Y21745D01*
X58006Y22000D01*
X58006Y22000D01*
Y25600D01*
X57981Y25855D01*
X57907Y26100D01*
X57786Y26326D01*
X57624Y26524D01*
X56024Y28124D01*
X55826Y28286D01*
X55600Y28407D01*
X55355Y28481D01*
X55100Y28506D01*
X50441D01*
X45902Y33046D01*
X46131Y33600D01*
X69000D01*
Y31436D01*
D02*
G37*
%LPC*%
G36*
X31072Y25619D02*
X25928D01*
Y25084D01*
X25450D01*
Y25084D01*
X17550D01*
Y20728D01*
X23208D01*
X23272Y20721D01*
Y20721D01*
X23272Y20722D01*
X23409Y20704D01*
X23536Y20651D01*
X23641Y20571D01*
X23645Y20567D01*
X23645Y20567D01*
Y20567D01*
X23645Y20567D01*
X23912Y20300D01*
X23929Y20280D01*
X23930Y20282D01*
X23930Y20282D01*
X30500Y13712D01*
X30500Y13712D01*
D01*
X30532Y13680D01*
X30715Y13457D01*
X30872Y13162D01*
X30969Y12842D01*
X31002Y12514D01*
X30998Y12510D01*
X30998D01*
X31004Y12446D01*
Y10430D01*
X31393D01*
Y9056D01*
X31082D01*
Y1944D01*
X37013D01*
Y9056D01*
X35907D01*
Y10430D01*
X36147D01*
Y14589D01*
X33317D01*
X32379Y15528D01*
X32349Y15562D01*
X32347Y15560D01*
X32347Y15560D01*
X27592Y20315D01*
X27821Y20869D01*
X28633D01*
X28697Y20863D01*
Y20863D01*
X28701Y20866D01*
X29150Y20837D01*
X29596Y20748D01*
X30026Y20602D01*
X30090Y20571D01*
X30096Y20560D01*
X30258Y20362D01*
X30456Y20199D01*
X30531Y20159D01*
X30531Y20159D01*
X30531D01*
X30531D01*
Y20159D01*
Y20159D01*
X30532Y20159D01*
X30532Y20159D01*
X30773Y19974D01*
X30958Y19733D01*
X31004Y19623D01*
Y17911D01*
X36147D01*
Y22070D01*
X33147D01*
X33084Y22076D01*
Y22076D01*
X33077Y22071D01*
X32789Y22109D01*
X32516Y22222D01*
X32317Y22375D01*
X32285Y22407D01*
X32285Y22407D01*
X32285Y22407D01*
X31290Y23401D01*
X31290Y23402D01*
X31291Y23403D01*
X31273Y23418D01*
X31072Y23620D01*
Y25619D01*
D02*
G37*
%LPD*%
D10*
X15118Y13882D02*
G03*
X19728Y11972I4611J4611D01*
G01*
X16825Y12175D02*
G03*
X19728Y10972I2903J2903D01*
G01*
X17906Y11095D02*
G03*
X19042Y11642I0J1453D01*
G01*
Y10547D02*
G03*
X17906Y11095I-1136J-906D01*
G01*
X24569Y21490D02*
G03*
X23272Y22028I-1297J-1297D01*
G01*
X24150Y22906D02*
G03*
X24854Y21205I2404J0D01*
G01*
X32073Y20771D02*
G03*
X28697Y22169I-3377J-3377D01*
G01*
X30366Y22478D02*
G03*
X28697Y23169I-1670J-1670D01*
G01*
X32304Y12510D02*
G03*
X31423Y14636I-3007J0D01*
G01*
X31896Y20873D02*
G03*
X32882Y20743I649J1124D01*
G01*
X32331Y19788D02*
G03*
X31182Y21285I-2382J-638D01*
G01*
X31361Y21483D02*
G03*
X33084Y20770I1723J1723D01*
G01*
X32304Y19990D02*
G03*
X31915Y20929I-1328J0D01*
G01*
X46238Y18926D02*
G03*
X43872Y19297I-1438J-1438D01*
G01*
X45268Y19896D02*
G03*
X43416Y20186I-1126J-1126D01*
G01*
X45174Y19990D02*
G03*
X44117Y19493I0J-1372D01*
G01*
Y20487D02*
G03*
X45174Y19990I1057J875D01*
G01*
X43516Y13289D02*
G03*
X47363Y14883I0J5440D01*
G01*
X43516Y12289D02*
G03*
X45656Y13175I0J3025D01*
G01*
X44990Y12510D02*
G03*
X44161Y12071I0J-1003D01*
G01*
Y12948D02*
G03*
X44990Y12510I829J564D01*
G01*
X52460Y19900D02*
G03*
X56113Y21413I0J5166D01*
G01*
X52460Y18900D02*
G03*
X54405Y19705I0J2752D01*
G01*
X53918Y19218D02*
G03*
X52982Y18781I0J-1221D01*
G01*
Y19656D02*
G03*
X53918Y19218I936J784D01*
G01*
X47107Y16631D02*
G03*
X48720Y15963I1613J1613D01*
G01*
X48039Y15281D02*
G03*
X47743Y15994I-1008J0D01*
G01*
X48720Y14600D02*
G03*
X45922Y13442I0J-3957D01*
G01*
X50590Y11344D02*
X50645Y11400D01*
X46239Y17499D02*
X48456Y15281D01*
X50390D01*
X46239Y17499D02*
Y18925D01*
X45174Y19990D02*
X46239Y18925D01*
X48256Y15281D02*
X50390D01*
X47762D02*
X50390D01*
X17906Y11095D02*
X21500D01*
X43024Y19990D02*
X45174D01*
X29050Y23794D02*
X32854Y19990D01*
X33549Y12510D02*
X33576D01*
X23154Y22906D02*
X33549Y12510D01*
X21500Y22906D02*
X23154D01*
X44990Y12510D02*
X47762Y15281D01*
X43024Y12510D02*
X44990D01*
X13300Y15700D02*
X17906Y11095D01*
X13300Y15700D02*
Y25400D01*
X50590Y19218D02*
X53918D01*
X13300Y25400D02*
X20200Y32300D01*
X44800D01*
X53918Y19218D02*
X56700Y22000D01*
Y25600D01*
X44800Y32300D02*
X49900Y27200D01*
X55100D01*
X56700Y25600D01*
D11*
X65747Y28274D02*
D03*
Y6226D02*
D03*
D12*
X50590Y23155D02*
D03*
Y15281D02*
D03*
Y11344D02*
D03*
Y19218D02*
D03*
D13*
X39953Y5500D02*
D03*
X34047D02*
D03*
X35547Y27500D02*
D03*
X41453D02*
D03*
D14*
X43024Y12510D02*
D03*
Y16250D02*
D03*
Y19990D02*
D03*
X33576D02*
D03*
Y12510D02*
D03*
D15*
X28500Y23244D02*
D03*
Y28756D02*
D03*
D16*
X21500Y22906D02*
D03*
Y17000D02*
D03*
Y11095D02*
D03*
D17*
X6500Y30583D02*
D03*
Y3417D02*
D03*
D18*
X42476Y24245D02*
D03*
D19*
X33650Y9255D02*
D03*
M02*

View File

@ -0,0 +1,67 @@
%FSLAX25Y25*%
%MOIN*%
G70*
G01*
G75*
%ADD10C,0.01000*%
%ADD11R,0.07087X0.04724*%
%ADD12R,0.06102X0.02362*%
%ADD13R,0.04331X0.05512*%
%ADD14R,0.03543X0.02559*%
%ADD15R,0.03543X0.03150*%
%ADD16R,0.06299X0.02756*%
%ADD17R,0.07480X0.04331*%
%ADD18R,0.02047X0.06510*%
%ADD19R,0.02900X0.06510*%
D11*
X65747Y28274D02*
D03*
Y6226D02*
D03*
D12*
X50590Y23155D02*
D03*
Y15281D02*
D03*
Y11344D02*
D03*
Y19218D02*
D03*
D13*
X39953Y5500D02*
D03*
X34047D02*
D03*
X35547Y27500D02*
D03*
X41453D02*
D03*
D14*
X43024Y12510D02*
D03*
Y16250D02*
D03*
Y19990D02*
D03*
X33576D02*
D03*
Y12510D02*
D03*
D15*
X28500Y23244D02*
D03*
Y28756D02*
D03*
D16*
X21500Y22906D02*
D03*
Y17000D02*
D03*
Y11095D02*
D03*
D17*
X6500Y30583D02*
D03*
Y3417D02*
D03*
M02*

View File

@ -0,0 +1,75 @@
%FSLAX25Y25*%
%MOIN*%
G70*
G01*
G75*
G04 Layer_Color=8388736*
%ADD10C,0.01000*%
%ADD11R,0.07087X0.04724*%
%ADD12R,0.06102X0.02362*%
%ADD13R,0.04331X0.05512*%
%ADD14R,0.03543X0.02559*%
%ADD15R,0.03543X0.03150*%
%ADD16R,0.06299X0.02756*%
%ADD17R,0.07480X0.04331*%
%ADD18R,0.02047X0.06510*%
%ADD19R,0.02900X0.06510*%
%ADD20R,0.07488X0.05126*%
%ADD21R,0.06504X0.02764*%
%ADD22R,0.05131X0.06312*%
%ADD23R,0.04143X0.03159*%
%ADD24R,0.04343X0.03950*%
%ADD25R,0.07099X0.03556*%
%ADD26R,0.08280X0.05131*%
D20*
X65747Y28274D02*
D03*
Y6226D02*
D03*
D21*
X50590Y23155D02*
D03*
Y15281D02*
D03*
Y11344D02*
D03*
Y19218D02*
D03*
D22*
X39953Y5500D02*
D03*
X34047D02*
D03*
X35547Y27500D02*
D03*
X41453D02*
D03*
D23*
X43024Y12510D02*
D03*
Y16250D02*
D03*
Y19990D02*
D03*
X33576D02*
D03*
Y12510D02*
D03*
D24*
X28500Y23244D02*
D03*
Y28756D02*
D03*
D25*
X21500Y22906D02*
D03*
Y17000D02*
D03*
Y11095D02*
D03*
D26*
X6500Y30583D02*
D03*
Y3417D02*
D03*
M02*

View File

@ -0,0 +1,141 @@
*************************************************************
FileName = Spektrum Adapter SMD.GBR
AutoAperture = True
*************************************************************
Generating : Top Layer
File : Spektrum Adapter SMD.GTL
Adding Layer : Top Layer
Adding Layer : Multi-Layer
Used DCodes :
D10
D11
D12
D13
D14
D15
D16
D17
D18
D19
*************************************************************
*************************************************************
Generating : Bottom Pad Master
File : Spektrum Adapter SMD.GPB
Adding Layer : Bottom Layer
Adding Layer : Multi-Layer
Used DCodes :
*************************************************************
*************************************************************
Generating : Top Pad Master
File : Spektrum Adapter SMD.GPT
Adding Layer : Top Layer
Adding Layer : Multi-Layer
Used DCodes :
D11
D12
D13
D14
D15
D16
D17
*************************************************************
*************************************************************
Generating : Top Paste
File : Spektrum Adapter SMD.GTP
Adding Layer : Top Paste
Adding Layer : Top Layer
Adding Layer : Multi-Layer
Used DCodes :
D11
D12
D13
D14
D15
D16
D17
*************************************************************
*************************************************************
Generating : Top Solder
File : Spektrum Adapter SMD.GTS
Adding Layer : Top Solder
Adding Layer : Top Layer
Adding Layer : Multi-Layer
Used DCodes :
D20
D21
D22
D23
D24
D25
D26
*************************************************************
*************************************************************
Generating : Board Dimensions
File : Spektrum Adapter SMD.GM5
Adding Layer : Board Dimensions
Used DCodes :
D27
*************************************************************
*************************************************************
Generating : Mechanical 13
File : Spektrum Adapter SMD.GM13
Adding Layer : Mechanical 13
Used DCodes :
D28
*************************************************************
*************************************************************
Generating : Mechanical 15
File : Spektrum Adapter SMD.GM15
Adding Layer : Mechanical 15
Used DCodes :
D28
*************************************************************
*************************************************************
Generating : Keep-Out Layer
File : Spektrum Adapter SMD.GKO
Adding Layer : Keep-Out Layer
Used DCodes :
*************************************************************

View File

@ -0,0 +1,5 @@
DRC Rules Export File for PCB: C:\Users\David\Documents\OP-WIP\trunk\hardware\production\Spektrum Adapter SMD\Spektrum Adapter SMD.PcbDoc
RuleKind=ShortCircuit|RuleName=ShortCircuit|Scope=Board|Allowed=0
RuleKind=Clearance|RuleName=Clearance|Scope=Board|Minimum=8.00
RuleKind=Width|RuleName=Width|Scope=Board|Minimum=10.00
RuleKind=SolderMaskExpansion|RuleName=SolderMaskExpansion|Scope=Board|Minimum=4.00

View File

@ -0,0 +1,19 @@
D10 ROUNDED 10.000 10.000 0.000 LINE 0.000
D11 RECTANGULAR 70.866 47.244 0.000 FLASH 0.000
D12 RECTANGULAR 61.024 23.622 0.000 FLASH 0.000
D13 RECTANGULAR 55.118 43.307 0.000 FLASH 90.000
D14 RECTANGULAR 25.591 35.433 0.000 FLASH 270.000
D15 RECTANGULAR 35.433 31.496 0.000 FLASH 180.000
D16 RECTANGULAR 27.559 62.992 0.000 FLASH 90.000
D17 RECTANGULAR 43.307 74.803 0.000 FLASH 90.000
D18 RECTANGULAR 20.473 65.098 0.000 FLASH 0.000
D19 RECTANGULAR 29.000 65.098 0.000 FLASH 0.000
D20 RECTANGULAR 74.882 51.260 0.000 FLASH 0.000
D21 RECTANGULAR 65.039 27.638 0.000 FLASH 0.000
D22 RECTANGULAR 63.118 51.307 0.000 FLASH 90.000
D23 RECTANGULAR 31.591 41.433 0.000 FLASH 270.000
D24 RECTANGULAR 43.433 39.496 0.000 FLASH 180.000
D25 RECTANGULAR 35.559 70.992 0.000 FLASH 90.000
D26 RECTANGULAR 51.307 82.803 0.000 FLASH 90.000
D27 ROUNDED 1.000 1.000 0.000 LINE 0.000
D28 ROUNDED 3.937 3.937 0.000 LINE 0.000

View File

@ -0,0 +1,21 @@
Output: Gerber Files
Type : Gerber
From : Variant [[No Variations]] of Project [Spektrum Adapter SMD.PrjPCB]
Generated File[Spektrum Adapter SMD.GTL]
Generated File[Spektrum Adapter SMD.GPB]
Generated File[Spektrum Adapter SMD.GPT]
Generated File[Spektrum Adapter SMD.GTP]
Generated File[Spektrum Adapter SMD.GTS]
Generated File[Spektrum Adapter SMD.GM5]
Generated File[Spektrum Adapter SMD.GM13]
Generated File[Spektrum Adapter SMD.GM15]
Generated File[Spektrum Adapter SMD.GKO]
Generated File[Spektrum Adapter SMD.RUL]
Generated File[Spektrum Adapter SMD.EXTREP]
Generated File[Spektrum Adapter SMD.REP]
Files Generated : 12
Documents Printed : 0
Finished Output Generation At 2:24:15 PM On 2/11/2011

View File

@ -0,0 +1,1084 @@
[Design]
Version=1.0
HierarchyMode=0
ChannelRoomNamingStyle=0
OutputPath=Project Outputs for Spektrum Adapter SMD
LogFolderPath=
ReleasesFolder=
ReleaseVaultGUID=
ReleaseVaultName=
ChannelDesignatorFormatString=$Component_$RoomName
ChannelRoomLevelSeperator=_
OpenOutputs=1
ArchiveProject=0
TimestampOutput=0
SeparateFolders=0
TemplateLocationPath=
PinSwapBy_Netlabel=1
PinSwapBy_Pin=1
AllowPortNetNames=0
AllowSheetEntryNetNames=1
AppendSheetNumberToLocalNets=0
NetlistSinglePinNets=0
DefaultConfiguration=
UserID=0xFFFFFFFF
DefaultPcbProtel=1
DefaultPcbPcad=0
ReorderDocumentsOnCompile=1
NameNetsHierarchically=0
PowerPortNamesTakePriority=0
PushECOToAnnotationFile=1
DItemRevisionGUID=
ReportSuppressedErrorsInMessages=0
[Document1]
DocumentPath=..\Altium\OpenPilot.SchLib
AnnotationEnabled=1
AnnotateStartValue=1
AnnotationIndexControlEnabled=0
AnnotateSuffix=
AnnotateScope=All
AnnotateOrder=-1
DoLibraryUpdate=1
DoDatabaseUpdate=1
ClassGenCCAutoEnabled=1
ClassGenCCAutoRoomEnabled=1
ClassGenNCAutoScope=None
DItemRevisionGUID=
GenerateClassCluster=0
[Document2]
DocumentPath=..\Altium\OpenPilot.PcbLib
AnnotationEnabled=1
AnnotateStartValue=1
AnnotationIndexControlEnabled=0
AnnotateSuffix=
AnnotateScope=All
AnnotateOrder=-1
DoLibraryUpdate=1
DoDatabaseUpdate=1
ClassGenCCAutoEnabled=1
ClassGenCCAutoRoomEnabled=1
ClassGenNCAutoScope=None
DItemRevisionGUID=
GenerateClassCluster=0
[Document3]
DocumentPath=Spektrum Adapter SMD.SchDoc
AnnotationEnabled=1
AnnotateStartValue=1
AnnotationIndexControlEnabled=0
AnnotateSuffix=
AnnotateScope=All
AnnotateOrder=-1
DoLibraryUpdate=1
DoDatabaseUpdate=1
ClassGenCCAutoEnabled=1
ClassGenCCAutoRoomEnabled=0
ClassGenNCAutoScope=None
DItemRevisionGUID=
GenerateClassCluster=0
[Document4]
DocumentPath=Spektrum Adapter SMD.PcbDoc
AnnotationEnabled=1
AnnotateStartValue=1
AnnotationIndexControlEnabled=0
AnnotateSuffix=
AnnotateScope=All
AnnotateOrder=-1
DoLibraryUpdate=1
DoDatabaseUpdate=1
ClassGenCCAutoEnabled=1
ClassGenCCAutoRoomEnabled=1
ClassGenNCAutoScope=None
DItemRevisionGUID=
GenerateClassCluster=0
[GeneratedDocument1]
DocumentPath=Project Outputs for Spektrum Adapter SMD\Spektrum Adapter SMD.EXTREP
DItemRevisionGUID=
[GeneratedDocument2]
DocumentPath=Project Outputs for Spektrum Adapter SMD\Spektrum Adapter SMD.GKO
DItemRevisionGUID=
[GeneratedDocument3]
DocumentPath=Project Outputs for Spektrum Adapter SMD\Spektrum Adapter SMD.GM5
DItemRevisionGUID=
[GeneratedDocument4]
DocumentPath=Project Outputs for Spektrum Adapter SMD\Spektrum Adapter SMD.GM13
DItemRevisionGUID=
[GeneratedDocument5]
DocumentPath=Project Outputs for Spektrum Adapter SMD\Spektrum Adapter SMD.GM15
DItemRevisionGUID=
[GeneratedDocument6]
DocumentPath=Project Outputs for Spektrum Adapter SMD\Spektrum Adapter SMD.GPB
DItemRevisionGUID=
[GeneratedDocument7]
DocumentPath=Project Outputs for Spektrum Adapter SMD\Spektrum Adapter SMD.GPT
DItemRevisionGUID=
[GeneratedDocument8]
DocumentPath=Project Outputs for Spektrum Adapter SMD\Spektrum Adapter SMD.GTL
DItemRevisionGUID=
[GeneratedDocument9]
DocumentPath=Project Outputs for Spektrum Adapter SMD\Spektrum Adapter SMD.GTP
DItemRevisionGUID=
[GeneratedDocument10]
DocumentPath=Project Outputs for Spektrum Adapter SMD\Spektrum Adapter SMD.GTS
DItemRevisionGUID=
[GeneratedDocument11]
DocumentPath=Project Outputs for Spektrum Adapter SMD\Spektrum Adapter SMD.REP
DItemRevisionGUID=
[GeneratedDocument12]
DocumentPath=Project Outputs for Spektrum Adapter SMD\Spektrum Adapter SMD.RUL
DItemRevisionGUID=
[PCBConfiguration1]
ReleaseItemId=
CurrentRevision=
Name=Default Configuration
Variant=[No Variations]
GenerateBOM=0
[Generic_SmartPDF]
AutoOpenFile=-1
AutoOpenOutJob=-1
[Generic_SmartPDFSettings]
ProjectMode=0
ZoomPrecision=50
AddNetsInformation=0
AddNetPins=-1
AddNetNetLabels=-1
AddNetPorts=-1
ExportBOM=0
TemplateFilename=..\Altium\BOM OpenPilot.xlt
TemplateStoreRelative=-1
PCB_PrintColor=0
SCH_PrintColor=0
SCH_ShowNoErc=-1
SCH_ShowParameter=-1
SCH_ShowProbes=-1
SCH_ShowBlankets=-1
OutputFileName=Spektrum Adapter SMD.SchDoc=C:\Users\David\Documents\SVN\OP-WIP\trunk\hardware\production\Spektrum Adapter SMD\Spektrum Adapter SMD Schematic.pdf
SCH_ExpandLogicalToPhysical=-1
SCH_VariantName=[No Variations]
SCH_ExpandComponentDesignators=-1
SCH_ExpandNetlabels=0
SCH_ExpandPorts=0
SCH_ExpandSheetNumber=0
SCH_ExpandDocumentNumber=0
SCH_HasExpandLogicalToPhysicalSheets=-1
SaveSettingsToOutJob=0
SCH_NoERCSymbolsToShow="Thin Cross","Thick Cross","Small Cross",Checkbox,Triangle
SCH_ShowNote=-1
SCH_ShowNoteCollapsed=-1
[OutputGroup1]
Name=Netlist Outputs
Description=
TargetPrinter=Brother HL-2170W
PrinterOptions=Record=PrinterOptions|Copies=1|Duplex=1|TrueTypeOptions=3|Collate=1|PrintWhat=1
OutputType1=CadnetixNetlist
OutputName1=Cadnetix Netlist
OutputDocumentPath1=
OutputVariantName1=
OutputDefault1=0
OutputType2=CalayNetlist
OutputName2=Calay Netlist
OutputDocumentPath2=
OutputVariantName2=
OutputDefault2=0
OutputType3=EDIF
OutputName3=EDIF for PCB
OutputDocumentPath3=
OutputVariantName3=
OutputDefault3=0
OutputType4=EESofNetlist
OutputName4=EESof Netlist
OutputDocumentPath4=
OutputVariantName4=
OutputDefault4=0
OutputType5=IntergraphNetlist
OutputName5=Intergraph Netlist
OutputDocumentPath5=
OutputVariantName5=
OutputDefault5=0
OutputType6=MentorBoardStationNetlist
OutputName6=Mentor BoardStation Netlist
OutputDocumentPath6=
OutputVariantName6=
OutputDefault6=0
OutputType7=MultiWire
OutputName7=MultiWire
OutputDocumentPath7=
OutputVariantName7=
OutputDefault7=0
OutputType8=OrCadPCB2Netlist
OutputName8=Orcad/PCB2 Netlist
OutputDocumentPath8=
OutputVariantName8=
OutputDefault8=0
OutputType9=PADSNetlist
OutputName9=PADS ASCII Netlist
OutputDocumentPath9=
OutputVariantName9=
OutputDefault9=0
OutputType10=Pcad
OutputName10=Pcad for PCB
OutputDocumentPath10=
OutputVariantName10=
OutputDefault10=0
OutputType11=PCADNetlist
OutputName11=PCAD Netlist
OutputDocumentPath11=
OutputVariantName11=
OutputDefault11=0
OutputType12=PCADnltNetlist
OutputName12=PCADnlt Netlist
OutputDocumentPath12=
OutputVariantName12=
OutputDefault12=0
OutputType13=Protel2Netlist
OutputName13=Protel2 Netlist
OutputDocumentPath13=
OutputVariantName13=
OutputDefault13=0
OutputType14=ProtelNetlist
OutputName14=Protel
OutputDocumentPath14=
OutputVariantName14=
OutputDefault14=0
OutputType15=RacalNetlist
OutputName15=Racal Netlist
OutputDocumentPath15=
OutputVariantName15=
OutputDefault15=0
OutputType16=RINFNetlist
OutputName16=RINF Netlist
OutputDocumentPath16=
OutputVariantName16=
OutputDefault16=0
OutputType17=SciCardsNetlist
OutputName17=SciCards Netlist
OutputDocumentPath17=
OutputVariantName17=
OutputDefault17=0
OutputType18=SIMetrixNetlist
OutputName18=SIMetrix
OutputDocumentPath18=
OutputVariantName18=
OutputDefault18=0
OutputType19=SIMPLISNetlist
OutputName19=SIMPLIS
OutputDocumentPath19=
OutputVariantName19=
OutputDefault19=0
OutputType20=TangoNetlist
OutputName20=Tango Netlist
OutputDocumentPath20=
OutputVariantName20=
OutputDefault20=0
OutputType21=TelesisNetlist
OutputName21=Telesis Netlist
OutputDocumentPath21=
OutputVariantName21=
OutputDefault21=0
OutputType22=Verilog
OutputName22=Verilog File
OutputDocumentPath22=
OutputVariantName22=
OutputDefault22=0
OutputType23=VHDL
OutputName23=VHDL File
OutputDocumentPath23=
OutputVariantName23=
OutputDefault23=0
OutputType24=WireListNetlist
OutputName24=WireList Netlist
OutputDocumentPath24=
OutputVariantName24=
OutputDefault24=0
OutputType25=XSpiceNetlist
OutputName25=XSpice Netlist
OutputDocumentPath25=
OutputVariantName25=
OutputDefault25=0
[OutputGroup2]
Name=Simulator Outputs
Description=
TargetPrinter=Brother HL-2170W
PrinterOptions=Record=PrinterOptions|Copies=1|Duplex=1|TrueTypeOptions=3|Collate=1|PrintWhat=1
OutputType1=AdvSimNetlist
OutputName1=Mixed Sim
OutputDocumentPath1=
OutputVariantName1=
OutputDefault1=0
OutputType2=SIMetrix_Sim
OutputName2=SIMetrix
OutputDocumentPath2=
OutputVariantName2=
OutputDefault2=0
OutputType3=SIMPLIS_Sim
OutputName3=SIMPLIS
OutputDocumentPath3=
OutputVariantName3=
OutputDefault3=0
[OutputGroup3]
Name=Documentation Outputs
Description=
TargetPrinter=Brother HL-2170W
PrinterOptions=Record=PrinterOptions|Copies=1|Duplex=1|TrueTypeOptions=3|Collate=1|PrintWhat=1
OutputType1=Composite
OutputName1=Composite Drawing
OutputDocumentPath1=
OutputVariantName1=
OutputDefault1=0
PageOptions1=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-4|MediaType=1|DitherType=10|PaperKind=A4|PrintScaleMode=1
OutputType2=Logic Analyser Print
OutputName2=Logic Analyser Prints
OutputDocumentPath2=
OutputVariantName2=
OutputDefault2=0
PageOptions2=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-4|MediaType=1|DitherType=10|PaperKind=A4|PrintScaleMode=1
OutputType3=OpenBus Print
OutputName3=OpenBus Prints
OutputDocumentPath3=
OutputVariantName3=
OutputDefault3=0
PageOptions3=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-4|MediaType=1|DitherType=10|PaperKind=A4|PrintScaleMode=1
OutputType4=PCB 3D Print
OutputName4=PCB 3D Prints
OutputDocumentPath4=
OutputVariantName4=[No Variations]
OutputDefault4=0
PageOptions4=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-4|MediaType=1|DitherType=10|PaperKind=A4|PrintScaleMode=1
OutputType5=PCB Print
OutputName5=PCB Prints
OutputDocumentPath5=
OutputVariantName5=
OutputDefault5=0
PageOptions5=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-4|MediaType=1|DitherType=10|PaperKind=A4|PrintScaleMode=1
OutputType6=Schematic Print
OutputName6=Schematic Prints
OutputDocumentPath6=
OutputVariantName6=
OutputDefault6=0
PageOptions6=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-4|MediaType=1|DitherType=10|PaperKind=A4|PrintScaleMode=1
OutputType7=SimView Print
OutputName7=SimView Prints
OutputDocumentPath7=
OutputVariantName7=
OutputDefault7=0
PageOptions7=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-4|MediaType=1|DitherType=10|PaperKind=A4|PrintScaleMode=1
OutputType8=Wave Print
OutputName8=Wave Prints
OutputDocumentPath8=
OutputVariantName8=
OutputDefault8=0
PageOptions8=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-4|MediaType=1|DitherType=10|PaperKind=A4|PrintScaleMode=1
OutputType9=WaveSim Print
OutputName9=WaveSim Prints
OutputDocumentPath9=
OutputVariantName9=
OutputDefault9=0
PageOptions9=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-4|MediaType=1|DitherType=10|PaperKind=A4|PrintScaleMode=1
OutputType10=Assembler Source Print
OutputName10=Assembler Source Prints
OutputDocumentPath10=
OutputVariantName10=
OutputDefault10=0
PageOptions10=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-4|MediaType=1|DitherType=10|PaperKind=A4|PrintScaleMode=1
OutputType11=C Source Print
OutputName11=C Source Prints
OutputDocumentPath11=
OutputVariantName11=
OutputDefault11=0
PageOptions11=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-4|MediaType=1|DitherType=10|PaperKind=A4|PrintScaleMode=1
OutputType12=C/C++ Header Print
OutputName12=C/C++ Header Prints
OutputDocumentPath12=
OutputVariantName12=
OutputDefault12=0
PageOptions12=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-4|MediaType=1|DitherType=10|PaperKind=A4|PrintScaleMode=1
OutputType13=C++ Source Print
OutputName13=C++ Source Prints
OutputDocumentPath13=
OutputVariantName13=
OutputDefault13=0
PageOptions13=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-4|MediaType=1|DitherType=10|PaperKind=A4|PrintScaleMode=1
OutputType14=PCB 3D Video
OutputName14=PCB 3D Video
OutputDocumentPath14=
OutputVariantName14=[No Variations]
OutputDefault14=0
PageOptions14=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-4|MediaType=1|DitherType=10|PaperKind=A4|PrintScaleMode=1
OutputType15=Report Print
OutputName15=Report Prints
OutputDocumentPath15=
OutputVariantName15=
OutputDefault15=0
PageOptions15=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-4|MediaType=1|DitherType=10|PaperKind=A4|PrintScaleMode=1
OutputType16=Software Platform Print
OutputName16=Software Platform Prints
OutputDocumentPath16=
OutputVariantName16=
OutputDefault16=0
PageOptions16=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-4|MediaType=1|DitherType=10|PaperKind=A4|PrintScaleMode=1
OutputType17=VHDL Print
OutputName17=VHDL Prints
OutputDocumentPath17=
OutputVariantName17=
OutputDefault17=0
PageOptions17=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-4|MediaType=1|DitherType=10|PaperKind=A4|PrintScaleMode=1
[OutputGroup4]
Name=Assembly Outputs
Description=
TargetPrinter=Brother HL-2170W
PrinterOptions=Record=PrinterOptions|Copies=1|Duplex=1|TrueTypeOptions=3|Collate=1|PrintWhat=1
OutputType1=Assembly
OutputName1=Assembly Drawings
OutputDocumentPath1=
OutputVariantName1=[No Variations]
OutputDefault1=0
PageOptions1=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-4|MediaType=1|DitherType=10|PaperKind=A4|PrintScaleMode=1
OutputType2=Pick Place
OutputName2=Generates pick and place files
OutputDocumentPath2=
OutputVariantName2=[No Variations]
OutputDefault2=0
OutputType3=Test Points For Assembly
OutputName3=Test Point Report
OutputDocumentPath3=
OutputVariantName3=[No Variations]
OutputDefault3=0
[OutputGroup5]
Name=Fabrication Outputs
Description=
TargetPrinter=Brother HL-2170W
PrinterOptions=Record=PrinterOptions|Copies=1|Duplex=1|TrueTypeOptions=3|Collate=1|PrintWhat=1
OutputType1=ODB
OutputName1=ODB++ Files
OutputDocumentPath1=
OutputVariantName1=[No Variations]
OutputDefault1=0
OutputType2=NC Drill
OutputName2=NC Drill Files
OutputDocumentPath2=
OutputVariantName2=
OutputDefault2=0
Configuration2_Name1=OutputConfigurationParameter1
Configuration2_Item1=BoardEdgeRoutToolDia=2000000|GenerateBoardEdgeRout=False|GenerateDrilledSlotsG85=False|GenerateSeparatePlatedNonPlatedFiles=False|NumberOfDecimals=5|NumberOfUnits=2|OptimizeChangeLocationCommands=True|OriginPosition=Relative|Record=DrillView|Units=Imperial|ZeroesMode=SuppressTrailingZeroes
OutputType3=Test Points
OutputName3=Test Point Report
OutputDocumentPath3=
OutputVariantName3=
OutputDefault3=0
OutputType4=Plane
OutputName4=Power-Plane Prints
OutputDocumentPath4=
OutputVariantName4=
OutputDefault4=0
PageOptions4=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-4|MediaType=1|DitherType=10|PaperKind=A4|PrintScaleMode=1
OutputType5=Mask
OutputName5=Solder/Paste Mask Prints
OutputDocumentPath5=
OutputVariantName5=
OutputDefault5=0
PageOptions5=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-4|MediaType=1|DitherType=10|PaperKind=A4|PrintScaleMode=1
OutputType6=Drill
OutputName6=Drill Drawing/Guides
OutputDocumentPath6=
OutputVariantName6=
OutputDefault6=0
PageOptions6=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-4|MediaType=1|DitherType=10|PaperKind=A4|PrintScaleMode=1
OutputType7=CompositeDrill
OutputName7=Composite Drill Drawing
OutputDocumentPath7=
OutputVariantName7=
OutputDefault7=0
PageOptions7=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-4|MediaType=1|DitherType=10|PaperKind=A4|PrintScaleMode=1
OutputType8=Final
OutputName8=Final Artwork Prints
OutputDocumentPath8=
OutputVariantName8=[No Variations]
OutputDefault8=0
PageOptions8=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-4|MediaType=1|DitherType=10|PaperKind=A4|PrintScaleMode=1
OutputType9=Gerber
OutputName9=Gerber Files
OutputDocumentPath9=
OutputVariantName9=[No Variations]
OutputDefault9=0
Configuration9_Name1=OutputConfigurationParameter1
Configuration9_Item1=AddToAllPlots.Set=SerializeLayerHash.Version~2,ClassName~TLayerToBoolean|CentrePlots=False|DrillDrawingSymbol=GraphicsSymbol|DrillDrawingSymbolSize=500000|EmbeddedApertures=True|FilmBorderSize=10000000|FilmXSize=200000000|FilmYSize=160000000|FlashAllFills=False|FlashPadShapes=True|G54OnApertureChange=False|GenerateDRCRulesFile=True|GenerateReliefShapes=True|GerberUnit=Imperial|IncludeUnconnectedMidLayerPads=False|LeadingAndTrailingZeroesMode=SuppressLeadingZeroes|MaxApertureSize=2500000|MinusApertureTolerance=50|Mirror.Set=SerializeLayerHash.Version~2,ClassName~TLayerToBoolean|MirrorDrillDrawingPlots=False|MirrorDrillGuidePlots=False|NumberOfDecimals=5|OptimizeChangeLocationCommands=True|OriginPosition=Relative|Panelize=False|Plot.Set=SerializeLayerHash.Version~2,ClassName~TLayerToBoolean,16973832~1,16973834~1,16777217~1,16908293~1,16908301~1,16908303~1,16973837~1,16973848~1,16973849~1|PlotPositivePlaneLayers=False|PlotUsedDrillDrawingLayerPairs=True|PlotUsedDrillGuideLayerPairs=True|PlusApertureTolerance=50|Record=GerberView|SoftwareArcs=False|Sorted=False
[OutputGroup6]
Name=Report Outputs
Description=
TargetPrinter=Brother HL-2170W
PrinterOptions=Record=PrinterOptions|Copies=1|Duplex=1|TrueTypeOptions=3|Collate=1|PrintWhat=1
OutputType1=Script
OutputName1=Script Output
OutputDocumentPath1=
OutputVariantName1=[No Variations]
OutputDefault1=0
OutputType2=ReportHierarchy
OutputName2=Report Project Hierarchy
OutputDocumentPath2=
OutputVariantName2=[No Variations]
OutputDefault2=0
OutputType3=SinglePinNetReporter
OutputName3=Report Single Pin Nets
OutputDocumentPath3=
OutputVariantName3=[No Variations]
OutputDefault3=0
OutputType4=SimpleBOM
OutputName4=Simple BOM
OutputDocumentPath4=
OutputVariantName4=[No Variations]
OutputDefault4=0
OutputType5=ComponentCrossReference
OutputName5=Component Cross Reference Report
OutputDocumentPath5=
OutputVariantName5=[No Variations]
OutputDefault5=0
OutputType6=BOM_PartType
OutputName6=Bill of Materials
OutputDocumentPath6=
OutputVariantName6=[No Variations]
OutputDefault6=0
PageOptions6=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-4|MediaType=1|DitherType=10|PaperKind=A4|PrintScaleMode=1
Configuration6_Name1=Filter
Configuration6_Item1=545046300E5446696C74657257726170706572000D46696C7465722E416374697665090F46696C7465722E43726974657269610A04000000000000000000
Configuration6_Name2=General
Configuration6_Item2=OpenExported=True|AddToProject=False|ForceFit=False|NotFitted=False|Database=False|IncludePCBData=False|ShowExportOptions=True|TemplateFilename=..\Altium\BOM OpenPilot.xlt|BatchMode=5|FormWidth=1226|FormHeight=598|SupplierProdQty=25|SupplierAutoQty=True|SupplierUseCachedPricing=False|SupplierCurrency=<none>
Configuration6_Name3=GroupOrder
Configuration6_Item3=Comment=True|Footprint=True
Configuration6_Name4=OutputConfigurationParameter1
Configuration6_Item4=Record=BOMPrintView|ShowNoERC=True|ShowParamSet=True|ShowProbe=True|ShowBlanket=True|ExpandDesignator=True|ExpandNetLabel=False|ExpandPort=False|ExpandSheetNum=False|ExpandDocNum=False
Configuration6_Name5=SortOrder
Configuration6_Item5=Designator=Up|Comment=Up|Footprint=Up
Configuration6_Name6=VisibleOrder
Configuration6_Item6=Comment=100|Description=100|Designator=100|Value=100|Footprint=100|LibRef=100|Quantity=100|Supplier 1=100|Supplier Part Number 1=100|Supplier Stock 1=100|Supplier Unit Price 1=100|Supplier Order Qty 1=100|Supplier Subtotal 1=100|Manufacturer 1=100|Manufacturer Part Number 1=100
[OutputGroup7]
Name=Other Outputs
Description=
TargetPrinter=Brother HL-2170W
PrinterOptions=Record=PrinterOptions|Copies=1|Duplex=1|TrueTypeOptions=3|Collate=1|PrintWhat=1
OutputType1=Text Print
OutputName1=Text Print
OutputDocumentPath1=
OutputVariantName1=
OutputDefault1=0
PageOptions1=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-4|MediaType=1|DitherType=10|PaperKind=A4|PrintScaleMode=1
OutputType2=Text Print
OutputName2=Text Print
OutputDocumentPath2=
OutputVariantName2=
OutputDefault2=0
PageOptions2=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-4|MediaType=1|DitherType=10|PaperKind=A4|PrintScaleMode=1
OutputType3=Text Print
OutputName3=Text Print
OutputDocumentPath3=
OutputVariantName3=
OutputDefault3=0
PageOptions3=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-4|MediaType=1|DitherType=10|PaperKind=A4|PrintScaleMode=1
OutputType4=Text Print
OutputName4=Text Print
OutputDocumentPath4=
OutputVariantName4=
OutputDefault4=0
PageOptions4=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-4|MediaType=1|DitherType=10|PaperKind=A4|PrintScaleMode=1
OutputType5=Text Print
OutputName5=Text Print
OutputDocumentPath5=
OutputVariantName5=
OutputDefault5=0
PageOptions5=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-4|MediaType=1|DitherType=10|PaperKind=A4|PrintScaleMode=1
OutputType6=Text Print
OutputName6=Text Print
OutputDocumentPath6=
OutputVariantName6=
OutputDefault6=0
PageOptions6=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-4|MediaType=1|DitherType=10|PaperKind=A4|PrintScaleMode=1
OutputType7=Text Print
OutputName7=Text Print
OutputDocumentPath7=
OutputVariantName7=
OutputDefault7=0
PageOptions7=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-4|MediaType=1|DitherType=10|PaperKind=A4|PrintScaleMode=1
OutputType8=Text Print
OutputName8=Text Print
OutputDocumentPath8=
OutputVariantName8=
OutputDefault8=0
PageOptions8=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-4|MediaType=1|DitherType=10|PaperKind=A4|PrintScaleMode=1
OutputType9=Text Print
OutputName9=Text Print
OutputDocumentPath9=
OutputVariantName9=
OutputDefault9=0
PageOptions9=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-4|MediaType=1|DitherType=10|PaperKind=A4|PrintScaleMode=1
OutputType10=Text Print
OutputName10=Text Print
OutputDocumentPath10=
OutputVariantName10=
OutputDefault10=0
PageOptions10=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-4|MediaType=1|DitherType=10|PaperKind=A4|PrintScaleMode=1
OutputType11=Text Print
OutputName11=Text Print
OutputDocumentPath11=
OutputVariantName11=
OutputDefault11=0
PageOptions11=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-4|MediaType=1|DitherType=10|PaperKind=A4|PrintScaleMode=1
OutputType12=Text Print
OutputName12=Text Print
OutputDocumentPath12=
OutputVariantName12=
OutputDefault12=0
PageOptions12=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-4|MediaType=1|DitherType=10|PaperKind=A4|PrintScaleMode=1
OutputType13=Text Print
OutputName13=Text Print
OutputDocumentPath13=
OutputVariantName13=
OutputDefault13=0
PageOptions13=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-4|MediaType=1|DitherType=10|PaperKind=A4|PrintScaleMode=1
OutputType14=Text Print
OutputName14=Text Print
OutputDocumentPath14=
OutputVariantName14=
OutputDefault14=0
PageOptions14=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-4|MediaType=1|DitherType=10|PaperKind=A4|PrintScaleMode=1
OutputType15=Text Print
OutputName15=Text Print
OutputDocumentPath15=
OutputVariantName15=
OutputDefault15=0
PageOptions15=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-4|MediaType=1|DitherType=10|PaperKind=A4|PrintScaleMode=1
OutputType16=Text Print
OutputName16=Text Print
OutputDocumentPath16=
OutputVariantName16=
OutputDefault16=0
PageOptions16=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-4|MediaType=1|DitherType=10|PaperKind=A4|PrintScaleMode=1
OutputType17=Text Print
OutputName17=Text Print
OutputDocumentPath17=
OutputVariantName17=
OutputDefault17=0
PageOptions17=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-4|MediaType=1|DitherType=10|PaperKind=A4|PrintScaleMode=1
OutputType18=Text Print
OutputName18=Text Print
OutputDocumentPath18=
OutputVariantName18=
OutputDefault18=0
PageOptions18=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-4|MediaType=1|DitherType=10|PaperKind=A4|PrintScaleMode=1
OutputType19=Text Print
OutputName19=Text Print
OutputDocumentPath19=
OutputVariantName19=
OutputDefault19=0
PageOptions19=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-4|MediaType=1|DitherType=10|PaperKind=A4|PrintScaleMode=1
OutputType20=Text Print
OutputName20=Text Print
OutputDocumentPath20=
OutputVariantName20=
OutputDefault20=0
PageOptions20=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-4|MediaType=1|DitherType=10|PaperKind=A4|PrintScaleMode=1
OutputType21=Text Print
OutputName21=Text Print
OutputDocumentPath21=
OutputVariantName21=
OutputDefault21=0
PageOptions21=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-4|MediaType=1|DitherType=10|PaperKind=A4|PrintScaleMode=1
OutputType22=Text Print
OutputName22=Text Print
OutputDocumentPath22=
OutputVariantName22=
OutputDefault22=0
PageOptions22=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-4|MediaType=1|DitherType=10|PaperKind=A4|PrintScaleMode=1
OutputType23=Text Print
OutputName23=Text Print
OutputDocumentPath23=
OutputVariantName23=
OutputDefault23=0
PageOptions23=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-4|MediaType=1|DitherType=10|PaperKind=A4|PrintScaleMode=1
OutputType24=Text Print
OutputName24=Text Print
OutputDocumentPath24=
OutputVariantName24=
OutputDefault24=0
PageOptions24=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-4|MediaType=1|DitherType=10|PaperKind=A4|PrintScaleMode=1
OutputType25=Text Print
OutputName25=Text Print
OutputDocumentPath25=
OutputVariantName25=
OutputDefault25=0
PageOptions25=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-4|MediaType=1|DitherType=10|PaperKind=A4|PrintScaleMode=1
OutputType26=Text Print
OutputName26=Text Print
OutputDocumentPath26=
OutputVariantName26=
OutputDefault26=0
PageOptions26=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-4|MediaType=1|DitherType=10|PaperKind=A4|PrintScaleMode=1
OutputType27=Text Print
OutputName27=Text Print
OutputDocumentPath27=
OutputVariantName27=
OutputDefault27=0
PageOptions27=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-4|MediaType=1|DitherType=10|PaperKind=A4|PrintScaleMode=1
OutputType28=Text Print
OutputName28=Text Print
OutputDocumentPath28=
OutputVariantName28=
OutputDefault28=0
PageOptions28=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-4|MediaType=1|DitherType=10|PaperKind=A4|PrintScaleMode=1
OutputType29=Text Print
OutputName29=Text Print
OutputDocumentPath29=
OutputVariantName29=
OutputDefault29=0
PageOptions29=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-4|MediaType=1|DitherType=10|PaperKind=A4|PrintScaleMode=1
[OutputGroup8]
Name=Validation Outputs
Description=
TargetPrinter=Brother HL-2170W
PrinterOptions=Record=PrinterOptions|Copies=1|Duplex=1|TrueTypeOptions=3|Collate=1|PrintWhat=1
OutputType1=Electrical Rules Check
OutputName1=Electrical Rules Check
OutputDocumentPath1=
OutputVariantName1=
OutputDefault1=0
PageOptions1=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-4|MediaType=1|DitherType=10|PaperKind=A4|PrintScaleMode=1
OutputType2=Design Rules Check
OutputName2=Design Rules Check
OutputDocumentPath2=
OutputVariantName2=
OutputDefault2=0
PageOptions2=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-4|MediaType=1|DitherType=10|PaperKind=A4|PrintScaleMode=1
OutputType3=Differences Report
OutputName3=Differences Report
OutputDocumentPath3=
OutputVariantName3=
OutputDefault3=0
PageOptions3=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-4|MediaType=1|DitherType=10|PaperKind=A4|PrintScaleMode=1
OutputType4=Footprint Comparison Report
OutputName4=Footprint Comparison Report
OutputDocumentPath4=
OutputVariantName4=
OutputDefault4=0
[OutputGroup9]
Name=Export Outputs
Description=
TargetPrinter=Brother HL-2170W
PrinterOptions=Record=PrinterOptions|Copies=1|Duplex=1|TrueTypeOptions=3|Collate=1|PrintWhat=1
OutputType1=ExportSTEP
OutputName1=Export STEP
OutputDocumentPath1=
OutputVariantName1=
OutputDefault1=0
[Modification Levels]
Type1=1
Type2=1
Type3=1
Type4=1
Type5=1
Type6=1
Type7=1
Type8=1
Type9=1
Type10=1
Type11=1
Type12=1
Type13=1
Type14=1
Type15=1
Type16=1
Type17=1
Type18=1
Type19=1
Type20=1
Type21=1
Type22=1
Type23=1
Type24=1
Type25=1
Type26=1
Type27=1
Type28=1
Type29=1
Type30=1
Type31=1
Type32=1
Type33=1
Type34=1
Type35=1
Type36=1
Type37=1
Type38=1
Type39=1
Type40=1
Type41=1
Type42=1
Type43=1
Type44=1
Type45=1
Type46=1
Type47=1
Type48=1
Type49=1
Type50=1
Type51=1
Type52=1
Type53=1
Type54=1
Type55=1
Type56=1
Type57=1
Type58=1
Type59=1
Type60=1
Type61=1
Type62=1
Type63=1
Type64=1
Type65=1
Type66=1
Type67=1
Type68=1
Type69=1
Type70=1
Type71=1
Type72=1
Type73=1
Type74=1
[Difference Levels]
Type1=1
Type2=1
Type3=1
Type4=1
Type5=1
Type6=1
Type7=1
Type8=1
Type9=1
Type10=1
Type11=1
Type12=1
Type13=1
Type14=1
Type15=1
Type16=1
Type17=1
Type18=1
Type19=1
Type20=1
Type21=1
Type22=1
Type23=1
Type24=1
Type25=1
Type26=1
Type27=1
Type28=1
Type29=1
Type30=1
Type31=1
Type32=1
Type33=1
Type34=1
Type35=1
Type36=1
Type37=1
Type38=1
Type39=1
Type40=1
[Electrical Rules Check]
Type1=1
Type2=1
Type3=2
Type4=1
Type5=2
Type6=2
Type7=1
Type8=1
Type9=1
Type10=1
Type11=2
Type12=2
Type13=2
Type14=1
Type15=1
Type16=1
Type17=1
Type18=1
Type19=1
Type20=1
Type21=1
Type22=1
Type23=1
Type24=1
Type25=2
Type26=2
Type27=2
Type28=1
Type29=1
Type30=1
Type31=1
Type32=2
Type33=2
Type34=2
Type35=1
Type36=2
Type37=1
Type38=2
Type39=2
Type40=2
Type41=0
Type42=2
Type43=1
Type44=1
Type45=2
Type46=1
Type47=2
Type48=2
Type49=1
Type50=2
Type51=1
Type52=1
Type53=1
Type54=1
Type55=1
Type56=2
Type57=1
Type58=1
Type59=0
Type60=1
Type61=2
Type62=2
Type63=1
Type64=0
Type65=2
Type66=3
Type67=2
Type68=2
Type69=1
Type70=2
Type71=2
Type72=2
Type73=2
Type74=1
Type75=2
Type76=1
Type77=1
Type78=1
Type79=1
Type80=2
Type81=3
Type82=3
Type83=3
Type84=3
Type85=3
Type86=2
Type87=2
Type88=2
Type89=1
Type90=1
Type91=3
Type92=3
Type93=2
Type94=2
Type95=2
Type96=2
Type97=2
Type98=0
Type99=1
Type100=2
[ERC Connection Matrix]
L1=NNNNNNNNNNNWNNNWW
L2=NNWNNNNWWWNWNWNWN
L3=NWEENEEEENEWNEEWN
L4=NNENNNWEENNWNENWN
L5=NNNNNNNNNNNNNNNNN
L6=NNENNNNEENNWNENWN
L7=NNEWNNWEENNWNENWN
L8=NWEENEENEEENNEENN
L9=NWEENEEEENEWNEEWW
L10=NWNNNNNENNEWNNEWN
L11=NNENNNNEEENWNENWN
L12=WWWWNWWNWWWNWWWNN
L13=NNNNNNNNNNNWNNNWW
L14=NWEENEEEENEWNEEWW
L15=NNENNNNEEENWNENWW
L16=WWWWNWWNWWWNWWWNW
L17=WNNNNNNNWNNNWWWWN
[Annotate]
SortOrder=3
MatchParameter1=Comment
MatchStrictly1=1
MatchParameter2=Library Reference
MatchStrictly2=1
PhysicalNamingFormat=$Component_$RoomName
GlobalIndexSortOrder=3
[PrjClassGen]
CompClassManualEnabled=0
CompClassManualRoomEnabled=0
NetClassAutoBusEnabled=1
NetClassAutoCompEnabled=0
NetClassAutoNamedHarnessEnabled=0
NetClassManualEnabled=1
[LibraryUpdateOptions]
SelectedOnly=0
PartTypes=0
FullReplace=1
UpdateDesignatorLock=1
UpdatePartIDLock=1
PreserveParameterLocations=1
DoGraphics=1
DoParameters=1
DoModels=1
AddParameters=0
RemoveParameters=0
AddModels=1
RemoveModels=1
UpdateCurrentModels=1
[DatabaseUpdateOptions]
SelectedOnly=0
PartTypes=0
[Comparison Options]
ComparisonOptions0=Kind=Net|MinPercent=75|MinMatch=3|ShowMatch=-1|Confirm=-1|UseName=-1|InclAllRules=0
ComparisonOptions1=Kind=Net Class|MinPercent=75|MinMatch=3|ShowMatch=-1|Confirm=-1|UseName=-1|InclAllRules=0
ComparisonOptions2=Kind=Component Class|MinPercent=75|MinMatch=3|ShowMatch=-1|Confirm=-1|UseName=-1|InclAllRules=0
ComparisonOptions3=Kind=Rule|MinPercent=75|MinMatch=3|ShowMatch=-1|Confirm=-1|UseName=-1|InclAllRules=0
ComparisonOptions4=Kind=Differential Pair|MinPercent=50|MinMatch=1|ShowMatch=0|Confirm=0|UseName=0|InclAllRules=0
ComparisonOptions5=Kind=Structure Class|MinPercent=75|MinMatch=3|ShowMatch=-1|Confirm=-1|UseName=-1|InclAllRules=0
[SmartPDF]
PageOptions=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-4|MediaType=1|DitherType=10|PaperKind=A4|PrintScaleMode=1

View File

@ -49,7 +49,7 @@ linux_deb_package: deb_build gcs
deb_build: | $(DEB_BUILD_DIR) $(ALL_DEB_FILES) $(BUILD_DIR)/build deb_build: | $(DEB_BUILD_DIR) $(ALL_DEB_FILES) $(BUILD_DIR)/build
@echo $@ starting @echo $@ starting
$(V1)$(shell echo $(PACKAGE_DIR) > $(BUILD_DIR)/package_dir) $(V1)$(shell echo $(FW_DIR) > $(BUILD_DIR)/package_dir)
$(V1)sed -i -e "$(SED_SCRIPT)" $(DEB_BUILD_DIR)/changelog $(V1)sed -i -e "$(SED_SCRIPT)" $(DEB_BUILD_DIR)/changelog
$(BUILD_DIR)/build: package_flight $(BUILD_DIR)/build: package_flight

6
package/linux/deb_common/rules Executable file → Normal file
View File

@ -43,8 +43,10 @@ install:
cp -arp package/linux/openpilot_menu.png debian/openpilot/usr/share/pixmaps cp -arp package/linux/openpilot_menu.png debian/openpilot/usr/share/pixmaps
cp -arp package/linux/openpilot_menu.menu debian/openpilot/etc/xdg/menus/applications-merged cp -arp package/linux/openpilot_menu.menu debian/openpilot/etc/xdg/menus/applications-merged
cp -arp package/linux/openpilot_menu.directory debian/openpilot/usr/share/desktop-directories cp -arp package/linux/openpilot_menu.directory debian/openpilot/usr/share/desktop-directories
ifdef $(PACKAGE_DIR) ifdef PACKAGE_DIR
cp -ar $(PACKAGE_DIR)/* debian/openpilot/usr/local/OpenPilot/firmware/ cp -a $(PACKAGE_DIR)/*.opfw debian/openpilot/usr/local/OpenPilot/firmware/
else
$(error PACKAGE_DIR not defined! $(PACKAGE_DIR))
endif endif
ln -s /usr/local/OpenPilot/bin/openpilotgcs.bin `pwd`/debian/openpilot/usr/bin/openpilot-gcs ln -s /usr/local/OpenPilot/bin/openpilotgcs.bin `pwd`/debian/openpilot/usr/bin/openpilot-gcs
rm -rf debian/openpilot/usr/local/OpenPilot/share/openpilotgcs/sounds/sounds rm -rf debian/openpilot/usr/local/OpenPilot/share/openpilotgcs/sounds/sounds