// // File: diff_pair_thru_3p_1mm1 // // Date: 10-Jun-2015 original version - made for Hub Module // // 15-Jun-2015 set spacing to 1.10 mm // // 10-Jun-2016 current version - remove silkscreen reference designator // // 14-Jun-2016 Add the "Component_not_in_bom" attribute to // Remove all instances of this component from the BOM. // // 27-Aug-2016 Remove the Silkscreen component outline. // // // // Three Pin Version of the Diff Piar Through PCB Stackup // // // Note: The pin to pin spacing is // // 1.00 mm center-to-center for the signal-to-signal // 1.10 mm center-to-center for the signal-to-ground <--- // // // Geometry for a high-speed through board differential via pair // with return vias on Only One side. // // This Diff_Pair_Through board geometry includes a cutout of // the Gerber negative data Ground Plane. This cutout is provided // by a "path" on layer PREPREG_3. // // This is not a component that the assembly house installs on the // card so its Reference Designator is not shown in Silkscreen. // // This component has the Not in BOM attribute. // // // The long axis of this part is horizontal with pin #1 to the left. // // Pins #1 needs to be tied to Gnd in the net list. // // Pins #2 and #3 are the differential pair. // // $abort_enable = @false; $$lock_windows(@on) ; $$snap_diagonal(@off) ; $$snap_orthogonal(@off) ; //---------------------------------------------------------------------------- // // Diff_Pair_Through Ground Pin Geometry (same as 0mm60 Via) // // Special Small 0.60mm Land Diameter routing via for the CMX card. // // The pin-stack DIFF_PAIR_THRU_GND_PAD is defined in the // geometry for the component Diff_Pair_Through. // //---------------------------------------------------------------------------- // // Special Small 0.56mm Land Diameter pin pad-stack for the Hub Module. // // This "via" is used for the High Speed Differential GTH signals that // run the whole way (or most of the way) through the card stackup. // // The pin-stack DIFF_PAIR_THRU_SIG_PAD is defined in the // geometry for the component Diff_Pair_Through. // //---------------------------------------------------------------------------- // // Now the actual DIFF PAIR THROUGH Geometry // $$create_component("DIFF_PAIR_THRU_3P_1MM1"); $$page(0.0, 0.0, 0.0, @mm, 0.0, 0.0, [0.0,0.0,'CO$DIFF_PAIR_THRU_3P_1MM1'] ); $$point_mode(@vertex); $$attribute( "COMPONENT_HEIGHT", "", , @scale , , [ 1.0, 0.0 ]); $$attribute( "COMPONENT_OUTLINE_OVERHANG", "yes"); $$attribute( "COMPONENT_LAYOUT_SURFACE", "both"); $$attribute( "COMPONENT_NOT_IN_BOM" ); // // Component Outline of the square body part of the connector // $$initial([ 0.80, 0.30 ], , @nosnap ); $$terminal([ -1.95, 0.30 ]); $$terminal([ -1.95, -0.30 ]); $$terminal([ 0.80, -0.30 ]); $$terminal([ 0.80, 0.30 ]); $$attribute( "COMPONENT_PLACEMENT_OUTLINE", "", @mark, @scale ); // // Silkscreen Outline of the square body part of the connector // $$template_line_style( @Solid ); // //$$initial([ 0.80, 0.40 ], , @nosnap ); // //$$terminal([ -1.95, 0.40 ]); // //$$terminal([ -1.95, -0.40 ]); // //$$terminal([ 0.80, -0.40 ]); // //$$terminal([ 0.80, 0.40 ]); // //$$path( "SILKSCREEN", 0.10 ); // Silkscreen End of // // Reference Designator - Is NOT in SilkScreen // // //$$text( "SILKSCREEN", "^$ref", 0.0, 0.0, 0.3, @CC, 0, 1.00, 0.10, "std", "None", 0.0, 0.0 ); // This Diff_Pair_Through board geometry includes a cutout of // the Gerber negative data Ground Plane. This cutout is provided // by a "path" on layer PREPREG_3. $$path( "PREPREG_3", 1.00, , [ -0.50, 0.00, 0.50, 0.00 ]); // // Ground and Signal Pins in the Diff_Pair-Through // ------------------------------------------------- // // // Pin #1 Pin #2 Pin #3 // Ground Signal Signal // $$attribute( "COMPONENT_PIN_DEFINITION", "1", , @scale , , [ -1.60, 0.00 ]); $$attribute( "COMPONENT_PADSTACK_OVERRIDE", "1, DIFF_PAIR_THRU_GND_PAD"); $$attribute( "COMPONENT_PIN_DEFINITION", "2", , @scale , , [ -0.50, 0.00 ]); $$attribute( "COMPONENT_PADSTACK_OVERRIDE", "2, DIFF_PAIR_THRU_SIG_PAD"); $$attribute( "COMPONENT_PIN_DEFINITION", "3", , @scale , , [ 0.50, 0.00 ]); $$attribute( "COMPONENT_PADSTACK_OVERRIDE", "3, DIFF_PAIR_THRU_SIG_PAD");