// // File: aka_1mm20 // // Date: 6-June-2013 original for CMX // // 23-May-2016 a little clean up for Hub // // 15-Jun-2016 Add the "Component_not_in_bom" attribute to // Remove all instances of this component from the BOM. // // // // Geometry for the Also-Known-As component 1.2 mm versions. // --------------- // // Pin #1 is connected to Pin #2 of this component by a 1.20mm // trace on the BREAKOUT Layer. // // There is NO Reference Designator on the SilkScreen Layer. // // This component has the Not in BOM attribute. // // There is a box on the SilkScreen to show where this // bump is located. // // The long axis of this part is horizontal with pin #1 to the left. // // The "pads" for this component do not have an opening in the // Solder-Mask or in the Solder-Past_stencil. // // This component is smaller than an IPC 0402 Courtyard // which is 3mm in the long dimension X // by 1mm in the Y dimension. // // // This geometry was made for the CMX design. // This geometry was cleaned up for the Hub design. // // $abort_enable = @false; $$lock_windows(@on) ; $$snap_diagonal(@off) ; $$snap_orthogonal(@off) ; //---------------------------------------------------------------------------- $$create_pin("AKA_1MM20_PAD", @replace); $$page(0.0, 0.0, 0.0, @mm, 0.0, 0.0, [0.0,0.0,'PI$AKA_1MM20_PAD'] ); $$point_mode(@vertex); $$polygon( "PAD", , [ -0.60, -0.60, 0.60, -0.60, 0.60, 0.60, -0.60, 0.60 ] ); $$attribute( "TERMINAL_SURFACE_DEFINITION", ""); //---------------------------------------------------------------------------- $$create_component("AKA_1MM20", @replace); $$page(0.0, 0.0, 0.0, @mm, 0.0, 0.0, [0.0,0.0,'CO$AKA_1MM20'] ); $$point_mode(@vertex); $$attribute( "COMPONENT_LAYOUT_TYPE", "surface"); $$attribute( "COMPONENT_LAYOUT_SURFACE", "both"); $$attribute( "COMPONENT_HEIGHT", "", , @scale , , [0.028, 0.0]); $$attribute( "COMPONENT_NOT_IN_BOM" ); // // Component Placement Outline for the aka_1mm20 // $$initial([ 1.80, 0.70 ], , @nosnap ); $$terminal([ -1.80, 0.70 ] ); $$terminal([ -1.80, -0.70 ] ); $$terminal([ 1.80, -0.70 ] ); $$attribute( "COMPONENT_PLACEMENT_OUTLINE", "", @mark, @scale ); $$template_line_style( @Solid ); // //$$path( "SILKSCREEN", 0.20, , [ -1.80, 0.70, 1.80, 0.70 ]); // //$$path( "SILKSCREEN", 0.20, , [ -1.80, -0.70, 1.80, -0.70 ]); // //$$path( "SILKSCREEN", 0.20, , [ 1.80, 0.70, 1.80, -0.70 ]); // //$$path( "SILKSCREEN", 0.20, , [ -1.80, 0.70, -1.80, -0.70 ]); // Now on the BREAKOUT Layer draw a trace to connect the two pads. $$path( "BREAKOUT", 1.20, , [ -1.00, 0.00, 1.00, 0.00 ]); // NO Reference Designator on the SILKSCREEN Layer. // // // $$text( "SILKSCREEN", "^$ref", 0.0, 0.0, 1.4, @CC, 0, 0.7, 0.20, "std", "None", 0.0, 0.0 ); // Define the two pins on the AKA_1MM20: // // pin #1 is to the left, pin #2 to the right, the axis is horizontal $$attribute( "COMPONENT_PIN_DEFINITION", "1", , @scale , , [ -1.00, 0.0 ]); $$attribute( "COMPONENT_PADSTACK_OVERRIDE", "1, AKA_1MM20_PAD"); $$attribute( "COMPONENT_PIN_DEFINITION", "2", , @scale , , [ 1.00, 0.0 ]); $$attribute( "COMPONENT_PADSTACK_OVERRIDE", "2, AKA_1MM20_PAD");