mirror of
https://github.com/mirdej/synkie.git
synced 2026-06-16 12:59:39 +02:00
synchronized record button to odd/even signal to prevent visible glitches
This commit is contained in:
@@ -20,17 +20,12 @@
|
||||
// Globals
|
||||
// ------------------------------------------------------------------------------
|
||||
|
||||
uint8_t table [256];
|
||||
volatile uint16_t ref_in;
|
||||
volatile uint8_t x_in, y_in;
|
||||
uint8_t ad_idx;
|
||||
volatile uint8_t is_recording;
|
||||
uint8_t test;
|
||||
#define IN_MAX 930 // voltage reference is 1.1V - cv-max is 1V
|
||||
|
||||
|
||||
volatile unsigned long milliseconds;
|
||||
ISR(TIMER1_COMPA_vect) { milliseconds++;}
|
||||
unsigned long millis() { return milliseconds; }
|
||||
uint8_t table [256];
|
||||
uint8_t x_in, y_in;
|
||||
uint8_t ad_idx;
|
||||
volatile uint8_t is_recording;
|
||||
|
||||
// ==============================================================================
|
||||
// Functions
|
||||
@@ -42,8 +37,8 @@ void ad_start_conversion() {
|
||||
}
|
||||
|
||||
void ad_set_channel(uint8_t chan) {
|
||||
ADMUX = (1 << REFS1) | (chan & 0x03); // Internal 1.1V Voltage Reference.
|
||||
// Cannot use external reference (must be min 2 Volts)
|
||||
ADMUX = (1 << REFS1) | (chan & 0x03); // Internal 1.1V Voltage IN_MAX.
|
||||
// Cannot use external IN_MAX (must be min 2 Volts)
|
||||
}
|
||||
|
||||
uint16_t ad_Read10bit (void) {
|
||||
@@ -53,7 +48,7 @@ uint16_t ad_Read10bit (void) {
|
||||
uint8_t to_scale(uint16_t in) {
|
||||
uint32_t t;
|
||||
t = (uint32_t)in * 255;
|
||||
t /= ref_in;
|
||||
t /= IN_MAX;
|
||||
if (t > 255) t = 255;
|
||||
return (uint8_t)t ;
|
||||
}
|
||||
@@ -67,14 +62,11 @@ void check_ad(void){
|
||||
uint16_t temp;
|
||||
temp = ad_Read10bit();
|
||||
|
||||
if (ad_idx == 1) {
|
||||
ref_in = temp;
|
||||
ad_idx = 2;
|
||||
} else if (ad_idx == 2) { //
|
||||
if (ad_idx == 2) { //
|
||||
ad_idx = 3;
|
||||
y_in = to_scale(temp);
|
||||
} else {
|
||||
ad_idx = 1;
|
||||
ad_idx = 2;
|
||||
x_in = to_scale(temp);
|
||||
}
|
||||
|
||||
@@ -82,7 +74,7 @@ void check_ad(void){
|
||||
ad_start_conversion();
|
||||
}
|
||||
|
||||
void check_btn(void){
|
||||
ISR(INT0_vect){
|
||||
is_recording = ~PINB & (1 << 0);
|
||||
}
|
||||
|
||||
@@ -104,23 +96,21 @@ void pwm_off(void) {
|
||||
void init (void) {
|
||||
// setup Ports
|
||||
// PB5 PB4 PB3 PB2 PB1 PB0
|
||||
// RESET Y-IN X-IN REF Y-OUT BTN
|
||||
// RESET Y-IN X-IN Sync Y-OUT BTN
|
||||
|
||||
DDRB = (1 << 1); // output for PWM
|
||||
PORTB = (1 << 0); // pullup on Button
|
||||
|
||||
// setup analog converter.
|
||||
ADCSRA = (1 << ADEN) | (1 << ADPS2) | (1 << ADPS1); // enable adc, prescaler 64
|
||||
ADCSRA = (1 << ADEN) | (1 << ADPS2) | (0 << ADPS1) | (0 << ADPS0); // enable adc, prescaler 16
|
||||
|
||||
ad_idx = 1;
|
||||
ad_idx = 2;
|
||||
ad_set_channel(ad_idx);
|
||||
ad_start_conversion();
|
||||
|
||||
|
||||
// setup timer 1 for debouncing stuff
|
||||
TCCR1 = (1<<CTC1)|(7<<CS10); // CTC mode, div64
|
||||
OCR1C = 0.001 * F_CPU/64 - 1; // 1ms, F_CPU @16MHz, div64
|
||||
TIMSK |= (1<<OCIE1A);
|
||||
// INT 0 interrupt on V-Sync Input
|
||||
MCUCR = (1 << ISC01) | (1 << ISC00); // rising edge of odd/even generates interrupt
|
||||
GIMSK = (1 << INT0); // enable interrupt
|
||||
sei();
|
||||
}
|
||||
|
||||
@@ -129,36 +119,31 @@ void init (void) {
|
||||
// ------------------------------------------------------------------------------
|
||||
|
||||
int main (void) {
|
||||
init();
|
||||
|
||||
unsigned int last_millis;
|
||||
unsigned int now;
|
||||
unsigned char y_out;
|
||||
|
||||
init();
|
||||
y_in = 220;
|
||||
|
||||
while(1) {
|
||||
check_ad();
|
||||
|
||||
check_ad();
|
||||
now = millis();
|
||||
|
||||
if (now - last_millis > 4) {
|
||||
last_millis = now;
|
||||
check_btn();
|
||||
|
||||
if (is_recording) {
|
||||
table[x_in] = y_in;
|
||||
}
|
||||
y_out = table[x_in];
|
||||
|
||||
if (y_out == 0) {
|
||||
pwm_off();
|
||||
PORTB &= ~(1 << 1); // turn off pin
|
||||
} else if (y_out == 255) {
|
||||
pwm_off();
|
||||
PORTB |= (1 << 1); // turn on pin
|
||||
} else {
|
||||
OCR0B = y_out;
|
||||
pwm_on();
|
||||
}
|
||||
if (is_recording) {
|
||||
table[x_in] = y_in;
|
||||
}
|
||||
y_out = table[x_in];
|
||||
|
||||
if (y_out == 0) {
|
||||
pwm_off();
|
||||
PORTB &= ~(1 << 1); // turn off pin
|
||||
} else if (y_out == 255) {
|
||||
pwm_off();
|
||||
PORTB |= (1 << 1); // turn on pin
|
||||
} else {
|
||||
OCR0B = y_out;
|
||||
pwm_on();
|
||||
}
|
||||
}
|
||||
return 0;
|
||||
|
||||
File diff suppressed because one or more lines are too long
+180
-203
@@ -66,7 +66,7 @@
|
||||
<wire x1="104.7625" y1="-0.3175" x2="104.7625" y2="79.6825" width="0" layer="20"/>
|
||||
<wire x1="104.7625" y1="79.6825" x2="0" y2="80" width="0" layer="20"/>
|
||||
<wire x1="0" y1="80" x2="0" y2="0" width="0" layer="20"/>
|
||||
<text x="3.4925" y="38.1" size="1.778" layer="1" font="vector">sk505-lut-20131108</text>
|
||||
<text x="2.2225" y="36.83" size="1.778" layer="1" font="vector">sk505-lut-20131108b</text>
|
||||
</plain>
|
||||
<libraries>
|
||||
<library name="rcl">
|
||||
@@ -221,6 +221,22 @@ Cermet MIL-R-22097</description>
|
||||
<text x="-3.81" y="3.81" size="1.016" layer="25" ratio="10">>NAME</text>
|
||||
<text x="-3.81" y="-5.08" size="1.016" layer="27" ratio="10">>VALUE</text>
|
||||
</package>
|
||||
<package name="22-23-2041">
|
||||
<description>.100" (2.54mm) Center Header - 4 Pin</description>
|
||||
<wire x1="-5.08" y1="3.175" x2="5.08" y2="3.175" width="0.254" layer="21"/>
|
||||
<wire x1="5.08" y1="3.175" x2="5.08" y2="1.27" width="0.254" layer="21"/>
|
||||
<wire x1="5.08" y1="1.27" x2="5.08" y2="-3.175" width="0.254" layer="21"/>
|
||||
<wire x1="5.08" y1="-3.175" x2="-5.08" y2="-3.175" width="0.254" layer="21"/>
|
||||
<wire x1="-5.08" y1="-3.175" x2="-5.08" y2="1.27" width="0.254" layer="21"/>
|
||||
<wire x1="-5.08" y1="1.27" x2="-5.08" y2="3.175" width="0.254" layer="21"/>
|
||||
<wire x1="-5.08" y1="1.27" x2="5.08" y2="1.27" width="0.254" layer="21"/>
|
||||
<pad name="1" x="-3.81" y="0" drill="1" shape="long" rot="R90"/>
|
||||
<pad name="2" x="-1.27" y="0" drill="1" shape="long" rot="R90"/>
|
||||
<pad name="3" x="1.27" y="0" drill="1" shape="long" rot="R90"/>
|
||||
<pad name="4" x="3.81" y="0" drill="1" shape="long" rot="R90"/>
|
||||
<text x="-5.08" y="3.81" size="1.016" layer="25" ratio="10">>NAME</text>
|
||||
<text x="-5.08" y="-5.08" size="1.016" layer="27" ratio="10">>VALUE</text>
|
||||
</package>
|
||||
</packages>
|
||||
</library>
|
||||
<library name="anyma-lib">
|
||||
@@ -337,23 +353,6 @@ Cermet MIL-R-22097</description>
|
||||
</package>
|
||||
</packages>
|
||||
</library>
|
||||
<library name="testpad">
|
||||
<description><b>Test Pins/Pads</b><p>
|
||||
Cream on SMD OFF.<br>
|
||||
new: Attribute TP_SIGNAL_NAME<br>
|
||||
<author>Created by librarian@cadsoft.de</author></description>
|
||||
<packages>
|
||||
<package name="P1-13">
|
||||
<description><b>TEST PAD</b></description>
|
||||
<circle x="0" y="0" radius="0.762" width="0.1524" layer="51"/>
|
||||
<pad name="TP" x="0" y="0" drill="1.3208" diameter="2.159" shape="octagon"/>
|
||||
<text x="-1.016" y="1.27" size="1.27" layer="25" ratio="10">>NAME</text>
|
||||
<text x="0" y="0" size="0.0254" layer="27">>VALUE</text>
|
||||
<text x="-1.27" y="-2.54" size="1" layer="37">>TP_SIGNAL_NAME</text>
|
||||
<rectangle x1="-0.3302" y1="-0.3302" x2="0.3302" y2="0.3302" layer="51"/>
|
||||
</package>
|
||||
</packages>
|
||||
</library>
|
||||
<library name="linear">
|
||||
<description><b>Linear Devices</b><p>
|
||||
Operational amplifiers, comparators, voltage regulators, ADCs, DACs, etc.<p>
|
||||
@@ -594,42 +593,41 @@ design rules under a new name.</description>
|
||||
<attribute name="MF" value="MOLEX" x="-6.35" y="20.32" size="1.778" layer="28" rot="MR0" display="off"/>
|
||||
<attribute name="OC_FARNELL" value="1462950" x="-6.35" y="20.32" size="1.778" layer="28" rot="MR0" display="off"/>
|
||||
</element>
|
||||
<element name="IC1" library="anyma-lib" package="DIL08" value="TINY85-20PU" x="63.1825" y="46.6725" rot="MR0">
|
||||
<attribute name="OC_NEWARK" value="96K6521" x="63.1825" y="46.6725" size="1.778" layer="28" font="vector" rot="MR0" display="off"/>
|
||||
<attribute name="MPN" value="ATTINY13-20PU" x="63.1825" y="46.6725" size="1.778" layer="28" font="vector" rot="MR0" display="off"/>
|
||||
<attribute name="MF" value="" x="63.1825" y="46.6725" size="1.778" layer="28" font="vector" rot="MR0" display="off"/>
|
||||
<attribute name="OC_FARNELL" value="9171550" x="63.1825" y="46.6725" size="1.778" layer="28" font="vector" rot="MR0" display="off"/>
|
||||
<element name="IC1" library="anyma-lib" package="DIL08" value="TINY85-20PU" x="67.6275" y="46.6725" rot="MR0">
|
||||
<attribute name="OC_NEWARK" value="96K6521" x="67.6275" y="46.6725" size="1.778" layer="28" font="vector" rot="MR0" display="off"/>
|
||||
<attribute name="MPN" value="ATTINY13-20PU" x="67.6275" y="46.6725" size="1.778" layer="28" font="vector" rot="MR0" display="off"/>
|
||||
<attribute name="MF" value="" x="67.6275" y="46.6725" size="1.778" layer="28" font="vector" rot="MR0" display="off"/>
|
||||
<attribute name="OC_FARNELL" value="9171550" x="67.6275" y="46.6725" size="1.778" layer="28" font="vector" rot="MR0" display="off"/>
|
||||
</element>
|
||||
<element name="R1" library="rcl" package="R1206" value="47k" x="92.075" y="46.99" smashed="yes" rot="R180">
|
||||
<attribute name="NAME" x="93.345" y="45.72" size="1.27" layer="25" rot="R180"/>
|
||||
<attribute name="VALUE" x="90.805" y="48.26" size="1.27" layer="27" rot="R180"/>
|
||||
<element name="R1" library="rcl" package="R1206" value="47k" x="92.075" y="44.1325" smashed="yes" rot="R180">
|
||||
<attribute name="NAME" x="93.345" y="42.8625" size="1.27" layer="25" rot="R180"/>
|
||||
<attribute name="VALUE" x="90.805" y="45.4025" size="1.27" layer="27" rot="R180"/>
|
||||
</element>
|
||||
<element name="R2" library="rcl" package="R1206" value="100" x="92.075" y="44.7675" smashed="yes" rot="R180">
|
||||
<attribute name="NAME" x="93.345" y="43.4975" size="1.27" layer="25" rot="R180"/>
|
||||
<attribute name="VALUE" x="93.345" y="42.2275" size="1.27" layer="27" rot="R180"/>
|
||||
<element name="R2" library="rcl" package="R1206" value="100" x="92.075" y="41.91" smashed="yes" rot="R180">
|
||||
<attribute name="NAME" x="93.345" y="40.64" size="1.27" layer="25" rot="R180"/>
|
||||
<attribute name="VALUE" x="93.345" y="39.37" size="1.27" layer="27" rot="R180"/>
|
||||
</element>
|
||||
<element name="R3" library="rcl" package="R1206" value="100" x="83.5025" y="44.7675" rot="R180"/>
|
||||
<element name="D1" library="diode" package="SOT23" value="BAT54S-L44" x="87.63" y="45.72" rot="R180"/>
|
||||
<element name="Y-IN" library="wirepad" package="3,17/1,1" value="" x="96.52" y="46.0375"/>
|
||||
<element name="C1" library="rcl" package="C0603" value="100n" x="54.61" y="46.6725" rot="R270"/>
|
||||
<element name="C2" library="rcl" package="C1206" value="100n" x="69.85" y="46.6725" rot="R270"/>
|
||||
<element name="R5" library="rcl" package="R1206" value="680" x="35.8775" y="47.3075" rot="R90"/>
|
||||
<element name="Y-OUT" library="wirepad" package="3,17/1,1" value="" x="39.6875" y="46.355"/>
|
||||
<element name="JP1" library="pinhead" package="1X06" value="" x="65.7225" y="55.88" rot="MR0"/>
|
||||
<element name="TRIM1" library="rcl" package="RTRIM64Y" value="500" x="45.085" y="53.0225" rot="MR270"/>
|
||||
<element name="TP1" library="testpad" package="P1-13" value="TPSPAD1-13" x="54.61" y="50.8" rot="R90">
|
||||
<attribute name="TP_SIGNAL_NAME" value="" x="44.45" y="41.91" size="1.778" layer="27" font="vector" rot="R90" display="off"/>
|
||||
</element>
|
||||
<element name="R6" library="rcl" package="R1206" value="500" x="38.4175" y="54.2925" rot="R90"/>
|
||||
<element name="IC2" library="linear" package="SO08" value="LM833D" x="46.99" y="46.99" rot="R90"/>
|
||||
<element name="R4" library="rcl" package="R1206" value="6k8" x="49.53" y="40.9575" rot="R90"/>
|
||||
<element name="C3" library="rcl" package="CT3528" value="2u2tantal" x="32.7025" y="47.3075" rot="R270"/>
|
||||
<element name="C4" library="rcl" package="C0603" value="100n" x="46.0375" y="43.4975" rot="R180"/>
|
||||
<element name="C5" library="rcl" package="C0603" value="100n" x="47.9425" y="50.4825"/>
|
||||
<element name="R3" library="rcl" package="R1206" value="100" x="83.5025" y="41.91" rot="R180"/>
|
||||
<element name="D1" library="diode" package="SOT23" value="BAT54S-L44" x="87.63" y="42.8625" rot="R180"/>
|
||||
<element name="Y-IN" library="wirepad" package="3,17/1,1" value="" x="96.52" y="43.18"/>
|
||||
<element name="C2" library="rcl" package="C1206" value="100n" x="74.295" y="46.6725" rot="R270"/>
|
||||
<element name="R5" library="rcl" package="R1206" value="680" x="29.5275" y="47.3075" rot="R90"/>
|
||||
<element name="Y-OUT" library="wirepad" package="3,17/1,1" value="" x="33.02" y="46.6725"/>
|
||||
<element name="JP1" library="pinhead" package="1X06" value="" x="70.1675" y="55.88" rot="MR0"/>
|
||||
<element name="IC2" library="linear" package="SO08" value="LM833D" x="40.64" y="46.99" rot="R90"/>
|
||||
<element name="C3" library="rcl" package="CT3528" value="2u2tantal" x="26.3525" y="47.3075" rot="R270"/>
|
||||
<element name="C4" library="rcl" package="C0603" value="100n" x="39.6875" y="43.4975" rot="R180"/>
|
||||
<element name="C5" library="rcl" package="C0603" value="100n" x="41.5925" y="50.4825"/>
|
||||
<element name="C7" library="rcl" package="CT3528" value="10u" x="17.78" y="48.26" rot="R90"/>
|
||||
<element name="BTN" library="pinhead" package="1X02" value="" x="31.75" y="54.2925" rot="MR90"/>
|
||||
<element name="R8" library="rcl" package="R1206" value="75" x="30.48" y="26.035"/>
|
||||
<element name="TRIM2" library="rcl" package="RTRIM64Y" value="500" x="45.4025" y="33.655" rot="R270"/>
|
||||
<element name="BTN" library="pinhead" package="1X02" value="" x="25.4" y="54.2925" rot="MR90"/>
|
||||
<element name="R8" library="rcl" package="R1206" value="75" x="34.29" y="43.4975"/>
|
||||
<element name="TRIM2" library="rcl" package="RTRIM64Y" value="500" x="50.8" y="41.91" rot="MR90"/>
|
||||
<element name="X2" library="con-molex" package="22-23-2041" value="22-23-2041" x="53.975" y="48.895" rot="MR0">
|
||||
<attribute name="OC_NEWARK" value="38C0355" x="53.975" y="48.895" size="1.778" layer="28" font="vector" rot="MR0" display="off"/>
|
||||
<attribute name="MPN" value="22-23-2041" x="53.975" y="48.895" size="1.778" layer="28" font="vector" rot="MR0" display="off"/>
|
||||
<attribute name="MF" value="MOLEX" x="53.975" y="48.895" size="1.778" layer="28" font="vector" rot="MR0" display="off"/>
|
||||
<attribute name="OC_FARNELL" value="1462920" x="53.975" y="48.895" size="1.778" layer="28" font="vector" rot="MR0" display="off"/>
|
||||
</element>
|
||||
</elements>
|
||||
<signals>
|
||||
<signal name="+5V">
|
||||
@@ -640,47 +638,42 @@ design rules under a new name.</description>
|
||||
<contactref element="JP1" pad="2"/>
|
||||
<contactref element="D1" pad="2"/>
|
||||
<contactref element="D501" pad="2"/>
|
||||
<contactref element="R6" pad="2"/>
|
||||
<contactref element="IC2" pad="8"/>
|
||||
<contactref element="C4" pad="2"/>
|
||||
<wire x1="86.68" y1="46.82" x2="84.7725" y2="46.82" width="0.4064" layer="1"/>
|
||||
<wire x1="84.7725" y1="46.82" x2="83.5025" y2="48.09" width="0.4064" layer="1"/>
|
||||
<wire x1="83.5025" y1="48.09" x2="83.5025" y2="50.8" width="0.4064" layer="1"/>
|
||||
<wire x1="86.68" y1="43.9625" x2="84.7725" y2="43.9625" width="0.4064" layer="1"/>
|
||||
<wire x1="84.7725" y1="43.9625" x2="83.5025" y2="44.5975" width="0.4064" layer="1"/>
|
||||
<wire x1="83.5025" y1="44.5975" x2="83.5025" y2="50.8" width="0.4064" layer="1"/>
|
||||
<wire x1="83.5025" y1="50.8" x2="84.7725" y2="52.07" width="0.4064" layer="1"/>
|
||||
<wire x1="84.7725" y1="52.07" x2="86.68" y2="52.07" width="0.4064" layer="1"/>
|
||||
<wire x1="86.68" y1="52.07" x2="86.68" y2="51.9" width="0.4064" layer="1"/>
|
||||
<wire x1="69.5325" y1="55.88" x2="69.5325" y2="59.055" width="0.8128" layer="1"/>
|
||||
<wire x1="69.5325" y1="59.055" x2="85.0925" y2="59.055" width="0.8128" layer="1"/>
|
||||
<wire x1="73.9775" y1="55.88" x2="73.9775" y2="59.055" width="0.8128" layer="1"/>
|
||||
<wire x1="73.9775" y1="59.055" x2="85.0925" y2="59.055" width="0.8128" layer="1"/>
|
||||
<wire x1="85.0925" y1="59.055" x2="86.68" y2="57.4675" width="0.8128" layer="1"/>
|
||||
<wire x1="86.68" y1="57.4675" x2="86.68" y2="51.9" width="0.8128" layer="1"/>
|
||||
<wire x1="69.5325" y1="55.88" x2="69.5325" y2="50.165" width="0.8128" layer="1"/>
|
||||
<wire x1="69.5325" y1="50.165" x2="66.9925" y2="50.165" width="0.8128" layer="1"/>
|
||||
<wire x1="66.9925" y1="50.165" x2="66.9925" y2="50.4825" width="0.4064" layer="1"/>
|
||||
<wire x1="69.85" y1="48.0725" x2="69.5325" y2="48.0725" width="0.4064" layer="1"/>
|
||||
<wire x1="69.5325" y1="48.0725" x2="69.5325" y2="50.165" width="0.8128" layer="1"/>
|
||||
<wire x1="44.39" y1="45.085" x2="45.1875" y2="45.085" width="0.4064" layer="1"/>
|
||||
<wire x1="45.1875" y1="45.085" x2="45.1875" y2="43.4975" width="0.4064" layer="1"/>
|
||||
<wire x1="38.4175" y1="55.7145" x2="38.4175" y2="59.055" width="0.4064" layer="1"/>
|
||||
<wire x1="69.5325" y1="59.055" x2="38.4175" y2="59.055" width="0.8128" layer="1"/>
|
||||
<wire x1="38.4175" y1="55.7145" x2="38.4175" y2="55.5625" width="0.4064" layer="1"/>
|
||||
<wire x1="38.4175" y1="55.7145" x2="38.1" y2="55.7145" width="0.4064" layer="1"/>
|
||||
<wire x1="38.1" y1="55.7145" x2="38.1" y2="59.055" width="0.4064" layer="1"/>
|
||||
<wire x1="38.1" y1="59.055" x2="6.35" y2="59.055" width="0.8128" layer="1"/>
|
||||
<wire x1="6.35" y1="59.055" x2="4.7625" y2="57.4675" width="0.8128" layer="1"/>
|
||||
<wire x1="4.7625" y1="57.4675" x2="4.7625" y2="49.4425" width="0.8128" layer="1"/>
|
||||
<wire x1="73.9775" y1="55.88" x2="73.9775" y2="50.165" width="0.8128" layer="1"/>
|
||||
<wire x1="73.9775" y1="50.165" x2="71.4375" y2="50.165" width="0.8128" layer="1"/>
|
||||
<wire x1="71.4375" y1="50.165" x2="71.4375" y2="50.4825" width="0.4064" layer="1"/>
|
||||
<wire x1="74.295" y1="48.0725" x2="73.9775" y2="48.0725" width="0.4064" layer="1"/>
|
||||
<wire x1="73.9775" y1="48.0725" x2="73.9775" y2="50.165" width="0.8128" layer="1"/>
|
||||
<wire x1="38.04" y1="45.085" x2="38.8375" y2="45.085" width="0.4064" layer="1"/>
|
||||
<wire x1="38.8375" y1="45.085" x2="38.8375" y2="43.4975" width="0.4064" layer="1"/>
|
||||
<wire x1="73.9775" y1="59.055" x2="6.35" y2="59.055" width="0.8128" layer="1"/>
|
||||
<wire x1="8.89" y1="48.26" x2="8.89" y2="49.53" width="0.4064" layer="1"/>
|
||||
<wire x1="8.89" y1="49.53" x2="4.7625" y2="49.53" width="0.8128" layer="1"/>
|
||||
<wire x1="4.7625" y1="49.53" x2="4.7625" y2="49.4425" width="0.4064" layer="1"/>
|
||||
<wire x1="45.1875" y1="43.4975" x2="45.1875" y2="42.6475" width="0.8128" layer="1"/>
|
||||
<wire x1="45.1875" y1="42.6475" x2="44.7675" y2="42.2275" width="0.8128" layer="1"/>
|
||||
<wire x1="44.7675" y1="42.2275" x2="41.275" y2="42.2275" width="0.8128" layer="1"/>
|
||||
<via x="41.275" y="42.2275" extent="1-16" drill="0.8" diameter="1.2" shape="square"/>
|
||||
<wire x1="41.275" y1="42.2275" x2="10.4775" y2="42.2275" width="0.8128" layer="16"/>
|
||||
<wire x1="10.4775" y1="42.2275" x2="8.5725" y2="44.1325" width="0.8128" layer="16"/>
|
||||
<wire x1="38.8375" y1="43.4975" x2="38.8375" y2="42.6475" width="0.8128" layer="1"/>
|
||||
<wire x1="38.8375" y1="42.6475" x2="38.735" y2="40.9575" width="0.8128" layer="1"/>
|
||||
<wire x1="38.735" y1="40.9575" x2="35.2425" y2="40.9575" width="0.8128" layer="1"/>
|
||||
<via x="35.2425" y="40.9575" extent="1-16" drill="0.8" diameter="1.2" shape="square"/>
|
||||
<wire x1="35.2425" y1="40.9575" x2="12.3825" y2="40.9575" width="0.8128" layer="16"/>
|
||||
<wire x1="12.3825" y1="40.9575" x2="8.5725" y2="44.1325" width="0.8128" layer="16"/>
|
||||
<wire x1="8.5725" y1="44.1325" x2="8.5725" y2="54.2925" width="0.8128" layer="16"/>
|
||||
<wire x1="8.5725" y1="54.2925" x2="8.89" y2="54.61" width="0.8128" layer="16"/>
|
||||
<via x="8.89" y="54.61" extent="1-16" drill="0.8" diameter="1.2" shape="square"/>
|
||||
<wire x1="8.89" y1="54.61" x2="8.89" y2="48.26" width="0.8128" layer="1"/>
|
||||
<wire x1="6.35" y1="59.055" x2="4.445" y2="57.15" width="0.8128" layer="1"/>
|
||||
<wire x1="4.445" y1="57.15" x2="4.445" y2="49.76" width="0.8128" layer="1"/>
|
||||
<wire x1="4.445" y1="49.76" x2="4.7625" y2="49.4425" width="0.8128" layer="1"/>
|
||||
</signal>
|
||||
<signal name="N$10">
|
||||
<contactref element="R502" pad="1"/>
|
||||
@@ -710,65 +703,62 @@ design rules under a new name.</description>
|
||||
<contactref element="D501" pad="1"/>
|
||||
<contactref element="R1" pad="2"/>
|
||||
<contactref element="D1" pad="1"/>
|
||||
<contactref element="C1" pad="2"/>
|
||||
<contactref element="C2" pad="2"/>
|
||||
<contactref element="JP1" pad="1"/>
|
||||
<contactref element="TRIM1" pad="1"/>
|
||||
<contactref element="C3" pad="-"/>
|
||||
<contactref element="C4" pad="1"/>
|
||||
<contactref element="C5" pad="1"/>
|
||||
<contactref element="C7" pad="-"/>
|
||||
<contactref element="BTN" pad="1"/>
|
||||
<wire x1="90.653" y1="52.07" x2="92.075" y2="52.07" width="0.4064" layer="1"/>
|
||||
<wire x1="92.075" y1="52.07" x2="92.075" y2="46.6725" width="0.4064" layer="1"/>
|
||||
<wire x1="92.075" y1="46.6725" x2="90.653" y2="46.6725" width="0.4064" layer="1"/>
|
||||
<wire x1="90.653" y1="46.6725" x2="90.653" y2="46.99" width="0.4064" layer="1"/>
|
||||
<wire x1="88.58" y1="46.82" x2="90.653" y2="46.82" width="0.4064" layer="1"/>
|
||||
<wire x1="90.653" y1="46.82" x2="90.653" y2="46.99" width="0.4064" layer="1"/>
|
||||
<wire x1="92.075" y1="52.07" x2="92.075" y2="43.9625" width="0.4064" layer="1"/>
|
||||
<wire x1="92.075" y1="43.9625" x2="92.075" y2="43.815" width="0.4064" layer="1"/>
|
||||
<wire x1="92.075" y1="43.815" x2="90.653" y2="43.815" width="0.4064" layer="1"/>
|
||||
<wire x1="90.653" y1="43.815" x2="90.653" y2="44.1325" width="0.4064" layer="1"/>
|
||||
<wire x1="88.58" y1="43.9625" x2="90.653" y2="43.9625" width="0.4064" layer="1"/>
|
||||
<wire x1="90.653" y1="43.9625" x2="90.653" y2="44.1325" width="0.4064" layer="1"/>
|
||||
<wire x1="88.58" y1="51.9" x2="90.653" y2="51.9" width="0.4064" layer="1"/>
|
||||
<wire x1="90.653" y1="51.9" x2="90.653" y2="52.07" width="0.4064" layer="1"/>
|
||||
<wire x1="72.0725" y1="55.88" x2="72.39" y2="55.88" width="0.4064" layer="1"/>
|
||||
<wire x1="72.39" y1="55.88" x2="72.39" y2="45.4025" width="0.4064" layer="1"/>
|
||||
<wire x1="72.39" y1="45.4025" x2="69.85" y2="45.4025" width="0.4064" layer="1"/>
|
||||
<wire x1="69.85" y1="45.4025" x2="69.85" y2="45.2725" width="0.4064" layer="1"/>
|
||||
<wire x1="69.85" y1="45.2725" x2="69.85" y2="40.3225" width="0.4064" layer="1"/>
|
||||
<wire x1="69.85" y1="40.3225" x2="65.7225" y2="40.3225" width="0.4064" layer="1"/>
|
||||
<wire x1="65.7225" y1="40.3225" x2="65.7225" y2="45.085" width="0.4064" layer="1"/>
|
||||
<wire x1="65.7225" y1="45.085" x2="59.3725" y2="45.085" width="0.4064" layer="1"/>
|
||||
<wire x1="59.3725" y1="45.085" x2="59.3725" y2="42.8625" width="0.4064" layer="1"/>
|
||||
<wire x1="46.8875" y1="43.4975" x2="47.0925" y2="43.4975" width="0.4064" layer="1"/>
|
||||
<wire x1="47.0925" y1="43.4975" x2="47.0925" y2="50.4825" width="0.4064" layer="1"/>
|
||||
<wire x1="54.61" y1="45.8225" x2="53.9775" y2="45.8225" width="0.4064" layer="1"/>
|
||||
<wire x1="53.6575" y1="41.74" x2="53.6575" y2="40.9575" width="0.4064" layer="1"/>
|
||||
<wire x1="53.6575" y1="40.9575" x2="46.8875" y2="40.9575" width="0.4064" layer="1"/>
|
||||
<wire x1="46.8875" y1="40.9575" x2="46.8875" y2="43.4975" width="0.4064" layer="1"/>
|
||||
<wire x1="32.7025" y1="45.8075" x2="32.385" y2="45.8075" width="0.4064" layer="1"/>
|
||||
<wire x1="32.385" y1="45.8075" x2="32.385" y2="44.7675" width="0.4064" layer="1"/>
|
||||
<wire x1="32.385" y1="44.7675" x2="32.385" y2="36.83" width="0.4064" layer="1"/>
|
||||
<wire x1="32.385" y1="36.83" x2="59.055" y2="36.5125" width="0.4064" layer="1"/>
|
||||
<wire x1="59.055" y1="36.5125" x2="59.3725" y2="42.8625" width="0.4064" layer="1"/>
|
||||
<wire x1="47.625" y1="53.0225" x2="47.0925" y2="53.0225" width="0.4064" layer="1"/>
|
||||
<wire x1="47.0925" y1="53.0225" x2="47.0925" y2="50.838271875" width="0.4064" layer="1"/>
|
||||
<wire x1="47.0925" y1="50.838271875" x2="47.0925" y2="50.4825" width="0.4064" layer="1"/>
|
||||
<wire x1="88.58" y1="46.82" x2="92.075" y2="46.82" width="0.4064" layer="1"/>
|
||||
<wire x1="92.075" y1="46.82" x2="91.7575" y2="36.5125" width="0.4064" layer="1"/>
|
||||
<wire x1="91.7575" y1="36.5125" x2="59.055" y2="36.5125" width="0.4064" layer="1"/>
|
||||
<wire x1="47.0925" y1="50.838271875" x2="31.75" y2="50.838271875" width="0.4064" layer="1"/>
|
||||
<wire x1="31.75" y1="50.838271875" x2="31.75" y2="52.705" width="0.4064" layer="1"/>
|
||||
<wire x1="31.75" y1="52.705" x2="31.75" y2="53.0225" width="0.4064" layer="1"/>
|
||||
<wire x1="31.75" y1="50.838271875" x2="29.5275" y2="50.838271875" width="0.4064" layer="1"/>
|
||||
<wire x1="29.5275" y1="50.838271875" x2="29.5275" y2="45.72" width="0.4064" layer="1"/>
|
||||
<wire x1="29.5275" y1="45.72" x2="32.7025" y2="45.72" width="0.4064" layer="1"/>
|
||||
<wire x1="32.7025" y1="45.72" x2="32.7025" y2="45.8075" width="0.4064" layer="1"/>
|
||||
<wire x1="76.5175" y1="55.88" x2="76.835" y2="55.88" width="0.4064" layer="1"/>
|
||||
<wire x1="76.835" y1="55.88" x2="76.835" y2="45.4025" width="0.4064" layer="1"/>
|
||||
<wire x1="76.835" y1="45.4025" x2="74.295" y2="45.4025" width="0.4064" layer="1"/>
|
||||
<wire x1="74.295" y1="45.4025" x2="74.295" y2="45.2725" width="0.4064" layer="1"/>
|
||||
<wire x1="74.295" y1="45.2725" x2="74.295" y2="40.3225" width="0.4064" layer="1"/>
|
||||
<wire x1="74.295" y1="40.3225" x2="70.1675" y2="40.3225" width="0.4064" layer="1"/>
|
||||
<wire x1="70.1675" y1="40.3225" x2="70.1675" y2="45.085" width="0.4064" layer="1"/>
|
||||
<wire x1="70.1675" y1="45.085" x2="63.8175" y2="45.085" width="0.4064" layer="1"/>
|
||||
<wire x1="63.8175" y1="45.085" x2="63.8175" y2="42.8625" width="0.4064" layer="1"/>
|
||||
<wire x1="40.5375" y1="43.4975" x2="40.7425" y2="43.4975" width="0.4064" layer="1"/>
|
||||
<wire x1="40.7425" y1="43.4975" x2="40.7425" y2="50.4825" width="0.4064" layer="1"/>
|
||||
<wire x1="47.3075" y1="41.74" x2="47.3075" y2="40.9575" width="0.4064" layer="1"/>
|
||||
<wire x1="47.3075" y1="40.9575" x2="40.5375" y2="40.9575" width="0.4064" layer="1"/>
|
||||
<wire x1="40.5375" y1="40.9575" x2="40.5375" y2="43.4975" width="0.4064" layer="1"/>
|
||||
<wire x1="26.3525" y1="45.8075" x2="26.035" y2="45.8075" width="0.4064" layer="1"/>
|
||||
<wire x1="26.035" y1="45.8075" x2="26.035" y2="44.7675" width="0.4064" layer="1"/>
|
||||
<wire x1="26.035" y1="44.7675" x2="34.6075" y2="36.83" width="0.4064" layer="1"/>
|
||||
<wire x1="34.6075" y1="36.83" x2="63.5" y2="36.5125" width="0.4064" layer="1"/>
|
||||
<wire x1="63.5" y1="36.5125" x2="63.8175" y2="42.8625" width="0.4064" layer="1"/>
|
||||
<wire x1="40.7425" y1="53.0225" x2="40.7425" y2="51.790771875" width="0.4064" layer="1"/>
|
||||
<wire x1="40.7425" y1="51.790771875" x2="40.7425" y2="50.4825" width="0.4064" layer="1"/>
|
||||
<wire x1="88.58" y1="43.9625" x2="92.075" y2="43.9625" width="0.4064" layer="1"/>
|
||||
<wire x1="92.075" y1="43.815" x2="92.075" y2="36.5125" width="0.4064" layer="1"/>
|
||||
<wire x1="92.075" y1="36.5125" x2="63.5" y2="36.5125" width="0.4064" layer="1"/>
|
||||
<wire x1="40.7425" y1="51.790771875" x2="25.4" y2="51.790771875" width="0.4064" layer="1"/>
|
||||
<wire x1="25.4" y1="51.790771875" x2="25.4" y2="52.705" width="0.4064" layer="1"/>
|
||||
<wire x1="25.4" y1="52.705" x2="25.4" y2="53.0225" width="0.4064" layer="1"/>
|
||||
<wire x1="25.4" y1="51.790771875" x2="23.1775" y2="50.838271875" width="0.4064" layer="1"/>
|
||||
<wire x1="23.1775" y1="50.838271875" x2="23.1775" y2="45.72" width="0.4064" layer="1"/>
|
||||
<wire x1="23.1775" y1="45.72" x2="26.3525" y2="45.72" width="0.4064" layer="1"/>
|
||||
<wire x1="26.3525" y1="45.72" x2="26.3525" y2="45.8075" width="0.4064" layer="1"/>
|
||||
<wire x1="4.7625" y1="46.4425" x2="4.7625" y2="44.7675" width="0.4064" layer="1"/>
|
||||
<wire x1="4.7625" y1="44.7675" x2="11.7475" y2="44.7675" width="0.4064" layer="1"/>
|
||||
<wire x1="11.7475" y1="44.7675" x2="32.385" y2="44.7675" width="0.4064" layer="1"/>
|
||||
<wire x1="11.7475" y1="44.7675" x2="26.035" y2="44.7675" width="0.4064" layer="1"/>
|
||||
<wire x1="11.43" y1="48.26" x2="11.7475" y2="48.26" width="0.4064" layer="1"/>
|
||||
<wire x1="11.7475" y1="48.26" x2="11.7475" y2="44.7675" width="0.4064" layer="1"/>
|
||||
<wire x1="17.78" y1="49.76" x2="17.78" y2="52.07" width="0.4064" layer="1"/>
|
||||
<wire x1="17.78" y1="52.07" x2="11.7475" y2="52.07" width="0.4064" layer="1"/>
|
||||
<wire x1="11.7475" y1="52.07" x2="11.7475" y2="48.26" width="0.4064" layer="1"/>
|
||||
<wire x1="31.75" y1="52.705" x2="17.78" y2="52.705" width="0.4064" layer="1"/>
|
||||
<wire x1="25.4" y1="52.705" x2="17.78" y2="52.705" width="0.4064" layer="1"/>
|
||||
<wire x1="17.78" y1="52.705" x2="17.78" y2="52.07" width="0.4064" layer="1"/>
|
||||
<polygon width="0.254" layer="1" isolate="0.8128">
|
||||
<vertex x="2.2225" y="60.6425"/>
|
||||
@@ -777,70 +767,57 @@ design rules under a new name.</description>
|
||||
<vertex x="1.905" y="36.195"/>
|
||||
</polygon>
|
||||
<contactref element="TRIM2" pad="1"/>
|
||||
<wire x1="4.7625" y1="44.7675" x2="42.8625" y2="33.655" width="0" layer="19" extent="1-1"/>
|
||||
<contactref element="IC2" pad="3"/>
|
||||
<contactref element="IC2" pad="2"/>
|
||||
</signal>
|
||||
<signal name="N$2">
|
||||
<contactref element="IC1" pad="7"/>
|
||||
<contactref element="JP1" pad="4"/>
|
||||
<wire x1="64.4525" y1="50.4825" x2="64.4525" y2="55.88" width="0.4064" layer="1"/>
|
||||
<wire x1="35.56" y1="55.5625" x2="36.83" y2="54.2925" width="0.4064" layer="1"/>
|
||||
<wire x1="36.83" y1="54.2925" x2="40.005" y2="54.2925" width="0.4064" layer="1"/>
|
||||
<wire x1="40.005" y1="54.2925" x2="41.275" y2="55.5625" width="0.4064" layer="1"/>
|
||||
<wire x1="41.275" y1="55.5625" x2="41.275" y2="56.515" width="0.4064" layer="1"/>
|
||||
<wire x1="41.275" y1="56.515" x2="42.8625" y2="58.1025" width="0.4064" layer="1"/>
|
||||
<wire x1="42.8625" y1="58.1025" x2="62.865" y2="58.1025" width="0.4064" layer="1"/>
|
||||
<wire x1="62.865" y1="58.1025" x2="64.4525" y2="56.515" width="0.4064" layer="1"/>
|
||||
<wire x1="64.4525" y1="56.515" x2="64.4525" y2="55.88" width="0.4064" layer="1"/>
|
||||
<contactref element="TRIM1" pad="2"/>
|
||||
<contactref element="TP1" pad="TP"/>
|
||||
<contactref element="C1" pad="1"/>
|
||||
<contactref element="IC2" pad="3"/>
|
||||
<wire x1="54.61" y1="50.8" x2="54.61" y2="47.625" width="0.4064" layer="1"/>
|
||||
<wire x1="54.61" y1="47.625" x2="51.7525" y2="47.625" width="0.4064" layer="1"/>
|
||||
<wire x1="49.59" y1="47.625" x2="51.7525" y2="47.625" width="0.4064" layer="1"/>
|
||||
<wire x1="51.7525" y1="47.625" x2="54.61" y2="47.5225" width="0.4064" layer="1"/>
|
||||
<wire x1="45.085" y1="55.5625" x2="49.8475" y2="55.5625" width="0.4064" layer="1"/>
|
||||
<wire x1="49.8475" y1="55.5625" x2="50.8" y2="54.61" width="0.4064" layer="1"/>
|
||||
<wire x1="50.8" y1="54.61" x2="52.07" y2="53.34" width="0.4064" layer="1"/>
|
||||
<wire x1="42.8625" y1="58.1025" x2="45.085" y2="55.5625" width="0" layer="19" extent="1-1"/>
|
||||
<wire x1="54.61" y1="50.8" x2="52.07" y2="53.34" width="0" layer="19" extent="1-1"/>
|
||||
<wire x1="68.8975" y1="50.4825" x2="68.8975" y2="55.245" width="0.4064" layer="1"/>
|
||||
<contactref element="X2" pad="1"/>
|
||||
<wire x1="68.8975" y1="55.245" x2="68.8975" y2="55.88" width="0.4064" layer="1"/>
|
||||
<wire x1="57.785" y1="48.895" x2="57.785" y2="55.245" width="0.4064" layer="1"/>
|
||||
<wire x1="57.785" y1="55.245" x2="60.6425" y2="58.1025" width="0.4064" layer="1"/>
|
||||
<wire x1="60.6425" y1="58.1025" x2="67.6275" y2="58.1025" width="0.4064" layer="1"/>
|
||||
<wire x1="67.6275" y1="58.1025" x2="68.8975" y2="56.8325" width="0.4064" layer="1"/>
|
||||
<wire x1="68.8975" y1="56.8325" x2="68.8975" y2="55.88" width="0.4064" layer="1"/>
|
||||
</signal>
|
||||
<signal name="N$3">
|
||||
<contactref element="IC1" pad="6"/>
|
||||
<contactref element="JP1" pad="5"/>
|
||||
<wire x1="61.9125" y1="50.4825" x2="61.9125" y2="55.88" width="0.4064" layer="1"/>
|
||||
<wire x1="61.9125" y1="50.4825" x2="61.9125" y2="46.6725" width="0.4064" layer="1"/>
|
||||
<wire x1="61.9125" y1="46.6725" x2="61.112" y2="46.6725" width="0.4064" layer="1"/>
|
||||
<wire x1="66.3575" y1="50.4825" x2="66.3575" y2="55.88" width="0.4064" layer="1"/>
|
||||
<contactref element="TRIM2" pad="3"/>
|
||||
<wire x1="47.9425" y1="33.655" x2="61.112" y2="46.6725" width="0" layer="19" extent="1-1"/>
|
||||
<wire x1="66.3575" y1="50.4825" x2="62.865" y2="46.6725" width="0.4064" layer="1"/>
|
||||
<wire x1="62.865" y1="46.6725" x2="57.785" y2="41.5925" width="0.4064" layer="1"/>
|
||||
<wire x1="57.785" y1="41.5925" x2="53.6575" y2="41.5925" width="0.4064" layer="1"/>
|
||||
<wire x1="53.6575" y1="41.5925" x2="53.34" y2="41.91" width="0.4064" layer="1"/>
|
||||
</signal>
|
||||
<signal name="N$5">
|
||||
<contactref element="R2" pad="1"/>
|
||||
<contactref element="R1" pad="1"/>
|
||||
<contactref element="Y-IN" pad="1"/>
|
||||
<wire x1="93.497" y1="46.99" x2="93.497" y2="46.0375" width="0.4064" layer="1"/>
|
||||
<wire x1="93.497" y1="45.72" x2="93.497" y2="44.7675" width="0.4064" layer="1"/>
|
||||
<wire x1="96.52" y1="46.0375" x2="93.497" y2="46.0375" width="0.4064" layer="1"/>
|
||||
<wire x1="93.497" y1="46.0375" x2="93.497" y2="45.72" width="0.4064" layer="1"/>
|
||||
<wire x1="93.497" y1="44.1325" x2="93.497" y2="43.18" width="0.4064" layer="1"/>
|
||||
<wire x1="93.497" y1="43.18" x2="93.497" y2="41.91" width="0.4064" layer="1"/>
|
||||
<wire x1="96.52" y1="43.18" x2="93.497" y2="43.18" width="0.4064" layer="1"/>
|
||||
</signal>
|
||||
<signal name="N$6">
|
||||
<contactref element="R3" pad="1"/>
|
||||
<contactref element="D1" pad="3"/>
|
||||
<wire x1="87.63" y1="44.62" x2="84.455" y2="44.62" width="0.4064" layer="1"/>
|
||||
<wire x1="84.455" y1="44.62" x2="84.9245" y2="44.7675" width="0.4064" layer="1"/>
|
||||
<wire x1="87.63" y1="41.7625" x2="84.455" y2="41.7625" width="0.4064" layer="1"/>
|
||||
<wire x1="84.455" y1="41.7625" x2="84.9245" y2="41.91" width="0.4064" layer="1"/>
|
||||
<contactref element="R2" pad="2"/>
|
||||
<wire x1="90.653" y1="44.7675" x2="87.63" y2="44.7675" width="0.4064" layer="1"/>
|
||||
<wire x1="87.63" y1="44.7675" x2="87.63" y2="44.62" width="0.4064" layer="1"/>
|
||||
<wire x1="90.653" y1="41.91" x2="87.63" y2="41.91" width="0.4064" layer="1"/>
|
||||
<wire x1="87.63" y1="41.91" x2="87.63" y2="41.7625" width="0.4064" layer="1"/>
|
||||
</signal>
|
||||
<signal name="N$7">
|
||||
<contactref element="R3" pad="2"/>
|
||||
<contactref element="IC1" pad="3"/>
|
||||
<wire x1="82.0805" y1="44.7675" x2="81.915" y2="44.7675" width="0.4064" layer="1"/>
|
||||
<wire x1="81.915" y1="44.7675" x2="81.915" y2="39.37" width="0.4064" layer="1"/>
|
||||
<wire x1="82.0805" y1="41.91" x2="81.915" y2="41.91" width="0.4064" layer="1"/>
|
||||
<wire x1="81.915" y1="41.91" x2="81.915" y2="39.37" width="0.4064" layer="1"/>
|
||||
<wire x1="81.915" y1="39.37" x2="80.645" y2="38.1" width="0.4064" layer="1"/>
|
||||
<wire x1="80.645" y1="38.1" x2="63.1825" y2="38.1" width="0.4064" layer="1"/>
|
||||
<wire x1="63.1825" y1="38.1" x2="61.9125" y2="39.37" width="0.4064" layer="1"/>
|
||||
<wire x1="61.9125" y1="39.37" x2="61.9125" y2="42.8625" width="0.4064" layer="1"/>
|
||||
<wire x1="80.645" y1="38.1" x2="67.6275" y2="38.1" width="0.4064" layer="1"/>
|
||||
<wire x1="67.6275" y1="38.1" x2="66.3575" y2="39.37" width="0.4064" layer="1"/>
|
||||
<wire x1="66.3575" y1="39.37" x2="66.3575" y2="42.8625" width="0.4064" layer="1"/>
|
||||
</signal>
|
||||
<signal name="N$8">
|
||||
<contactref element="IC1" pad="2"/>
|
||||
@@ -849,88 +826,88 @@ design rules under a new name.</description>
|
||||
<wire x1="81.5975" y1="49.8475" x2="80.3275" y2="48.5775" width="0.4064" layer="1"/>
|
||||
<wire x1="80.3275" y1="48.5775" x2="80.3275" y2="40.3225" width="0.4064" layer="1"/>
|
||||
<wire x1="80.3275" y1="40.3225" x2="79.0575" y2="39.0525" width="0.4064" layer="1"/>
|
||||
<wire x1="79.0575" y1="39.0525" x2="65.7225" y2="39.0525" width="0.4064" layer="1"/>
|
||||
<wire x1="65.7225" y1="39.0525" x2="64.4525" y2="40.3225" width="0.4064" layer="1"/>
|
||||
<wire x1="64.4525" y1="40.3225" x2="64.4525" y2="42.8625" width="0.4064" layer="1"/>
|
||||
<wire x1="79.0575" y1="39.0525" x2="70.1675" y2="39.0525" width="0.4064" layer="1"/>
|
||||
<wire x1="70.1675" y1="39.0525" x2="68.8975" y2="40.3225" width="0.4064" layer="1"/>
|
||||
<wire x1="68.8975" y1="40.3225" x2="68.8975" y2="42.8625" width="0.4064" layer="1"/>
|
||||
</signal>
|
||||
<signal name="N$9">
|
||||
<contactref element="R5" pad="2"/>
|
||||
<contactref element="C3" pad="+"/>
|
||||
<contactref element="IC2" pad="5"/>
|
||||
<wire x1="35.8775" y1="48.7295" x2="44.39" y2="48.7295" width="0.4064" layer="1"/>
|
||||
<wire x1="44.39" y1="48.7295" x2="44.39" y2="48.895" width="0.4064" layer="1"/>
|
||||
<wire x1="32.7025" y1="48.8075" x2="35.8775" y2="48.8075" width="0.4064" layer="1"/>
|
||||
<wire x1="35.8775" y1="48.8075" x2="35.8775" y2="48.7295" width="0.4064" layer="1"/>
|
||||
<wire x1="26.3525" y1="48.8075" x2="29.5275" y2="48.8075" width="0.4064" layer="1"/>
|
||||
<wire x1="29.5275" y1="48.8075" x2="29.5275" y2="48.7295" width="0.4064" layer="1"/>
|
||||
<wire x1="38.04" y1="48.895" x2="35.8775" y2="48.895" width="0.4064" layer="1"/>
|
||||
<wire x1="35.8775" y1="48.895" x2="34.6075" y2="50.165" width="0.4064" layer="1"/>
|
||||
<wire x1="34.6075" y1="50.165" x2="30.1625" y2="50.165" width="0.4064" layer="1"/>
|
||||
<wire x1="30.1625" y1="50.165" x2="29.845" y2="49.8475" width="0.4064" layer="1"/>
|
||||
<wire x1="29.845" y1="49.8475" x2="29.845" y2="49.047" width="0.4064" layer="1"/>
|
||||
<wire x1="29.845" y1="49.047" x2="29.5275" y2="48.7295" width="0.4064" layer="1"/>
|
||||
</signal>
|
||||
<signal name="N$1">
|
||||
<contactref element="JP1" pad="3"/>
|
||||
<contactref element="IC1" pad="1"/>
|
||||
<wire x1="66.9925" y1="55.88" x2="65.7225" y2="54.61" width="0.4064" layer="1"/>
|
||||
<wire x1="65.7225" y1="54.61" x2="65.7225" y2="47.9425" width="0.4064" layer="1"/>
|
||||
<wire x1="65.7225" y1="47.9425" x2="66.9925" y2="47.9425" width="0.4064" layer="1"/>
|
||||
<wire x1="66.9925" y1="47.9425" x2="66.9925" y2="42.8625" width="0.4064" layer="1"/>
|
||||
<wire x1="71.4375" y1="55.88" x2="70.1675" y2="54.61" width="0.4064" layer="1"/>
|
||||
<wire x1="70.1675" y1="54.61" x2="70.1675" y2="47.9425" width="0.4064" layer="1"/>
|
||||
<wire x1="70.1675" y1="47.9425" x2="71.4375" y2="47.9425" width="0.4064" layer="1"/>
|
||||
<wire x1="71.4375" y1="47.9425" x2="71.4375" y2="42.8625" width="0.4064" layer="1"/>
|
||||
</signal>
|
||||
<signal name="N$4">
|
||||
<contactref element="IC1" pad="5"/>
|
||||
<contactref element="JP1" pad="6"/>
|
||||
<wire x1="59.3725" y1="50.4825" x2="59.3725" y2="55.88" width="0.4064" layer="1"/>
|
||||
<wire x1="63.8175" y1="50.4825" x2="63.8175" y2="55.88" width="0.4064" layer="1"/>
|
||||
<contactref element="BTN" pad="2"/>
|
||||
<wire x1="31.75" y1="55.5625" x2="59.3725" y2="55.88" width="0" layer="19" extent="1-1"/>
|
||||
</signal>
|
||||
<signal name="N$15">
|
||||
<contactref element="R6" pad="1"/>
|
||||
<contactref element="TRIM1" pad="3"/>
|
||||
<wire x1="38.4175" y1="52.8705" x2="42.545" y2="52.8705" width="0.4064" layer="1"/>
|
||||
<wire x1="42.545" y1="52.8705" x2="42.545" y2="53.0225" width="0.4064" layer="1"/>
|
||||
</signal>
|
||||
<signal name="N$16">
|
||||
<contactref element="IC2" pad="2"/>
|
||||
<contactref element="IC2" pad="1"/>
|
||||
<contactref element="R4" pad="2"/>
|
||||
<wire x1="49.59" y1="46.355" x2="49.59" y2="45.085" width="0.4064" layer="1"/>
|
||||
<wire x1="49.59" y1="45.085" x2="49.53" y2="45.085" width="0.4064" layer="1"/>
|
||||
<wire x1="49.53" y1="45.085" x2="49.53" y2="42.3795" width="0.4064" layer="1"/>
|
||||
<wire x1="25.4" y1="55.5625" x2="53.975" y2="55.5625" width="0.4064" layer="1"/>
|
||||
<wire x1="53.975" y1="55.5625" x2="56.515" y2="53.0225" width="0.4064" layer="1"/>
|
||||
<wire x1="56.515" y1="53.0225" x2="56.515" y2="46.99" width="0.4064" layer="1"/>
|
||||
<wire x1="56.515" y1="46.99" x2="57.785" y2="45.72" width="0.4064" layer="1"/>
|
||||
<wire x1="57.785" y1="45.72" x2="59.055" y2="45.72" width="0.4064" layer="1"/>
|
||||
<wire x1="59.055" y1="45.72" x2="63.8175" y2="50.4825" width="0.4064" layer="1"/>
|
||||
</signal>
|
||||
<signal name="N$14">
|
||||
<contactref element="IC2" pad="6"/>
|
||||
<contactref element="IC2" pad="7"/>
|
||||
<wire x1="44.39" y1="47.625" x2="44.39" y2="46.355" width="0.4064" layer="1"/>
|
||||
<wire x1="38.04" y1="47.625" x2="38.04" y2="46.355" width="0.4064" layer="1"/>
|
||||
<contactref element="R8" pad="2"/>
|
||||
<wire x1="31.902" y1="26.035" x2="44.39" y2="46.355" width="0" layer="19" extent="1-1"/>
|
||||
<wire x1="38.04" y1="46.355" x2="36.195" y2="46.355" width="0.4064" layer="1"/>
|
||||
<wire x1="36.195" y1="46.355" x2="35.56" y2="45.72" width="0.4064" layer="1"/>
|
||||
<wire x1="35.56" y1="45.72" x2="35.56" y2="43.6495" width="0.4064" layer="1"/>
|
||||
<wire x1="35.56" y1="43.6495" x2="35.712" y2="43.4975" width="0.4064" layer="1"/>
|
||||
</signal>
|
||||
<signal name="-5V">
|
||||
<contactref element="X1" pad="1"/>
|
||||
<contactref element="C7" pad="+"/>
|
||||
<contactref element="IC2" pad="4"/>
|
||||
<contactref element="C5" pad="2"/>
|
||||
<wire x1="49.59" y1="48.895" x2="48.7925" y2="48.895" width="0.4064" layer="1"/>
|
||||
<wire x1="48.7925" y1="48.895" x2="48.7925" y2="50.4825" width="0.4064" layer="1"/>
|
||||
<wire x1="43.24" y1="48.895" x2="42.4425" y2="48.895" width="0.4064" layer="1"/>
|
||||
<wire x1="42.4425" y1="48.895" x2="42.4425" y2="50.4825" width="0.4064" layer="1"/>
|
||||
<wire x1="13.97" y1="48.26" x2="13.97" y2="47.9425" width="0.8128" layer="1"/>
|
||||
<wire x1="13.97" y1="47.9425" x2="15.24" y2="46.6725" width="0.8128" layer="1"/>
|
||||
<wire x1="15.24" y1="46.6725" x2="17.78" y2="46.6725" width="0.8128" layer="1"/>
|
||||
<wire x1="17.78" y1="46.6725" x2="17.78" y2="46.76" width="0.8128" layer="1"/>
|
||||
<wire x1="17.78" y1="46.76" x2="22.225" y2="46.76" width="0.8128" layer="1"/>
|
||||
<wire x1="22.225" y1="46.76" x2="22.225" y2="46.6725" width="0.8128" layer="1"/>
|
||||
<via x="22.225" y="46.6725" extent="1-16" drill="0.8" diameter="1.2" shape="square"/>
|
||||
<wire x1="22.225" y1="46.6725" x2="31.115" y2="46.6725" width="0.8128" layer="16"/>
|
||||
<wire x1="31.115" y1="46.6725" x2="34.6075" y2="50.165" width="0.8128" layer="16"/>
|
||||
<wire x1="34.6075" y1="50.165" x2="51.1175" y2="50.165" width="0.8128" layer="16"/>
|
||||
<via x="51.1175" y="50.165" extent="1-16" drill="0.8" diameter="1.2" shape="square"/>
|
||||
<wire x1="51.1175" y1="50.165" x2="49.11" y2="50.165" width="0.8128" layer="1"/>
|
||||
<wire x1="49.11" y1="50.165" x2="48.7925" y2="50.4825" width="0.8128" layer="1"/>
|
||||
<wire x1="17.78" y1="46.76" x2="21.2725" y2="46.76" width="0.8128" layer="1"/>
|
||||
<wire x1="21.2725" y1="46.76" x2="21.2725" y2="46.6725" width="0.8128" layer="1"/>
|
||||
<via x="21.2725" y="46.6725" extent="1-16" drill="0.8" diameter="1.2" shape="square"/>
|
||||
<wire x1="21.2725" y1="46.6725" x2="24.765" y2="46.6725" width="0.8128" layer="16"/>
|
||||
<wire x1="24.765" y1="46.6725" x2="28.2575" y2="50.165" width="0.8128" layer="16"/>
|
||||
<wire x1="28.2575" y1="50.165" x2="44.7675" y2="50.165" width="0.8128" layer="16"/>
|
||||
<via x="44.7675" y="50.165" extent="1-16" drill="0.8" diameter="1.2" shape="square"/>
|
||||
<wire x1="44.7675" y1="50.165" x2="42.76" y2="50.165" width="0.8128" layer="1"/>
|
||||
<wire x1="42.76" y1="50.165" x2="42.4425" y2="50.4825" width="0.8128" layer="1"/>
|
||||
</signal>
|
||||
<signal name="N$12">
|
||||
<contactref element="Y-OUT" pad="1"/>
|
||||
<contactref element="Y-OUT" pad="1"/>
|
||||
<contactref element="R8" pad="1"/>
|
||||
<wire x1="29.058" y1="26.035" x2="39.6875" y2="46.355" width="0" layer="19" extent="1-1"/>
|
||||
</signal>
|
||||
<signal name="N$17">
|
||||
<wire x1="32.868" y1="43.4975" x2="32.868" y2="46.5205" width="0.4064" layer="1"/>
|
||||
<wire x1="32.868" y1="46.5205" x2="33.02" y2="46.6725" width="0.4064" layer="1"/>
|
||||
</signal>
|
||||
<signal name="N$13">
|
||||
<contactref element="TRIM2" pad="2"/>
|
||||
<contactref element="R5" pad="1"/>
|
||||
<wire x1="45.4025" y1="36.195" x2="35.8775" y2="45.8855" width="0" layer="19" extent="1-1"/>
|
||||
<wire x1="50.8" y1="39.37" x2="33.655" y2="39.37" width="0.4064" layer="1"/>
|
||||
<wire x1="33.655" y1="39.37" x2="29.21" y2="43.815" width="0.4064" layer="1"/>
|
||||
<wire x1="29.21" y1="43.815" x2="29.21" y2="45.568" width="0.4064" layer="1"/>
|
||||
<wire x1="29.21" y1="45.568" x2="29.5275" y2="45.8855" width="0.4064" layer="1"/>
|
||||
</signal>
|
||||
</signals>
|
||||
</board>
|
||||
|
||||
+64
-754
@@ -12687,6 +12687,22 @@ Cermet, abgedichtet nach IP67</description>
|
||||
<text x="-3.81" y="3.81" size="1.016" layer="25" ratio="10">>NAME</text>
|
||||
<text x="-3.81" y="-5.08" size="1.016" layer="27" ratio="10">>VALUE</text>
|
||||
</package>
|
||||
<package name="22-23-2041">
|
||||
<description>.100" (2.54mm) Center Header - 4 Pin</description>
|
||||
<wire x1="-5.08" y1="3.175" x2="5.08" y2="3.175" width="0.254" layer="21"/>
|
||||
<wire x1="5.08" y1="3.175" x2="5.08" y2="1.27" width="0.254" layer="21"/>
|
||||
<wire x1="5.08" y1="1.27" x2="5.08" y2="-3.175" width="0.254" layer="21"/>
|
||||
<wire x1="5.08" y1="-3.175" x2="-5.08" y2="-3.175" width="0.254" layer="21"/>
|
||||
<wire x1="-5.08" y1="-3.175" x2="-5.08" y2="1.27" width="0.254" layer="21"/>
|
||||
<wire x1="-5.08" y1="1.27" x2="-5.08" y2="3.175" width="0.254" layer="21"/>
|
||||
<wire x1="-5.08" y1="1.27" x2="5.08" y2="1.27" width="0.254" layer="21"/>
|
||||
<pad name="1" x="-3.81" y="0" drill="1" shape="long" rot="R90"/>
|
||||
<pad name="2" x="-1.27" y="0" drill="1" shape="long" rot="R90"/>
|
||||
<pad name="3" x="1.27" y="0" drill="1" shape="long" rot="R90"/>
|
||||
<pad name="4" x="3.81" y="0" drill="1" shape="long" rot="R90"/>
|
||||
<text x="-5.08" y="3.81" size="1.016" layer="25" ratio="10">>NAME</text>
|
||||
<text x="-5.08" y="-5.08" size="1.016" layer="27" ratio="10">>VALUE</text>
|
||||
</package>
|
||||
</packages>
|
||||
<symbols>
|
||||
<symbol name="MV">
|
||||
@@ -12727,6 +12743,33 @@ Cermet, abgedichtet nach IP67</description>
|
||||
</device>
|
||||
</devices>
|
||||
</deviceset>
|
||||
<deviceset name="22-23-2041" prefix="X">
|
||||
<description>.100" (2.54mm) Center Header - 4 Pin</description>
|
||||
<gates>
|
||||
<gate name="-1" symbol="MV" x="0" y="2.54" addlevel="always" swaplevel="1"/>
|
||||
<gate name="-2" symbol="M" x="0" y="0" addlevel="always" swaplevel="1"/>
|
||||
<gate name="-3" symbol="M" x="0" y="-2.54" addlevel="always" swaplevel="1"/>
|
||||
<gate name="-4" symbol="M" x="0" y="-5.08" addlevel="always" swaplevel="1"/>
|
||||
</gates>
|
||||
<devices>
|
||||
<device name="" package="22-23-2041">
|
||||
<connects>
|
||||
<connect gate="-1" pin="S" pad="1"/>
|
||||
<connect gate="-2" pin="S" pad="2"/>
|
||||
<connect gate="-3" pin="S" pad="3"/>
|
||||
<connect gate="-4" pin="S" pad="4"/>
|
||||
</connects>
|
||||
<technologies>
|
||||
<technology name="">
|
||||
<attribute name="MF" value="MOLEX" constant="no"/>
|
||||
<attribute name="MPN" value="22-23-2041" constant="no"/>
|
||||
<attribute name="OC_FARNELL" value="1462920" constant="no"/>
|
||||
<attribute name="OC_NEWARK" value="38C0355" constant="no"/>
|
||||
</technology>
|
||||
</technologies>
|
||||
</device>
|
||||
</devices>
|
||||
</deviceset>
|
||||
</devicesets>
|
||||
</library>
|
||||
<library name="anyma-lib">
|
||||
@@ -13220,697 +13263,6 @@ Source: http://www.atmel.com/dyn/resources/prod_documents/2535S.pdf</description
|
||||
</deviceset>
|
||||
</devicesets>
|
||||
</library>
|
||||
<library name="testpad">
|
||||
<description><b>Test Pins/Pads</b><p>
|
||||
Cream on SMD OFF.<br>
|
||||
new: Attribute TP_SIGNAL_NAME<br>
|
||||
<author>Created by librarian@cadsoft.de</author></description>
|
||||
<packages>
|
||||
<package name="B1,27">
|
||||
<description><b>TEST PAD</b></description>
|
||||
<wire x1="-0.635" y1="0" x2="0.635" y2="0" width="0.0024" layer="37"/>
|
||||
<wire x1="0" y1="0.635" x2="0" y2="-0.635" width="0.0024" layer="37"/>
|
||||
<smd name="TP" x="0" y="0" dx="1.27" dy="1.27" layer="1" roundness="100" cream="no"/>
|
||||
<text x="-0.635" y="1.016" size="1.27" layer="25" ratio="10">>NAME</text>
|
||||
<text x="-0.635" y="-0.762" size="0.0254" layer="27">>VALUE</text>
|
||||
<text x="-0.635" y="-1.905" size="1" layer="37">>TP_SIGNAL_NAME</text>
|
||||
</package>
|
||||
<package name="B2,54">
|
||||
<description><b>TEST PAD</b></description>
|
||||
<wire x1="-0.635" y1="0" x2="0.635" y2="0" width="0.0024" layer="37"/>
|
||||
<wire x1="0" y1="-0.635" x2="0" y2="0.635" width="0.0024" layer="37"/>
|
||||
<circle x="0" y="0" radius="0.635" width="0.254" layer="37"/>
|
||||
<smd name="TP" x="0" y="0" dx="2.54" dy="2.54" layer="1" roundness="100" cream="no"/>
|
||||
<text x="-1.27" y="1.651" size="1.27" layer="25" ratio="10">>NAME</text>
|
||||
<text x="-1.27" y="-1.397" size="0.0254" layer="27">>VALUE</text>
|
||||
<text x="-1.27" y="-3.175" size="1" layer="37">>TP_SIGNAL_NAME</text>
|
||||
</package>
|
||||
<package name="P1-13">
|
||||
<description><b>TEST PAD</b></description>
|
||||
<circle x="0" y="0" radius="0.762" width="0.1524" layer="51"/>
|
||||
<pad name="TP" x="0" y="0" drill="1.3208" diameter="2.159" shape="octagon"/>
|
||||
<text x="-1.016" y="1.27" size="1.27" layer="25" ratio="10">>NAME</text>
|
||||
<text x="0" y="0" size="0.0254" layer="27">>VALUE</text>
|
||||
<text x="-1.27" y="-2.54" size="1" layer="37">>TP_SIGNAL_NAME</text>
|
||||
<rectangle x1="-0.3302" y1="-0.3302" x2="0.3302" y2="0.3302" layer="51"/>
|
||||
</package>
|
||||
<package name="P1-13Y">
|
||||
<description><b>TEST PAD</b></description>
|
||||
<circle x="0" y="0" radius="0.762" width="0.1524" layer="51"/>
|
||||
<pad name="TP" x="0" y="0" drill="1.3208" diameter="1.905" shape="long" rot="R90"/>
|
||||
<text x="-0.889" y="2.159" size="1.27" layer="25" ratio="10">>NAME</text>
|
||||
<text x="0" y="0" size="0.0254" layer="27">>VALUE</text>
|
||||
<text x="-1.27" y="-3.81" size="1" layer="37">>TP_SIGNAL_NAME</text>
|
||||
<rectangle x1="-0.3302" y1="-0.3302" x2="0.3302" y2="0.3302" layer="51"/>
|
||||
</package>
|
||||
<package name="P1-17">
|
||||
<description><b>TEST PAD</b></description>
|
||||
<circle x="0" y="0" radius="0.8128" width="0.1524" layer="51"/>
|
||||
<pad name="TP" x="0" y="0" drill="1.7018" diameter="2.54" shape="octagon"/>
|
||||
<text x="-1.143" y="1.397" size="1.27" layer="25" ratio="10">>NAME</text>
|
||||
<text x="0" y="0" size="0.0254" layer="27">>VALUE</text>
|
||||
<text x="-1.27" y="-3.175" size="1" layer="37">>TP_SIGNAL_NAME</text>
|
||||
<rectangle x1="-0.3302" y1="-0.3302" x2="0.3302" y2="0.3302" layer="51"/>
|
||||
</package>
|
||||
<package name="P1-17Y">
|
||||
<description><b>TEST PAD</b></description>
|
||||
<circle x="0" y="0" radius="0.8128" width="0.1524" layer="51"/>
|
||||
<pad name="TP" x="0" y="0" drill="1.7018" diameter="2.1208" shape="long" rot="R90"/>
|
||||
<text x="-1.143" y="2.286" size="1.27" layer="25" ratio="10">>NAME</text>
|
||||
<text x="0" y="0" size="0.0254" layer="27">>VALUE</text>
|
||||
<text x="-1.27" y="-3.81" size="1" layer="37">>TP_SIGNAL_NAME</text>
|
||||
<rectangle x1="-0.3302" y1="-0.3302" x2="0.3302" y2="0.3302" layer="51"/>
|
||||
</package>
|
||||
<package name="P1-20">
|
||||
<description><b>TEST PAD</b></description>
|
||||
<circle x="0" y="0" radius="1.016" width="0.1524" layer="51"/>
|
||||
<pad name="TP" x="0" y="0" drill="2.0066" diameter="3.1496" shape="octagon"/>
|
||||
<text x="-1.524" y="1.778" size="1.27" layer="25" ratio="10">>NAME</text>
|
||||
<text x="0" y="0" size="0.0254" layer="27">>VALUE</text>
|
||||
<text x="-1.27" y="-3.175" size="1" layer="37">>TP_SIGNAL_NAME</text>
|
||||
<rectangle x1="-0.3302" y1="-0.3302" x2="0.3302" y2="0.3302" layer="51"/>
|
||||
</package>
|
||||
<package name="P1-20Y">
|
||||
<description><b>TEST PAD</b></description>
|
||||
<circle x="0" y="0" radius="1.016" width="0.1524" layer="51"/>
|
||||
<pad name="TP" x="0" y="0" drill="2.0066" diameter="2.54" shape="long" rot="R90"/>
|
||||
<text x="-1.27" y="2.794" size="1.27" layer="25" ratio="10">>NAME</text>
|
||||
<text x="0" y="0" size="0.0254" layer="27">>VALUE</text>
|
||||
<text x="-1.27" y="-4.445" size="1" layer="37">>TP_SIGNAL_NAME</text>
|
||||
<rectangle x1="-0.3302" y1="-0.3302" x2="0.3302" y2="0.3302" layer="51"/>
|
||||
</package>
|
||||
<package name="TP06R">
|
||||
<description><b>TEST PAD</b></description>
|
||||
<smd name="TP" x="0" y="0" dx="0.6" dy="0.6" layer="1" roundness="100" cream="no"/>
|
||||
<text x="-0.3" y="0.4001" size="1.27" layer="25">>NAME</text>
|
||||
<text x="-0.254" y="-0.381" size="0.0254" layer="27">>VALUE</text>
|
||||
<text x="0" y="-1.905" size="1" layer="37">>TP_SIGNAL_NAME</text>
|
||||
</package>
|
||||
<package name="TP06SQ">
|
||||
<description><b>TEST PAD</b></description>
|
||||
<smd name="TP" x="0" y="0" dx="0.5996" dy="0.5996" layer="1" cream="no"/>
|
||||
<text x="-0.3" y="0.4001" size="1.27" layer="25">>NAME</text>
|
||||
<text x="-0.254" y="-0.381" size="0.0254" layer="27">>VALUE</text>
|
||||
<text x="0" y="-1.905" size="1" layer="37">>TP_SIGNAL_NAME</text>
|
||||
</package>
|
||||
<package name="TP07R">
|
||||
<description><b>TEST PAD</b></description>
|
||||
<smd name="TP" x="0" y="0" dx="0.7" dy="0.7" layer="1" roundness="100" cream="no"/>
|
||||
<text x="-0.3" y="0.4001" size="1.27" layer="25">>NAME</text>
|
||||
<text x="-0.254" y="-0.508" size="0.0254" layer="27">>VALUE</text>
|
||||
<text x="0" y="-1.905" size="1" layer="37">>TP_SIGNAL_NAME</text>
|
||||
</package>
|
||||
<package name="TP07SQ">
|
||||
<description><b>TEST PAD</b></description>
|
||||
<smd name="TP" x="0" y="0" dx="0.7" dy="0.7" layer="1" cream="no"/>
|
||||
<text x="-0.3" y="0.4001" size="1.27" layer="25">>NAME</text>
|
||||
<text x="-0.381" y="-0.381" size="0.0254" layer="27">>VALUE</text>
|
||||
<text x="0" y="-1.905" size="1" layer="37">>TP_SIGNAL_NAME</text>
|
||||
</package>
|
||||
<package name="TP08R">
|
||||
<description><b>TEST PAD</b></description>
|
||||
<smd name="TP" x="0" y="0" dx="0.8" dy="0.8" layer="1" roundness="100" cream="no"/>
|
||||
<text x="-0.3" y="0.4001" size="1.27" layer="25">>NAME</text>
|
||||
<text x="-0.381" y="-0.381" size="0.0254" layer="27">>VALUE</text>
|
||||
<text x="0" y="-1.905" size="1" layer="37">>TP_SIGNAL_NAME</text>
|
||||
</package>
|
||||
<package name="TP08SQ">
|
||||
<description><b>TEST PAD</b></description>
|
||||
<smd name="TP" x="0" y="0" dx="0.8" dy="0.8" layer="1" cream="no"/>
|
||||
<text x="-0.3" y="0.4001" size="1.27" layer="25">>NAME</text>
|
||||
<text x="-0.381" y="-0.508" size="0.0254" layer="27">>VALUE</text>
|
||||
<text x="0" y="-1.905" size="1" layer="37">>TP_SIGNAL_NAME</text>
|
||||
</package>
|
||||
<package name="TP09R">
|
||||
<description><b>TEST PAD</b></description>
|
||||
<smd name="TP" x="0" y="0" dx="0.9" dy="0.9" layer="1" roundness="100" cream="no"/>
|
||||
<text x="-0.4501" y="0.5001" size="1.27" layer="25">>NAME</text>
|
||||
<text x="-0.381" y="-0.508" size="0.0254" layer="27">>VALUE</text>
|
||||
<text x="0" y="-1.905" size="1" layer="37">>TP_SIGNAL_NAME</text>
|
||||
</package>
|
||||
<package name="TP09SQ">
|
||||
<description><b>TEST PAD</b></description>
|
||||
<smd name="TP" x="0" y="0" dx="0.8998" dy="0.8998" layer="1" cream="no"/>
|
||||
<text x="-0.4501" y="0.5001" size="1.27" layer="25">>NAME</text>
|
||||
<text x="-0.381" y="-0.508" size="0.0254" layer="27">>VALUE</text>
|
||||
<text x="0" y="-1.905" size="1" layer="37">>TP_SIGNAL_NAME</text>
|
||||
</package>
|
||||
<package name="TP10R">
|
||||
<description><b>TEST PAD</b></description>
|
||||
<smd name="TP" x="0" y="0" dx="1" dy="1" layer="1" roundness="100" cream="no"/>
|
||||
<text x="-0.5001" y="0.5499" size="1.27" layer="25">>NAME</text>
|
||||
<text x="-0.381" y="-0.508" size="0.0254" layer="27">>VALUE</text>
|
||||
<text x="0" y="-1.905" size="1" layer="37">>TP_SIGNAL_NAME</text>
|
||||
</package>
|
||||
<package name="TP10SQ">
|
||||
<description><b>TEST PAD</b></description>
|
||||
<smd name="TP" x="0" y="0" dx="1" dy="1" layer="1" cream="no"/>
|
||||
<text x="-0.5001" y="0.5499" size="1.27" layer="25">>NAME</text>
|
||||
<text x="-0.508" y="-0.635" size="0.0254" layer="27">>VALUE</text>
|
||||
<text x="0" y="-1.905" size="1" layer="37">>TP_SIGNAL_NAME</text>
|
||||
</package>
|
||||
<package name="TP11R">
|
||||
<description><b>TEST PAD</b></description>
|
||||
<smd name="TP" x="0" y="0" dx="1.1" dy="1.1" layer="1" roundness="100" cream="no"/>
|
||||
<text x="-0.5499" y="0.5999" size="1.27" layer="25">>NAME</text>
|
||||
<text x="-0.508" y="-0.508" size="0.0254" layer="27">>VALUE</text>
|
||||
<text x="0" y="-1.905" size="1" layer="37">>TP_SIGNAL_NAME</text>
|
||||
</package>
|
||||
<package name="TP11SQ">
|
||||
<description><b>TEST PAD</b></description>
|
||||
<smd name="TP" x="0" y="0" dx="1.1" dy="1.1" layer="1" cream="no"/>
|
||||
<text x="-0.5499" y="0.5999" size="1.27" layer="25">>NAME</text>
|
||||
<text x="-0.508" y="-0.635" size="0.0254" layer="27">>VALUE</text>
|
||||
<text x="0" y="-2.54" size="1" layer="37">>TP_SIGNAL_NAME</text>
|
||||
</package>
|
||||
<package name="TP12SQ">
|
||||
<description><b>TEST PAD</b></description>
|
||||
<smd name="TP" x="0" y="0" dx="1.1998" dy="1.1998" layer="1" cream="no"/>
|
||||
<text x="-0.5999" y="0.65" size="1.27" layer="25">>NAME</text>
|
||||
<text x="-0.508" y="-0.635" size="0.0254" layer="27">>VALUE</text>
|
||||
<text x="0" y="-2.54" size="1" layer="37">>TP_SIGNAL_NAME</text>
|
||||
</package>
|
||||
<package name="TP12R">
|
||||
<description><b>TEST PAD</b></description>
|
||||
<smd name="TP" x="0" y="0" dx="1.2" dy="1.2" layer="1" roundness="100" cream="no"/>
|
||||
<text x="-0.5999" y="0.65" size="1.27" layer="25">>NAME</text>
|
||||
<text x="-0.508" y="-0.635" size="0.0254" layer="27">>VALUE</text>
|
||||
<text x="0" y="-2.54" size="1" layer="37">>TP_SIGNAL_NAME</text>
|
||||
</package>
|
||||
<package name="TP13R">
|
||||
<description><b>TEST PAD</b></description>
|
||||
<smd name="TP" x="0" y="0" dx="1.3" dy="1.3" layer="1" roundness="100" cream="no"/>
|
||||
<text x="-0.65" y="0.7" size="1.27" layer="25">>NAME</text>
|
||||
<text x="-0.508" y="-0.635" size="0.0254" layer="27">>VALUE</text>
|
||||
<text x="0" y="-2.54" size="1" layer="37">>TP_SIGNAL_NAME</text>
|
||||
</package>
|
||||
<package name="TP14R">
|
||||
<description><b>TEST PAD</b></description>
|
||||
<smd name="TP" x="0" y="0" dx="1.4" dy="1.4" layer="1" roundness="100" cream="no"/>
|
||||
<text x="-0.7" y="0.7501" size="1.27" layer="25">>NAME</text>
|
||||
<text x="-0.508" y="-0.762" size="0.0254" layer="27">>VALUE</text>
|
||||
<text x="0" y="-2.54" size="1" layer="37">>TP_SIGNAL_NAME</text>
|
||||
</package>
|
||||
<package name="TP15R">
|
||||
<description><b>TEST PAD</b></description>
|
||||
<smd name="TP" x="0" y="0" dx="1.5" dy="1.5" layer="1" roundness="100" cream="no"/>
|
||||
<text x="-0.7501" y="0.8001" size="1.27" layer="25">>NAME</text>
|
||||
<text x="-0.635" y="-0.762" size="0.0254" layer="27">>VALUE</text>
|
||||
<text x="0" y="-2.54" size="1" layer="37">>TP_SIGNAL_NAME</text>
|
||||
</package>
|
||||
<package name="TP16R">
|
||||
<description><b>TEST PAD</b></description>
|
||||
<smd name="TP" x="0" y="0" dx="1.6" dy="1.6" layer="1" roundness="100" cream="no"/>
|
||||
<text x="-0.8001" y="0.8499" size="1.27" layer="25">>NAME</text>
|
||||
<text x="-0.635" y="-0.762" size="0.0254" layer="27">>VALUE</text>
|
||||
<text x="0" y="-2.54" size="1" layer="37">>TP_SIGNAL_NAME</text>
|
||||
</package>
|
||||
<package name="TP17R">
|
||||
<description><b>TEST PAD</b></description>
|
||||
<smd name="TP" x="0" y="0" dx="1.7" dy="1.7" layer="1" roundness="100" cream="no"/>
|
||||
<text x="-0.8499" y="0.8999" size="1.27" layer="25">>NAME</text>
|
||||
<text x="-0.635" y="-0.889" size="0.0254" layer="27">>VALUE</text>
|
||||
<text x="0" y="-2.54" size="1" layer="37">>TP_SIGNAL_NAME</text>
|
||||
</package>
|
||||
<package name="TP18R">
|
||||
<description><b>TEST PAD</b></description>
|
||||
<smd name="TP" x="0" y="0" dx="1.8" dy="1.8" layer="1" roundness="100" cream="no"/>
|
||||
<text x="-0.8999" y="0.95" size="1.27" layer="25">>NAME</text>
|
||||
<text x="-0.762" y="-0.889" size="0.0254" layer="27">>VALUE</text>
|
||||
<text x="0" y="-2.54" size="1" layer="37">>TP_SIGNAL_NAME</text>
|
||||
</package>
|
||||
<package name="TP19R">
|
||||
<description><b>TEST PAD</b></description>
|
||||
<smd name="TP" x="0" y="0" dx="1.9" dy="1.9" layer="1" roundness="100" cream="no"/>
|
||||
<text x="-0.95" y="1" size="1.27" layer="25">>NAME</text>
|
||||
<text x="-0.762" y="-0.889" size="0.0254" layer="27">>VALUE</text>
|
||||
<text x="0" y="-2.54" size="1" layer="37">>TP_SIGNAL_NAME</text>
|
||||
</package>
|
||||
<package name="TP20R">
|
||||
<description><b>TEST PAD</b></description>
|
||||
<smd name="TP" x="0" y="0" dx="2" dy="2" layer="1" roundness="100" cream="no"/>
|
||||
<text x="-1" y="1.05" size="1.27" layer="25">>NAME</text>
|
||||
<text x="-0.762" y="-1.016" size="0.0254" layer="27">>VALUE</text>
|
||||
<text x="0" y="-2.54" size="1" layer="37">>TP_SIGNAL_NAME</text>
|
||||
</package>
|
||||
<package name="TP13SQ">
|
||||
<description><b>TEST PAD</b></description>
|
||||
<smd name="TP" x="0" y="0" dx="1.3" dy="1.3" layer="1" cream="no"/>
|
||||
<text x="-0.65" y="0.7" size="1.27" layer="25">>NAME</text>
|
||||
<text x="-0.635" y="-0.762" size="0.0254" layer="27">>VALUE</text>
|
||||
<text x="0" y="-2.54" size="1" layer="37">>TP_SIGNAL_NAME</text>
|
||||
</package>
|
||||
<package name="TP14SQ">
|
||||
<description><b>TEST PAD</b></description>
|
||||
<smd name="TP" x="0" y="0" dx="1.4" dy="1.4" layer="1" cream="no"/>
|
||||
<text x="-0.7" y="0.7501" size="1.27" layer="25">>NAME</text>
|
||||
<text x="-0.635" y="-0.762" size="0.0254" layer="27">>VALUE</text>
|
||||
<text x="0" y="-2.54" size="1" layer="37">>TP_SIGNAL_NAME</text>
|
||||
</package>
|
||||
<package name="TP15SQ">
|
||||
<description><b>TEST PAD</b></description>
|
||||
<smd name="TP" x="0" y="0" dx="1.5" dy="1.5" layer="1" cream="no"/>
|
||||
<text x="-0.7501" y="0.8001" size="1.27" layer="25">>NAME</text>
|
||||
<text x="-0.762" y="-0.889" size="0.0254" layer="27">>VALUE</text>
|
||||
<text x="0" y="-2.54" size="1" layer="37">>TP_SIGNAL_NAME</text>
|
||||
</package>
|
||||
<package name="TP16SQ">
|
||||
<description><b>TEST PAD</b></description>
|
||||
<smd name="TP" x="0" y="0" dx="1.5996" dy="1.5996" layer="1" cream="no"/>
|
||||
<text x="-0.8001" y="0.8499" size="1.27" layer="25">>NAME</text>
|
||||
<text x="-0.762" y="-0.889" size="0.0254" layer="27">>VALUE</text>
|
||||
<text x="0" y="-2.54" size="1" layer="37">>TP_SIGNAL_NAME</text>
|
||||
</package>
|
||||
<package name="TP17SQ">
|
||||
<description><b>TEST PAD</b></description>
|
||||
<smd name="TP" x="0" y="0" dx="1.7" dy="1.7" layer="1" cream="no"/>
|
||||
<text x="-0.8499" y="0.8999" size="1.27" layer="25">>NAME</text>
|
||||
<text x="-0.762" y="-0.889" size="0.0254" layer="27">>VALUE</text>
|
||||
<text x="0" y="-2.54" size="1" layer="37">>TP_SIGNAL_NAME</text>
|
||||
</package>
|
||||
<package name="TP18SQ">
|
||||
<description><b>TEST PAD</b></description>
|
||||
<smd name="TP" x="0" y="0" dx="1.8" dy="1.8" layer="1" cream="no"/>
|
||||
<text x="-0.8999" y="0.95" size="1.27" layer="25">>NAME</text>
|
||||
<text x="-0.889" y="-1.016" size="0.0254" layer="27">>VALUE</text>
|
||||
<text x="0" y="-2.54" size="1" layer="37">>TP_SIGNAL_NAME</text>
|
||||
</package>
|
||||
<package name="TP19SQ">
|
||||
<description><b>TEST PAD</b></description>
|
||||
<smd name="TP" x="0" y="0" dx="1.8998" dy="1.8998" layer="1" cream="no"/>
|
||||
<text x="-0.95" y="1" size="1.27" layer="25">>NAME</text>
|
||||
<text x="-0.889" y="-1.016" size="0.0254" layer="27">>VALUE</text>
|
||||
<text x="0" y="-2.54" size="1" layer="37">>TP_SIGNAL_NAME</text>
|
||||
</package>
|
||||
<package name="TP20SQ">
|
||||
<description><b>TEST PAD</b></description>
|
||||
<smd name="TP" x="0" y="0" dx="2" dy="2" layer="1" cream="no"/>
|
||||
<text x="-1" y="1.05" size="1.27" layer="25">>NAME</text>
|
||||
<text x="-1.016" y="-1.143" size="0.0254" layer="27">>VALUE</text>
|
||||
<text x="0" y="-2.54" size="1" layer="37">>TP_SIGNAL_NAME</text>
|
||||
</package>
|
||||
</packages>
|
||||
<symbols>
|
||||
<symbol name="TPR">
|
||||
<wire x1="0.762" y1="-0.762" x2="0" y2="-2.286" width="0.254" layer="94"/>
|
||||
<wire x1="0" y1="-2.286" x2="-0.762" y2="-0.762" width="0.254" layer="94"/>
|
||||
<wire x1="-0.762" y1="-0.762" x2="0.762" y2="-0.762" width="0.254" layer="94" curve="-180"/>
|
||||
<text x="-1.27" y="1.27" size="1.778" layer="95">>NAME</text>
|
||||
<text x="1.27" y="-1.27" size="1.778" layer="97">>TP_SIGNAL_NAME</text>
|
||||
<pin name="PP" x="0" y="-2.54" visible="off" length="short" direction="in" rot="R90"/>
|
||||
</symbol>
|
||||
</symbols>
|
||||
<devicesets>
|
||||
<deviceset name="TPS" prefix="TP">
|
||||
<description><b>TEST PIN</b></description>
|
||||
<gates>
|
||||
<gate name="G$1" symbol="TPR" x="0" y="0"/>
|
||||
</gates>
|
||||
<devices>
|
||||
<device name="B1,27" package="B1,27">
|
||||
<connects>
|
||||
<connect gate="G$1" pin="PP" pad="TP"/>
|
||||
</connects>
|
||||
<technologies>
|
||||
<technology name="">
|
||||
<attribute name="TP_SIGNAL_NAME" value="" constant="no"/>
|
||||
</technology>
|
||||
</technologies>
|
||||
</device>
|
||||
<device name="B2,54" package="B2,54">
|
||||
<connects>
|
||||
<connect gate="G$1" pin="PP" pad="TP"/>
|
||||
</connects>
|
||||
<technologies>
|
||||
<technology name="">
|
||||
<attribute name="TP_SIGNAL_NAME" value="" constant="no"/>
|
||||
</technology>
|
||||
</technologies>
|
||||
</device>
|
||||
<device name="PAD1-13" package="P1-13">
|
||||
<connects>
|
||||
<connect gate="G$1" pin="PP" pad="TP"/>
|
||||
</connects>
|
||||
<technologies>
|
||||
<technology name="">
|
||||
<attribute name="TP_SIGNAL_NAME" value="" constant="no"/>
|
||||
</technology>
|
||||
</technologies>
|
||||
</device>
|
||||
<device name="PAD1-13Y" package="P1-13Y">
|
||||
<connects>
|
||||
<connect gate="G$1" pin="PP" pad="TP"/>
|
||||
</connects>
|
||||
<technologies>
|
||||
<technology name="">
|
||||
<attribute name="TP_SIGNAL_NAME" value="" constant="no"/>
|
||||
</technology>
|
||||
</technologies>
|
||||
</device>
|
||||
<device name="PAD1-17" package="P1-17">
|
||||
<connects>
|
||||
<connect gate="G$1" pin="PP" pad="TP"/>
|
||||
</connects>
|
||||
<technologies>
|
||||
<technology name="">
|
||||
<attribute name="TP_SIGNAL_NAME" value="" constant="no"/>
|
||||
</technology>
|
||||
</technologies>
|
||||
</device>
|
||||
<device name="PAD1-17Y" package="P1-17Y">
|
||||
<connects>
|
||||
<connect gate="G$1" pin="PP" pad="TP"/>
|
||||
</connects>
|
||||
<technologies>
|
||||
<technology name="">
|
||||
<attribute name="TP_SIGNAL_NAME" value="" constant="no"/>
|
||||
</technology>
|
||||
</technologies>
|
||||
</device>
|
||||
<device name="PAD1-20" package="P1-20">
|
||||
<connects>
|
||||
<connect gate="G$1" pin="PP" pad="TP"/>
|
||||
</connects>
|
||||
<technologies>
|
||||
<technology name="">
|
||||
<attribute name="TP_SIGNAL_NAME" value="" constant="no"/>
|
||||
</technology>
|
||||
</technologies>
|
||||
</device>
|
||||
<device name="PAD1-20Y" package="P1-20Y">
|
||||
<connects>
|
||||
<connect gate="G$1" pin="PP" pad="TP"/>
|
||||
</connects>
|
||||
<technologies>
|
||||
<technology name="">
|
||||
<attribute name="TP_SIGNAL_NAME" value="" constant="no"/>
|
||||
</technology>
|
||||
</technologies>
|
||||
</device>
|
||||
<device name="TP06R" package="TP06R">
|
||||
<connects>
|
||||
<connect gate="G$1" pin="PP" pad="TP"/>
|
||||
</connects>
|
||||
<technologies>
|
||||
<technology name="">
|
||||
<attribute name="TP_SIGNAL_NAME" value="" constant="no"/>
|
||||
</technology>
|
||||
</technologies>
|
||||
</device>
|
||||
<device name="TP06SQ" package="TP06SQ">
|
||||
<connects>
|
||||
<connect gate="G$1" pin="PP" pad="TP"/>
|
||||
</connects>
|
||||
<technologies>
|
||||
<technology name="">
|
||||
<attribute name="TP_SIGNAL_NAME" value="" constant="no"/>
|
||||
</technology>
|
||||
</technologies>
|
||||
</device>
|
||||
<device name="TP07R" package="TP07R">
|
||||
<connects>
|
||||
<connect gate="G$1" pin="PP" pad="TP"/>
|
||||
</connects>
|
||||
<technologies>
|
||||
<technology name="">
|
||||
<attribute name="TP_SIGNAL_NAME" value="" constant="no"/>
|
||||
</technology>
|
||||
</technologies>
|
||||
</device>
|
||||
<device name="TP07SQ" package="TP07SQ">
|
||||
<connects>
|
||||
<connect gate="G$1" pin="PP" pad="TP"/>
|
||||
</connects>
|
||||
<technologies>
|
||||
<technology name="">
|
||||
<attribute name="TP_SIGNAL_NAME" value="" constant="no"/>
|
||||
</technology>
|
||||
</technologies>
|
||||
</device>
|
||||
<device name="TP08R" package="TP08R">
|
||||
<connects>
|
||||
<connect gate="G$1" pin="PP" pad="TP"/>
|
||||
</connects>
|
||||
<technologies>
|
||||
<technology name="">
|
||||
<attribute name="TP_SIGNAL_NAME" value="" constant="no"/>
|
||||
</technology>
|
||||
</technologies>
|
||||
</device>
|
||||
<device name="TP08SQ" package="TP08SQ">
|
||||
<connects>
|
||||
<connect gate="G$1" pin="PP" pad="TP"/>
|
||||
</connects>
|
||||
<technologies>
|
||||
<technology name="">
|
||||
<attribute name="TP_SIGNAL_NAME" value="" constant="no"/>
|
||||
</technology>
|
||||
</technologies>
|
||||
</device>
|
||||
<device name="TP09R" package="TP09R">
|
||||
<connects>
|
||||
<connect gate="G$1" pin="PP" pad="TP"/>
|
||||
</connects>
|
||||
<technologies>
|
||||
<technology name="">
|
||||
<attribute name="TP_SIGNAL_NAME" value="" constant="no"/>
|
||||
</technology>
|
||||
</technologies>
|
||||
</device>
|
||||
<device name="TP09SQ" package="TP09SQ">
|
||||
<connects>
|
||||
<connect gate="G$1" pin="PP" pad="TP"/>
|
||||
</connects>
|
||||
<technologies>
|
||||
<technology name="">
|
||||
<attribute name="TP_SIGNAL_NAME" value="" constant="no"/>
|
||||
</technology>
|
||||
</technologies>
|
||||
</device>
|
||||
<device name="TP10R" package="TP10R">
|
||||
<connects>
|
||||
<connect gate="G$1" pin="PP" pad="TP"/>
|
||||
</connects>
|
||||
<technologies>
|
||||
<technology name="">
|
||||
<attribute name="TP_SIGNAL_NAME" value="" constant="no"/>
|
||||
</technology>
|
||||
</technologies>
|
||||
</device>
|
||||
<device name="TP10SQ" package="TP10SQ">
|
||||
<connects>
|
||||
<connect gate="G$1" pin="PP" pad="TP"/>
|
||||
</connects>
|
||||
<technologies>
|
||||
<technology name="">
|
||||
<attribute name="TP_SIGNAL_NAME" value="" constant="no"/>
|
||||
</technology>
|
||||
</technologies>
|
||||
</device>
|
||||
<device name="TP11R" package="TP11R">
|
||||
<connects>
|
||||
<connect gate="G$1" pin="PP" pad="TP"/>
|
||||
</connects>
|
||||
<technologies>
|
||||
<technology name="">
|
||||
<attribute name="TP_SIGNAL_NAME" value="" constant="no"/>
|
||||
</technology>
|
||||
</technologies>
|
||||
</device>
|
||||
<device name="TP11SQ" package="TP11SQ">
|
||||
<connects>
|
||||
<connect gate="G$1" pin="PP" pad="TP"/>
|
||||
</connects>
|
||||
<technologies>
|
||||
<technology name="">
|
||||
<attribute name="TP_SIGNAL_NAME" value="" constant="no"/>
|
||||
</technology>
|
||||
</technologies>
|
||||
</device>
|
||||
<device name="TP12SQ" package="TP12SQ">
|
||||
<connects>
|
||||
<connect gate="G$1" pin="PP" pad="TP"/>
|
||||
</connects>
|
||||
<technologies>
|
||||
<technology name="">
|
||||
<attribute name="TP_SIGNAL_NAME" value="" constant="no"/>
|
||||
</technology>
|
||||
</technologies>
|
||||
</device>
|
||||
<device name="TP12R" package="TP12R">
|
||||
<connects>
|
||||
<connect gate="G$1" pin="PP" pad="TP"/>
|
||||
</connects>
|
||||
<technologies>
|
||||
<technology name="">
|
||||
<attribute name="TP_SIGNAL_NAME" value="" constant="no"/>
|
||||
</technology>
|
||||
</technologies>
|
||||
</device>
|
||||
<device name="TP13R" package="TP13R">
|
||||
<connects>
|
||||
<connect gate="G$1" pin="PP" pad="TP"/>
|
||||
</connects>
|
||||
<technologies>
|
||||
<technology name="">
|
||||
<attribute name="TP_SIGNAL_NAME" value="" constant="no"/>
|
||||
</technology>
|
||||
</technologies>
|
||||
</device>
|
||||
<device name="TP14R" package="TP14R">
|
||||
<connects>
|
||||
<connect gate="G$1" pin="PP" pad="TP"/>
|
||||
</connects>
|
||||
<technologies>
|
||||
<technology name="">
|
||||
<attribute name="TP_SIGNAL_NAME" value="" constant="no"/>
|
||||
</technology>
|
||||
</technologies>
|
||||
</device>
|
||||
<device name="TP15R" package="TP15R">
|
||||
<connects>
|
||||
<connect gate="G$1" pin="PP" pad="TP"/>
|
||||
</connects>
|
||||
<technologies>
|
||||
<technology name="">
|
||||
<attribute name="TP_SIGNAL_NAME" value="" constant="no"/>
|
||||
</technology>
|
||||
</technologies>
|
||||
</device>
|
||||
<device name="TP16R" package="TP16R">
|
||||
<connects>
|
||||
<connect gate="G$1" pin="PP" pad="TP"/>
|
||||
</connects>
|
||||
<technologies>
|
||||
<technology name="">
|
||||
<attribute name="TP_SIGNAL_NAME" value="" constant="no"/>
|
||||
</technology>
|
||||
</technologies>
|
||||
</device>
|
||||
<device name="TP17R" package="TP17R">
|
||||
<connects>
|
||||
<connect gate="G$1" pin="PP" pad="TP"/>
|
||||
</connects>
|
||||
<technologies>
|
||||
<technology name="">
|
||||
<attribute name="TP_SIGNAL_NAME" value="" constant="no"/>
|
||||
</technology>
|
||||
</technologies>
|
||||
</device>
|
||||
<device name="TP18R" package="TP18R">
|
||||
<connects>
|
||||
<connect gate="G$1" pin="PP" pad="TP"/>
|
||||
</connects>
|
||||
<technologies>
|
||||
<technology name="">
|
||||
<attribute name="TP_SIGNAL_NAME" value="" constant="no"/>
|
||||
</technology>
|
||||
</technologies>
|
||||
</device>
|
||||
<device name="TP19R" package="TP19R">
|
||||
<connects>
|
||||
<connect gate="G$1" pin="PP" pad="TP"/>
|
||||
</connects>
|
||||
<technologies>
|
||||
<technology name="">
|
||||
<attribute name="TP_SIGNAL_NAME" value="" constant="no"/>
|
||||
</technology>
|
||||
</technologies>
|
||||
</device>
|
||||
<device name="TP20R" package="TP20R">
|
||||
<connects>
|
||||
<connect gate="G$1" pin="PP" pad="TP"/>
|
||||
</connects>
|
||||
<technologies>
|
||||
<technology name="">
|
||||
<attribute name="TP_SIGNAL_NAME" value="" constant="no"/>
|
||||
</technology>
|
||||
</technologies>
|
||||
</device>
|
||||
<device name="TP13SQ" package="TP13SQ">
|
||||
<connects>
|
||||
<connect gate="G$1" pin="PP" pad="TP"/>
|
||||
</connects>
|
||||
<technologies>
|
||||
<technology name="">
|
||||
<attribute name="TP_SIGNAL_NAME" value="" constant="no"/>
|
||||
</technology>
|
||||
</technologies>
|
||||
</device>
|
||||
<device name="TP14SQ" package="TP14SQ">
|
||||
<connects>
|
||||
<connect gate="G$1" pin="PP" pad="TP"/>
|
||||
</connects>
|
||||
<technologies>
|
||||
<technology name="">
|
||||
<attribute name="TP_SIGNAL_NAME" value="" constant="no"/>
|
||||
</technology>
|
||||
</technologies>
|
||||
</device>
|
||||
<device name="TP15SQ" package="TP15SQ">
|
||||
<connects>
|
||||
<connect gate="G$1" pin="PP" pad="TP"/>
|
||||
</connects>
|
||||
<technologies>
|
||||
<technology name="">
|
||||
<attribute name="TP_SIGNAL_NAME" value="" constant="no"/>
|
||||
</technology>
|
||||
</technologies>
|
||||
</device>
|
||||
<device name="TP16SQ" package="TP16SQ">
|
||||
<connects>
|
||||
<connect gate="G$1" pin="PP" pad="TP"/>
|
||||
</connects>
|
||||
<technologies>
|
||||
<technology name="">
|
||||
<attribute name="TP_SIGNAL_NAME" value="" constant="no"/>
|
||||
</technology>
|
||||
</technologies>
|
||||
</device>
|
||||
<device name="TP17SQ" package="TP17SQ">
|
||||
<connects>
|
||||
<connect gate="G$1" pin="PP" pad="TP"/>
|
||||
</connects>
|
||||
<technologies>
|
||||
<technology name="">
|
||||
<attribute name="TP_SIGNAL_NAME" value="" constant="no"/>
|
||||
</technology>
|
||||
</technologies>
|
||||
</device>
|
||||
<device name="TP18SQ" package="TP18SQ">
|
||||
<connects>
|
||||
<connect gate="G$1" pin="PP" pad="TP"/>
|
||||
</connects>
|
||||
<technologies>
|
||||
<technology name="">
|
||||
<attribute name="TP_SIGNAL_NAME" value="" constant="no"/>
|
||||
</technology>
|
||||
</technologies>
|
||||
</device>
|
||||
<device name="TP19SQ" package="TP19SQ">
|
||||
<connects>
|
||||
<connect gate="G$1" pin="PP" pad="TP"/>
|
||||
</connects>
|
||||
<technologies>
|
||||
<technology name="">
|
||||
<attribute name="TP_SIGNAL_NAME" value="" constant="no"/>
|
||||
</technology>
|
||||
</technologies>
|
||||
</device>
|
||||
<device name="TP20SQ" package="TP20SQ">
|
||||
<connects>
|
||||
<connect gate="G$1" pin="PP" pad="TP"/>
|
||||
</connects>
|
||||
<technologies>
|
||||
<technology name="">
|
||||
<attribute name="TP_SIGNAL_NAME" value="" constant="no"/>
|
||||
</technology>
|
||||
</technologies>
|
||||
</device>
|
||||
</devices>
|
||||
</deviceset>
|
||||
</devicesets>
|
||||
</library>
|
||||
<library name="linear">
|
||||
<description><b>Linear Devices</b><p>
|
||||
Operational amplifiers, comparators, voltage regulators, ADCs, DACs, etc.<p>
|
||||
@@ -14066,9 +13418,7 @@ NS Package M08A</description>
|
||||
<part name="GND4" library="supply1" deviceset="GND" device=""/>
|
||||
<part name="GND6" library="supply1" deviceset="GND" device=""/>
|
||||
<part name="GND12" library="supply1" deviceset="GND" device=""/>
|
||||
<part name="C1" library="rcl" deviceset="C-EU" device="C0603" value="100n"/>
|
||||
<part name="C2" library="rcl" deviceset="C-EU" device="C1206" value="100n"/>
|
||||
<part name="GND14" library="supply1" deviceset="GND" device=""/>
|
||||
<part name="GND15" library="supply1" deviceset="GND" device=""/>
|
||||
<part name="P+4" library="supply1" deviceset="+5V" device=""/>
|
||||
<part name="R5" library="rcl" deviceset="R-EU_" device="R1206" value="680"/>
|
||||
@@ -14079,13 +13429,7 @@ NS Package M08A</description>
|
||||
<part name="GND17" library="supply1" deviceset="GND" device=""/>
|
||||
<part name="P+6" library="supply1" deviceset="+5V" device=""/>
|
||||
<part name="P+7" library="supply1" deviceset="+5V" device=""/>
|
||||
<part name="TRIM1" library="rcl" deviceset="R-TRIMM" device="64Y" value="500"/>
|
||||
<part name="TP1" library="testpad" deviceset="TPS" device="PAD1-13" value="TPSPAD1-13"/>
|
||||
<part name="P+8" library="supply1" deviceset="+5V" device=""/>
|
||||
<part name="R6" library="rcl" deviceset="R-EU_" device="R1206" value="500"/>
|
||||
<part name="GND3" library="supply1" deviceset="GND" device=""/>
|
||||
<part name="IC2" library="linear" deviceset="LM833" device="D"/>
|
||||
<part name="R4" library="rcl" deviceset="R-EU_" device="R1206" value="6k8"/>
|
||||
<part name="C3" library="rcl" deviceset="CPOL-EU" device="CT3528" value="2u2tantal"/>
|
||||
<part name="C4" library="rcl" deviceset="C-EU" device="C0603" value="100n"/>
|
||||
<part name="C5" library="rcl" deviceset="C-EU" device="C0603" value="100n"/>
|
||||
@@ -14100,6 +13444,9 @@ NS Package M08A</description>
|
||||
<part name="R8" library="rcl" deviceset="R-EU_" device="R1206" value="75"/>
|
||||
<part name="TRIM2" library="rcl" deviceset="R-TRIMM" device="64Y" value="500"/>
|
||||
<part name="GND13" library="supply1" deviceset="GND" device=""/>
|
||||
<part name="X2" library="con-molex" deviceset="22-23-2041" device=""/>
|
||||
<part name="GND3" library="supply1" deviceset="GND" device=""/>
|
||||
<part name="GND14" library="supply1" deviceset="GND" device=""/>
|
||||
</parts>
|
||||
<sheets>
|
||||
<sheet>
|
||||
@@ -14134,9 +13481,7 @@ NS Package M08A</description>
|
||||
<instance part="GND4" gate="1" x="-99.06" y="93.98"/>
|
||||
<instance part="GND6" gate="1" x="-81.28" y="99.06"/>
|
||||
<instance part="GND12" gate="1" x="38.1" y="45.72"/>
|
||||
<instance part="C1" gate="G$1" x="22.86" y="162.56"/>
|
||||
<instance part="C2" gate="G$1" x="88.9" y="60.96"/>
|
||||
<instance part="GND14" gate="1" x="22.86" y="154.94"/>
|
||||
<instance part="GND15" gate="1" x="88.9" y="53.34"/>
|
||||
<instance part="P+4" gate="1" x="88.9" y="66.04"/>
|
||||
<instance part="R5" gate="G$1" x="144.78" y="121.92"/>
|
||||
@@ -14147,14 +13492,7 @@ NS Package M08A</description>
|
||||
<instance part="GND17" gate="1" x="45.72" y="152.4" rot="R270"/>
|
||||
<instance part="P+6" gate="1" x="-81.28" y="114.3"/>
|
||||
<instance part="P+7" gate="1" x="-76.2" y="86.36"/>
|
||||
<instance part="TRIM1" gate="G$1" x="2.54" y="165.1"/>
|
||||
<instance part="TP1" gate="G$1" x="15.24" y="162.56" rot="MR180"/>
|
||||
<instance part="P+8" gate="1" x="2.54" y="185.42"/>
|
||||
<instance part="R6" gate="G$1" x="2.54" y="175.26" rot="R90"/>
|
||||
<instance part="GND3" gate="1" x="2.54" y="157.48"/>
|
||||
<instance part="IC2" gate="A" x="91.44" y="162.56"/>
|
||||
<instance part="IC2" gate="B" x="172.72" y="119.38"/>
|
||||
<instance part="R4" gate="G$1" x="121.92" y="139.7" rot="R90"/>
|
||||
<instance part="C3" gate="G$1" x="152.4" y="119.38" smashed="yes" rot="MR0">
|
||||
<attribute name="NAME" x="151.257" y="119.8626" size="1.778" layer="95" rot="MR0"/>
|
||||
<attribute name="VALUE" x="154.9146" y="114.3829" size="1.778" layer="96" rot="MR90"/>
|
||||
@@ -14176,6 +13514,13 @@ NS Package M08A</description>
|
||||
<instance part="R8" gate="G$1" x="193.04" y="119.38" rot="R180"/>
|
||||
<instance part="TRIM2" gate="G$1" x="106.68" y="109.22"/>
|
||||
<instance part="GND13" gate="1" x="106.68" y="101.6"/>
|
||||
<instance part="X2" gate="-1" x="40.64" y="187.96" rot="R180"/>
|
||||
<instance part="X2" gate="-2" x="40.64" y="190.5" rot="R180"/>
|
||||
<instance part="X2" gate="-3" x="40.64" y="193.04" rot="R180"/>
|
||||
<instance part="X2" gate="-4" x="40.64" y="195.58" rot="R180"/>
|
||||
<instance part="IC2" gate="A" x="172.72" y="149.86"/>
|
||||
<instance part="GND3" gate="1" x="162.56" y="152.4" rot="R270"/>
|
||||
<instance part="GND14" gate="1" x="162.56" y="147.32" rot="R270"/>
|
||||
</instances>
|
||||
<busses>
|
||||
</busses>
|
||||
@@ -14211,11 +13556,6 @@ NS Package M08A</description>
|
||||
<pinref part="P+7" gate="1" pin="+5V"/>
|
||||
</segment>
|
||||
<segment>
|
||||
<pinref part="R6" gate="G$1" pin="2"/>
|
||||
<pinref part="P+8" gate="1" pin="+5V"/>
|
||||
<wire x1="2.54" y1="180.34" x2="2.54" y2="182.88" width="0.1524" layer="91"/>
|
||||
</segment>
|
||||
<segment>
|
||||
<pinref part="IC2" gate="P" pin="V+"/>
|
||||
<pinref part="C4" gate="G$1" pin="2"/>
|
||||
<pinref part="P+3" gate="1" pin="+5V"/>
|
||||
@@ -14274,10 +13614,6 @@ NS Package M08A</description>
|
||||
<pinref part="GND6" gate="1" pin="GND"/>
|
||||
</segment>
|
||||
<segment>
|
||||
<pinref part="C1" gate="G$1" pin="2"/>
|
||||
<pinref part="GND14" gate="1" pin="GND"/>
|
||||
</segment>
|
||||
<segment>
|
||||
<pinref part="C2" gate="G$1" pin="2"/>
|
||||
<pinref part="GND15" gate="1" pin="GND"/>
|
||||
</segment>
|
||||
@@ -14286,10 +13622,6 @@ NS Package M08A</description>
|
||||
<pinref part="GND17" gate="1" pin="GND"/>
|
||||
</segment>
|
||||
<segment>
|
||||
<pinref part="TRIM1" gate="G$1" pin="E"/>
|
||||
<pinref part="GND3" gate="1" pin="GND"/>
|
||||
</segment>
|
||||
<segment>
|
||||
<pinref part="C3" gate="G$1" pin="-"/>
|
||||
<pinref part="GND16" gate="1" pin="GND"/>
|
||||
</segment>
|
||||
@@ -14314,6 +13646,14 @@ NS Package M08A</description>
|
||||
<pinref part="TRIM2" gate="G$1" pin="E"/>
|
||||
<pinref part="GND13" gate="1" pin="GND"/>
|
||||
</segment>
|
||||
<segment>
|
||||
<pinref part="IC2" gate="A" pin="+IN"/>
|
||||
<pinref part="GND3" gate="1" pin="GND"/>
|
||||
</segment>
|
||||
<segment>
|
||||
<pinref part="IC2" gate="A" pin="-IN"/>
|
||||
<pinref part="GND14" gate="1" pin="GND"/>
|
||||
</segment>
|
||||
</net>
|
||||
<net name="N$2" class="0">
|
||||
<segment>
|
||||
@@ -14323,15 +13663,9 @@ NS Package M08A</description>
|
||||
<wire x1="55.88" y1="86.36" x2="66.04" y2="86.36" width="0.1524" layer="91"/>
|
||||
<wire x1="48.26" y1="144.78" x2="43.18" y2="144.78" width="0.1524" layer="91"/>
|
||||
<wire x1="43.18" y1="144.78" x2="43.18" y2="86.36" width="0.1524" layer="91"/>
|
||||
<pinref part="TRIM1" gate="G$1" pin="S"/>
|
||||
<pinref part="TP1" gate="G$1" pin="PP"/>
|
||||
<wire x1="15.24" y1="165.1" x2="7.62" y2="165.1" width="0.1524" layer="91"/>
|
||||
<wire x1="15.24" y1="165.1" x2="22.86" y2="165.1" width="0.1524" layer="91"/>
|
||||
<pinref part="C1" gate="G$1" pin="1"/>
|
||||
<wire x1="22.86" y1="165.1" x2="55.88" y2="165.1" width="0.1524" layer="91"/>
|
||||
<pinref part="IC2" gate="A" pin="+IN"/>
|
||||
<wire x1="55.88" y1="165.1" x2="83.82" y2="165.1" width="0.1524" layer="91"/>
|
||||
<wire x1="55.88" y1="86.36" x2="55.88" y2="165.1" width="0.1524" layer="91"/>
|
||||
<wire x1="55.88" y1="86.36" x2="55.88" y2="187.96" width="0.1524" layer="91"/>
|
||||
<pinref part="X2" gate="-1" pin="S"/>
|
||||
<wire x1="55.88" y1="187.96" x2="43.18" y2="187.96" width="0.1524" layer="91"/>
|
||||
</segment>
|
||||
</net>
|
||||
<net name="N$3" class="0">
|
||||
@@ -14413,25 +13747,6 @@ NS Package M08A</description>
|
||||
<pinref part="BTN" gate="G$1" pin="2"/>
|
||||
</segment>
|
||||
</net>
|
||||
<net name="N$15" class="0">
|
||||
<segment>
|
||||
<pinref part="R6" gate="G$1" pin="1"/>
|
||||
<pinref part="TRIM1" gate="G$1" pin="A"/>
|
||||
</segment>
|
||||
</net>
|
||||
<net name="N$16" class="0">
|
||||
<segment>
|
||||
<pinref part="IC2" gate="A" pin="-IN"/>
|
||||
<wire x1="83.82" y1="160.02" x2="81.28" y2="160.02" width="0.1524" layer="91"/>
|
||||
<wire x1="81.28" y1="160.02" x2="81.28" y2="152.4" width="0.1524" layer="91"/>
|
||||
<pinref part="IC2" gate="A" pin="OUT"/>
|
||||
<wire x1="81.28" y1="152.4" x2="99.06" y2="152.4" width="0.1524" layer="91"/>
|
||||
<wire x1="99.06" y1="152.4" x2="99.06" y2="162.56" width="0.1524" layer="91"/>
|
||||
<pinref part="R4" gate="G$1" pin="2"/>
|
||||
<wire x1="99.06" y1="152.4" x2="121.92" y2="152.4" width="0.1524" layer="91"/>
|
||||
<wire x1="121.92" y1="152.4" x2="121.92" y2="144.78" width="0.1524" layer="91"/>
|
||||
</segment>
|
||||
</net>
|
||||
<net name="N$14" class="0">
|
||||
<segment>
|
||||
<pinref part="IC2" gate="B" pin="-IN"/>
|
||||
@@ -14468,11 +13783,6 @@ NS Package M08A</description>
|
||||
<wire x1="198.12" y1="119.38" x2="205.74" y2="119.38" width="0.1524" layer="91"/>
|
||||
</segment>
|
||||
</net>
|
||||
<net name="N$17" class="0">
|
||||
<segment>
|
||||
<wire x1="27.94" y1="127" x2="27.94" y2="129.54" width="0.1524" layer="91"/>
|
||||
</segment>
|
||||
</net>
|
||||
<net name="N$13" class="0">
|
||||
<segment>
|
||||
<pinref part="TRIM2" gate="G$1" pin="S"/>
|
||||
|
||||
Reference in New Issue
Block a user