├── .DS_Store ├── Kicad_Project ├── .DS_Store ├── .gitignore ├── Busbars.pretty │ └── my_testpoint_D1.7mm.kicad_mod ├── DXFs │ ├── .DS_Store │ ├── DFN_V03_1.dxf │ ├── DFN_V03_2.dxf │ └── DFN_V03_3.dxf ├── MANUFACTURE │ ├── .DS_Store │ ├── MP2_DFN.zip │ ├── bom.csv │ ├── designators.csv │ └── positions.csv ├── MP2_DFN.kicad_pcb ├── MP2_DFN.kicad_pro ├── MP2_DFN.kicad_sch ├── MP2_DFN.pdf ├── MP2_DFN.xml ├── MP2_DFN │ ├── MP2_DFN-B_Cu.gbr │ ├── MP2_DFN-B_Mask.gbr │ ├── MP2_DFN-B_Paste.gbr │ ├── MP2_DFN-B_SilkS.gbr │ ├── MP2_DFN-Edge_Cuts.gbr │ ├── MP2_DFN-F_Cu.gbr │ ├── MP2_DFN-F_Mask.gbr │ ├── MP2_DFN-F_Paste.gbr │ ├── MP2_DFN-F_SilkS.gbr │ ├── MP2_DFN-In1_Cu.gbr │ ├── MP2_DFN-In2_Cu.gbr │ ├── MP2_DFN-NPTH.drl │ ├── MP2_DFN-PTH.drl │ └── MP2_DFN-User_Comments.gbr ├── MP2_DFN_Custom_Symbols.kicad_sym ├── MP2_DFN_Custom_parts.pretty │ ├── Blackpill_STM32F401CEU6.kicad_mod │ ├── CAP_Polarized_SMD.kicad_mod │ ├── CAP_Polarized_SMD_simple.kicad_mod │ ├── CAP_Polaryzed.kicad_mod │ ├── PQDE6W.kicad_mod │ ├── STM32F405_pill.kicad_mod │ ├── Shunt_2512_6332Metric.kicad_mod │ ├── TO220_horizontal_smallgate.kicad_mod │ ├── TO220_replacement_module.kicad_mod │ └── custom_NVMTSC4D3N15MC.kicad_mod ├── NVMTSC4D3N15MC │ ├── .DS_Store │ ├── 3D │ │ └── NVMTSC4D3N15MC.stp │ ├── NVMTSC4D3N15MC.dcm │ ├── NVMTSC4D3N15MC.kicad_mod │ ├── NVMTSC4D3N15MC.kicad_sym │ ├── NVMTSC4D3N15MC.lib │ ├── NVMTSC4D3N15MC.mod │ └── custom_NVMTSC4D3N15MC.kicad_mod ├── bom2grouped_csv_jlcpcb.xsl ├── production │ ├── .DS_Store │ └── MP2_DFN_2024-06-16_20-33-54 │ │ └── .DS_Store ├── scrap.kicad_sch └── sym-lib-table ├── LICENSE └── README.md /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owhite/MP2-DFN/8d143acf6759c34189a9e880233410b96623ab0f/.DS_Store -------------------------------------------------------------------------------- /Kicad_Project/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owhite/MP2-DFN/8d143acf6759c34189a9e880233410b96623ab0f/Kicad_Project/.DS_Store -------------------------------------------------------------------------------- /Kicad_Project/.gitignore: -------------------------------------------------------------------------------- 1 | # For PCBs designed using KiCad: https://www.kicad.org/ 2 | # Format documentation: https://kicad.org/help/file-formats/ 3 | 4 | # Temporary files 5 | *.000 6 | *.bak 7 | *.bck 8 | *.kicad_pcb-bak 9 | *.kicad_sch-bak 10 | *-backups 11 | *.kicad_prl 12 | *.sch-bak 13 | *~ 14 | _autosave-* 15 | *.tmp 16 | *-save.pro 17 | *-save.kicad_pcb 18 | fp-info-cache 19 | 20 | # Netlist files (exported from Eeschema) 21 | *.net 22 | 23 | # Autorouter files (exported from Pcbnew) 24 | *.dsn 25 | *.ses 26 | 27 | # Exported BOM files 28 | # *.xml 29 | # *.csv 30 | -------------------------------------------------------------------------------- /Kicad_Project/Busbars.pretty/my_testpoint_D1.7mm.kicad_mod: -------------------------------------------------------------------------------- 1 | (footprint "my_testpoint_D1.7mm" (version 20221018) (generator pcbnew) 2 | (layer "F.Cu") 3 | (descr "THT rectangular pad as test Point, square 3.0mm side length, hole diameter 1.5mm") 4 | (tags "test point THT pad rectangle square") 5 | (attr exclude_from_pos_files exclude_from_bom) 6 | (fp_text reference "REF**" (at 0 -2.398) (layer "F.SilkS") hide 7 | (effects (font (size 1 1) (thickness 0.15))) 8 | (tstamp cab128f0-7ed7-4fb7-b154-5bed1fb8b8ab) 9 | ) 10 | (fp_text value "my_testpoint_D1.7mm" (at 0 2.55) (layer "F.Fab") hide 11 | (effects (font (size 1 1) (thickness 0.15))) 12 | (tstamp 583e27f2-96e6-49c5-ab0f-39e6b04c8303) 13 | ) 14 | (fp_circle (center 0 0) (end 1.7 0) 15 | (stroke (width 0.05) (type default)) (fill none) (layer "F.CrtYd") (tstamp b37ee132-672f-4134-bf0b-6627992e26b7)) 16 | (pad "1" thru_hole circle (at 0 0) (size 3.2 3.2) (drill 1.7) (layers "*.Cu" "*.Mask") (remove_unused_layers) (keep_end_layers) (tstamp 52588805-7bcd-4b54-b27e-5cc9ed181ca1)) 17 | ) 18 | -------------------------------------------------------------------------------- /Kicad_Project/DXFs/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owhite/MP2-DFN/8d143acf6759c34189a9e880233410b96623ab0f/Kicad_Project/DXFs/.DS_Store -------------------------------------------------------------------------------- /Kicad_Project/MANUFACTURE/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owhite/MP2-DFN/8d143acf6759c34189a9e880233410b96623ab0f/Kicad_Project/MANUFACTURE/.DS_Store -------------------------------------------------------------------------------- /Kicad_Project/MANUFACTURE/MP2_DFN.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owhite/MP2-DFN/8d143acf6759c34189a9e880233410b96623ab0f/Kicad_Project/MANUFACTURE/MP2_DFN.zip -------------------------------------------------------------------------------- /Kicad_Project/MANUFACTURE/bom.csv: -------------------------------------------------------------------------------- 1 | Designator,Footprint,Quantity,Value,LCSC Part # 2 | "C1, C10, C11, C12, C13, C2, C3, C8, C9",0603,9,10uF,C96446 3 | "C14, C15, C16, C17, C22, C23, C24",0603,7,1nF,C1588 4 | "C18, C32",0603,2,1uF,C15849 5 | C19,0603,1,22nF,C21122 6 | "C20, C21, C26, C27, C28, C6, C7",0603,7,100n,C14663 7 | "C25, C29, C30, C33",0603,4,10nF,C57112 8 | C5,0805,1,100nF,C342865 9 | "CD1, CD2, CD3, CD4, CD5, CD6, CX1, CX2, CX20, CX3, CX4, CX5, CX6, CX7, CX8, CX9",1210,16,470nF,C192761 10 | "CGS1, CGS10, CGS11, CGS12, CGS13, CGS14, CGS15, CGS16, CGS17, CGS18, CGS2, CGS3, CGS4, CGS5, CGS6, CGS7, CGS8, CGS9",0603,18,4.7nF,C597214 11 | "D1, D11, D2, D3",D_SOD-123,4,DSK320,C5290222 12 | "D4, D5, D6",D_SOD-323,3,D_Small,C191023 13 | D9,0603,1,LED,C375575 14 | "QA1, QA2, QA3, QA4, QA5, QA6, QB1, QB2, QB3, QB4, QB5, QB6, QC1, QC2, QC3, QC4, QC5, QC6",custom_NVMTSC4D3N15MC,18,NVMTSC4D3N15MC,C3280341 15 | "R1, R2",0805,2,4R7,C17675 16 | "R10, R5, R7",0805,3,150k,C17470 17 | "R11, R6, R8",0603,3,3k3,C22978 18 | "R12, R27",0603,2,10k,C25804 19 | "R13, R19, R20, R22, R23, R25, R26",0603,7,2k2,C4190 20 | R14,0805,1,360k,C17645 21 | R15,0603,1,8k2,C25981 22 | R16,0603,1,1k,C21190 23 | R17,0603,1,22k,C31850 24 | "R18, R21, R24, R3",0603,4,100k,C25803 25 | "R28, R9",0603,2,1k8,C4177 26 | "R29, R38",0603,2,220k,C22961 27 | "R30, R31, R32",0603,3,47k,C25819 28 | "R33, R34, R35",0603,3,R150,C22808 29 | R36,0603,1,47R,C23182 30 | "R37, R39, R41",0603,3,R100,C22775 31 | "R42, R43",0603,2,R470,C23179 32 | "R44, R45, R46",0603,3,2R2,C22939 33 | "R47, R48, R49, R50, R51, R52",0603,6,1M,C22935 34 | R67,0603,1,30k,C22984 35 | "RG1, RG10, RG11, RG12, RG13, RG14, RG15, RG16, RG17, RG18, RG2, RG3, RG4, RG5, RG6, RG7, RG8, RG9",0603,18,15R,C22810 36 | "RN1, RN4",R_Array_Concave_4x0603,2,10k,C29718 37 | "RN2, RN3, RN5, RN7",R_Array_Concave_4x0603,4,470R,C25510 38 | "SHA1, SHA2, SHA3, SHB1, SHB2, SHB3, SHC1, SHC2, SHC3",Shunt_2512_6332Metric,9,0.5mR,C500733 39 | TH1,0603,1,Thermistor_NTC,C222491 40 | "U1, U2, U3",SOIC-8_3.9x4.9mm_P1.27mm,3,TF2190-TAH,C2917161 41 | U4,SOIC-14_3.9x8.7mm_P1.27mm,1,NCS20034DR2G,C695777 42 | -------------------------------------------------------------------------------- /Kicad_Project/MANUFACTURE/designators.csv: -------------------------------------------------------------------------------- 1 | C1:1 2 | C10:1 3 | C11:1 4 | C12:1 5 | C13:1 6 | C14:1 7 | C15:1 8 | C16:1 9 | C17:1 10 | C18:1 11 | C19:1 12 | C2:1 13 | C20:1 14 | C21:1 15 | C22:1 16 | C23:1 17 | C24:1 18 | C25:1 19 | C26:1 20 | C27:1 21 | C28:1 22 | C29:1 23 | C3:1 24 | C30:1 25 | C32:1 26 | C33:1 27 | C5:1 28 | C6:1 29 | C7:1 30 | C8:1 31 | C9:1 32 | CD1:1 33 | CD2:1 34 | CD3:1 35 | CD4:1 36 | CD5:1 37 | CD6:1 38 | CGS1:1 39 | CGS10:1 40 | CGS11:1 41 | CGS12:1 42 | CGS13:1 43 | CGS14:1 44 | CGS15:1 45 | CGS16:1 46 | CGS17:1 47 | CGS18:1 48 | CGS2:1 49 | CGS3:1 50 | CGS4:1 51 | CGS5:1 52 | CGS6:1 53 | CGS7:1 54 | CGS8:1 55 | CGS9:1 56 | CR1:1 57 | CR2:1 58 | CR3:1 59 | CR4:1 60 | CR5:1 61 | CS1:1 62 | CS2:1 63 | CS3:1 64 | CX1:1 65 | CX2:1 66 | CX20:1 67 | CX3:1 68 | CX4:1 69 | CX5:1 70 | CX6:1 71 | CX7:1 72 | CX8:1 73 | CX9:1 74 | D1:1 75 | D10:1 76 | D11:1 77 | D2:1 78 | D3:1 79 | D4:1 80 | D5:1 81 | D6:1 82 | D8:1 83 | D9:1 84 | J1:1 85 | J2:1 86 | J3:1 87 | J4:1 88 | JP1:1 89 | JP2:1 90 | JP3:1 91 | NT1:1 92 | NT2:1 93 | NT3:1 94 | NT4:1 95 | NT5:1 96 | NT6:1 97 | NTC1:1 98 | PHA_1:1 99 | PHA_2:1 100 | PHB_1:1 101 | PHB_2:1 102 | PHC_1:1 103 | PHC_2:1 104 | QA1:1 105 | QA2:1 106 | QA3:1 107 | QA4:1 108 | QA5:1 109 | QA6:1 110 | QB1:1 111 | QB2:1 112 | QB3:1 113 | QB4:1 114 | QB5:1 115 | QB6:1 116 | QC1:1 117 | QC2:1 118 | QC3:1 119 | QC4:1 120 | QC5:1 121 | QC6:1 122 | R1:1 123 | R10:1 124 | R11:1 125 | R12:1 126 | R13:1 127 | R14:1 128 | R15:1 129 | R16:1 130 | R17:1 131 | R18:1 132 | R19:1 133 | R2:1 134 | R20:1 135 | R21:1 136 | R22:1 137 | R23:1 138 | R24:1 139 | R25:1 140 | R26:1 141 | R27:1 142 | R28:1 143 | R29:1 144 | R3:1 145 | R30:1 146 | R31:1 147 | R32:1 148 | R33:1 149 | R34:1 150 | R35:1 151 | R36:1 152 | R37:1 153 | R38:1 154 | R39:1 155 | R41:1 156 | R42:1 157 | R43:1 158 | R44:1 159 | R45:1 160 | R46:1 161 | R47:1 162 | R48:1 163 | R49:1 164 | R5:1 165 | R50:1 166 | R51:1 167 | R52:1 168 | R6:1 169 | R67:1 170 | R7:1 171 | R8:1 172 | R9:1 173 | RG1:1 174 | RG10:1 175 | RG11:1 176 | RG12:1 177 | RG13:1 178 | RG14:1 179 | RG15:1 180 | RG16:1 181 | RG17:1 182 | RG18:1 183 | RG2:1 184 | RG3:1 185 | RG4:1 186 | RG5:1 187 | RG6:1 188 | RG7:1 189 | RG8:1 190 | RG9:1 191 | RN1:1 192 | RN2:1 193 | RN3:1 194 | RN4:1 195 | RN5:1 196 | RN7:1 197 | RS1:1 198 | RS2:1 199 | RS3:1 200 | SHA1:1 201 | SHA2:1 202 | SHA3:1 203 | SHB1:1 204 | SHB2:1 205 | SHB3:1 206 | SHC1:1 207 | SHC2:1 208 | SHC3:1 209 | TH1:1 210 | Tp12V1:1 211 | TpGND1:1 212 | TpGND2:1 213 | TpGND3:1 214 | TpGND4:1 215 | TpGND5:1 216 | TpGND6:1 217 | TpGND7:1 218 | TpVBAT1:1 219 | TpVBAT2:1 220 | TpVBAT3:1 221 | TpVBAT4:1 222 | TpVBAT5:1 223 | U1:1 224 | U2:1 225 | U3:1 226 | U4:1 227 | U5:1 228 | U6:1 229 | U7:1 230 | -------------------------------------------------------------------------------- /Kicad_Project/MANUFACTURE/positions.csv: -------------------------------------------------------------------------------- 1 | Designator,Mid X,Mid Y,Rotation,Layer 2 | C1,78.9,-101.4,0.0,top 3 | C10,88.63,-114.92,90.0,top 4 | C11,76.65,-111.175,90.0,top 5 | C12,79.7,-111.175,90.0,top 6 | C13,78.175,-111.175,90.0,top 7 | C14,138.7,-101.9,90.0,top 8 | C15,140.25,-101.9,90.0,top 9 | C16,141.8,-101.9,90.0,top 10 | C17,138.2,-112.2,180.0,top 11 | C18,134.6,-101.9,270.0,top 12 | C19,132.65,-101.9,270.0,top 13 | C2,85.95,-101.425,0.0,top 14 | C20,111.55,-108.55,0.0,top 15 | C21,137.15,-101.9,270.0,top 16 | C22,130.9,-101.9,90.0,top 17 | C23,127.5,-101.9,90.0,top 18 | C24,124.1,-101.9,90.0,top 19 | C25,98.5,-111.4,90.0,top 20 | C26,82.119,-103.725,270.0,top 21 | C27,89.125,-103.725,270.0,top 22 | C28,96.15,-103.725,270.0,top 23 | C29,117.6,-101.925,270.0,top 24 | C3,92.975,-101.45,0.0,top 25 | C30,114.4,-101.925,270.0,top 26 | C32,110.7,-101.9,270.0,top 27 | C33,120.7,-101.875,270.0,top 28 | C5,51.2,-86.0,270.0,top 29 | C6,147.869,-111.37826,90.0,top 30 | C7,101.4,-101.9,270.0,top 31 | C8,90.155,-114.92,90.0,top 32 | C9,91.68,-114.92,90.0,top 33 | CD1,155.794,-68.162,180.0,top 34 | CD2,85.6552,-72.2414,270.0,top 35 | CD3,155.476,-77.784,180.0,top 36 | CD4,155.476,-81.34,180.0,top 37 | CD5,118.617,-72.7204,270.0,top 38 | CD6,155.8,-64.782,180.0,top 39 | CGS1,53.594,-64.529,90.0,top 40 | CGS10,55.1,-87.3,0.0,top 41 | CGS11,64.262,-81.525,90.0,top 42 | CGS12,74.6,-81.325,90.0,top 43 | CGS13,89.6,-87.425,90.0,top 44 | CGS14,96.6,-81.675,270.0,top 45 | CGS15,106.9,-81.425,270.0,top 46 | CGS16,122.0,-87.6,90.0,top 47 | CGS17,129.032,-81.648,90.0,top 48 | CGS18,139.319,-81.6,90.0,top 49 | CGS2,64.2,-64.825,270.0,top 50 | CGS3,74.5,-64.8,270.0,top 51 | CGS4,85.9,-64.4,270.0,top 52 | CGS5,96.5,-64.8,270.0,top 53 | CGS6,106.9,-64.725,270.0,top 54 | CGS7,118.3,-64.725,270.0,top 55 | CGS8,128.9,-64.925,270.0,top 56 | CGS9,139.2,-64.975,270.0,top 57 | CR1,57.5,-38.225,270.0,bottom 58 | CR2,77.125,-38.17222,270.0,bottom 59 | CR3,97.05,-38.17222,270.0,bottom 60 | CR4,117.075,-38.17222,270.0,bottom 61 | CR5,136.925,-38.17222,270.0,bottom 62 | CX1,51.0,-53.125,90.0,top 63 | CX2,65.25,-51.9202,90.0,top 64 | CX20,145.75,-51.9202,90.0,top 65 | CX3,69.0,-51.9202,90.0,top 66 | CX4,85.25,-51.9202,90.0,top 67 | CX5,89.0,-51.9202,90.0,top 68 | CX6,105.5,-51.9202,90.0,top 69 | CX7,109.0,-51.9202,90.0,top 70 | CX8,125.75,-51.9202,90.0,top 71 | CX9,129.25,-51.9202,90.0,top 72 | D1,81.6,-99.8,270.0,top 73 | D10,67.4,-99.2,0.0,bottom 74 | D11,83.025,-111.575,180.0,top 75 | D2,88.7,-99.8,270.0,top 76 | D3,95.65,-99.825,270.0,top 77 | D4,123.85,-105.0,90.0,top 78 | D5,127.25,-105.0,90.0,top 79 | D6,130.65,-105.0,90.0,top 80 | D9,93.3,-114.8875,270.0,top 81 | QA1,59.025,-64.4,0.0,top 82 | QA2,59.0035,-80.4053,0.0,top 83 | QA3,69.3775,-64.4033,0.0,top 84 | QA4,69.3775,-80.4053,0.0,top 85 | QA5,79.699,-64.4033,0.0,top 86 | QA6,79.8315,-80.4053,0.0,top 87 | QB1,91.3593,-64.565,0.0,top 88 | QB2,91.2968,-80.567,0.0,top 89 | QB3,101.6375,-64.5572,0.0,top 90 | QB4,101.7244,-80.6265,0.0,top 91 | QB5,112.1756,-64.5414,0.0,top 92 | QB6,112.1337,-80.567,0.0,top 93 | QC1,123.726,-64.6778,0.0,top 94 | QC2,123.8258,-80.6664,0.0,top 95 | QC3,134.1146,-64.6778,0.0,top 96 | QC4,134.2026,-80.6664,0.0,top 97 | QC5,144.427,-64.6778,0.0,top 98 | QC6,144.508,-80.6664,0.0,top 99 | R1,51.6,-66.8875,270.0,top 100 | R10,91.6125,-98.075,0.0,top 101 | R11,112.85,-101.85,90.0,top 102 | R12,138.419,-107.52826,270.0,top 103 | R13,127.2,-111.35,270.0,top 104 | R14,148.2916,-45.2615,270.0,top 105 | R15,145.65,-102.0,90.0,top 106 | R16,102.9,-101.9,90.0,top 107 | R17,98.4,-101.9,90.0,top 108 | R18,116.15,-109.0,0.0,top 109 | R19,113.15,-110.45,0.0,top 110 | R2,51.6282,-63.175,90.0,top 111 | R20,113.15,-112.05,0.0,top 112 | R21,116.15,-107.5,0.0,top 113 | R22,116.425,-105.7,180.0,top 114 | R23,113.1,-106.3,0.0,top 115 | R24,104.55,-101.9,90.0,top 116 | R25,107.625,-101.9,90.0,top 117 | R26,109.15,-101.875,90.0,top 118 | R27,99.9,-101.9,90.0,top 119 | R28,131.669,-108.29076,90.0,top 120 | R29,101.8,-111.4,270.0,top 121 | R3,120.15,-108.075,90.0,top 122 | R30,110.75,-111.25,270.0,top 123 | R31,110.75,-105.85,90.0,top 124 | R32,101.71,-105.2,90.0,top 125 | R33,129.4,-101.9,90.0,top 126 | R34,126.0,-101.9,90.0,top 127 | R35,122.6,-101.9,90.0,top 128 | R36,100.15,-111.4,270.0,top 129 | R37,116.9,-111.4,270.0,top 130 | R38,147.15,-102.0,90.0,top 131 | R39,119.4,-111.4,270.0,top 132 | R41,106.1,-101.9,270.0,top 133 | R42,95.05,-110.545,0.0,top 134 | R43,91.48,-110.555,0.0,top 135 | R44,78.9,-99.85,0.0,top 136 | R45,85.95,-99.9,0.0,top 137 | R46,92.975,-99.925,0.0,top 138 | R47,76.65,-100.675,270.0,top 139 | R48,82.125,-108.125,90.0,top 140 | R49,83.675,-100.65,270.0,top 141 | R5,77.6,-98.1,0.0,top 142 | R50,89.125,-108.15,90.0,top 143 | R51,90.7,-100.7,270.0,top 144 | R52,96.15,-108.15,90.0,top 145 | R6,119.1,-101.9,90.0,top 146 | R67,95.0,-114.9,90.0,top 147 | R7,84.525,-98.05,0.0,top 148 | R8,116.1,-101.9,90.0,top 149 | R9,130.169,-108.29076,270.0,top 150 | RG1,53.7782,-68.0486,90.0,top 151 | RG10,85.9,-83.8,270.0,top 152 | RG11,96.6213,-84.70625,90.0,top 153 | RG12,106.934,-84.64325,90.0,top 154 | RG13,118.2935,-67.7804,90.0,top 155 | RG14,128.8895,-68.0269,90.0,top 156 | RG15,139.191,-68.02355,90.0,top 157 | RG16,118.41,-83.795,90.0,top 158 | RG17,129.031,-84.79365,90.0,top 159 | RG18,139.319,-84.73065,90.0,top 160 | RG2,64.205,-67.8088,90.0,top 161 | RG3,74.5065,-67.80545,90.0,top 162 | RG4,53.956,-85.0534,90.0,top 163 | RG5,64.262,-84.57555,90.0,top 164 | RG6,74.5065,-84.51255,90.0,top 165 | RG7,85.8584,-67.3628,90.0,top 166 | RG8,96.5264,-67.7946,90.0,top 167 | RG9,106.9404,-67.7692,90.0,top 168 | RN1,141.519,-110.92826,90.0,top 169 | RN2,124.55,-111.35,0.0,top 170 | RN3,134.569,-111.32826,0.0,top 171 | RN4,145.369,-110.92826,270.0,top 172 | RN5,130.569,-111.34076,180.0,top 173 | RN7,87.5,-111.35,180.0,top 174 | SHA1,60.4795,-89.5983,90.0,top 175 | SHA2,80.2915,-89.5983,90.0,top 176 | SHA3,70.3855,-89.5983,90.0,top 177 | SHB1,92.3423,-89.76,90.0,top 178 | SHB2,102.47,-89.76,90.0,top 179 | SHB3,112.6623,-89.76,90.0,top 180 | SHC1,125.042,-89.7204,90.0,top 181 | SHC2,134.864,-89.7204,90.0,top 182 | SHC3,145.0,-89.7204,90.0,top 183 | TH1,96.65,-77.925,90.0,top 184 | U1,78.619,-105.925,90.0,top 185 | U2,85.625,-105.925,90.0,top 186 | U3,92.65,-105.95,90.0,top 187 | U4,106.25,-108.26,270.0,top 188 | -------------------------------------------------------------------------------- /Kicad_Project/MP2_DFN.kicad_pro: -------------------------------------------------------------------------------- 1 | { 2 | "board": { 3 | "3dviewports": [], 4 | "design_settings": { 5 | "defaults": { 6 | "board_outline_line_width": 0.09999999999999999, 7 | "copper_line_width": 0.19999999999999998, 8 | "copper_text_italic": false, 9 | "copper_text_size_h": 1.5, 10 | "copper_text_size_v": 1.5, 11 | "copper_text_thickness": 0.3, 12 | "copper_text_upright": false, 13 | "courtyard_line_width": 0.049999999999999996, 14 | "dimension_precision": 4, 15 | "dimension_units": 3, 16 | "dimensions": { 17 | "arrow_length": 1270000, 18 | "extension_offset": 500000, 19 | "keep_text_aligned": true, 20 | "suppress_zeroes": false, 21 | "text_position": 0, 22 | "units_format": 1 23 | }, 24 | "fab_line_width": 0.09999999999999999, 25 | "fab_text_italic": false, 26 | "fab_text_size_h": 1.0, 27 | "fab_text_size_v": 1.0, 28 | "fab_text_thickness": 0.15, 29 | "fab_text_upright": false, 30 | "other_line_width": 0.15, 31 | "other_text_italic": false, 32 | "other_text_size_h": 1.0, 33 | "other_text_size_v": 1.0, 34 | "other_text_thickness": 0.15, 35 | "other_text_upright": false, 36 | "pads": { 37 | "drill": 1.7, 38 | "height": 3.2, 39 | "width": 3.2 40 | }, 41 | "silk_line_width": 0.15, 42 | "silk_text_italic": false, 43 | "silk_text_size_h": 1.0, 44 | "silk_text_size_v": 1.0, 45 | "silk_text_thickness": 0.15, 46 | "silk_text_upright": false, 47 | "zones": { 48 | "45_degree_only": false, 49 | "min_clearance": 0.0 50 | } 51 | }, 52 | "diff_pair_dimensions": [ 53 | { 54 | "gap": 0.0, 55 | "via_gap": 0.0, 56 | "width": 0.0 57 | } 58 | ], 59 | "drc_exclusions": [], 60 | "meta": { 61 | "version": 2 62 | }, 63 | "rule_severities": { 64 | "annular_width": "error", 65 | "clearance": "error", 66 | "connection_width": "warning", 67 | "copper_edge_clearance": "error", 68 | "copper_sliver": "warning", 69 | "courtyards_overlap": "error", 70 | "diff_pair_gap_out_of_range": "error", 71 | "diff_pair_uncoupled_length_too_long": "error", 72 | "drill_out_of_range": "error", 73 | "duplicate_footprints": "warning", 74 | "extra_footprint": "warning", 75 | "footprint": "error", 76 | "footprint_type_mismatch": "error", 77 | "hole_clearance": "error", 78 | "hole_near_hole": "error", 79 | "invalid_outline": "error", 80 | "isolated_copper": "warning", 81 | "item_on_disabled_layer": "error", 82 | "items_not_allowed": "error", 83 | "length_out_of_range": "error", 84 | "lib_footprint_issues": "warning", 85 | "lib_footprint_mismatch": "warning", 86 | "malformed_courtyard": "error", 87 | "microvia_drill_out_of_range": "error", 88 | "missing_courtyard": "ignore", 89 | "missing_footprint": "warning", 90 | "net_conflict": "warning", 91 | "npth_inside_courtyard": "ignore", 92 | "padstack": "error", 93 | "pth_inside_courtyard": "ignore", 94 | "shorting_items": "error", 95 | "silk_edge_clearance": "warning", 96 | "silk_over_copper": "ignore", 97 | "silk_overlap": "ignore", 98 | "skew_out_of_range": "error", 99 | "solder_mask_bridge": "error", 100 | "starved_thermal": "error", 101 | "text_height": "warning", 102 | "text_thickness": "warning", 103 | "through_hole_pad_without_hole": "error", 104 | "too_many_vias": "error", 105 | "track_dangling": "warning", 106 | "track_width": "error", 107 | "tracks_crossing": "error", 108 | "unconnected_items": "error", 109 | "unresolved_variable": "error", 110 | "via_dangling": "warning", 111 | "zones_intersect": "error" 112 | }, 113 | "rules": { 114 | "allow_blind_buried_vias": false, 115 | "allow_microvias": false, 116 | "max_error": 0.005, 117 | "min_clearance": 0.0, 118 | "min_connection": 0.0, 119 | "min_copper_edge_clearance": 0.3, 120 | "min_hole_clearance": 0.08, 121 | "min_hole_to_hole": 0.25, 122 | "min_microvia_diameter": 0.19999999999999998, 123 | "min_microvia_drill": 0.09999999999999999, 124 | "min_resolved_spokes": 2, 125 | "min_silk_clearance": 0.0, 126 | "min_text_height": 0.7999999999999999, 127 | "min_text_thickness": 0.08, 128 | "min_through_hole_diameter": 0.3, 129 | "min_track_width": 0.19999999999999998, 130 | "min_via_annular_width": 0.049999999999999996, 131 | "min_via_diameter": 0.39999999999999997, 132 | "solder_mask_clearance": 0.0, 133 | "solder_mask_min_width": 0.0, 134 | "solder_mask_to_copper_clearance": 0.005, 135 | "use_height_for_length_calcs": true 136 | }, 137 | "teardrop_options": [ 138 | { 139 | "td_allow_use_two_tracks": true, 140 | "td_curve_segcount": 5, 141 | "td_on_pad_in_zone": false, 142 | "td_onpadsmd": true, 143 | "td_onroundshapesonly": false, 144 | "td_ontrackend": false, 145 | "td_onviapad": true 146 | } 147 | ], 148 | "teardrop_parameters": [ 149 | { 150 | "td_curve_segcount": 0, 151 | "td_height_ratio": 1.0, 152 | "td_length_ratio": 0.5, 153 | "td_maxheight": 2.0, 154 | "td_maxlen": 1.0, 155 | "td_target_name": "td_round_shape", 156 | "td_width_to_size_filter_ratio": 0.9 157 | }, 158 | { 159 | "td_curve_segcount": 0, 160 | "td_height_ratio": 1.0, 161 | "td_length_ratio": 0.5, 162 | "td_maxheight": 2.0, 163 | "td_maxlen": 1.0, 164 | "td_target_name": "td_rect_shape", 165 | "td_width_to_size_filter_ratio": 0.9 166 | }, 167 | { 168 | "td_curve_segcount": 0, 169 | "td_height_ratio": 1.0, 170 | "td_length_ratio": 0.5, 171 | "td_maxheight": 2.0, 172 | "td_maxlen": 1.0, 173 | "td_target_name": "td_track_end", 174 | "td_width_to_size_filter_ratio": 0.9 175 | } 176 | ], 177 | "track_widths": [ 178 | 0.0, 179 | 1.0 180 | ], 181 | "via_dimensions": [ 182 | { 183 | "diameter": 0.0, 184 | "drill": 0.0 185 | }, 186 | { 187 | "diameter": 0.6, 188 | "drill": 0.3 189 | } 190 | ], 191 | "zones_allow_external_fillets": false, 192 | "zones_use_no_outline": true 193 | }, 194 | "layer_presets": [], 195 | "viewports": [] 196 | }, 197 | "boards": [], 198 | "cvpcb": { 199 | "equivalence_files": [] 200 | }, 201 | "erc": { 202 | "erc_exclusions": [], 203 | "meta": { 204 | "version": 0 205 | }, 206 | "pin_map": [ 207 | [ 208 | 0, 209 | 0, 210 | 0, 211 | 0, 212 | 0, 213 | 0, 214 | 1, 215 | 0, 216 | 0, 217 | 0, 218 | 0, 219 | 2 220 | ], 221 | [ 222 | 0, 223 | 2, 224 | 0, 225 | 1, 226 | 0, 227 | 0, 228 | 1, 229 | 0, 230 | 2, 231 | 2, 232 | 2, 233 | 2 234 | ], 235 | [ 236 | 0, 237 | 0, 238 | 0, 239 | 0, 240 | 0, 241 | 0, 242 | 1, 243 | 0, 244 | 1, 245 | 0, 246 | 1, 247 | 2 248 | ], 249 | [ 250 | 0, 251 | 1, 252 | 0, 253 | 0, 254 | 0, 255 | 0, 256 | 1, 257 | 1, 258 | 2, 259 | 1, 260 | 1, 261 | 2 262 | ], 263 | [ 264 | 0, 265 | 0, 266 | 0, 267 | 0, 268 | 0, 269 | 0, 270 | 1, 271 | 0, 272 | 0, 273 | 0, 274 | 0, 275 | 2 276 | ], 277 | [ 278 | 0, 279 | 0, 280 | 0, 281 | 0, 282 | 0, 283 | 0, 284 | 0, 285 | 0, 286 | 0, 287 | 0, 288 | 0, 289 | 2 290 | ], 291 | [ 292 | 1, 293 | 1, 294 | 1, 295 | 1, 296 | 1, 297 | 0, 298 | 1, 299 | 1, 300 | 1, 301 | 1, 302 | 1, 303 | 2 304 | ], 305 | [ 306 | 0, 307 | 0, 308 | 0, 309 | 1, 310 | 0, 311 | 0, 312 | 1, 313 | 0, 314 | 0, 315 | 0, 316 | 0, 317 | 2 318 | ], 319 | [ 320 | 0, 321 | 2, 322 | 1, 323 | 2, 324 | 0, 325 | 0, 326 | 1, 327 | 0, 328 | 2, 329 | 2, 330 | 2, 331 | 2 332 | ], 333 | [ 334 | 0, 335 | 2, 336 | 0, 337 | 1, 338 | 0, 339 | 0, 340 | 1, 341 | 0, 342 | 2, 343 | 0, 344 | 0, 345 | 2 346 | ], 347 | [ 348 | 0, 349 | 2, 350 | 1, 351 | 1, 352 | 0, 353 | 0, 354 | 1, 355 | 0, 356 | 2, 357 | 0, 358 | 0, 359 | 2 360 | ], 361 | [ 362 | 2, 363 | 2, 364 | 2, 365 | 2, 366 | 2, 367 | 2, 368 | 2, 369 | 2, 370 | 2, 371 | 2, 372 | 2, 373 | 2 374 | ] 375 | ], 376 | "rule_severities": { 377 | "bus_definition_conflict": "error", 378 | "bus_entry_needed": "error", 379 | "bus_to_bus_conflict": "error", 380 | "bus_to_net_conflict": "error", 381 | "conflicting_netclasses": "error", 382 | "different_unit_footprint": "error", 383 | "different_unit_net": "error", 384 | "duplicate_reference": "error", 385 | "duplicate_sheet_names": "error", 386 | "endpoint_off_grid": "warning", 387 | "extra_units": "error", 388 | "global_label_dangling": "warning", 389 | "hier_label_mismatch": "error", 390 | "label_dangling": "error", 391 | "lib_symbol_issues": "warning", 392 | "missing_bidi_pin": "warning", 393 | "missing_input_pin": "warning", 394 | "missing_power_pin": "error", 395 | "missing_unit": "warning", 396 | "multiple_net_names": "warning", 397 | "net_not_bus_member": "warning", 398 | "no_connect_connected": "warning", 399 | "no_connect_dangling": "warning", 400 | "pin_not_connected": "error", 401 | "pin_not_driven": "error", 402 | "pin_to_pin": "warning", 403 | "power_pin_not_driven": "error", 404 | "similar_labels": "warning", 405 | "simulation_model_issue": "error", 406 | "unannotated": "error", 407 | "unit_value_mismatch": "error", 408 | "unresolved_variable": "error", 409 | "wire_dangling": "error" 410 | } 411 | }, 412 | "libraries": { 413 | "pinned_footprint_libs": [], 414 | "pinned_symbol_libs": [] 415 | }, 416 | "meta": { 417 | "filename": "MP2_DFN.kicad_pro", 418 | "version": 1 419 | }, 420 | "net_settings": { 421 | "classes": [ 422 | { 423 | "bus_width": 12, 424 | "clearance": 0.1, 425 | "diff_pair_gap": 0.25, 426 | "diff_pair_via_gap": 0.25, 427 | "diff_pair_width": 0.2, 428 | "line_style": 0, 429 | "microvia_diameter": 0.3, 430 | "microvia_drill": 0.1, 431 | "name": "Default", 432 | "pcb_color": "rgba(0, 0, 0, 0.000)", 433 | "schematic_color": "rgba(0, 0, 0, 0.000)", 434 | "track_width": 0.2, 435 | "via_diameter": 0.6, 436 | "via_drill": 0.3, 437 | "wire_width": 6 438 | }, 439 | { 440 | "bus_width": 12, 441 | "clearance": 0.5, 442 | "diff_pair_gap": 0.25, 443 | "diff_pair_via_gap": 0.25, 444 | "diff_pair_width": 0.2, 445 | "line_style": 0, 446 | "microvia_diameter": 0.3, 447 | "microvia_drill": 0.1, 448 | "name": "HV", 449 | "pcb_color": "rgba(0, 0, 0, 0.000)", 450 | "schematic_color": "rgba(0, 0, 0, 0.000)", 451 | "track_width": 0.2, 452 | "via_diameter": 0.6, 453 | "via_drill": 0.3, 454 | "wire_width": 6 455 | }, 456 | { 457 | "bus_width": 12, 458 | "clearance": 0.1, 459 | "diff_pair_gap": 0.25, 460 | "diff_pair_via_gap": 0.25, 461 | "diff_pair_width": 0.2, 462 | "line_style": 0, 463 | "microvia_diameter": 0.3, 464 | "microvia_drill": 0.1, 465 | "name": "HV_via", 466 | "pcb_color": "rgba(0, 0, 0, 0.000)", 467 | "schematic_color": "rgba(0, 0, 0, 0.000)", 468 | "track_width": 0.2, 469 | "via_diameter": 0.6, 470 | "via_drill": 0.3, 471 | "wire_width": 6 472 | } 473 | ], 474 | "meta": { 475 | "version": 3 476 | }, 477 | "net_colors": null, 478 | "netclass_assignments": null, 479 | "netclass_patterns": [ 480 | { 481 | "netclass": "HV", 482 | "pattern": "Net-(C5-Pad1)" 483 | }, 484 | { 485 | "netclass": "HV", 486 | "pattern": "Net-(R1-Pad1)" 487 | }, 488 | { 489 | "netclass": "HV", 490 | "pattern": "PHASE_A" 491 | }, 492 | { 493 | "netclass": "HV", 494 | "pattern": "PHASE_B" 495 | }, 496 | { 497 | "netclass": "HV", 498 | "pattern": "PHASE_C" 499 | }, 500 | { 501 | "netclass": "HV", 502 | "pattern": "VBAT" 503 | } 504 | ] 505 | }, 506 | "pcbnew": { 507 | "last_paths": { 508 | "gencad": "", 509 | "idf": "", 510 | "netlist": "", 511 | "specctra_dsn": "", 512 | "step": "", 513 | "vrml": "" 514 | }, 515 | "page_layout_descr_file": "" 516 | }, 517 | "schematic": { 518 | "annotate_start_num": 0, 519 | "drawing": { 520 | "dashed_lines_dash_length_ratio": 12.0, 521 | "dashed_lines_gap_length_ratio": 3.0, 522 | "default_line_thickness": 6.0, 523 | "default_text_size": 50.0, 524 | "field_names": [], 525 | "intersheets_ref_own_page": false, 526 | "intersheets_ref_prefix": "", 527 | "intersheets_ref_short": false, 528 | "intersheets_ref_show": false, 529 | "intersheets_ref_suffix": "", 530 | "junction_size_choice": 3, 531 | "label_size_ratio": 0.375, 532 | "pin_symbol_size": 25.0, 533 | "text_offset_ratio": 0.15 534 | }, 535 | "legacy_lib_dir": "", 536 | "legacy_lib_list": [], 537 | "meta": { 538 | "version": 1 539 | }, 540 | "net_format_name": "", 541 | "ngspice": { 542 | "fix_include_paths": true, 543 | "fix_passive_vals": false, 544 | "meta": { 545 | "version": 0 546 | }, 547 | "model_mode": 0, 548 | "workbook_filename": "" 549 | }, 550 | "page_layout_descr_file": "", 551 | "plot_directory": "", 552 | "spice_adjust_passive_values": false, 553 | "spice_current_sheet_as_root": false, 554 | "spice_external_command": "spice \"%I\"", 555 | "spice_model_current_sheet_as_root": true, 556 | "spice_save_all_currents": false, 557 | "spice_save_all_voltages": false, 558 | "subpart_first_id": 65, 559 | "subpart_id_separator": 0 560 | }, 561 | "sheets": [ 562 | [ 563 | "31a3399e-b0e0-4a61-aacb-f319bb9df4d3", 564 | "" 565 | ] 566 | ], 567 | "text_variables": {} 568 | } 569 | -------------------------------------------------------------------------------- /Kicad_Project/MP2_DFN.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owhite/MP2-DFN/8d143acf6759c34189a9e880233410b96623ab0f/Kicad_Project/MP2_DFN.pdf -------------------------------------------------------------------------------- /Kicad_Project/MP2_DFN/MP2_DFN-B_Mask.gbr: -------------------------------------------------------------------------------- 1 | %TF.GenerationSoftware,KiCad,Pcbnew,7.0.1-0*% 2 | %TF.CreationDate,2023-10-26T13:37:29-04:00*% 3 | %TF.ProjectId,MP2_DFN,4d50325f-4446-44e2-9e6b-696361645f70,rev?*% 4 | %TF.SameCoordinates,Original*% 5 | %TF.FileFunction,Soldermask,Bot*% 6 | %TF.FilePolarity,Negative*% 7 | %FSLAX46Y46*% 8 | G04 Gerber Fmt 4.6, Leading zero omitted, Abs format (unit mm)* 9 | G04 Created by KiCad (PCBNEW 7.0.1-0) date 2023-10-26 13:37:29* 10 | %MOMM*% 11 | %LPD*% 12 | G01* 13 | G04 APERTURE LIST* 14 | G04 Aperture macros list* 15 | %AMRoundRect* 16 | 0 Rectangle with rounded corners* 17 | 0 $1 Rounding radius* 18 | 0 $2 $3 $4 $5 $6 $7 $8 $9 X,Y pos of 4 corners* 19 | 0 Add a 4 corners polygon primitive as box body* 20 | 4,1,4,$2,$3,$4,$5,$6,$7,$8,$9,$2,$3,0* 21 | 0 Add four circle primitives for the rounded corners* 22 | 1,1,$1+$1,$2,$3* 23 | 1,1,$1+$1,$4,$5* 24 | 1,1,$1+$1,$6,$7* 25 | 1,1,$1+$1,$8,$9* 26 | 0 Add four rect primitives between the rounded corners* 27 | 20,1,$1+$1,$2,$3,$4,$5,0* 28 | 20,1,$1+$1,$4,$5,$6,$7,0* 29 | 20,1,$1+$1,$6,$7,$8,$9,0* 30 | 20,1,$1+$1,$8,$9,$2,$3,0*% 31 | %AMFreePoly0* 32 | 4,1,21,0.540000,-0.740000,0.007966,-0.740000,0.007071,-0.737840,0.000000,-0.734911,-0.069719,-0.734911,-0.203510,-0.695626,-0.320814,-0.620239,-0.412128,-0.514857,-0.470052,-0.388020,-0.490000,-0.249286,-0.490000,0.249286,-0.470052,0.388020,-0.412128,0.514857,-0.320814,0.620239,-0.203510,0.695626,-0.069719,0.734911,0.000000,0.734911,0.007071,0.737840,0.007966,0.740000,0.540000,0.740000, 33 | 0.540000,-0.740000,0.540000,-0.740000,$1*% 34 | %AMFreePoly1* 35 | 4,1,21,-0.007071,0.737840,0.000000,0.734911,0.069719,0.734911,0.203510,0.695626,0.320814,0.620239,0.412128,0.514857,0.470052,0.388020,0.490000,0.249286,0.490000,-0.249286,0.470052,-0.388020,0.412128,-0.514857,0.320814,-0.620239,0.203510,-0.695626,0.069719,-0.734911,0.000000,-0.734911,-0.007071,-0.737840,-0.007966,-0.740000,-0.540000,-0.740000,-0.540000,0.740000,-0.007966,0.740000, 36 | -0.007071,0.737840,-0.007071,0.737840,$1*% 37 | G04 Aperture macros list end* 38 | %ADD10C,0.150000*% 39 | %ADD11C,5.050000*% 40 | %ADD12C,6.078332*% 41 | %ADD13C,3.180000*% 42 | %ADD14C,0.780000*% 43 | %ADD15RoundRect,0.240000X0.350000X0.625000X-0.350000X0.625000X-0.350000X-0.625000X0.350000X-0.625000X0*% 44 | %ADD16O,1.180000X1.730000*% 45 | %ADD17C,2.980000*% 46 | %ADD18C,1.504000*% 47 | %ADD19C,1.380000*% 48 | %ADD20O,1.380000X1.380000*% 49 | %ADD21C,2.480000*% 50 | %ADD22FreePoly0,90.000000*% 51 | %ADD23R,1.480000X0.980000*% 52 | %ADD24FreePoly1,90.000000*% 53 | %ADD25RoundRect,0.240000X1.000000X0.650000X-1.000000X0.650000X-1.000000X-0.650000X1.000000X-0.650000X0*% 54 | %ADD26R,2.380000X2.380000*% 55 | %ADD27C,2.380000*% 56 | %ADD28C,1.980000*% 57 | %ADD29R,5.980000X3.980000*% 58 | %ADD30RoundRect,0.240000X1.400000X2.000000X-1.400000X2.000000X-1.400000X-2.000000X1.400000X-2.000000X0*% 59 | G04 APERTURE END LIST* 60 | D10* 61 | X120637300Y-70057000D02* 62 | X148182300Y-70057000D01* 63 | X148182300Y-75057000D01* 64 | X120637300Y-75057000D01* 65 | X120637300Y-70057000D01* 66 | G36* 67 | X120637300Y-70057000D02* 68 | G01* 69 | X148182300Y-70057000D01* 70 | X148182300Y-75057000D01* 71 | X120637300Y-75057000D01* 72 | X120637300Y-70057000D01* 73 | G37* 74 | X88430800Y-70057000D02* 75 | X115340800Y-70057000D01* 76 | X115340800Y-75057000D01* 77 | X88430800Y-75057000D01* 78 | X88430800Y-70057000D01* 79 | G36* 80 | X88430800Y-70057000D02* 81 | G01* 82 | X115340800Y-70057000D01* 83 | X115340800Y-75057000D01* 84 | X88430800Y-75057000D01* 85 | X88430800Y-70057000D01* 86 | G37* 87 | X115000000Y-56500000D02* 88 | X117000000Y-57400000D01* 89 | X119000000Y-57400000D01* 90 | X121000000Y-56500000D01* 91 | X121000000Y-56000000D01* 92 | X152000000Y-56000000D01* 93 | X152000000Y-61000000D01* 94 | X53682500Y-60950000D01* 95 | X53682500Y-56060400D01* 96 | X71500000Y-56000000D01* 97 | X71500000Y-56500000D01* 98 | X73500000Y-57400000D01* 99 | X75500000Y-57400000D01* 100 | X78000000Y-56500000D01* 101 | X78000000Y-56000000D01* 102 | X115000000Y-56000000D01* 103 | X115000000Y-56500000D01* 104 | G36* 105 | X115000000Y-56500000D02* 106 | G01* 107 | X117000000Y-57400000D01* 108 | X119000000Y-57400000D01* 109 | X121000000Y-56500000D01* 110 | X121000000Y-56000000D01* 111 | X152000000Y-56000000D01* 112 | X152000000Y-61000000D01* 113 | X53682500Y-60950000D01* 114 | X53682500Y-56060400D01* 115 | X71500000Y-56000000D01* 116 | X71500000Y-56500000D01* 117 | X73500000Y-57400000D01* 118 | X75500000Y-57400000D01* 119 | X78000000Y-56500000D01* 120 | X78000000Y-56000000D01* 121 | X115000000Y-56000000D01* 122 | X115000000Y-56500000D01* 123 | G37* 124 | D11* 125 | X157525000Y-56650000D02* 126 | G75* 127 | G03* 128 | X157525000Y-56650000I-2525000J0D01* 129 | G01* 130 | D12* 131 | X158039166Y-56650000D02* 132 | G75* 133 | G03* 134 | X158039166Y-56650000I-3039166J0D01* 135 | G01* 136 | X158039166Y-91000000D02* 137 | G75* 138 | G03* 139 | X158039166Y-91000000I-3039166J0D01* 140 | G01* 141 | D10* 142 | X114999935Y-91127055D02* 143 | X116999935Y-91627055D01* 144 | X118999935Y-91627055D01* 145 | X120999935Y-91127055D01* 146 | X120999935Y-90627055D01* 147 | X151999935Y-90627055D01* 148 | X151999935Y-95627055D01* 149 | X53682435Y-95577055D01* 150 | X53682435Y-90687455D01* 151 | X82999935Y-90627055D01* 152 | X82999935Y-91127055D01* 153 | X84999935Y-91627055D01* 154 | X86999935Y-91627055D01* 155 | X88999935Y-91127055D01* 156 | X88999935Y-90627055D01* 157 | X114999935Y-90627055D01* 158 | X114999935Y-91127055D01* 159 | G36* 160 | X114999935Y-91127055D02* 161 | G01* 162 | X116999935Y-91627055D01* 163 | X118999935Y-91627055D01* 164 | X120999935Y-91127055D01* 165 | X120999935Y-90627055D01* 166 | X151999935Y-90627055D01* 167 | X151999935Y-95627055D01* 168 | X53682435Y-95577055D01* 169 | X53682435Y-90687455D01* 170 | X82999935Y-90627055D01* 171 | X82999935Y-91127055D01* 172 | X84999935Y-91627055D01* 173 | X86999935Y-91627055D01* 174 | X88999935Y-91127055D01* 175 | X88999935Y-90627055D01* 176 | X114999935Y-90627055D01* 177 | X114999935Y-91127055D01* 178 | G37* 179 | X56147400Y-70057000D02* 180 | X83438400Y-70057000D01* 181 | X83438400Y-75057000D01* 182 | X56147400Y-75057000D01* 183 | X56147400Y-70057000D01* 184 | G36* 185 | X56147400Y-70057000D02* 186 | G01* 187 | X83438400Y-70057000D01* 188 | X83438400Y-75057000D01* 189 | X56147400Y-75057000D01* 190 | X56147400Y-70057000D01* 191 | G37* 192 | D11* 193 | X157525000Y-91000000D02* 194 | G75* 195 | G03* 196 | X157525000Y-91000000I-2525000J0D01* 197 | G01* 198 | D13* 199 | %TO.C,TpGND2*% 200 | X130000000Y-92300000D03* 201 | %TD*% 202 | D14* 203 | %TO.C,QA5*% 204 | X76699000Y-60403300D03* 205 | X76699000Y-62153300D03* 206 | X76699000Y-63903300D03* 207 | X76699000Y-65653300D03* 208 | X78699000Y-60403300D03* 209 | X78699000Y-62153300D03* 210 | X78699000Y-63903300D03* 211 | X78699000Y-65653300D03* 212 | X80699000Y-60403300D03* 213 | X80699000Y-62153300D03* 214 | X80699000Y-63903300D03* 215 | X80699000Y-65653300D03* 216 | X82699000Y-60403300D03* 217 | X82699000Y-62153300D03* 218 | X82699000Y-63903300D03* 219 | X82699000Y-65653300D03* 220 | %TD*% 221 | %TO.C,QB3*% 222 | X98637500Y-60557200D03* 223 | X98637500Y-62307200D03* 224 | X98637500Y-64057200D03* 225 | X98637500Y-65807200D03* 226 | X100637500Y-60557200D03* 227 | X100637500Y-62307200D03* 228 | X100637500Y-64057200D03* 229 | X100637500Y-65807200D03* 230 | X102637500Y-60557200D03* 231 | X102637500Y-62307200D03* 232 | X102637500Y-64057200D03* 233 | X102637500Y-65807200D03* 234 | X104637500Y-60557200D03* 235 | X104637500Y-62307200D03* 236 | X104637500Y-64057200D03* 237 | X104637500Y-65807200D03* 238 | %TD*% 239 | %TO.C,QC1*% 240 | X120726000Y-60677800D03* 241 | X120726000Y-62427800D03* 242 | X120726000Y-64177800D03* 243 | X120726000Y-65927800D03* 244 | X122726000Y-60677800D03* 245 | X122726000Y-62427800D03* 246 | X122726000Y-64177800D03* 247 | X122726000Y-65927800D03* 248 | X124726000Y-60677800D03* 249 | X124726000Y-62427800D03* 250 | X124726000Y-64177800D03* 251 | X124726000Y-65927800D03* 252 | X126726000Y-60677800D03* 253 | X126726000Y-62427800D03* 254 | X126726000Y-64177800D03* 255 | X126726000Y-65927800D03* 256 | %TD*% 257 | %TO.C,QB1*% 258 | X88359300Y-60565000D03* 259 | X88359300Y-62315000D03* 260 | X88359300Y-64065000D03* 261 | X88359300Y-65815000D03* 262 | X90359300Y-60565000D03* 263 | X90359300Y-62315000D03* 264 | X90359300Y-64065000D03* 265 | X90359300Y-65815000D03* 266 | X92359300Y-60565000D03* 267 | X92359300Y-62315000D03* 268 | X92359300Y-64065000D03* 269 | X92359300Y-65815000D03* 270 | X94359300Y-60565000D03* 271 | X94359300Y-62315000D03* 272 | X94359300Y-64065000D03* 273 | X94359300Y-65815000D03* 274 | %TD*% 275 | %TO.C,QC4*% 276 | X131202600Y-76666400D03* 277 | X131202600Y-78416400D03* 278 | X131202600Y-80166400D03* 279 | X131202600Y-81916400D03* 280 | X133202600Y-76666400D03* 281 | X133202600Y-78416400D03* 282 | X133202600Y-80166400D03* 283 | X133202600Y-81916400D03* 284 | X135202600Y-76666400D03* 285 | X135202600Y-78416400D03* 286 | X135202600Y-80166400D03* 287 | X135202600Y-81916400D03* 288 | X137202600Y-76666400D03* 289 | X137202600Y-78416400D03* 290 | X137202600Y-80166400D03* 291 | X137202600Y-81916400D03* 292 | %TD*% 293 | D15* 294 | %TO.C,J4*% 295 | X117700000Y-119700000D03* 296 | D16* 297 | X115700000Y-119700000D03* 298 | X113700000Y-119700000D03* 299 | X111700000Y-119700000D03* 300 | X109700000Y-119700000D03* 301 | X107700000Y-119700000D03* 302 | %TD*% 303 | D17* 304 | %TO.C,TpGND4*% 305 | X72569000Y-106778260D03* 306 | %TD*% 307 | D14* 308 | %TO.C,QA3*% 309 | X66377500Y-60403300D03* 310 | X66377500Y-62153300D03* 311 | X66377500Y-63903300D03* 312 | X66377500Y-65653300D03* 313 | X68377500Y-60403300D03* 314 | X68377500Y-62153300D03* 315 | X68377500Y-63903300D03* 316 | X68377500Y-65653300D03* 317 | X70377500Y-60403300D03* 318 | X70377500Y-62153300D03* 319 | X70377500Y-63903300D03* 320 | X70377500Y-65653300D03* 321 | X72377500Y-60403300D03* 322 | X72377500Y-62153300D03* 323 | X72377500Y-63903300D03* 324 | X72377500Y-65653300D03* 325 | %TD*% 326 | %TO.C,QB4*% 327 | X98724400Y-76626500D03* 328 | X98724400Y-78376500D03* 329 | X98724400Y-80126500D03* 330 | X98724400Y-81876500D03* 331 | X100724400Y-76626500D03* 332 | X100724400Y-78376500D03* 333 | X100724400Y-80126500D03* 334 | X100724400Y-81876500D03* 335 | X102724400Y-76626500D03* 336 | X102724400Y-78376500D03* 337 | X102724400Y-80126500D03* 338 | X102724400Y-81876500D03* 339 | X104724400Y-76626500D03* 340 | X104724400Y-78376500D03* 341 | X104724400Y-80126500D03* 342 | X104724400Y-81876500D03* 343 | %TD*% 344 | D13* 345 | %TO.C,TpGND1*% 346 | X141000000Y-92300000D03* 347 | %TD*% 348 | D15* 349 | %TO.C,J2*% 350 | X132600000Y-119700000D03* 351 | D16* 352 | X130600000Y-119700000D03* 353 | X128600000Y-119700000D03* 354 | X126600000Y-119700000D03* 355 | X124600000Y-119700000D03* 356 | X122600000Y-119700000D03* 357 | %TD*% 358 | D13* 359 | %TO.C,TpVBAT3*% 360 | X107000000Y-57400000D03* 361 | %TD*% 362 | %TO.C,TpVBAT2*% 363 | X139600000Y-57400000D03* 364 | %TD*% 365 | D15* 366 | %TO.C,J1*% 367 | X102800000Y-119700000D03* 368 | D16* 369 | X100800000Y-119700000D03* 370 | X98800000Y-119700000D03* 371 | X96800000Y-119700000D03* 372 | X94800000Y-119700000D03* 373 | X92800000Y-119700000D03* 374 | X90800000Y-119700000D03* 375 | %TD*% 376 | D14* 377 | %TO.C,QC3*% 378 | X131114600Y-60677800D03* 379 | X131114600Y-62427800D03* 380 | X131114600Y-64177800D03* 381 | X131114600Y-65927800D03* 382 | X133114600Y-60677800D03* 383 | X133114600Y-62427800D03* 384 | X133114600Y-64177800D03* 385 | X133114600Y-65927800D03* 386 | X135114600Y-60677800D03* 387 | X135114600Y-62427800D03* 388 | X135114600Y-64177800D03* 389 | X135114600Y-65927800D03* 390 | X137114600Y-60677800D03* 391 | X137114600Y-62427800D03* 392 | X137114600Y-64177800D03* 393 | X137114600Y-65927800D03* 394 | %TD*% 395 | D13* 396 | %TO.C,TpGND3*% 397 | X107500000Y-92300000D03* 398 | %TD*% 399 | %TO.C,TpGND7*% 400 | X97500000Y-92300000D03* 401 | %TD*% 402 | %TO.C,TpVBAT5*% 403 | X128800000Y-57400000D03* 404 | %TD*% 405 | D14* 406 | %TO.C,QC5*% 407 | X141427000Y-60677800D03* 408 | X141427000Y-62427800D03* 409 | X141427000Y-64177800D03* 410 | X141427000Y-65927800D03* 411 | X143427000Y-60677800D03* 412 | X143427000Y-62427800D03* 413 | X143427000Y-64177800D03* 414 | X143427000Y-65927800D03* 415 | X145427000Y-60677800D03* 416 | X145427000Y-62427800D03* 417 | X145427000Y-64177800D03* 418 | X145427000Y-65927800D03* 419 | X147427000Y-60677800D03* 420 | X147427000Y-62427800D03* 421 | X147427000Y-64177800D03* 422 | X147427000Y-65927800D03* 423 | %TD*% 424 | %TO.C,QA2*% 425 | X56003500Y-76405300D03* 426 | X56003500Y-78155300D03* 427 | X56003500Y-79905300D03* 428 | X56003500Y-81655300D03* 429 | X58003500Y-76405300D03* 430 | X58003500Y-78155300D03* 431 | X58003500Y-79905300D03* 432 | X58003500Y-81655300D03* 433 | X60003500Y-76405300D03* 434 | X60003500Y-78155300D03* 435 | X60003500Y-79905300D03* 436 | X60003500Y-81655300D03* 437 | X62003500Y-76405300D03* 438 | X62003500Y-78155300D03* 439 | X62003500Y-79905300D03* 440 | X62003500Y-81655300D03* 441 | %TD*% 442 | D18* 443 | %TO.C,U5*% 444 | X147329000Y-99028000D03* 445 | X144789000Y-99028000D03* 446 | X142249000Y-99028000D03* 447 | X139709000Y-99028000D03* 448 | X137169000Y-99028000D03* 449 | X134629000Y-99028000D03* 450 | X132089000Y-99028000D03* 451 | X129549000Y-99028000D03* 452 | X127009000Y-99028000D03* 453 | X124469000Y-99028000D03* 454 | X121929000Y-99028000D03* 455 | X119389000Y-99028000D03* 456 | X116849000Y-99028000D03* 457 | X114309000Y-99028000D03* 458 | X111769000Y-99028000D03* 459 | X109229000Y-99028000D03* 460 | X106689000Y-99028000D03* 461 | X104149000Y-99028000D03* 462 | X101609000Y-99028000D03* 463 | X99069000Y-99028000D03* 464 | X99069000Y-114268000D03* 465 | X101609000Y-114268000D03* 466 | X104149000Y-114268000D03* 467 | X106689000Y-114268000D03* 468 | X109229000Y-114268000D03* 469 | X111769000Y-114268000D03* 470 | X114285395Y-114277993D03* 471 | X116849000Y-114268000D03* 472 | X119389000Y-114268000D03* 473 | X121929000Y-114268000D03* 474 | X124469000Y-114268000D03* 475 | X127009000Y-114268000D03* 476 | X129549000Y-114268000D03* 477 | X132089000Y-114268000D03* 478 | X134629000Y-114268000D03* 479 | X137169000Y-114268000D03* 480 | X139709000Y-114268000D03* 481 | X142249000Y-114268000D03* 482 | X144789000Y-114268000D03* 483 | X147329000Y-114268000D03* 484 | %TD*% 485 | D13* 486 | %TO.C,TpGND6*% 487 | X75500000Y-92300000D03* 488 | %TD*% 489 | %TO.C,TpVBAT1*% 490 | X85852000Y-57404000D03* 491 | %TD*% 492 | D19* 493 | %TO.C,NTC1*% 494 | X133914000Y-108678260D03* 495 | D20* 496 | X135814000Y-108678260D03* 497 | %TD*% 498 | D14* 499 | %TO.C,QA4*% 500 | X66377500Y-76405300D03* 501 | X66377500Y-78155300D03* 502 | X66377500Y-79905300D03* 503 | X66377500Y-81655300D03* 504 | X68377500Y-76405300D03* 505 | X68377500Y-78155300D03* 506 | X68377500Y-79905300D03* 507 | X68377500Y-81655300D03* 508 | X70377500Y-76405300D03* 509 | X70377500Y-78155300D03* 510 | X70377500Y-79905300D03* 511 | X70377500Y-81655300D03* 512 | X72377500Y-76405300D03* 513 | X72377500Y-78155300D03* 514 | X72377500Y-79905300D03* 515 | X72377500Y-81655300D03* 516 | %TD*% 517 | %TO.C,QB5*% 518 | X109175600Y-60541400D03* 519 | X109175600Y-62291400D03* 520 | X109175600Y-64041400D03* 521 | X109175600Y-65791400D03* 522 | X111175600Y-60541400D03* 523 | X111175600Y-62291400D03* 524 | X111175600Y-64041400D03* 525 | X111175600Y-65791400D03* 526 | X113175600Y-60541400D03* 527 | X113175600Y-62291400D03* 528 | X113175600Y-64041400D03* 529 | X113175600Y-65791400D03* 530 | X115175600Y-60541400D03* 531 | X115175600Y-62291400D03* 532 | X115175600Y-64041400D03* 533 | X115175600Y-65791400D03* 534 | %TD*% 535 | D13* 536 | %TO.C,TpGND5*% 537 | X65500000Y-92300000D03* 538 | %TD*% 539 | D14* 540 | %TO.C,QB6*% 541 | X109133700Y-76567000D03* 542 | X109133700Y-78317000D03* 543 | X109133700Y-80067000D03* 544 | X109133700Y-81817000D03* 545 | X111133700Y-76567000D03* 546 | X111133700Y-78317000D03* 547 | X111133700Y-80067000D03* 548 | X111133700Y-81817000D03* 549 | X113133700Y-76567000D03* 550 | X113133700Y-78317000D03* 551 | X113133700Y-80067000D03* 552 | X113133700Y-81817000D03* 553 | X115133700Y-76567000D03* 554 | X115133700Y-78317000D03* 555 | X115133700Y-80067000D03* 556 | X115133700Y-81817000D03* 557 | %TD*% 558 | %TO.C,QA6*% 559 | X76831500Y-76405300D03* 560 | X76831500Y-78155300D03* 561 | X76831500Y-79905300D03* 562 | X76831500Y-81655300D03* 563 | X78831500Y-76405300D03* 564 | X78831500Y-78155300D03* 565 | X78831500Y-79905300D03* 566 | X78831500Y-81655300D03* 567 | X80831500Y-76405300D03* 568 | X80831500Y-78155300D03* 569 | X80831500Y-79905300D03* 570 | X80831500Y-81655300D03* 571 | X82831500Y-76405300D03* 572 | X82831500Y-78155300D03* 573 | X82831500Y-79905300D03* 574 | X82831500Y-81655300D03* 575 | %TD*% 576 | %TO.C,QA1*% 577 | X56025000Y-60400000D03* 578 | X56025000Y-62150000D03* 579 | X56025000Y-63900000D03* 580 | X56025000Y-65650000D03* 581 | X58025000Y-60400000D03* 582 | X58025000Y-62150000D03* 583 | X58025000Y-63900000D03* 584 | X58025000Y-65650000D03* 585 | X60025000Y-60400000D03* 586 | X60025000Y-62150000D03* 587 | X60025000Y-63900000D03* 588 | X60025000Y-65650000D03* 589 | X62025000Y-60400000D03* 590 | X62025000Y-62150000D03* 591 | X62025000Y-63900000D03* 592 | X62025000Y-65650000D03* 593 | %TD*% 594 | %TO.C,QB2*% 595 | X88296800Y-76567000D03* 596 | X88296800Y-78317000D03* 597 | X88296800Y-80067000D03* 598 | X88296800Y-81817000D03* 599 | X90296800Y-76567000D03* 600 | X90296800Y-78317000D03* 601 | X90296800Y-80067000D03* 602 | X90296800Y-81817000D03* 603 | X92296800Y-76567000D03* 604 | X92296800Y-78317000D03* 605 | X92296800Y-80067000D03* 606 | X92296800Y-81817000D03* 607 | X94296800Y-76567000D03* 608 | X94296800Y-78317000D03* 609 | X94296800Y-80067000D03* 610 | X94296800Y-81817000D03* 611 | %TD*% 612 | %TO.C,QC2*% 613 | X120825800Y-76666400D03* 614 | X120825800Y-78416400D03* 615 | X120825800Y-80166400D03* 616 | X120825800Y-81916400D03* 617 | X122825800Y-76666400D03* 618 | X122825800Y-78416400D03* 619 | X122825800Y-80166400D03* 620 | X122825800Y-81916400D03* 621 | X124825800Y-76666400D03* 622 | X124825800Y-78416400D03* 623 | X124825800Y-80166400D03* 624 | X124825800Y-81916400D03* 625 | X126825800Y-76666400D03* 626 | X126825800Y-78416400D03* 627 | X126825800Y-80166400D03* 628 | X126825800Y-81916400D03* 629 | %TD*% 630 | D15* 631 | %TO.C,J3*% 632 | X147500000Y-119700000D03* 633 | D16* 634 | X145500000Y-119700000D03* 635 | X143500000Y-119700000D03* 636 | X141500000Y-119700000D03* 637 | X139500000Y-119700000D03* 638 | X137500000Y-119700000D03* 639 | %TD*% 640 | D13* 641 | %TO.C,TpVBAT4*% 642 | X64200000Y-57404000D03* 643 | %TD*% 644 | D14* 645 | %TO.C,QC6*% 646 | X141508000Y-76666400D03* 647 | X141508000Y-78416400D03* 648 | X141508000Y-80166400D03* 649 | X141508000Y-81916400D03* 650 | X143508000Y-76666400D03* 651 | X143508000Y-78416400D03* 652 | X143508000Y-80166400D03* 653 | X143508000Y-81916400D03* 654 | X145508000Y-76666400D03* 655 | X145508000Y-78416400D03* 656 | X145508000Y-80166400D03* 657 | X145508000Y-81916400D03* 658 | X147508000Y-76666400D03* 659 | X147508000Y-78416400D03* 660 | X147508000Y-80166400D03* 661 | X147508000Y-81916400D03* 662 | %TD*% 663 | D21* 664 | %TO.C,Tp12V1*% 665 | X66100000Y-119400000D03* 666 | %TD*% 667 | D22* 668 | %TO.C,JP1*% 669 | X135100000Y-120200000D03* 670 | D23* 671 | X135100000Y-118900000D03* 672 | D24* 673 | X135100000Y-117600000D03* 674 | %TD*% 675 | D21* 676 | %TO.C,U6*% 677 | X52640000Y-106860000D03* 678 | X52640000Y-111940000D03* 679 | X72960000Y-119560000D03* 680 | X72960000Y-99240000D03* 681 | %TD*% 682 | D25* 683 | %TO.C,D10*% 684 | X69400000Y-99200000D03* 685 | X65400000Y-99200000D03* 686 | %TD*% 687 | D26* 688 | %TO.C,CR2*% 689 | X77125000Y-38172220D03* 690 | D27* 691 | X77125000Y-45672220D03* 692 | %TD*% 693 | D28* 694 | %TO.C,U7*% 695 | X79200000Y-115800000D03* 696 | X81740000Y-115800000D03* 697 | X84280000Y-115800000D03* 698 | %TD*% 699 | D29* 700 | %TO.C,PHA_1*% 701 | X60000000Y-72500000D03* 702 | %TD*% 703 | %TO.C,PHB_2*% 704 | X112000000Y-72500000D03* 705 | %TD*% 706 | D26* 707 | %TO.C,CR4*% 708 | X117075000Y-38172220D03* 709 | D27* 710 | X117075000Y-45672220D03* 711 | %TD*% 712 | D29* 713 | %TO.C,PHC_2*% 714 | X144000000Y-72500000D03* 715 | %TD*% 716 | %TO.C,PHC_1*% 717 | X124000000Y-72500000D03* 718 | %TD*% 719 | D22* 720 | %TO.C,JP3*% 721 | X119950000Y-120625000D03* 722 | D23* 723 | X119950000Y-119325000D03* 724 | D24* 725 | X119950000Y-118025000D03* 726 | %TD*% 727 | D29* 728 | %TO.C,PHB_1*% 729 | X92000000Y-72500000D03* 730 | %TD*% 731 | %TO.C,PHA_2*% 732 | X80000000Y-72500000D03* 733 | %TD*% 734 | D26* 735 | %TO.C,CR5*% 736 | X136925000Y-38172220D03* 737 | D27* 738 | X136925000Y-45672220D03* 739 | %TD*% 740 | D26* 741 | %TO.C,CR1*% 742 | X57500000Y-38225000D03* 743 | D27* 744 | X57500000Y-45725000D03* 745 | %TD*% 746 | D30* 747 | %TO.C,D8*% 748 | X57725000Y-103850000D03* 749 | X57725000Y-112650000D03* 750 | %TD*% 751 | D26* 752 | %TO.C,CR3*% 753 | X97050000Y-38172220D03* 754 | D27* 755 | X97050000Y-45672220D03* 756 | %TD*% 757 | D22* 758 | %TO.C,JP2*% 759 | X104975000Y-120650000D03* 760 | D23* 761 | X104975000Y-119350000D03* 762 | D24* 763 | X104975000Y-118050000D03* 764 | %TD*% 765 | M02* 766 | -------------------------------------------------------------------------------- /Kicad_Project/MP2_DFN/MP2_DFN-B_Paste.gbr: -------------------------------------------------------------------------------- 1 | %TF.GenerationSoftware,KiCad,Pcbnew,7.0.1-0*% 2 | %TF.CreationDate,2023-10-26T13:37:29-04:00*% 3 | %TF.ProjectId,MP2_DFN,4d50325f-4446-44e2-9e6b-696361645f70,rev?*% 4 | %TF.SameCoordinates,Original*% 5 | %TF.FileFunction,Paste,Bot*% 6 | %TF.FilePolarity,Positive*% 7 | %FSLAX46Y46*% 8 | G04 Gerber Fmt 4.6, Leading zero omitted, Abs format (unit mm)* 9 | G04 Created by KiCad (PCBNEW 7.0.1-0) date 2023-10-26 13:37:29* 10 | %MOMM*% 11 | %LPD*% 12 | G01* 13 | G04 APERTURE LIST* 14 | G04 Aperture macros list* 15 | %AMRoundRect* 16 | 0 Rectangle with rounded corners* 17 | 0 $1 Rounding radius* 18 | 0 $2 $3 $4 $5 $6 $7 $8 $9 X,Y pos of 4 corners* 19 | 0 Add a 4 corners polygon primitive as box body* 20 | 4,1,4,$2,$3,$4,$5,$6,$7,$8,$9,$2,$3,0* 21 | 0 Add four circle primitives for the rounded corners* 22 | 1,1,$1+$1,$2,$3* 23 | 1,1,$1+$1,$4,$5* 24 | 1,1,$1+$1,$6,$7* 25 | 1,1,$1+$1,$8,$9* 26 | 0 Add four rect primitives between the rounded corners* 27 | 20,1,$1+$1,$2,$3,$4,$5,0* 28 | 20,1,$1+$1,$4,$5,$6,$7,0* 29 | 20,1,$1+$1,$6,$7,$8,$9,0* 30 | 20,1,$1+$1,$8,$9,$2,$3,0*% 31 | G04 Aperture macros list end* 32 | %ADD10RoundRect,0.250000X1.000000X0.650000X-1.000000X0.650000X-1.000000X-0.650000X1.000000X-0.650000X0*% 33 | %ADD11RoundRect,0.250000X1.400000X2.000000X-1.400000X2.000000X-1.400000X-2.000000X1.400000X-2.000000X0*% 34 | G04 APERTURE END LIST* 35 | D10* 36 | %TO.C,D10*% 37 | X69400000Y-99200000D03* 38 | X65400000Y-99200000D03* 39 | %TD*% 40 | D11* 41 | %TO.C,D8*% 42 | X57725000Y-103850000D03* 43 | X57725000Y-112650000D03* 44 | %TD*% 45 | M02* 46 | -------------------------------------------------------------------------------- /Kicad_Project/MP2_DFN/MP2_DFN-Edge_Cuts.gbr: -------------------------------------------------------------------------------- 1 | %TF.GenerationSoftware,KiCad,Pcbnew,7.0.1-0*% 2 | %TF.CreationDate,2023-10-26T13:37:29-04:00*% 3 | %TF.ProjectId,MP2_DFN,4d50325f-4446-44e2-9e6b-696361645f70,rev?*% 4 | %TF.SameCoordinates,Original*% 5 | %TF.FileFunction,Profile,NP*% 6 | %FSLAX46Y46*% 7 | G04 Gerber Fmt 4.6, Leading zero omitted, Abs format (unit mm)* 8 | G04 Created by KiCad (PCBNEW 7.0.1-0) date 2023-10-26 13:37:29* 9 | %MOMM*% 10 | %LPD*% 11 | G01* 12 | G04 APERTURE LIST* 13 | %TA.AperFunction,Profile*% 14 | %ADD10C,0.100000*% 15 | %TD*% 16 | G04 APERTURE END LIST* 17 | D10* 18 | X76900000Y-54250000D02* 19 | G75* 20 | G03* 21 | X76900000Y-54250000I-1500000J0D01* 22 | G01* 23 | X153500000Y-72900000D02* 24 | G75* 25 | G03* 26 | X153500000Y-72900000I-1500000J0D01* 27 | G01* 28 | X87250000Y-88000000D02* 29 | G75* 30 | G03* 31 | X87250000Y-88000000I-1500000J0D01* 32 | G01* 33 | X119500000Y-88000000D02* 34 | G75* 35 | G03* 36 | X119500000Y-88000000I-1500000J0D01* 37 | G01* 38 | X119500000Y-54250000D02* 39 | G75* 40 | G03* 41 | X119500000Y-54250000I-1500000J0D01* 42 | G01* 43 | X52800000Y-72500000D02* 44 | G75* 45 | G03* 46 | X52800000Y-72500000I-1500000J0D01* 47 | G01* 48 | X150635000Y-49000000D02* 49 | X161500000Y-50500000D01* 50 | X161500000Y-96000000D01* 51 | X150619000Y-99000000D01* 52 | X150619000Y-122635000D01* 53 | X47587000Y-122635000D01* 54 | X47587000Y-32300000D01* 55 | X150635000Y-32300000D01* 56 | X150635000Y-49000000D01* 57 | M02* 58 | -------------------------------------------------------------------------------- /Kicad_Project/MP2_DFN/MP2_DFN-F_Paste.gbr: -------------------------------------------------------------------------------- 1 | %TF.GenerationSoftware,KiCad,Pcbnew,7.0.1-0*% 2 | %TF.CreationDate,2023-10-26T13:37:29-04:00*% 3 | %TF.ProjectId,MP2_DFN,4d50325f-4446-44e2-9e6b-696361645f70,rev?*% 4 | %TF.SameCoordinates,Original*% 5 | %TF.FileFunction,Paste,Top*% 6 | %TF.FilePolarity,Positive*% 7 | %FSLAX46Y46*% 8 | G04 Gerber Fmt 4.6, Leading zero omitted, Abs format (unit mm)* 9 | G04 Created by KiCad (PCBNEW 7.0.1-0) date 2023-10-26 13:37:29* 10 | %MOMM*% 11 | %LPD*% 12 | G01* 13 | G04 APERTURE LIST* 14 | G04 Aperture macros list* 15 | %AMRoundRect* 16 | 0 Rectangle with rounded corners* 17 | 0 $1 Rounding radius* 18 | 0 $2 $3 $4 $5 $6 $7 $8 $9 X,Y pos of 4 corners* 19 | 0 Add a 4 corners polygon primitive as box body* 20 | 4,1,4,$2,$3,$4,$5,$6,$7,$8,$9,$2,$3,0* 21 | 0 Add four circle primitives for the rounded corners* 22 | 1,1,$1+$1,$2,$3* 23 | 1,1,$1+$1,$4,$5* 24 | 1,1,$1+$1,$6,$7* 25 | 1,1,$1+$1,$8,$9* 26 | 0 Add four rect primitives between the rounded corners* 27 | 20,1,$1+$1,$2,$3,$4,$5,0* 28 | 20,1,$1+$1,$4,$5,$6,$7,0* 29 | 20,1,$1+$1,$6,$7,$8,$9,0* 30 | 20,1,$1+$1,$8,$9,$2,$3,0*% 31 | %AMFreePoly0* 32 | 4,1,141,3.900040,3.725000,3.915082,3.720106,3.930902,3.720106,3.943732,3.710784,3.958812,3.705878,3.968104,3.693076,3.980902,3.683779,3.985802,3.668696,3.995118,3.655864,3.995111,3.640045,4.000000,3.625000,4.000000,2.375000,3.995106,2.359937,3.995106,2.344098,3.985796,2.331284,3.980902,2.316221,3.968088,2.306911,3.958779,2.294098,3.943715,2.289203,3.930902,2.279894, 33 | 3.915063,2.279894,3.900000,2.275000,2.850000,2.275000,2.850000,1.725000,3.900000,1.725000,3.915063,1.720106,3.930902,1.720106,3.943715,1.710796,3.958779,1.705902,3.968088,1.693088,3.980902,1.683779,3.985796,1.668715,3.995106,1.655902,3.995106,1.640063,4.000000,1.625000,4.000000,0.375000,3.995106,0.359937,3.995106,0.344098,3.985796,0.331284,3.980902,0.316221, 34 | 3.968088,0.306911,3.958779,0.294098,3.943715,0.289203,3.930902,0.279894,3.915063,0.279894,3.900000,0.275000,2.850000,0.275000,2.850000,-0.275000,3.900000,-0.275000,3.915063,-0.279894,3.930902,-0.279894,3.943715,-0.289203,3.958779,-0.294098,3.968088,-0.306911,3.980902,-0.316221,3.985796,-0.331284,3.995106,-0.344098,3.995106,-0.359937,4.000000,-0.375000,4.000000,-1.625000, 35 | 3.995106,-1.640063,3.995106,-1.655902,3.985796,-1.668715,3.980902,-1.683779,3.968088,-1.693088,3.958779,-1.705902,3.943715,-1.710796,3.930902,-1.720106,3.915063,-1.720106,3.900000,-1.725000,2.850000,-1.725000,2.850000,-2.275000,3.900000,-2.275000,3.915063,-2.279894,3.930902,-2.279894,3.943715,-2.289203,3.958779,-2.294098,3.968088,-2.306911,3.980902,-2.316221,3.985796,-2.331284, 36 | 3.995106,-2.344098,3.995106,-2.359937,4.000000,-2.375000,4.000000,-3.625000,3.995111,-3.640045,3.995118,-3.655864,3.985802,-3.668696,3.980902,-3.683779,3.968104,-3.693076,3.958812,-3.705878,3.943732,-3.710784,3.930902,-3.720106,3.915082,-3.720106,3.900040,-3.725000,2.660040,-3.725500,2.644957,-3.720606,2.629098,-3.720606,2.616300,-3.711308,2.601254,-3.706426,2.591927,-3.693600, 37 | 2.579098,-3.684279,2.574209,-3.669234,2.564906,-3.656440,2.564899,-3.640580,2.560000,-3.625500,2.560000,-3.600491,-2.750009,-3.600000,-2.765067,-3.595106,-2.780902,-3.595106,-2.793719,-3.585793,-2.808786,-3.580897,-2.818091,-3.568086,-2.830902,-3.558779,-2.835797,-3.543711,-2.845109,-3.530893,-2.845107,-3.515058,-2.850000,-3.500000,-2.850000,3.500000,-2.845107,3.515058,-2.845109,3.530893, 38 | -2.835797,3.543711,-2.830902,3.558779,-2.818091,3.568086,-2.808786,3.580897,-2.793719,3.585793,-2.780902,3.595106,-2.765067,3.595106,-2.750009,3.600000,2.560000,3.600491,2.560000,3.625500,2.564899,3.640580,2.564906,3.656440,2.574209,3.669234,2.579098,3.684279,2.591927,3.693600,2.601254,3.706426,2.616300,3.711308,2.629098,3.720606,2.644957,3.720606,2.660040,3.725500, 39 | 3.900040,3.725000,3.900040,3.725000,$1*% 40 | G04 Aperture macros list end* 41 | %ADD10RoundRect,0.225000X-0.250000X0.225000X-0.250000X-0.225000X0.250000X-0.225000X0.250000X0.225000X0*% 42 | %ADD11RoundRect,0.225000X-0.375000X0.225000X-0.375000X-0.225000X0.375000X-0.225000X0.375000X0.225000X0*% 43 | %ADD12RoundRect,0.200000X0.275000X-0.200000X0.275000X0.200000X-0.275000X0.200000X-0.275000X-0.200000X0*% 44 | %ADD13RoundRect,0.128750X1.546250X-1.158750X1.546250X1.158750X-1.546250X1.158750X-1.546250X-1.158750X0*% 45 | %ADD14RoundRect,0.250000X-1.100000X0.325000X-1.100000X-0.325000X1.100000X-0.325000X1.100000X0.325000X0*% 46 | %ADD15RoundRect,0.250000X-0.475000X0.250000X-0.475000X-0.250000X0.475000X-0.250000X0.475000X0.250000X0*% 47 | %ADD16RoundRect,0.250000X-0.262500X-0.450000X0.262500X-0.450000X0.262500X0.450000X-0.262500X0.450000X0*% 48 | %ADD17RoundRect,0.112500X0.112500X-0.187500X0.112500X0.187500X-0.112500X0.187500X-0.112500X-0.187500X0*% 49 | %ADD18R,1.250000X1.280000*% 50 | %ADD19FreePoly0,90.000000*% 51 | %ADD20R,0.900000X0.400000*% 52 | %ADD21RoundRect,0.225000X0.250000X-0.225000X0.250000X0.225000X-0.250000X0.225000X-0.250000X-0.225000X0*% 53 | %ADD22RoundRect,0.200000X-0.275000X0.200000X-0.275000X-0.200000X0.275000X-0.200000X0.275000X0.200000X0*% 54 | %ADD23RoundRect,0.200000X-0.200000X-0.275000X0.200000X-0.275000X0.200000X0.275000X-0.200000X0.275000X0*% 55 | %ADD24RoundRect,0.250000X1.100000X-0.325000X1.100000X0.325000X-1.100000X0.325000X-1.100000X-0.325000X0*% 56 | %ADD25RoundRect,0.250000X-0.450000X0.262500X-0.450000X-0.262500X0.450000X-0.262500X0.450000X0.262500X0*% 57 | %ADD26RoundRect,0.225000X-0.225000X-0.250000X0.225000X-0.250000X0.225000X0.250000X-0.225000X0.250000X0*% 58 | %ADD27RoundRect,0.200000X0.200000X0.275000X-0.200000X0.275000X-0.200000X-0.275000X0.200000X-0.275000X0*% 59 | %ADD28R,0.400000X0.900000*% 60 | %ADD29RoundRect,0.225000X0.225000X0.250000X-0.225000X0.250000X-0.225000X-0.250000X0.225000X-0.250000X0*% 61 | %ADD30RoundRect,0.250000X0.325000X1.100000X-0.325000X1.100000X-0.325000X-1.100000X0.325000X-1.100000X0*% 62 | %ADD31RoundRect,0.225000X0.225000X0.375000X-0.225000X0.375000X-0.225000X-0.375000X0.225000X-0.375000X0*% 63 | %ADD32RoundRect,0.150000X0.825000X0.150000X-0.825000X0.150000X-0.825000X-0.150000X0.825000X-0.150000X0*% 64 | %ADD33RoundRect,0.150000X0.150000X-0.825000X0.150000X0.825000X-0.150000X0.825000X-0.150000X-0.825000X0*% 65 | %ADD34RoundRect,0.218750X-0.256250X0.218750X-0.256250X-0.218750X0.256250X-0.218750X0.256250X0.218750X0*% 66 | %ADD35RoundRect,0.250000X0.450000X-0.262500X0.450000X0.262500X-0.450000X0.262500X-0.450000X-0.262500X0*% 67 | G04 APERTURE END LIST* 68 | D10* 69 | %TO.C,C7*% 70 | X101400000Y-101125000D03* 71 | X101400000Y-102675000D03* 72 | %TD*% 73 | D11* 74 | %TO.C,D2*% 75 | X88700000Y-98150000D03* 76 | X88700000Y-101450000D03* 77 | %TD*% 78 | D12* 79 | %TO.C,R33*% 80 | X129400000Y-102725000D03* 81 | X129400000Y-101075000D03* 82 | %TD*% 83 | D10* 84 | %TO.C,C27*% 85 | X89125000Y-102950000D03* 86 | X89125000Y-104500000D03* 87 | %TD*% 88 | D12* 89 | %TO.C,RG11*% 90 | X96621300Y-85531250D03* 91 | X96621300Y-83881250D03* 92 | %TD*% 93 | D13* 94 | %TO.C,SHA2*% 95 | X80271500Y-91885800D03* 96 | X80271500Y-87310800D03* 97 | %TD*% 98 | D14* 99 | %TO.C,CD5*% 100 | X118617000Y-71245400D03* 101 | X118617000Y-74195400D03* 102 | %TD*% 103 | D12* 104 | %TO.C,RG5*% 105 | X64262000Y-85400550D03* 106 | X64262000Y-83750550D03* 107 | %TD*% 108 | D15* 109 | %TO.C,CS1*% 110 | X53650000Y-76475000D03* 111 | X53650000Y-78375000D03* 112 | %TD*% 113 | D16* 114 | %TO.C,R7*% 115 | X83612500Y-98050000D03* 116 | X85437500Y-98050000D03* 117 | %TD*% 118 | D10* 119 | %TO.C,C18*% 120 | X134600000Y-101125000D03* 121 | X134600000Y-102675000D03* 122 | %TD*% 123 | D17* 124 | %TO.C,D4*% 125 | X123850000Y-106050000D03* 126 | X123850000Y-103950000D03* 127 | %TD*% 128 | D18* 129 | %TO.C,QA5*% 130 | X76699000Y-68473300D03* 131 | D19* 132 | X79699000Y-63593300D03* 133 | D18* 134 | X78699000Y-68473300D03* 135 | X80699000Y-68473300D03* 136 | X82699000Y-68473300D03* 137 | %TD*% 138 | D20* 139 | %TO.C,RN4*% 140 | X146219000Y-112128260D03* 141 | X146219000Y-111328260D03* 142 | X146219000Y-110528260D03* 143 | X146219000Y-109728260D03* 144 | X144519000Y-109728260D03* 145 | X144519000Y-110528260D03* 146 | X144519000Y-111328260D03* 147 | X144519000Y-112128260D03* 148 | %TD*% 149 | D21* 150 | %TO.C,CGS16*% 151 | X122000000Y-88375000D03* 152 | X122000000Y-86825000D03* 153 | %TD*% 154 | D22* 155 | %TO.C,R36*% 156 | X100150000Y-110575000D03* 157 | X100150000Y-112225000D03* 158 | %TD*% 159 | D18* 160 | %TO.C,QB3*% 161 | X98637500Y-68627200D03* 162 | D19* 163 | X101637500Y-63747200D03* 164 | D18* 165 | X100637500Y-68627200D03* 166 | X102637500Y-68627200D03* 167 | X104637500Y-68627200D03* 168 | %TD*% 169 | D12* 170 | %TO.C,RG13*% 171 | X118293500Y-68605400D03* 172 | X118293500Y-66955400D03* 173 | %TD*% 174 | D21* 175 | %TO.C,C23*% 176 | X127500000Y-102675000D03* 177 | X127500000Y-101125000D03* 178 | %TD*% 179 | %TO.C,CGS17*% 180 | X129032000Y-82423000D03* 181 | X129032000Y-80873000D03* 182 | %TD*% 183 | D12* 184 | %TO.C,RG2*% 185 | X64205000Y-68633800D03* 186 | X64205000Y-66983800D03* 187 | %TD*% 188 | D18* 189 | %TO.C,QC1*% 190 | X120726000Y-68747800D03* 191 | D19* 192 | X123726000Y-63867800D03* 193 | D18* 194 | X122726000Y-68747800D03* 195 | X124726000Y-68747800D03* 196 | X126726000Y-68747800D03* 197 | %TD*% 198 | D22* 199 | %TO.C,R39*% 200 | X119400000Y-110575000D03* 201 | X119400000Y-112225000D03* 202 | %TD*% 203 | D23* 204 | %TO.C,R20*% 205 | X112325000Y-112050000D03* 206 | X113975000Y-112050000D03* 207 | %TD*% 208 | %TO.C,R23*% 209 | X112275000Y-106300000D03* 210 | X113925000Y-106300000D03* 211 | %TD*% 212 | D24* 213 | %TO.C,CX2*% 214 | X65250000Y-53395200D03* 215 | X65250000Y-50445200D03* 216 | %TD*% 217 | D22* 218 | %TO.C,R37*% 219 | X116900000Y-110575000D03* 220 | X116900000Y-112225000D03* 221 | %TD*% 222 | D10* 223 | %TO.C,CGS4*% 224 | X85900000Y-63625000D03* 225 | X85900000Y-65175000D03* 226 | %TD*% 227 | D25* 228 | %TO.C,RS3*% 229 | X118300000Y-79400000D03* 230 | X118300000Y-81225000D03* 231 | %TD*% 232 | D12* 233 | %TO.C,R17*% 234 | X98400000Y-102725000D03* 235 | X98400000Y-101075000D03* 236 | %TD*% 237 | D18* 238 | %TO.C,QB1*% 239 | X88359300Y-68635000D03* 240 | D19* 241 | X91359300Y-63755000D03* 242 | D18* 243 | X90359300Y-68635000D03* 244 | X92359300Y-68635000D03* 245 | X94359300Y-68635000D03* 246 | %TD*% 247 | D10* 248 | %TO.C,C33*% 249 | X120700000Y-101100000D03* 250 | X120700000Y-102650000D03* 251 | %TD*% 252 | D12* 253 | %TO.C,R35*% 254 | X122600000Y-102725000D03* 255 | X122600000Y-101075000D03* 256 | %TD*% 257 | D26* 258 | %TO.C,CGS10*% 259 | X54325000Y-87300000D03* 260 | X55875000Y-87300000D03* 261 | %TD*% 262 | D21* 263 | %TO.C,CGS12*% 264 | X74600000Y-82100000D03* 265 | X74600000Y-80550000D03* 266 | %TD*% 267 | D18* 268 | %TO.C,QC4*% 269 | X131202600Y-84736400D03* 270 | D19* 271 | X134202600Y-79856400D03* 272 | D18* 273 | X133202600Y-84736400D03* 274 | X135202600Y-84736400D03* 275 | X137202600Y-84736400D03* 276 | %TD*% 277 | D12* 278 | %TO.C,R27*% 279 | X99900000Y-102725000D03* 280 | X99900000Y-101075000D03* 281 | %TD*% 282 | %TO.C,R32*% 283 | X101710000Y-106025000D03* 284 | X101710000Y-104375000D03* 285 | %TD*% 286 | D27* 287 | %TO.C,R22*% 288 | X117250000Y-105700000D03* 289 | X115600000Y-105700000D03* 290 | %TD*% 291 | D23* 292 | %TO.C,R43*% 293 | X90655000Y-110555000D03* 294 | X92305000Y-110555000D03* 295 | %TD*% 296 | D12* 297 | %TO.C,RG8*% 298 | X96526400Y-68619600D03* 299 | X96526400Y-66969600D03* 300 | %TD*% 301 | D18* 302 | %TO.C,QA3*% 303 | X66377500Y-68473300D03* 304 | D19* 305 | X69377500Y-63593300D03* 306 | D18* 307 | X68377500Y-68473300D03* 308 | X70377500Y-68473300D03* 309 | X72377500Y-68473300D03* 310 | %TD*% 311 | D25* 312 | %TO.C,R14*% 313 | X148291600Y-44349000D03* 314 | X148291600Y-46174000D03* 315 | %TD*% 316 | D28* 317 | %TO.C,RN2*% 318 | X125750000Y-110500000D03* 319 | X124950000Y-110500000D03* 320 | X124150000Y-110500000D03* 321 | X123350000Y-110500000D03* 322 | X123350000Y-112200000D03* 323 | X124150000Y-112200000D03* 324 | X124950000Y-112200000D03* 325 | X125750000Y-112200000D03* 326 | %TD*% 327 | D21* 328 | %TO.C,CGS18*% 329 | X139319000Y-82375000D03* 330 | X139319000Y-80825000D03* 331 | %TD*% 332 | %TO.C,C6*% 333 | X147869000Y-112153260D03* 334 | X147869000Y-110603260D03* 335 | %TD*% 336 | D10* 337 | %TO.C,CGS5*% 338 | X96500000Y-64025000D03* 339 | X96500000Y-65575000D03* 340 | %TD*% 341 | D12* 342 | %TO.C,RG1*% 343 | X53778200Y-68873600D03* 344 | X53778200Y-67223600D03* 345 | %TD*% 346 | D22* 347 | %TO.C,R29*% 348 | X101800000Y-110575000D03* 349 | X101800000Y-112225000D03* 350 | %TD*% 351 | D12* 352 | %TO.C,RG12*% 353 | X106934000Y-85468250D03* 354 | X106934000Y-83818250D03* 355 | %TD*% 356 | D10* 357 | %TO.C,C19*% 358 | X132650000Y-101125000D03* 359 | X132650000Y-102675000D03* 360 | %TD*% 361 | D12* 362 | %TO.C,R34*% 363 | X126000000Y-102725000D03* 364 | X126000000Y-101075000D03* 365 | %TD*% 366 | D13* 367 | %TO.C,SHB1*% 368 | X92322300Y-92047500D03* 369 | X92322300Y-87472500D03* 370 | %TD*% 371 | D10* 372 | %TO.C,CGS7*% 373 | X118300000Y-63950000D03* 374 | X118300000Y-65500000D03* 375 | %TD*% 376 | D13* 377 | %TO.C,SHA1*% 378 | X60459500Y-87310800D03* 379 | X60459500Y-91885800D03* 380 | %TD*% 381 | D15* 382 | %TO.C,CS3*% 383 | X118325000Y-75925000D03* 384 | X118325000Y-77825000D03* 385 | %TD*% 386 | D12* 387 | %TO.C,R48*% 388 | X82125000Y-108950000D03* 389 | X82125000Y-107300000D03* 390 | %TD*% 391 | D21* 392 | %TO.C,C10*% 393 | X88630000Y-115695000D03* 394 | X88630000Y-114145000D03* 395 | %TD*% 396 | D25* 397 | %TO.C,RS2*% 398 | X85670000Y-78877500D03* 399 | X85670000Y-80702500D03* 400 | %TD*% 401 | D28* 402 | %TO.C,RN3*% 403 | X135769000Y-110478260D03* 404 | X134969000Y-110478260D03* 405 | X134169000Y-110478260D03* 406 | X133369000Y-110478260D03* 407 | X133369000Y-112178260D03* 408 | X134169000Y-112178260D03* 409 | X134969000Y-112178260D03* 410 | X135769000Y-112178260D03* 411 | %TD*% 412 | D12* 413 | %TO.C,R50*% 414 | X89125000Y-108975000D03* 415 | X89125000Y-107325000D03* 416 | %TD*% 417 | D18* 418 | %TO.C,QB4*% 419 | X98724400Y-84696500D03* 420 | D19* 421 | X101724400Y-79816500D03* 422 | D18* 423 | X100724400Y-84696500D03* 424 | X102724400Y-84696500D03* 425 | X104724400Y-84696500D03* 426 | %TD*% 427 | D13* 428 | %TO.C,SHB3*% 429 | X112642300Y-92047500D03* 430 | X112642300Y-87472500D03* 431 | %TD*% 432 | D10* 433 | %TO.C,CGS3*% 434 | X74500000Y-64025000D03* 435 | X74500000Y-65575000D03* 436 | %TD*% 437 | D12* 438 | %TO.C,R16*% 439 | X102900000Y-102725000D03* 440 | X102900000Y-101075000D03* 441 | %TD*% 442 | %TO.C,R25*% 443 | X107625000Y-102725000D03* 444 | X107625000Y-101075000D03* 445 | %TD*% 446 | D17* 447 | %TO.C,D5*% 448 | X127250000Y-106050000D03* 449 | X127250000Y-103950000D03* 450 | %TD*% 451 | D24* 452 | %TO.C,CX3*% 453 | X69000000Y-53395200D03* 454 | X69000000Y-50445200D03* 455 | %TD*% 456 | D12* 457 | %TO.C,R24*% 458 | X104550000Y-102725000D03* 459 | X104550000Y-101075000D03* 460 | %TD*% 461 | D16* 462 | %TO.C,R5*% 463 | X76687500Y-98100000D03* 464 | X78512500Y-98100000D03* 465 | %TD*% 466 | D12* 467 | %TO.C,R28*% 468 | X131669000Y-109115760D03* 469 | X131669000Y-107465760D03* 470 | %TD*% 471 | D20* 472 | %TO.C,RN1*% 473 | X140669000Y-109728260D03* 474 | X140669000Y-110528260D03* 475 | X140669000Y-111328260D03* 476 | X140669000Y-112128260D03* 477 | X142369000Y-112128260D03* 478 | X142369000Y-111328260D03* 479 | X142369000Y-110528260D03* 480 | X142369000Y-109728260D03* 481 | %TD*% 482 | D12* 483 | %TO.C,R31*% 484 | X110750000Y-106675000D03* 485 | X110750000Y-105025000D03* 486 | %TD*% 487 | D21* 488 | %TO.C,C15*% 489 | X140250000Y-102675000D03* 490 | X140250000Y-101125000D03* 491 | %TD*% 492 | D13* 493 | %TO.C,SHA3*% 494 | X70365500Y-91885800D03* 495 | X70365500Y-87310800D03* 496 | %TD*% 497 | %TO.C,SHC3*% 498 | X144980000Y-92007900D03* 499 | X144980000Y-87432900D03* 500 | %TD*% 501 | D12* 502 | %TO.C,RG16*% 503 | X118410000Y-84620000D03* 504 | X118410000Y-82970000D03* 505 | %TD*% 506 | D23* 507 | %TO.C,R19*% 508 | X112325000Y-110450000D03* 509 | X113975000Y-110450000D03* 510 | %TD*% 511 | D12* 512 | %TO.C,R6*% 513 | X119100000Y-102725000D03* 514 | X119100000Y-101075000D03* 515 | %TD*% 516 | D21* 517 | %TO.C,C14*% 518 | X138700000Y-102675000D03* 519 | X138700000Y-101125000D03* 520 | %TD*% 521 | D26* 522 | %TO.C,C20*% 523 | X110775000Y-108550000D03* 524 | X112325000Y-108550000D03* 525 | %TD*% 526 | D12* 527 | %TO.C,R52*% 528 | X96150000Y-108975000D03* 529 | X96150000Y-107325000D03* 530 | %TD*% 531 | D15* 532 | %TO.C,CS2*% 533 | X85675000Y-75375000D03* 534 | X85675000Y-77275000D03* 535 | %TD*% 536 | D10* 537 | %TO.C,CGS8*% 538 | X128900000Y-64150000D03* 539 | X128900000Y-65700000D03* 540 | %TD*% 541 | D29* 542 | %TO.C,C17*% 543 | X138975000Y-112200000D03* 544 | X137425000Y-112200000D03* 545 | %TD*% 546 | D10* 547 | %TO.C,C26*% 548 | X82119000Y-102950000D03* 549 | X82119000Y-104500000D03* 550 | %TD*% 551 | %TO.C,C29*% 552 | X117600000Y-101150000D03* 553 | X117600000Y-102700000D03* 554 | %TD*% 555 | D13* 556 | %TO.C,SHB2*% 557 | X102450000Y-92047500D03* 558 | X102450000Y-87472500D03* 559 | %TD*% 560 | D21* 561 | %TO.C,C24*% 562 | X124100000Y-102675000D03* 563 | X124100000Y-101125000D03* 564 | %TD*% 565 | D12* 566 | %TO.C,R15*% 567 | X145650000Y-102825000D03* 568 | X145650000Y-101175000D03* 569 | %TD*% 570 | D24* 571 | %TO.C,CX5*% 572 | X89000000Y-53395200D03* 573 | X89000000Y-50445200D03* 574 | %TD*% 575 | D22* 576 | %TO.C,R30*% 577 | X110750000Y-110425000D03* 578 | X110750000Y-112075000D03* 579 | %TD*% 580 | D10* 581 | %TO.C,CGS15*% 582 | X106900000Y-80650000D03* 583 | X106900000Y-82200000D03* 584 | %TD*% 585 | D21* 586 | %TO.C,C25*% 587 | X98500000Y-112175000D03* 588 | X98500000Y-110625000D03* 589 | %TD*% 590 | D24* 591 | %TO.C,CX8*% 592 | X125750000Y-53395200D03* 593 | X125750000Y-50445200D03* 594 | %TD*% 595 | D22* 596 | %TO.C,R9*% 597 | X130169000Y-107465760D03* 598 | X130169000Y-109115760D03* 599 | %TD*% 600 | D26* 601 | %TO.C,C3*% 602 | X92200000Y-101450000D03* 603 | X93750000Y-101450000D03* 604 | %TD*% 605 | D11* 606 | %TO.C,D1*% 607 | X81600000Y-98150000D03* 608 | X81600000Y-101450000D03* 609 | %TD*% 610 | D10* 611 | %TO.C,CGS14*% 612 | X96600000Y-80900000D03* 613 | X96600000Y-82450000D03* 614 | %TD*% 615 | D23* 616 | %TO.C,R45*% 617 | X85125000Y-99900000D03* 618 | X86775000Y-99900000D03* 619 | %TD*% 620 | D18* 621 | %TO.C,QC3*% 622 | X131114600Y-68747800D03* 623 | D19* 624 | X134114600Y-63867800D03* 625 | D18* 626 | X133114600Y-68747800D03* 627 | X135114600Y-68747800D03* 628 | X137114600Y-68747800D03* 629 | %TD*% 630 | D12* 631 | %TO.C,R38*% 632 | X147150000Y-102825000D03* 633 | X147150000Y-101175000D03* 634 | %TD*% 635 | D21* 636 | %TO.C,CGS11*% 637 | X64262000Y-82300000D03* 638 | X64262000Y-80750000D03* 639 | %TD*% 640 | D23* 641 | %TO.C,R21*% 642 | X115325000Y-107500000D03* 643 | X116975000Y-107500000D03* 644 | %TD*% 645 | D24* 646 | %TO.C,CX20*% 647 | X145750000Y-53395200D03* 648 | X145750000Y-50445200D03* 649 | %TD*% 650 | D17* 651 | %TO.C,D6*% 652 | X130650000Y-106050000D03* 653 | X130650000Y-103950000D03* 654 | %TD*% 655 | D21* 656 | %TO.C,C8*% 657 | X90155000Y-115695000D03* 658 | X90155000Y-114145000D03* 659 | %TD*% 660 | D12* 661 | %TO.C,RG18*% 662 | X139319000Y-85555650D03* 663 | X139319000Y-83905650D03* 664 | %TD*% 665 | D10* 666 | %TO.C,CGS6*% 667 | X106900000Y-63950000D03* 668 | X106900000Y-65500000D03* 669 | %TD*% 670 | D12* 671 | %TO.C,RG4*% 672 | X53956000Y-85878400D03* 673 | X53956000Y-84228400D03* 674 | %TD*% 675 | %TO.C,RG3*% 676 | X74506500Y-68630450D03* 677 | X74506500Y-66980450D03* 678 | %TD*% 679 | D10* 680 | %TO.C,C30*% 681 | X114400000Y-101150000D03* 682 | X114400000Y-102700000D03* 683 | %TD*% 684 | D26* 685 | %TO.C,C1*% 686 | X78125000Y-101400000D03* 687 | X79675000Y-101400000D03* 688 | %TD*% 689 | D21* 690 | %TO.C,C12*% 691 | X79700000Y-111950000D03* 692 | X79700000Y-110400000D03* 693 | %TD*% 694 | D12* 695 | %TO.C,RG17*% 696 | X129031000Y-85618650D03* 697 | X129031000Y-83968650D03* 698 | %TD*% 699 | D22* 700 | %TO.C,R49*% 701 | X83675000Y-99825000D03* 702 | X83675000Y-101475000D03* 703 | %TD*% 704 | D26* 705 | %TO.C,C2*% 706 | X85175000Y-101425000D03* 707 | X86725000Y-101425000D03* 708 | %TD*% 709 | D12* 710 | %TO.C,RG6*% 711 | X74506500Y-85337550D03* 712 | X74506500Y-83687550D03* 713 | %TD*% 714 | %TO.C,RG9*% 715 | X106940400Y-68594200D03* 716 | X106940400Y-66944200D03* 717 | %TD*% 718 | %TO.C,R26*% 719 | X109150000Y-102700000D03* 720 | X109150000Y-101050000D03* 721 | %TD*% 722 | D23* 723 | %TO.C,R42*% 724 | X94225000Y-110545000D03* 725 | X95875000Y-110545000D03* 726 | %TD*% 727 | D12* 728 | %TO.C,R67*% 729 | X95000000Y-115725000D03* 730 | X95000000Y-114075000D03* 731 | %TD*% 732 | D10* 733 | %TO.C,CGS2*% 734 | X64200000Y-64050000D03* 735 | X64200000Y-65600000D03* 736 | %TD*% 737 | D21* 738 | %TO.C,C22*% 739 | X130900000Y-102675000D03* 740 | X130900000Y-101125000D03* 741 | %TD*% 742 | D12* 743 | %TO.C,TH1*% 744 | X96650000Y-78750000D03* 745 | X96650000Y-77100000D03* 746 | %TD*% 747 | D15* 748 | %TO.C,C5*% 749 | X51200000Y-85050000D03* 750 | X51200000Y-86950000D03* 751 | %TD*% 752 | D11* 753 | %TO.C,D3*% 754 | X95650000Y-98175000D03* 755 | X95650000Y-101475000D03* 756 | %TD*% 757 | D18* 758 | %TO.C,QC5*% 759 | X141427000Y-68747800D03* 760 | D19* 761 | X144427000Y-63867800D03* 762 | D18* 763 | X143427000Y-68747800D03* 764 | X145427000Y-68747800D03* 765 | X147427000Y-68747800D03* 766 | %TD*% 767 | D30* 768 | %TO.C,CD1*% 769 | X157269000Y-68162000D03* 770 | X154319000Y-68162000D03* 771 | %TD*% 772 | D12* 773 | %TO.C,R11*% 774 | X112850000Y-102675000D03* 775 | X112850000Y-101025000D03* 776 | %TD*% 777 | D18* 778 | %TO.C,QA2*% 779 | X56003500Y-84475300D03* 780 | D19* 781 | X59003500Y-79595300D03* 782 | D18* 783 | X58003500Y-84475300D03* 784 | X60003500Y-84475300D03* 785 | X62003500Y-84475300D03* 786 | %TD*% 787 | D23* 788 | %TO.C,R44*% 789 | X78075000Y-99850000D03* 790 | X79725000Y-99850000D03* 791 | %TD*% 792 | D21* 793 | %TO.C,C13*% 794 | X78175000Y-111950000D03* 795 | X78175000Y-110400000D03* 796 | %TD*% 797 | D12* 798 | %TO.C,RG15*% 799 | X139191000Y-68848550D03* 800 | X139191000Y-67198550D03* 801 | %TD*% 802 | D23* 803 | %TO.C,R18*% 804 | X115325000Y-109000000D03* 805 | X116975000Y-109000000D03* 806 | %TD*% 807 | D22* 808 | %TO.C,R41*% 809 | X106100000Y-101075000D03* 810 | X106100000Y-102725000D03* 811 | %TD*% 812 | D10* 813 | %TO.C,C28*% 814 | X96150000Y-102950000D03* 815 | X96150000Y-104500000D03* 816 | %TD*% 817 | D21* 818 | %TO.C,C11*% 819 | X76650000Y-111950000D03* 820 | X76650000Y-110400000D03* 821 | %TD*% 822 | %TO.C,C16*% 823 | X141800000Y-102675000D03* 824 | X141800000Y-101125000D03* 825 | %TD*% 826 | D25* 827 | %TO.C,RS1*% 828 | X53638500Y-79946200D03* 829 | X53638500Y-81771200D03* 830 | %TD*% 831 | D22* 832 | %TO.C,RG10*% 833 | X85900000Y-82975000D03* 834 | X85900000Y-84625000D03* 835 | %TD*% 836 | D12* 837 | %TO.C,RG7*% 838 | X85858400Y-68187800D03* 839 | X85858400Y-66537800D03* 840 | %TD*% 841 | D18* 842 | %TO.C,QA4*% 843 | X66377500Y-84475300D03* 844 | D19* 845 | X69377500Y-79595300D03* 846 | D18* 847 | X68377500Y-84475300D03* 848 | X70377500Y-84475300D03* 849 | X72377500Y-84475300D03* 850 | %TD*% 851 | D22* 852 | %TO.C,R47*% 853 | X76650000Y-99850000D03* 854 | X76650000Y-101500000D03* 855 | %TD*% 856 | D10* 857 | %TO.C,CGS9*% 858 | X139200000Y-64200000D03* 859 | X139200000Y-65750000D03* 860 | %TD*% 861 | D28* 862 | %TO.C,RN7*% 863 | X86300000Y-112200000D03* 864 | X87100000Y-112200000D03* 865 | X87900000Y-112200000D03* 866 | X88700000Y-112200000D03* 867 | X88700000Y-110500000D03* 868 | X87900000Y-110500000D03* 869 | X87100000Y-110500000D03* 870 | X86300000Y-110500000D03* 871 | %TD*% 872 | D24* 873 | %TO.C,CX6*% 874 | X105500000Y-53395200D03* 875 | X105500000Y-50445200D03* 876 | %TD*% 877 | D30* 878 | %TO.C,CD4*% 879 | X156951000Y-81340000D03* 880 | X154001000Y-81340000D03* 881 | %TD*% 882 | D18* 883 | %TO.C,QB5*% 884 | X109175600Y-68611400D03* 885 | D19* 886 | X112175600Y-63731400D03* 887 | D18* 888 | X111175600Y-68611400D03* 889 | X113175600Y-68611400D03* 890 | X115175600Y-68611400D03* 891 | %TD*% 892 | D24* 893 | %TO.C,CX4*% 894 | X85250000Y-53395200D03* 895 | X85250000Y-50445200D03* 896 | %TD*% 897 | D13* 898 | %TO.C,SHC2*% 899 | X134844000Y-92007900D03* 900 | X134844000Y-87432900D03* 901 | %TD*% 902 | D23* 903 | %TO.C,R46*% 904 | X92150000Y-99925000D03* 905 | X93800000Y-99925000D03* 906 | %TD*% 907 | D31* 908 | %TO.C,D11*% 909 | X84675000Y-111575000D03* 910 | X81375000Y-111575000D03* 911 | %TD*% 912 | D22* 913 | %TO.C,R12*% 914 | X138419000Y-106703260D03* 915 | X138419000Y-108353260D03* 916 | %TD*% 917 | D32* 918 | %TO.C,U4*% 919 | X108725000Y-112070000D03* 920 | X108725000Y-110800000D03* 921 | X108725000Y-109530000D03* 922 | X108725000Y-108260000D03* 923 | X108725000Y-106990000D03* 924 | X108725000Y-105720000D03* 925 | X108725000Y-104450000D03* 926 | X103775000Y-104450000D03* 927 | X103775000Y-105720000D03* 928 | X103775000Y-106990000D03* 929 | X103775000Y-108260000D03* 930 | X103775000Y-109530000D03* 931 | X103775000Y-110800000D03* 932 | X103775000Y-112070000D03* 933 | %TD*% 934 | D33* 935 | %TO.C,U1*% 936 | X76714000Y-108400000D03* 937 | X77984000Y-108400000D03* 938 | X79254000Y-108400000D03* 939 | X80524000Y-108400000D03* 940 | X80524000Y-103450000D03* 941 | X79254000Y-103450000D03* 942 | X77984000Y-103450000D03* 943 | X76714000Y-103450000D03* 944 | %TD*% 945 | D30* 946 | %TO.C,CD3*% 947 | X156951000Y-77784000D03* 948 | X154001000Y-77784000D03* 949 | %TD*% 950 | D18* 951 | %TO.C,QB6*% 952 | X109133700Y-84637000D03* 953 | D19* 954 | X112133700Y-79757000D03* 955 | D18* 956 | X111133700Y-84637000D03* 957 | X113133700Y-84637000D03* 958 | X115133700Y-84637000D03* 959 | %TD*% 960 | D33* 961 | %TO.C,U2*% 962 | X83720000Y-108400000D03* 963 | X84990000Y-108400000D03* 964 | X86260000Y-108400000D03* 965 | X87530000Y-108400000D03* 966 | X87530000Y-103450000D03* 967 | X86260000Y-103450000D03* 968 | X84990000Y-103450000D03* 969 | X83720000Y-103450000D03* 970 | %TD*% 971 | D34* 972 | %TO.C,D9*% 973 | X93300000Y-114100000D03* 974 | X93300000Y-115675000D03* 975 | %TD*% 976 | D18* 977 | %TO.C,QA6*% 978 | X76831500Y-84475300D03* 979 | D19* 980 | X79831500Y-79595300D03* 981 | D18* 982 | X78831500Y-84475300D03* 983 | X80831500Y-84475300D03* 984 | X82831500Y-84475300D03* 985 | %TD*% 986 | D21* 987 | %TO.C,C9*% 988 | X91680000Y-115695000D03* 989 | X91680000Y-114145000D03* 990 | %TD*% 991 | D12* 992 | %TO.C,RG14*% 993 | X128889500Y-68851900D03* 994 | X128889500Y-67201900D03* 995 | %TD*% 996 | D18* 997 | %TO.C,QA1*% 998 | X56025000Y-68470000D03* 999 | D19* 1000 | X59025000Y-63590000D03* 1001 | D18* 1002 | X58025000Y-68470000D03* 1003 | X60025000Y-68470000D03* 1004 | X62025000Y-68470000D03* 1005 | %TD*% 1006 | %TO.C,QB2*% 1007 | X88296800Y-84637000D03* 1008 | D19* 1009 | X91296800Y-79757000D03* 1010 | D18* 1011 | X90296800Y-84637000D03* 1012 | X92296800Y-84637000D03* 1013 | X94296800Y-84637000D03* 1014 | %TD*% 1015 | D28* 1016 | %TO.C,RN5*% 1017 | X129369000Y-112190760D03* 1018 | X130169000Y-112190760D03* 1019 | X130969000Y-112190760D03* 1020 | X131769000Y-112190760D03* 1021 | X131769000Y-110490760D03* 1022 | X130969000Y-110490760D03* 1023 | X130169000Y-110490760D03* 1024 | X129369000Y-110490760D03* 1025 | %TD*% 1026 | D18* 1027 | %TO.C,QC2*% 1028 | X120825800Y-84736400D03* 1029 | D19* 1030 | X123825800Y-79856400D03* 1031 | D18* 1032 | X122825800Y-84736400D03* 1033 | X124825800Y-84736400D03* 1034 | X126825800Y-84736400D03* 1035 | %TD*% 1036 | D24* 1037 | %TO.C,CX1*% 1038 | X51000000Y-54600000D03* 1039 | X51000000Y-51650000D03* 1040 | %TD*% 1041 | D22* 1042 | %TO.C,R51*% 1043 | X90700000Y-99875000D03* 1044 | X90700000Y-101525000D03* 1045 | %TD*% 1046 | D10* 1047 | %TO.C,C32*% 1048 | X110700000Y-101125000D03* 1049 | X110700000Y-102675000D03* 1050 | %TD*% 1051 | D21* 1052 | %TO.C,CGS1*% 1053 | X53594000Y-65304000D03* 1054 | X53594000Y-63754000D03* 1055 | %TD*% 1056 | D10* 1057 | %TO.C,C21*% 1058 | X137150000Y-101125000D03* 1059 | X137150000Y-102675000D03* 1060 | %TD*% 1061 | D25* 1062 | %TO.C,R1*% 1063 | X51600000Y-65975000D03* 1064 | X51600000Y-67800000D03* 1065 | %TD*% 1066 | D13* 1067 | %TO.C,SHC1*% 1068 | X125022000Y-92007900D03* 1069 | X125022000Y-87432900D03* 1070 | %TD*% 1071 | D24* 1072 | %TO.C,CX9*% 1073 | X129250000Y-53395200D03* 1074 | X129250000Y-50445200D03* 1075 | %TD*% 1076 | D14* 1077 | %TO.C,CD2*% 1078 | X85655200Y-70766400D03* 1079 | X85655200Y-73716400D03* 1080 | %TD*% 1081 | D18* 1082 | %TO.C,QC6*% 1083 | X141508000Y-84736400D03* 1084 | D19* 1085 | X144508000Y-79856400D03* 1086 | D18* 1087 | X143508000Y-84736400D03* 1088 | X145508000Y-84736400D03* 1089 | X147508000Y-84736400D03* 1090 | %TD*% 1091 | D24* 1092 | %TO.C,CX7*% 1093 | X109000000Y-53395200D03* 1094 | X109000000Y-50445200D03* 1095 | %TD*% 1096 | D33* 1097 | %TO.C,U3*% 1098 | X90745000Y-108425000D03* 1099 | X92015000Y-108425000D03* 1100 | X93285000Y-108425000D03* 1101 | X94555000Y-108425000D03* 1102 | X94555000Y-103475000D03* 1103 | X93285000Y-103475000D03* 1104 | X92015000Y-103475000D03* 1105 | X90745000Y-103475000D03* 1106 | %TD*% 1107 | D21* 1108 | %TO.C,CGS13*% 1109 | X89600000Y-88200000D03* 1110 | X89600000Y-86650000D03* 1111 | %TD*% 1112 | D30* 1113 | %TO.C,CD6*% 1114 | X157275000Y-64782000D03* 1115 | X154325000Y-64782000D03* 1116 | %TD*% 1117 | D22* 1118 | %TO.C,R13*% 1119 | X127200000Y-110525000D03* 1120 | X127200000Y-112175000D03* 1121 | %TD*% 1122 | D16* 1123 | %TO.C,R10*% 1124 | X90700000Y-98075000D03* 1125 | X92525000Y-98075000D03* 1126 | %TD*% 1127 | D12* 1128 | %TO.C,R3*% 1129 | X120150000Y-108900000D03* 1130 | X120150000Y-107250000D03* 1131 | %TD*% 1132 | D35* 1133 | %TO.C,R2*% 1134 | X51628200Y-64087500D03* 1135 | X51628200Y-62262500D03* 1136 | %TD*% 1137 | D12* 1138 | %TO.C,R8*% 1139 | X116100000Y-102725000D03* 1140 | X116100000Y-101075000D03* 1141 | %TD*% 1142 | M02* 1143 | -------------------------------------------------------------------------------- /Kicad_Project/MP2_DFN/MP2_DFN-NPTH.drl: -------------------------------------------------------------------------------- 1 | M48 2 | INCH 3 | % 4 | G90 5 | G05 6 | T0 7 | M30 8 | -------------------------------------------------------------------------------- /Kicad_Project/MP2_DFN/MP2_DFN-PTH.drl: -------------------------------------------------------------------------------- 1 | M48 2 | INCH 3 | T1C0.0118 4 | T2C0.0157 5 | T3C0.0157 6 | T4C0.0276 7 | T5C0.0295 8 | T6C0.0360 9 | T7C0.0433 10 | T8C0.0472 11 | T9C0.0591 12 | T10C0.0669 13 | T11C0.0866 14 | T12C0.1969 15 | % 16 | G90 17 | G05 18 | T1 19 | X2.0043Y-3.6102 20 | X2.0233Y-3.3189 21 | X2.0512Y-2.5704 22 | X2.0661Y-3.0118 23 | X2.0728Y-3.9163 24 | X2.09Y-2.7 25 | X2.1063Y-3.2205 26 | X2.11Y-2.51 27 | X2.11Y-2.57 28 | X2.113Y-4.759 29 | X2.113Y-3.011 30 | X2.1378Y-2.9697 31 | X2.1378Y-3.9587 32 | X2.1496Y-2.6693 33 | X2.1594Y-4.0246 34 | X2.185Y-4.5728 35 | X2.2047Y-2.0787 36 | X2.2047Y-2.1575 37 | X2.2047Y-2.2362 38 | X2.2047Y-2.315 39 | X2.2323Y-4.2707 40 | X2.2402Y-3.9222 41 | X2.2835Y-2.0787 42 | X2.2835Y-2.1575 43 | X2.2835Y-2.2362 44 | X2.2835Y-2.315 45 | X2.2836Y-2.6958 46 | X2.2894Y-4.6093 47 | X2.3356Y-4.2766 48 | X2.3622Y-2.0787 49 | X2.3622Y-2.1575 50 | X2.3622Y-2.2362 51 | X2.3622Y-2.315 52 | X2.4075Y-4.6073 53 | X2.4181Y-3.9755 54 | X2.4397Y-4.1704 55 | X2.4409Y-2.0787 56 | X2.4409Y-2.1575 57 | X2.4409Y-2.2362 58 | X2.4409Y-2.315 59 | X2.4409Y-3.3228 60 | X2.4411Y-2.6956 61 | X2.4449Y-4.3425 62 | X2.4577Y-4.4843 63 | X2.5217Y-4.0571 64 | X2.5276Y-2.5236 65 | X2.5276Y-2.5787 66 | X2.5278Y-2.7021 67 | X2.53Y-3.1811 68 | X2.53Y-3.2441 69 | X2.5738Y-4.4252 70 | X2.6004Y-4.6073 71 | X2.6102Y-3.3228 72 | X2.6142Y-2.0787 73 | X2.6142Y-2.1575 74 | X2.6142Y-2.2362 75 | X2.6142Y-2.315 76 | X2.6299Y-4.2234 77 | X2.6575Y-3.9085 78 | X2.6732Y-4.0591 79 | X2.6772Y-4.561 80 | X2.6929Y-2.0787 81 | X2.6929Y-2.1575 82 | X2.6929Y-2.2362 83 | X2.6929Y-2.315 84 | X2.7441Y-4.628 85 | X2.7703Y-3.4985 86 | X2.7703Y-3.5425 87 | X2.7717Y-2.0787 88 | X2.7717Y-2.1575 89 | X2.7717Y-2.2362 90 | X2.7717Y-2.315 91 | X2.7953Y-4.5512 92 | X2.8374Y-4.4184 93 | X2.8465Y-2.6969 94 | X2.8504Y-2.0787 95 | X2.8504Y-2.1575 96 | X2.8504Y-2.2362 97 | X2.8504Y-2.315 98 | X2.8504Y-3.3228 99 | X2.8858Y-4.3268 100 | X2.8858Y-4.3898 101 | X2.9321Y-4.7726 102 | X2.9331Y-2.5197 103 | X2.9331Y-2.5827 104 | X2.9331Y-2.7047 105 | X2.9331Y-3.3583 106 | X2.937Y-3.1732 107 | X2.937Y-3.2362 108 | X2.9488Y-4.0197 109 | X2.9488Y-4.3543 110 | X2.9764Y-3.2835 111 | X2.9823Y-4.0197 112 | X2.9941Y-4.3671 113 | X3.0Y-4.4685 114 | X3.0177Y-3.9961 115 | X3.0192Y-3.8661 116 | X3.0197Y-4.5984 117 | X3.0202Y-4.2677 118 | X3.0236Y-2.0354 119 | X3.0236Y-2.2362 120 | X3.0236Y-2.315 121 | X3.0472Y-4.3228 122 | X3.0886Y-3.8671 123 | X3.0888Y-4.2441 124 | X3.1024Y-2.0787 125 | X3.1024Y-2.1575 126 | X3.1024Y-2.2362 127 | X3.1024Y-2.315 128 | X3.1075Y-4.3254 129 | X3.122Y-4.2165 130 | X3.1496Y-4.6181 131 | X3.1634Y-4.3652 132 | X3.1778Y-4.2316 133 | X3.1811Y-2.0787 134 | X3.1811Y-2.1575 135 | X3.1811Y-2.2362 136 | X3.1811Y-2.315 137 | X3.185Y-4.3346 138 | X3.2244Y-4.3307 139 | X3.2323Y-4.1142 140 | X3.2524Y-4.3065 141 | X3.2554Y-3.8903 142 | X3.2598Y-2.0787 143 | X3.2598Y-2.1575 144 | X3.2598Y-2.2362 145 | X3.2598Y-2.315 146 | X3.2963Y-3.9961 147 | X3.3022Y-4.2392 148 | X3.3461Y-4.2677 149 | X3.3661Y-3.8602 150 | X3.3728Y-3.1773 151 | X3.378Y-2.6196 152 | X3.3819Y-2.5079 153 | X3.3819Y-2.5669 154 | X3.3819Y-2.685 155 | X3.3898Y-4.2126 156 | X3.3967Y-4.2972 157 | X3.4055Y-4.561 158 | X3.4173Y-3.2953 159 | X3.4252Y-4.4803 160 | X3.4439Y-4.5384 161 | X3.4488Y-4.2244 162 | X3.4606Y-4.3504 163 | X3.4803Y-2.0787 164 | X3.4803Y-2.1575 165 | X3.4803Y-2.2362 166 | X3.4803Y-2.315 167 | X3.4931Y-4.3494 168 | X3.498Y-4.4498 169 | X3.5Y-4.1142 170 | X3.5059Y-4.6772 171 | X3.5079Y-4.6161 172 | X3.5295Y-4.3179 173 | X3.5423Y-3.878 174 | X3.5591Y-2.0787 175 | X3.5591Y-2.1575 176 | X3.5591Y-2.2362 177 | X3.5591Y-2.315 178 | X3.5591Y-2.7008 179 | X3.5709Y-3.998 180 | X3.5915Y-3.813 181 | X3.6378Y-2.0787 182 | X3.6378Y-2.1575 183 | X3.6378Y-2.2362 184 | X3.6378Y-2.315 185 | X3.6467Y-3.8612 186 | X3.6811Y-4.2402 187 | X3.689Y-4.312 188 | X3.7084Y-4.5169 189 | X3.7087Y-3.3346 190 | X3.7165Y-2.0787 191 | X3.7165Y-2.1575 192 | X3.7165Y-2.2362 193 | X3.7165Y-2.315 194 | X3.7165Y-2.7008 195 | X3.7933Y-4.1407 196 | X3.7953Y-2.5276 197 | X3.7992Y-2.5827 198 | X3.7992Y-2.7008 199 | X3.8031Y-3.185 200 | X3.8031Y-3.2441 201 | X3.8032Y-4.0935 202 | X3.8051Y-3.0354 203 | X3.8051Y-3.1024 204 | X3.8278Y-4.4744 205 | X3.8622Y-4.248 206 | X3.8819Y-2.0787 207 | X3.8819Y-2.1575 208 | X3.8819Y-2.2362 209 | X3.8819Y-2.315 210 | X3.8819Y-4.0748 211 | X3.8858Y-3.3346 212 | X3.8898Y-4.3287 213 | X3.9075Y-4.1604 214 | X3.9291Y-3.7992 215 | X3.9301Y-4.2785 216 | X3.9606Y-2.0787 217 | X3.9606Y-2.1575 218 | X3.9606Y-2.2362 219 | X3.9606Y-2.315 220 | X3.9708Y-4.0581 221 | X4.0236Y-4.1417 222 | X4.0394Y-2.0787 223 | X4.0394Y-2.1575 224 | X4.0394Y-2.2362 225 | X4.0394Y-2.315 226 | X4.041Y-3.5057 227 | X4.041Y-3.5467 228 | X4.0591Y-4.1102 229 | X4.0664Y-3.8346 230 | X4.0669Y-3.9409 231 | X4.1181Y-2.0787 232 | X4.1181Y-2.1575 233 | X4.1181Y-2.2362 234 | X4.1181Y-2.315 235 | X4.122Y-2.7047 236 | X4.122Y-3.3346 237 | X4.13Y-3.84 238 | X4.1303Y-4.0354 239 | X4.1319Y-4.3642 240 | X4.1378Y-4.2598 241 | X4.1476Y-4.4626 242 | X4.1496Y-4.3228 243 | X4.1732Y-4.1457 244 | X4.1841Y-4.4341 245 | X4.2047Y-3.2362 246 | X4.2087Y-2.5177 247 | X4.2087Y-2.5768 248 | X4.2087Y-3.1772 249 | X4.2126Y-2.7008 250 | X4.2126Y-4.2382 251 | X4.2165Y-4.3268 252 | X4.2372Y-4.0443 253 | X4.2559Y-3.9406 254 | X4.2953Y-3.3307 255 | X4.2972Y-3.9783 256 | X4.2992Y-2.0787 257 | X4.2992Y-2.1575 258 | X4.2992Y-2.2362 259 | X4.2992Y-2.315 260 | X4.3081Y-4.0807 261 | X4.3327Y-4.2657 262 | X4.3524Y-4.4665 263 | X4.378Y-2.0787 264 | X4.378Y-2.1575 265 | X4.378Y-2.2362 266 | X4.378Y-2.315 267 | X4.3858Y-4.0591 268 | X4.3917Y-3.9705 269 | X4.4035Y-4.249 270 | X4.4341Y-4.247 271 | X4.4567Y-2.0787 272 | X4.4567Y-2.1575 273 | X4.4567Y-2.2362 274 | X4.4567Y-2.315 275 | X4.4594Y-3.9283 276 | X4.4724Y-4.0512 277 | X4.4882Y-4.1811 278 | X4.5118Y-4.3484 279 | X4.5118Y-4.4173 280 | X4.5135Y-4.3801 281 | X4.5197Y-3.9941 282 | X4.5276Y-4.1417 283 | X4.5354Y-2.0787 284 | X4.5354Y-2.1575 285 | X4.5354Y-2.2362 286 | X4.5354Y-2.315 287 | X4.5512Y-3.9272 288 | X4.6014Y-4.0443 289 | X4.628Y-4.2421 290 | X4.628Y-4.3012 291 | X4.6319Y-3.2156 292 | X4.6476Y-4.002 293 | X4.6535Y-2.6378 294 | X4.6575Y-2.5197 295 | X4.6575Y-2.5787 296 | X4.6575Y-2.7008 297 | X4.6693Y-4.2953 298 | X4.6831Y-4.1496 299 | X4.69Y-4.0246 300 | X4.7138Y-3.2984 301 | X4.7402Y-4.1339 302 | X4.7441Y-4.0187 303 | X4.75Y-4.4626 304 | X4.752Y-2.0787 305 | X4.752Y-2.1575 306 | X4.752Y-2.2362 307 | X4.752Y-2.315 308 | X4.7579Y-4.2854 309 | X4.7677Y-4.248 310 | X4.7697Y-4.0 311 | X4.7736Y-4.3858 312 | X4.815Y-4.185 313 | X4.8267Y-4.3532 314 | X4.8307Y-2.0787 315 | X4.8307Y-2.1575 316 | X4.8307Y-2.2362 317 | X4.8307Y-2.315 318 | X4.8307Y-2.7087 319 | X4.8455Y-4.311 320 | X4.8484Y-4.376 321 | X4.8592Y-4.2273 322 | X4.876Y-4.1969 323 | X4.8818Y-4.3769 324 | X4.8917Y-4.313 325 | X4.9094Y-2.0787 326 | X4.9094Y-2.1575 327 | X4.9094Y-2.2362 328 | X4.9094Y-2.315 329 | X4.9104Y-3.9656 330 | X4.9114Y-4.2264 331 | X4.9133Y-4.3769 332 | X4.9674Y-4.3021 333 | X4.9882Y-2.0787 334 | X4.9882Y-2.1575 335 | X4.9882Y-2.2362 336 | X4.9882Y-2.315 337 | X4.9894Y-4.2207 338 | X4.9921Y-2.7047 339 | X4.9961Y-3.3346 340 | X5.0098Y-4.1969 341 | X5.0335Y-4.2982 342 | X5.0433Y-3.9705 343 | X5.0453Y-4.5669 344 | X5.0571Y-4.1437 345 | X5.063Y-4.3401 346 | X5.063Y-4.43 347 | X5.0748Y-2.5236 348 | X5.0748Y-2.5866 349 | X5.0748Y-2.7126 350 | X5.0823Y-4.1248 351 | X5.0866Y-3.189 352 | X5.0866Y-3.248 353 | X5.0933Y-4.444 354 | X5.1496Y-4.1949 355 | X5.1506Y-4.5679 356 | X5.1543Y-4.2314 357 | X5.1614Y-2.0787 358 | X5.1614Y-2.1575 359 | X5.1614Y-2.2362 360 | X5.1614Y-2.315 361 | X5.1654Y-3.3386 362 | X5.1772Y-3.9665 363 | X5.1949Y-4.3937 364 | X5.2264Y-4.0817 365 | X5.2402Y-2.0787 366 | X5.2402Y-2.1575 367 | X5.2402Y-2.2362 368 | X5.2402Y-2.315 369 | X5.2507Y-4.3771 370 | X5.2822Y-4.3771 371 | X5.3071Y-4.1142 372 | X5.3137Y-4.3771 373 | X5.3169Y-3.5059 374 | X5.317Y-3.5502 375 | X5.3189Y-2.0787 376 | X5.3189Y-2.1575 377 | X5.3189Y-2.2362 378 | X5.3189Y-2.315 379 | X5.3327Y-4.0433 380 | X5.3452Y-4.3771 381 | X5.3474Y-4.1624 382 | X5.3764Y-4.3725 383 | X5.3976Y-2.0787 384 | X5.3976Y-2.1575 385 | X5.3976Y-2.2362 386 | X5.3976Y-2.315 387 | X5.3996Y-4.0748 388 | X5.4Y-4.5571 389 | X5.4016Y-3.3346 390 | X5.4232Y-4.3937 391 | X5.4259Y-4.7747 392 | X5.437Y-3.9646 393 | X5.4567Y-4.122 394 | X5.4732Y-4.2452 395 | X5.4803Y-2.5295 396 | X5.4803Y-2.5925 397 | X5.4803Y-2.7126 398 | X5.4921Y-3.185 399 | X5.4921Y-3.2441 400 | X5.498Y-4.5551 401 | X5.5027Y-4.4145 402 | X5.5046Y-4.4459 403 | X5.5236Y-3.9567 404 | X5.5492Y-4.2461 405 | X5.5669Y-2.0787 406 | X5.5669Y-2.1575 407 | X5.5669Y-2.315 408 | X5.5709Y-3.3346 409 | X5.6024Y-3.9606 410 | X5.6122Y-4.5799 411 | X5.6171Y-4.251 412 | X5.6299Y-4.0472 413 | X5.6457Y-2.0787 414 | X5.6457Y-2.1575 415 | X5.6457Y-2.2362 416 | X5.6457Y-2.315 417 | X5.6457Y-2.7087 418 | X5.6713Y-4.2343 419 | X5.685Y-4.0305 420 | X5.7008Y-4.5512 421 | X5.7126Y-3.9646 422 | X5.7244Y-2.0787 423 | X5.7244Y-2.1575 424 | X5.7244Y-2.2362 425 | X5.7244Y-2.315 426 | X5.7323Y-4.2343 427 | X5.7343Y-4.0728 428 | X5.7894Y-4.2343 429 | X5.7933Y-4.0728 430 | X5.8012Y-4.5531 431 | X5.8216Y-4.3279 432 | X5.8383Y-1.746 433 | X5.8504Y-4.2343 434 | X5.8524Y-4.0728 435 | X5.8543Y-3.9409 436 | T2 437 | X1.9451Y-2.0276 438 | X2.0159Y-2.0276 439 | X2.0868Y-2.0276 440 | X2.2268Y-3.622 441 | X2.2268Y-3.7008 442 | X2.2268Y-3.7795 443 | X2.3056Y-3.622 444 | X2.3056Y-3.7008 445 | X2.3056Y-3.7795 446 | X2.3843Y-3.622 447 | X2.3843Y-3.7008 448 | X2.3843Y-3.7795 449 | X2.463Y-3.7008 450 | X2.463Y-3.7795 451 | X2.4921Y-1.9882 452 | X2.53Y-3.0 453 | X2.53Y-3.07 454 | X2.5418Y-3.7795 455 | X2.563Y-1.9882 456 | X2.6205Y-3.7795 457 | X2.6339Y-1.9882 458 | X2.6993Y-3.7008 459 | X2.6993Y-3.7795 460 | X2.7047Y-1.9882 461 | X2.7756Y-1.9882 462 | X2.778Y-3.7008 463 | X2.778Y-3.7795 464 | X2.86Y-3.78 465 | X2.9429Y-2.9961 466 | X2.9429Y-3.0748 467 | X2.9613Y-3.72 468 | X3.0079Y-3.7795 469 | X3.04Y-3.72 470 | X3.1388Y-3.5413 471 | X3.16Y-3.7013 472 | X3.16Y-3.78 473 | X3.189Y-3.5433 474 | X3.189Y-3.622 475 | X3.2205Y-3.7008 476 | X3.2205Y-3.7795 477 | X3.2795Y-1.9882 478 | X3.3425Y-2.9022 479 | X3.3465Y-3.622 480 | X3.3465Y-3.7008 481 | X3.3465Y-3.7795 482 | X3.3474Y-2.7776 483 | X3.3504Y-1.9882 484 | X3.37Y-2.97 485 | X3.3898Y-2.747 486 | X3.3917Y-2.8238 487 | X3.4065Y-2.9006 488 | X3.41Y-2.97 489 | X3.4213Y-1.9882 490 | X3.4252Y-3.622 491 | X3.4252Y-3.7008 492 | X3.4921Y-1.9882 493 | X3.5197Y-4.4961 494 | X3.563Y-1.9882 495 | X3.575Y-3.6263 496 | X3.575Y-3.705 497 | X3.5764Y-4.4961 498 | X3.6614Y-3.622 499 | X3.6614Y-3.7008 500 | X3.6614Y-3.7795 501 | X3.7402Y-3.622 502 | X3.7402Y-3.7008 503 | X3.7402Y-3.7795 504 | X4.0669Y-1.9882 505 | X4.098Y-3.6893 506 | X4.098Y-3.768 507 | X4.1319Y-4.6555 508 | X4.1378Y-1.9882 509 | X4.2087Y-1.9882 510 | X4.2087Y-2.9961 511 | X4.2087Y-3.0748 512 | X4.26Y-3.78 513 | X4.2795Y-1.9882 514 | X4.3307Y-3.78 515 | X4.3504Y-1.9882 516 | X4.3701Y-3.7008 517 | X4.4094Y-3.78 518 | X4.437Y-3.6142 519 | X4.4488Y-3.7008 520 | X4.4882Y-3.78 521 | X4.5276Y-3.622 522 | X4.5276Y-3.7008 523 | X4.5669Y-3.78 524 | X4.6063Y-3.7008 525 | X4.6211Y-3.625 526 | X4.6412Y-2.9236 527 | X4.6412Y-2.9636 528 | X4.6457Y-3.78 529 | X4.6683Y-2.7677 530 | X4.6703Y-2.8445 531 | X4.685Y-3.7008 532 | X4.6919Y-2.9636 533 | X4.6998Y-2.8061 534 | X4.7012Y-2.9236 535 | X4.7224Y-4.6467 536 | X4.7244Y-3.78 537 | X4.7323Y-3.624 538 | X4.7638Y-3.7008 539 | X4.8031Y-3.78 540 | X4.8425Y-3.7008 541 | X4.8819Y-3.78 542 | X4.8937Y-1.9882 543 | X4.9213Y-3.622 544 | X4.9213Y-3.7008 545 | X4.9606Y-3.78 546 | X4.9646Y-1.9882 547 | X5.0Y-3.7008 548 | X5.0354Y-1.9882 549 | X5.0394Y-3.78 550 | X5.0827Y-3.0039 551 | X5.0827Y-3.0827 552 | X5.1063Y-1.9882 553 | X5.1181Y-3.78 554 | X5.1772Y-1.9882 555 | X5.1969Y-3.78 556 | X5.2362Y-3.7008 557 | X5.315Y-3.622 558 | X5.315Y-3.7008 559 | X5.315Y-3.78 560 | X5.3307Y-4.6299 561 | X5.4232Y-3.622 562 | X5.4232Y-3.7008 563 | X5.4232Y-3.7795 564 | X5.4862Y-3.002 565 | X5.4862Y-3.0807 566 | X5.502Y-3.7795 567 | X5.5807Y-3.7795 568 | X5.6594Y-3.7008 569 | X5.6594Y-3.7795 570 | X5.6654Y-1.9882 571 | X5.7205Y-3.6181 572 | X5.7362Y-1.9882 573 | X5.7382Y-3.7008 574 | X5.7382Y-3.7795 575 | X5.8071Y-1.9882 576 | X5.9173Y-3.0059 577 | X5.9173Y-3.0846 578 | X5.9173Y-3.1634 579 | X5.9173Y-3.2421 580 | X5.9211Y-2.5625 581 | X5.9211Y-2.6413 582 | X5.9211Y-2.72 583 | X5.9511Y-3.306 584 | X5.9862Y-3.0059 585 | X5.9862Y-3.0846 586 | X5.9862Y-3.1634 587 | X5.9862Y-3.2421 588 | X5.99Y-2.5625 589 | X5.99Y-2.6413 590 | X5.99Y-2.72 591 | X6.02Y-3.306 592 | X6.0662Y-3.0483 593 | X6.0662Y-3.127 594 | X6.0662Y-3.2057 595 | X6.0819Y-2.5148 596 | X6.0819Y-2.5848 597 | X6.0836Y-2.6535 598 | X6.0836Y-2.7235 599 | X6.1811Y-3.0324 600 | X6.1811Y-3.1024 601 | X6.1811Y-3.1724 602 | X6.1811Y-3.2424 603 | X6.1936Y-2.6535 604 | X6.1936Y-2.7235 605 | X6.1969Y-2.5198 606 | X6.1969Y-2.6063 607 | X6.22Y-2.48 608 | X6.22Y-2.78 609 | X6.22Y-2.88 610 | X6.22Y-3.28 611 | X6.252Y-3.0339 612 | X6.252Y-3.1339 613 | X6.32Y-2.48 614 | X6.32Y-2.58 615 | X6.32Y-2.68 616 | X6.32Y-2.78 617 | X6.32Y-2.88 618 | X6.32Y-2.98 619 | X6.32Y-3.08 620 | X6.32Y-3.18 621 | X6.32Y-3.28 622 | T3 623 | X2.2049Y-3.0081 624 | X2.2049Y-3.077 625 | X2.2049Y-3.1459 626 | X2.2049Y-3.2148 627 | X2.2057Y-2.378 628 | X2.2057Y-2.4469 629 | X2.2057Y-2.5157 630 | X2.2057Y-2.5846 631 | X2.2836Y-3.0081 632 | X2.2836Y-3.077 633 | X2.2836Y-3.1459 634 | X2.2836Y-3.2148 635 | X2.2844Y-2.378 636 | X2.2844Y-2.4469 637 | X2.2844Y-2.5157 638 | X2.2844Y-2.5846 639 | X2.3623Y-3.0081 640 | X2.3623Y-3.077 641 | X2.3623Y-3.1459 642 | X2.3623Y-3.2148 643 | X2.3632Y-2.378 644 | X2.3632Y-2.4469 645 | X2.3632Y-2.5157 646 | X2.3632Y-2.5846 647 | X2.4411Y-3.0081 648 | X2.4411Y-3.077 649 | X2.4411Y-3.1459 650 | X2.4411Y-3.2148 651 | X2.4419Y-2.378 652 | X2.4419Y-2.4469 653 | X2.4419Y-2.5157 654 | X2.4419Y-2.5846 655 | X2.6133Y-2.3781 656 | X2.6133Y-2.447 657 | X2.6133Y-2.5159 658 | X2.6133Y-2.5848 659 | X2.6133Y-3.0081 660 | X2.6133Y-3.077 661 | X2.6133Y-3.1459 662 | X2.6133Y-3.2148 663 | X2.692Y-2.3781 664 | X2.692Y-2.447 665 | X2.692Y-2.5159 666 | X2.692Y-2.5848 667 | X2.692Y-3.0081 668 | X2.692Y-3.077 669 | X2.692Y-3.1459 670 | X2.692Y-3.2148 671 | X2.7708Y-2.3781 672 | X2.7708Y-2.447 673 | X2.7708Y-2.5159 674 | X2.7708Y-2.5848 675 | X2.7708Y-3.0081 676 | X2.7708Y-3.077 677 | X2.7708Y-3.1459 678 | X2.7708Y-3.2148 679 | X2.8495Y-2.3781 680 | X2.8495Y-2.447 681 | X2.8495Y-2.5159 682 | X2.8495Y-2.5848 683 | X2.8495Y-3.0081 684 | X2.8495Y-3.077 685 | X2.8495Y-3.1459 686 | X2.8495Y-3.2148 687 | X3.0196Y-2.3781 688 | X3.0196Y-2.447 689 | X3.0196Y-2.5159 690 | X3.0196Y-2.5848 691 | X3.0249Y-3.0081 692 | X3.0249Y-3.077 693 | X3.0249Y-3.1459 694 | X3.0249Y-3.2148 695 | X3.0984Y-2.3781 696 | X3.0984Y-2.447 697 | X3.0984Y-2.5159 698 | X3.0984Y-2.5848 699 | X3.1036Y-3.0081 700 | X3.1036Y-3.077 701 | X3.1036Y-3.1459 702 | X3.1036Y-3.2148 703 | X3.1771Y-2.3781 704 | X3.1771Y-2.447 705 | X3.1771Y-2.5159 706 | X3.1771Y-2.5848 707 | X3.1823Y-3.0081 708 | X3.1823Y-3.077 709 | X3.1823Y-3.1459 710 | X3.1823Y-3.2148 711 | X3.2559Y-2.3781 712 | X3.2559Y-2.447 713 | X3.2559Y-2.5159 714 | X3.2559Y-2.5848 715 | X3.2611Y-3.0081 716 | X3.2611Y-3.077 717 | X3.2611Y-3.1459 718 | X3.2611Y-3.2148 719 | X3.4763Y-3.0144 720 | X3.4763Y-3.0833 721 | X3.4763Y-3.1522 722 | X3.4763Y-3.2211 723 | X3.4787Y-2.3844 724 | X3.4787Y-2.4533 725 | X3.4787Y-2.5222 726 | X3.4787Y-2.5911 727 | X3.555Y-3.0144 728 | X3.555Y-3.0833 729 | X3.555Y-3.1522 730 | X3.555Y-3.2211 731 | X3.5575Y-2.3844 732 | X3.5575Y-2.4533 733 | X3.5575Y-2.5222 734 | X3.5575Y-2.5911 735 | X3.6337Y-3.0144 736 | X3.6337Y-3.0833 737 | X3.6337Y-3.1522 738 | X3.6337Y-3.2211 739 | X3.6362Y-2.3844 740 | X3.6362Y-2.4533 741 | X3.6362Y-2.5222 742 | X3.6362Y-2.5911 743 | X3.7125Y-3.0144 744 | X3.7125Y-3.0833 745 | X3.7125Y-3.1522 746 | X3.7125Y-3.2211 747 | X3.7149Y-2.3844 748 | X3.7149Y-2.4533 749 | X3.7149Y-2.5222 750 | X3.7149Y-2.5911 751 | X3.8834Y-2.3841 752 | X3.8834Y-2.453 753 | X3.8834Y-2.5219 754 | X3.8834Y-2.5908 755 | X3.8868Y-3.0168 756 | X3.8868Y-3.0857 757 | X3.8868Y-3.1546 758 | X3.8868Y-3.2235 759 | X3.9621Y-2.3841 760 | X3.9621Y-2.453 761 | X3.9621Y-2.5219 762 | X3.9621Y-2.5908 763 | X3.9655Y-3.0168 764 | X3.9655Y-3.0857 765 | X3.9655Y-3.1546 766 | X3.9655Y-3.2235 767 | X4.0408Y-2.3841 768 | X4.0408Y-2.453 769 | X4.0408Y-2.5219 770 | X4.0408Y-2.5908 771 | X4.0443Y-3.0168 772 | X4.0443Y-3.0857 773 | X4.0443Y-3.1546 774 | X4.0443Y-3.2235 775 | X4.1196Y-2.3841 776 | X4.1196Y-2.453 777 | X4.1196Y-2.5219 778 | X4.1196Y-2.5908 779 | X4.123Y-3.0168 780 | X4.123Y-3.0857 781 | X4.123Y-3.1546 782 | X4.123Y-3.2235 783 | X4.2966Y-3.0144 784 | X4.2966Y-3.0833 785 | X4.2966Y-3.1522 786 | X4.2966Y-3.2211 787 | X4.2983Y-2.3835 788 | X4.2983Y-2.4524 789 | X4.2983Y-2.5213 790 | X4.2983Y-2.5902 791 | X4.3753Y-3.0144 792 | X4.3753Y-3.0833 793 | X4.3753Y-3.1522 794 | X4.3753Y-3.2211 795 | X4.377Y-2.3835 796 | X4.377Y-2.4524 797 | X4.377Y-2.5213 798 | X4.377Y-2.5902 799 | X4.4541Y-3.0144 800 | X4.4541Y-3.0833 801 | X4.4541Y-3.1522 802 | X4.4541Y-3.2211 803 | X4.4557Y-2.3835 804 | X4.4557Y-2.4524 805 | X4.4557Y-2.5213 806 | X4.4557Y-2.5902 807 | X4.5328Y-3.0144 808 | X4.5328Y-3.0833 809 | X4.5328Y-3.1522 810 | X4.5328Y-3.2211 811 | X4.5345Y-2.3835 812 | X4.5345Y-2.4524 813 | X4.5345Y-2.5213 814 | X4.5345Y-2.5902 815 | X4.753Y-2.3889 816 | X4.753Y-2.4578 817 | X4.753Y-2.5267 818 | X4.753Y-2.5956 819 | X4.7569Y-3.0184 820 | X4.7569Y-3.0873 821 | X4.7569Y-3.1562 822 | X4.7569Y-3.2251 823 | X4.8317Y-2.3889 824 | X4.8317Y-2.4578 825 | X4.8317Y-2.5267 826 | X4.8317Y-2.5956 827 | X4.8357Y-3.0184 828 | X4.8357Y-3.0873 829 | X4.8357Y-3.1562 830 | X4.8357Y-3.2251 831 | X4.9105Y-2.3889 832 | X4.9105Y-2.4578 833 | X4.9105Y-2.5267 834 | X4.9105Y-2.5956 835 | X4.9144Y-3.0184 836 | X4.9144Y-3.0873 837 | X4.9144Y-3.1562 838 | X4.9144Y-3.2251 839 | X4.9892Y-2.3889 840 | X4.9892Y-2.4578 841 | X4.9892Y-2.5267 842 | X4.9892Y-2.5956 843 | X4.9931Y-3.0184 844 | X4.9931Y-3.0873 845 | X4.9931Y-3.1562 846 | X4.9931Y-3.2251 847 | X5.162Y-2.3889 848 | X5.162Y-2.4578 849 | X5.162Y-2.5267 850 | X5.162Y-2.5956 851 | X5.1655Y-3.0184 852 | X5.1655Y-3.0873 853 | X5.1655Y-3.1562 854 | X5.1655Y-3.2251 855 | X5.2407Y-2.3889 856 | X5.2407Y-2.4578 857 | X5.2407Y-2.5267 858 | X5.2407Y-2.5956 859 | X5.2442Y-3.0184 860 | X5.2442Y-3.0873 861 | X5.2442Y-3.1562 862 | X5.2442Y-3.2251 863 | X5.3195Y-2.3889 864 | X5.3195Y-2.4578 865 | X5.3195Y-2.5267 866 | X5.3195Y-2.5956 867 | X5.3229Y-3.0184 868 | X5.3229Y-3.0873 869 | X5.3229Y-3.1562 870 | X5.3229Y-3.2251 871 | X5.3982Y-2.3889 872 | X5.3982Y-2.4578 873 | X5.3982Y-2.5267 874 | X5.3982Y-2.5956 875 | X5.4017Y-3.0184 876 | X5.4017Y-3.0873 877 | X5.4017Y-3.1562 878 | X5.4017Y-3.2251 879 | X5.568Y-2.3889 880 | X5.568Y-2.4578 881 | X5.568Y-2.5267 882 | X5.568Y-2.5956 883 | X5.5712Y-3.0184 884 | X5.5712Y-3.0873 885 | X5.5712Y-3.1562 886 | X5.5712Y-3.2251 887 | X5.6467Y-2.3889 888 | X5.6467Y-2.4578 889 | X5.6467Y-2.5267 890 | X5.6467Y-2.5956 891 | X5.6499Y-3.0184 892 | X5.6499Y-3.0873 893 | X5.6499Y-3.1562 894 | X5.6499Y-3.2251 895 | X5.7255Y-2.3889 896 | X5.7255Y-2.4578 897 | X5.7255Y-2.5267 898 | X5.7255Y-2.5956 899 | X5.7287Y-3.0184 900 | X5.7287Y-3.0873 901 | X5.7287Y-3.1562 902 | X5.7287Y-3.2251 903 | X5.8042Y-2.3889 904 | X5.8042Y-2.4578 905 | X5.8042Y-2.5267 906 | X5.8042Y-2.5956 907 | X5.8074Y-3.0184 908 | X5.8074Y-3.0873 909 | X5.8074Y-3.1562 910 | X5.8074Y-3.2251 911 | T4 912 | X5.2722Y-4.2787 913 | X5.347Y-4.2787 914 | T5 915 | X3.5748Y-4.7126 916 | X3.6535Y-4.7126 917 | X3.7323Y-4.7126 918 | X3.811Y-4.7126 919 | X3.8898Y-4.7126 920 | X3.9685Y-4.7126 921 | X4.0472Y-4.7126 922 | X4.2402Y-4.7126 923 | X4.3189Y-4.7126 924 | X4.3976Y-4.7126 925 | X4.4764Y-4.7126 926 | X4.5551Y-4.7126 927 | X4.6339Y-4.7126 928 | X4.8268Y-4.7126 929 | X4.9055Y-4.7126 930 | X4.9843Y-4.7126 931 | X5.063Y-4.7126 932 | X5.1417Y-4.7126 933 | X5.2205Y-4.7126 934 | X5.4134Y-4.7126 935 | X5.4921Y-4.7126 936 | X5.5709Y-4.7126 937 | X5.6496Y-4.7126 938 | X5.7283Y-4.7126 939 | X5.8071Y-4.7126 940 | T6 941 | X3.9004Y-3.8987 942 | X3.9004Y-4.4987 943 | X4.0004Y-3.8987 944 | X4.0004Y-4.4987 945 | X4.1004Y-3.8987 946 | X4.1004Y-4.4987 947 | X4.2004Y-3.8987 948 | X4.2004Y-4.4987 949 | X4.3004Y-3.8987 950 | X4.3004Y-4.4987 951 | X4.4004Y-3.8987 952 | X4.4004Y-4.4987 953 | X4.4994Y-4.4991 954 | X4.5004Y-3.8987 955 | X4.6004Y-3.8987 956 | X4.6004Y-4.4987 957 | X4.7004Y-3.8987 958 | X4.7004Y-4.4987 959 | X4.8004Y-3.8987 960 | X4.8004Y-4.4987 961 | X4.9004Y-3.8987 962 | X4.9004Y-4.4987 963 | X5.0004Y-3.8987 964 | X5.0004Y-4.4987 965 | X5.1004Y-3.8987 966 | X5.1004Y-4.4987 967 | X5.2004Y-3.8987 968 | X5.2004Y-4.4987 969 | X5.3004Y-3.8987 970 | X5.3004Y-4.4987 971 | X5.4004Y-3.8987 972 | X5.4004Y-4.4987 973 | X5.5004Y-3.8987 974 | X5.5004Y-4.4987 975 | X5.6004Y-3.8987 976 | X5.6004Y-4.4987 977 | X5.7004Y-3.8987 978 | X5.7004Y-4.4987 979 | X5.8004Y-3.8987 980 | X5.8004Y-4.4987 981 | T7 982 | X3.1181Y-4.5591 983 | X3.2181Y-4.5591 984 | X3.3181Y-4.5591 985 | T8 986 | X2.2638Y-1.5049 987 | X2.2638Y-1.8002 988 | X3.0364Y-1.5028 989 | X3.0364Y-1.7981 990 | X3.8209Y-1.5028 991 | X3.8209Y-1.7981 992 | X4.6093Y-1.5028 993 | X4.6093Y-1.7981 994 | X5.3907Y-1.5028 995 | X5.3907Y-1.7981 996 | T9 997 | X2.0724Y-4.2071 998 | X2.0724Y-4.4071 999 | X2.6024Y-4.7008 1000 | X2.857Y-4.2039 1001 | X2.8724Y-3.9071 1002 | X2.8724Y-4.7071 1003 | T10 1004 | X2.5276Y-2.26 1005 | X2.5787Y-3.6339 1006 | X2.9724Y-3.6339 1007 | X3.38Y-2.26 1008 | X3.8386Y-3.6339 1009 | X4.2126Y-2.2598 1010 | X4.2323Y-3.6339 1011 | X5.0709Y-2.2598 1012 | X5.1181Y-3.6339 1013 | X5.4961Y-2.2598 1014 | X5.5512Y-3.6339 1015 | T12 1016 | X6.1024Y-2.2303 1017 | X6.1024Y-3.5827 1018 | T11 1019 | G00X2.3268Y-2.8543 1020 | M15 1021 | G01X2.3976Y-2.8543 1022 | M16 1023 | G05 1024 | G00X3.1142Y-2.8543 1025 | M15 1026 | G01X3.185Y-2.8543 1027 | M16 1028 | G05 1029 | G00X3.5866Y-2.8543 1030 | M15 1031 | G01X3.6575Y-2.8543 1032 | M16 1033 | G05 1034 | G00X4.374Y-2.8543 1035 | M15 1036 | G01X4.4449Y-2.8543 1037 | M16 1038 | G05 1039 | G00X4.8465Y-2.8543 1040 | M15 1041 | G01X4.9173Y-2.8543 1042 | M16 1043 | G05 1044 | G00X5.6339Y-2.8543 1045 | M15 1046 | G01X5.7047Y-2.8543 1047 | M16 1048 | G05 1049 | T0 1050 | M30 1051 | -------------------------------------------------------------------------------- /Kicad_Project/MP2_DFN/MP2_DFN-User_Comments.gbr: -------------------------------------------------------------------------------- 1 | %TF.GenerationSoftware,KiCad,Pcbnew,7.0.1-0*% 2 | %TF.CreationDate,2023-10-26T13:37:29-04:00*% 3 | %TF.ProjectId,MP2_DFN,4d50325f-4446-44e2-9e6b-696361645f70,rev?*% 4 | %TF.SameCoordinates,Original*% 5 | %TF.FileFunction,Other,Comment*% 6 | %FSLAX46Y46*% 7 | G04 Gerber Fmt 4.6, Leading zero omitted, Abs format (unit mm)* 8 | G04 Created by KiCad (PCBNEW 7.0.1-0) date 2023-10-26 13:37:29* 9 | %MOMM*% 10 | %LPD*% 11 | G01* 12 | G04 APERTURE LIST* 13 | G04 APERTURE END LIST* 14 | M02* 15 | -------------------------------------------------------------------------------- /Kicad_Project/MP2_DFN_Custom_Symbols.kicad_sym: -------------------------------------------------------------------------------- 1 | (kicad_symbol_lib (version 20211014) (generator kicad_symbol_editor) 2 | (symbol "MDP10N027" (in_bom yes) (on_board yes) 3 | (property "Reference" "Q" (id 0) (at 11.43 -3.81 0) 4 | (effects (font (size 1.27 1.27))) 5 | ) 6 | (property "Value" "MDP10N027" (id 1) (at 15.24 -6.35 0) 7 | (effects (font (size 1.27 1.27))) 8 | ) 9 | (property "Footprint" "Package_TO_SOT_THT:TO-220-3_Horizontal_TabUp" (id 2) (at 7.62 7.62 0) 10 | (effects (font (size 1.27 1.27)) hide) 11 | ) 12 | (property "Datasheet" "" (id 3) (at 7.62 7.62 0) 13 | (effects (font (size 1.27 1.27)) hide) 14 | ) 15 | (symbol "MDP10N027_0_1" 16 | (polyline 17 | (pts 18 | (xy 5.334 -5.08) 19 | (xy 2.54 -5.08) 20 | ) 21 | (stroke (width 0) (type default) (color 0 0 0 0)) 22 | (fill (type none)) 23 | ) 24 | (polyline 25 | (pts 26 | (xy 5.334 -3.175) 27 | (xy 5.334 -6.985) 28 | ) 29 | (stroke (width 0.254) (type default) (color 0 0 0 0)) 30 | (fill (type none)) 31 | ) 32 | (polyline 33 | (pts 34 | (xy 5.842 -6.35) 35 | (xy 5.842 -7.366) 36 | ) 37 | (stroke (width 0.254) (type default) (color 0 0 0 0)) 38 | (fill (type none)) 39 | ) 40 | (polyline 41 | (pts 42 | (xy 5.842 -4.572) 43 | (xy 5.842 -5.588) 44 | ) 45 | (stroke (width 0.254) (type default) (color 0 0 0 0)) 46 | (fill (type none)) 47 | ) 48 | (polyline 49 | (pts 50 | (xy 5.842 -2.794) 51 | (xy 5.842 -3.81) 52 | ) 53 | (stroke (width 0.254) (type default) (color 0 0 0 0)) 54 | (fill (type none)) 55 | ) 56 | (polyline 57 | (pts 58 | (xy 7.62 -2.54) 59 | (xy 7.62 -3.302) 60 | ) 61 | (stroke (width 0) (type default) (color 0 0 0 0)) 62 | (fill (type none)) 63 | ) 64 | (polyline 65 | (pts 66 | (xy 7.62 -7.62) 67 | (xy 7.62 -5.08) 68 | (xy 5.842 -5.08) 69 | ) 70 | (stroke (width 0) (type default) (color 0 0 0 0)) 71 | (fill (type none)) 72 | ) 73 | (polyline 74 | (pts 75 | (xy 5.842 -6.858) 76 | (xy 8.382 -6.858) 77 | (xy 8.382 -3.302) 78 | (xy 5.842 -3.302) 79 | ) 80 | (stroke (width 0) (type default) (color 0 0 0 0)) 81 | (fill (type none)) 82 | ) 83 | (polyline 84 | (pts 85 | (xy 6.096 -5.08) 86 | (xy 7.112 -4.699) 87 | (xy 7.112 -5.461) 88 | (xy 6.096 -5.08) 89 | ) 90 | (stroke (width 0) (type default) (color 0 0 0 0)) 91 | (fill (type outline)) 92 | ) 93 | (polyline 94 | (pts 95 | (xy 7.874 -4.572) 96 | (xy 8.001 -4.699) 97 | (xy 8.763 -4.699) 98 | (xy 8.89 -4.826) 99 | ) 100 | (stroke (width 0) (type default) (color 0 0 0 0)) 101 | (fill (type none)) 102 | ) 103 | (polyline 104 | (pts 105 | (xy 8.382 -4.699) 106 | (xy 8.001 -5.334) 107 | (xy 8.763 -5.334) 108 | (xy 8.382 -4.699) 109 | ) 110 | (stroke (width 0) (type default) (color 0 0 0 0)) 111 | (fill (type none)) 112 | ) 113 | (circle (center 6.731 -5.08) (radius 2.794) 114 | (stroke (width 0.254) (type default) (color 0 0 0 0)) 115 | (fill (type none)) 116 | ) 117 | (circle (center 7.62 -6.858) (radius 0.254) 118 | (stroke (width 0) (type default) (color 0 0 0 0)) 119 | (fill (type outline)) 120 | ) 121 | (circle (center 7.62 -3.302) (radius 0.254) 122 | (stroke (width 0) (type default) (color 0 0 0 0)) 123 | (fill (type outline)) 124 | ) 125 | ) 126 | (symbol "MDP10N027_1_1" 127 | (pin input line (at 0 -5.08 0) (length 2.54) 128 | (name "" (effects (font (size 1.27 1.27)))) 129 | (number "1" (effects (font (size 1.27 1.27)))) 130 | ) 131 | (pin passive line (at 7.62 0 270) (length 2.54) 132 | (name "" (effects (font (size 1.27 1.27)))) 133 | (number "2" (effects (font (size 1.27 1.27)))) 134 | ) 135 | (pin passive line (at 7.62 -10.16 90) (length 2.54) 136 | (name "" (effects (font (size 1.27 1.27)))) 137 | (number "3" (effects (font (size 1.27 1.27)))) 138 | ) 139 | ) 140 | ) 141 | (symbol "NCP5183" (in_bom yes) (on_board yes) 142 | (property "Reference" "U" (id 0) (at 2.54 1.27 0) 143 | (effects (font (size 1.27 1.27))) 144 | ) 145 | (property "Value" "NCP5183" (id 1) (at 5.08 3.81 0) 146 | (effects (font (size 1.27 1.27))) 147 | ) 148 | (property "Footprint" "" (id 2) (at 0 1.27 0) 149 | (effects (font (size 1.27 1.27)) hide) 150 | ) 151 | (property "Datasheet" "" (id 3) (at 0 1.27 0) 152 | (effects (font (size 1.27 1.27)) hide) 153 | ) 154 | (symbol "NCP5183_0_1" 155 | (rectangle (start 0 0) (end 13.97 -16.51) 156 | (stroke (width 0) (type default) (color 0 0 0 0)) 157 | (fill (type background)) 158 | ) 159 | (arc (start 5.08 0) (mid 6.985 -1.6157) (end 8.89 0) 160 | (stroke (width 0) (type default) (color 0 0 0 0)) 161 | (fill (type none)) 162 | ) 163 | ) 164 | (symbol "NCP5183_1_1" 165 | (pin bidirectional line (at -2.54 -2.54 0) (length 2.54) 166 | (name "HIN" (effects (font (size 1.27 1.27)))) 167 | (number "1" (effects (font (size 1.27 1.27)))) 168 | ) 169 | (pin bidirectional line (at -2.54 -6.35 0) (length 2.54) 170 | (name "LIN" (effects (font (size 1.27 1.27)))) 171 | (number "2" (effects (font (size 1.27 1.27)))) 172 | ) 173 | (pin bidirectional line (at -2.54 -10.16 0) (length 2.54) 174 | (name "GND" (effects (font (size 1.27 1.27)))) 175 | (number "3" (effects (font (size 1.27 1.27)))) 176 | ) 177 | (pin bidirectional line (at -2.54 -13.97 0) (length 2.54) 178 | (name "DRVL" (effects (font (size 1.27 1.27)))) 179 | (number "4" (effects (font (size 1.27 1.27)))) 180 | ) 181 | (pin bidirectional line (at 16.51 -13.97 180) (length 2.54) 182 | (name "VCC" (effects (font (size 1.27 1.27)))) 183 | (number "5" (effects (font (size 1.27 1.27)))) 184 | ) 185 | (pin bidirectional line (at 16.51 -10.16 180) (length 2.54) 186 | (name "HB" (effects (font (size 1.27 1.27)))) 187 | (number "6" (effects (font (size 1.27 1.27)))) 188 | ) 189 | (pin bidirectional line (at 16.51 -6.35 180) (length 2.54) 190 | (name "DRVH" (effects (font (size 1.27 1.27)))) 191 | (number "7" (effects (font (size 1.27 1.27)))) 192 | ) 193 | (pin bidirectional line (at 16.51 -2.54 180) (length 2.54) 194 | (name "VB" (effects (font (size 1.27 1.27)))) 195 | (number "8" (effects (font (size 1.27 1.27)))) 196 | ) 197 | ) 198 | ) 199 | (symbol "PQDE6W-Q110" (in_bom yes) (on_board yes) 200 | (property "Reference" "U" (id 0) (at -1.27 2.54 0) 201 | (effects (font (size 1.27 1.27))) 202 | ) 203 | (property "Value" "PQDE6W-Q110" (id 1) (at 8.89 2.54 0) 204 | (effects (font (size 1.27 1.27))) 205 | ) 206 | (property "Footprint" "" (id 2) (at 0 0 0) 207 | (effects (font (size 1.27 1.27)) hide) 208 | ) 209 | (property "Datasheet" "" (id 3) (at 0 0 0) 210 | (effects (font (size 1.27 1.27)) hide) 211 | ) 212 | (symbol "PQDE6W-Q110_0_1" 213 | (rectangle (start 0 0) (end 19.05 -12.7) 214 | (stroke (width 0) (type default) (color 0 0 0 0)) 215 | (fill (type background)) 216 | ) 217 | ) 218 | (symbol "PQDE6W-Q110_1_1" 219 | (pin bidirectional line (at -2.54 -3.81 0) (length 2.54) 220 | (name "VIN" (effects (font (size 1.27 1.27)))) 221 | (number "1" (effects (font (size 1.27 1.27)))) 222 | ) 223 | (pin bidirectional line (at 6.35 -15.24 90) (length 2.54) 224 | (name "GND_IN" (effects (font (size 1.27 1.27)))) 225 | (number "2" (effects (font (size 1.27 1.27)))) 226 | ) 227 | (pin bidirectional line (at 12.7 -15.24 90) (length 2.54) 228 | (name "GND_OUT" (effects (font (size 1.27 1.27)))) 229 | (number "3" (effects (font (size 1.27 1.27)))) 230 | ) 231 | (pin bidirectional line (at 21.59 -3.81 180) (length 2.54) 232 | (name "VOUT" (effects (font (size 1.27 1.27)))) 233 | (number "4" (effects (font (size 1.27 1.27)))) 234 | ) 235 | ) 236 | ) 237 | (symbol "STM32F401CCU6_Balckpill" (in_bom yes) (on_board yes) 238 | (property "Reference" "U" (id 0) (at -3.81 5.08 0) 239 | (effects (font (size 1.27 1.27))) 240 | ) 241 | (property "Value" "STM32F401CCU6_Balckpill" (id 1) (at 13.97 5.08 0) 242 | (effects (font (size 1.27 1.27))) 243 | ) 244 | (property "Footprint" "" (id 2) (at 0 0 0) 245 | (effects (font (size 1.27 1.27)) hide) 246 | ) 247 | (property "Datasheet" "" (id 3) (at 0 0 0) 248 | (effects (font (size 1.27 1.27)) hide) 249 | ) 250 | (symbol "STM32F401CCU6_Balckpill_0_1" 251 | (rectangle (start 0 0) (end 22.86 -53.34) 252 | (stroke (width 0) (type default) (color 0 0 0 0)) 253 | (fill (type background)) 254 | ) 255 | ) 256 | (symbol "STM32F401CCU6_Balckpill_1_1" 257 | (pin bidirectional line (at 25.4 -50.8 180) (length 2.54) 258 | (name "VBAT" (effects (font (size 1.27 1.27)))) 259 | (number "1" (effects (font (size 1.27 1.27)))) 260 | ) 261 | (pin bidirectional line (at 25.4 -27.94 180) (length 2.54) 262 | (name "PA4" (effects (font (size 1.27 1.27)))) 263 | (number "10" (effects (font (size 1.27 1.27)))) 264 | ) 265 | (pin bidirectional line (at 25.4 -25.4 180) (length 2.54) 266 | (name "PA5" (effects (font (size 1.27 1.27)))) 267 | (number "11" (effects (font (size 1.27 1.27)))) 268 | ) 269 | (pin bidirectional line (at 25.4 -22.86 180) (length 2.54) 270 | (name "PA6" (effects (font (size 1.27 1.27)))) 271 | (number "12" (effects (font (size 1.27 1.27)))) 272 | ) 273 | (pin bidirectional line (at 25.4 -20.32 180) (length 2.54) 274 | (name "PA7" (effects (font (size 1.27 1.27)))) 275 | (number "13" (effects (font (size 1.27 1.27)))) 276 | ) 277 | (pin bidirectional line (at 25.4 -17.78 180) (length 2.54) 278 | (name "PB0" (effects (font (size 1.27 1.27)))) 279 | (number "14" (effects (font (size 1.27 1.27)))) 280 | ) 281 | (pin bidirectional line (at 25.4 -15.24 180) (length 2.54) 282 | (name "PB1" (effects (font (size 1.27 1.27)))) 283 | (number "15" (effects (font (size 1.27 1.27)))) 284 | ) 285 | (pin bidirectional line (at 25.4 -12.7 180) (length 2.54) 286 | (name "PB2" (effects (font (size 1.27 1.27)))) 287 | (number "16" (effects (font (size 1.27 1.27)))) 288 | ) 289 | (pin bidirectional line (at 25.4 -10.16 180) (length 2.54) 290 | (name "PB10" (effects (font (size 1.27 1.27)))) 291 | (number "17" (effects (font (size 1.27 1.27)))) 292 | ) 293 | (pin bidirectional line (at 25.4 -7.62 180) (length 2.54) 294 | (name "3V3" (effects (font (size 1.27 1.27)))) 295 | (number "18" (effects (font (size 1.27 1.27)))) 296 | ) 297 | (pin bidirectional line (at 25.4 -5.08 180) (length 2.54) 298 | (name "GND" (effects (font (size 1.27 1.27)))) 299 | (number "19" (effects (font (size 1.27 1.27)))) 300 | ) 301 | (pin bidirectional line (at 25.4 -48.26 180) (length 2.54) 302 | (name "PC13" (effects (font (size 1.27 1.27)))) 303 | (number "2" (effects (font (size 1.27 1.27)))) 304 | ) 305 | (pin bidirectional line (at 25.4 -2.54 180) (length 2.54) 306 | (name "5V" (effects (font (size 1.27 1.27)))) 307 | (number "20" (effects (font (size 1.27 1.27)))) 308 | ) 309 | (pin bidirectional line (at -2.54 -2.54 0) (length 2.54) 310 | (name "PB12" (effects (font (size 1.27 1.27)))) 311 | (number "21" (effects (font (size 1.27 1.27)))) 312 | ) 313 | (pin bidirectional line (at -2.54 -5.08 0) (length 2.54) 314 | (name "PB13" (effects (font (size 1.27 1.27)))) 315 | (number "22" (effects (font (size 1.27 1.27)))) 316 | ) 317 | (pin bidirectional line (at -2.54 -7.62 0) (length 2.54) 318 | (name "PB14" (effects (font (size 1.27 1.27)))) 319 | (number "23" (effects (font (size 1.27 1.27)))) 320 | ) 321 | (pin bidirectional line (at -2.54 -10.16 0) (length 2.54) 322 | (name "PB15" (effects (font (size 1.27 1.27)))) 323 | (number "24" (effects (font (size 1.27 1.27)))) 324 | ) 325 | (pin bidirectional line (at -2.54 -12.7 0) (length 2.54) 326 | (name "PA8" (effects (font (size 1.27 1.27)))) 327 | (number "25" (effects (font (size 1.27 1.27)))) 328 | ) 329 | (pin bidirectional line (at -2.54 -15.24 0) (length 2.54) 330 | (name "PA9" (effects (font (size 1.27 1.27)))) 331 | (number "26" (effects (font (size 1.27 1.27)))) 332 | ) 333 | (pin bidirectional line (at -2.54 -17.78 0) (length 2.54) 334 | (name "PA10" (effects (font (size 1.27 1.27)))) 335 | (number "27" (effects (font (size 1.27 1.27)))) 336 | ) 337 | (pin bidirectional line (at -2.54 -20.32 0) (length 2.54) 338 | (name "PA11" (effects (font (size 1.27 1.27)))) 339 | (number "28" (effects (font (size 1.27 1.27)))) 340 | ) 341 | (pin bidirectional line (at -2.54 -22.86 0) (length 2.54) 342 | (name "PA12" (effects (font (size 1.27 1.27)))) 343 | (number "29" (effects (font (size 1.27 1.27)))) 344 | ) 345 | (pin bidirectional line (at 25.4 -45.72 180) (length 2.54) 346 | (name "PC14" (effects (font (size 1.27 1.27)))) 347 | (number "3" (effects (font (size 1.27 1.27)))) 348 | ) 349 | (pin bidirectional line (at -2.54 -25.4 0) (length 2.54) 350 | (name "PA15" (effects (font (size 1.27 1.27)))) 351 | (number "30" (effects (font (size 1.27 1.27)))) 352 | ) 353 | (pin bidirectional line (at -2.54 -27.94 0) (length 2.54) 354 | (name "PB3" (effects (font (size 1.27 1.27)))) 355 | (number "31" (effects (font (size 1.27 1.27)))) 356 | ) 357 | (pin bidirectional line (at -2.54 -30.48 0) (length 2.54) 358 | (name "PB4" (effects (font (size 1.27 1.27)))) 359 | (number "32" (effects (font (size 1.27 1.27)))) 360 | ) 361 | (pin bidirectional line (at -2.54 -33.02 0) (length 2.54) 362 | (name "PB5" (effects (font (size 1.27 1.27)))) 363 | (number "33" (effects (font (size 1.27 1.27)))) 364 | ) 365 | (pin bidirectional line (at -2.54 -35.56 0) (length 2.54) 366 | (name "PB6" (effects (font (size 1.27 1.27)))) 367 | (number "34" (effects (font (size 1.27 1.27)))) 368 | ) 369 | (pin bidirectional line (at -2.54 -38.1 0) (length 2.54) 370 | (name "PB7" (effects (font (size 1.27 1.27)))) 371 | (number "35" (effects (font (size 1.27 1.27)))) 372 | ) 373 | (pin bidirectional line (at -2.54 -40.64 0) (length 2.54) 374 | (name "PB8" (effects (font (size 1.27 1.27)))) 375 | (number "36" (effects (font (size 1.27 1.27)))) 376 | ) 377 | (pin bidirectional line (at -2.54 -43.18 0) (length 2.54) 378 | (name "PB9" (effects (font (size 1.27 1.27)))) 379 | (number "37" (effects (font (size 1.27 1.27)))) 380 | ) 381 | (pin bidirectional line (at -2.54 -45.72 0) (length 2.54) 382 | (name "5V" (effects (font (size 1.27 1.27)))) 383 | (number "38" (effects (font (size 1.27 1.27)))) 384 | ) 385 | (pin bidirectional line (at -2.54 -48.26 0) (length 2.54) 386 | (name "GND" (effects (font (size 1.27 1.27)))) 387 | (number "39" (effects (font (size 1.27 1.27)))) 388 | ) 389 | (pin bidirectional line (at 25.4 -43.18 180) (length 2.54) 390 | (name "PC15" (effects (font (size 1.27 1.27)))) 391 | (number "4" (effects (font (size 1.27 1.27)))) 392 | ) 393 | (pin bidirectional line (at -2.54 -50.8 0) (length 2.54) 394 | (name "3V3" (effects (font (size 1.27 1.27)))) 395 | (number "40" (effects (font (size 1.27 1.27)))) 396 | ) 397 | (pin bidirectional line (at 25.4 -40.64 180) (length 2.54) 398 | (name "NRST" (effects (font (size 1.27 1.27)))) 399 | (number "5" (effects (font (size 1.27 1.27)))) 400 | ) 401 | (pin bidirectional line (at 25.4 -38.1 180) (length 2.54) 402 | (name "PA0" (effects (font (size 1.27 1.27)))) 403 | (number "6" (effects (font (size 1.27 1.27)))) 404 | ) 405 | (pin bidirectional line (at 25.4 -35.56 180) (length 2.54) 406 | (name "PA1" (effects (font (size 1.27 1.27)))) 407 | (number "7" (effects (font (size 1.27 1.27)))) 408 | ) 409 | (pin bidirectional line (at 25.4 -33.02 180) (length 2.54) 410 | (name "PA2" (effects (font (size 1.27 1.27)))) 411 | (number "8" (effects (font (size 1.27 1.27)))) 412 | ) 413 | (pin bidirectional line (at 25.4 -30.48 180) (length 2.54) 414 | (name "PA3" (effects (font (size 1.27 1.27)))) 415 | (number "9" (effects (font (size 1.27 1.27)))) 416 | ) 417 | ) 418 | ) 419 | (symbol "TO220_replacement_module" (in_bom yes) (on_board yes) 420 | (property "Reference" "U" (id 0) (at -3.81 1.27 0) 421 | (effects (font (size 1.27 1.27))) 422 | ) 423 | (property "Value" "TO220_replacement_module" (id 1) (at 1.27 3.81 0) 424 | (effects (font (size 1.27 1.27))) 425 | ) 426 | (property "Footprint" "" (id 2) (at 0 0 0) 427 | (effects (font (size 1.27 1.27)) hide) 428 | ) 429 | (property "Datasheet" "" (id 3) (at 0 0 0) 430 | (effects (font (size 1.27 1.27)) hide) 431 | ) 432 | (symbol "TO220_replacement_module_0_1" 433 | (rectangle (start 0 0) (end 19.05 -12.7) 434 | (stroke (width 0) (type default) (color 0 0 0 0)) 435 | (fill (type background)) 436 | ) 437 | ) 438 | (symbol "TO220_replacement_module_1_1" 439 | (pin bidirectional line (at -2.54 -3.81 0) (length 2.54) 440 | (name "VIN" (effects (font (size 1.27 1.27)))) 441 | (number "1" (effects (font (size 1.27 1.27)))) 442 | ) 443 | (pin bidirectional line (at 6.35 -15.24 90) (length 2.54) 444 | (name "GND" (effects (font (size 1.27 1.27)))) 445 | (number "2" (effects (font (size 1.27 1.27)))) 446 | ) 447 | (pin bidirectional line (at 21.59 -3.81 180) (length 2.54) 448 | (name "VOUT" (effects (font (size 1.27 1.27)))) 449 | (number "3" (effects (font (size 1.27 1.27)))) 450 | ) 451 | ) 452 | ) 453 | ) 454 | -------------------------------------------------------------------------------- /Kicad_Project/MP2_DFN_Custom_parts.pretty/Blackpill_STM32F401CEU6.kicad_mod: -------------------------------------------------------------------------------- 1 | (footprint "Blackpill_STM32F401CEU6" (version 20211014) (generator pcbnew) 2 | (layer "F.Cu") 3 | (tedit 62855F78) 4 | (attr through_hole) 5 | (fp_text reference "REF**" (at 13.97 27.94 270 unlocked) (layer "F.SilkS") 6 | (effects (font (size 1 1) (thickness 0.15))) 7 | (tstamp 06834fca-71b2-4ac3-95b3-cb0563d85f78) 8 | ) 9 | (fp_text value "Blackpill_STM32F401CEU6" (at 10.16 24.13 270 unlocked) (layer "F.Fab") 10 | (effects (font (size 1 1) (thickness 0.15))) 11 | (tstamp 8d4f4814-b60a-48e1-b41d-beeb347cf229) 12 | ) 13 | (fp_text user "1" (at 21.336 50.8 unlocked) (layer "F.SilkS") 14 | (effects (font (size 1 1) (thickness 0.15))) 15 | (tstamp fc4733a3-c200-4f8e-9f63-f3b7c6201473) 16 | ) 17 | (fp_text user "${REFERENCE}" (at 13.97 15.24 270 unlocked) (layer "F.Fab") 18 | (effects (font (size 1 1) (thickness 0.15))) 19 | (tstamp 02ab9e83-b6ac-4ce5-9d19-df0ae2667345) 20 | ) 21 | (fp_rect (start 17.78 1.27) (end 20.32 52.07) (layer "F.SilkS") (width 0.12) (fill none) (tstamp 050c5cda-66b9-4037-847e-1cf26f1838cf)) 22 | (fp_rect (start 2.54 1.27) (end 5.08 3.81) (layer "F.SilkS") (width 0.12) (fill none) (tstamp 2d5b3e10-9b65-4abf-803e-969a546fc8e3)) 23 | (fp_rect (start 0 0) (end 22.86 53.34) (layer "F.SilkS") (width 0.12) (fill none) (tstamp 4f6c8b78-eb1c-4f0a-8689-6fa04cad4d25)) 24 | (fp_rect (start 2.54 1.27) (end 5.08 52.07) (layer "F.SilkS") (width 0.12) (fill none) (tstamp 79f4663e-6634-40d9-97a9-f02a99908fe7)) 25 | (fp_rect (start 17.78 1.27) (end 20.32 3.81) (layer "F.SilkS") (width 0.12) (fill none) (tstamp 9c614a92-4db0-4682-b200-e8121deaa926)) 26 | (pad "1" thru_hole circle (at 19.05 50.8) (size 1.524 1.524) (drill 0.914) (layers *.Cu *.Mask) (tstamp 4118ca42-cbf5-4007-8f00-3c853caebfae)) 27 | (pad "2" thru_hole circle (at 19.05 48.26) (size 1.524 1.524) (drill 0.914) (layers *.Cu *.Mask) (tstamp 5f30f18a-2eb5-4274-9d3d-af9601238118)) 28 | (pad "3" thru_hole circle (at 19.05 45.72) (size 1.524 1.524) (drill 0.914) (layers *.Cu *.Mask) (tstamp 55d86872-e23e-4870-a2e5-31f924442b2e)) 29 | (pad "4" thru_hole circle (at 19.05 43.18) (size 1.524 1.524) (drill 0.914) (layers *.Cu *.Mask) (tstamp 895c2a55-d35b-4bc4-9770-a708d43f72ca)) 30 | (pad "5" thru_hole circle (at 19.05 40.64) (size 1.524 1.524) (drill 0.914) (layers *.Cu *.Mask) (tstamp 6fecb7b3-ef3d-4da6-9d91-57f091c44310)) 31 | (pad "6" thru_hole circle (at 19.05 38.1) (size 1.524 1.524) (drill 0.914) (layers *.Cu *.Mask) (tstamp d768292d-7ad8-48cb-973b-82d3c96ed0e4)) 32 | (pad "7" thru_hole circle (at 19.05 35.56) (size 1.524 1.524) (drill 0.914) (layers *.Cu *.Mask) (tstamp 4730213f-fecd-4d57-8774-30198ac3be94)) 33 | (pad "8" thru_hole circle (at 19.05 33.02) (size 1.524 1.524) (drill 0.914) (layers *.Cu *.Mask) (tstamp 1eae0866-fb43-460e-ba70-4206816f3ae0)) 34 | (pad "9" thru_hole circle (at 19.05 30.48) (size 1.524 1.524) (drill 0.914) (layers *.Cu *.Mask) (tstamp 7a3ac884-8928-4c9e-9181-7992eedf5489)) 35 | (pad "10" thru_hole circle (at 19.05 27.94) (size 1.524 1.524) (drill 0.914) (layers *.Cu *.Mask) (tstamp b390641c-4c2a-4f3b-b7c8-19ffe7c5c0ec)) 36 | (pad "11" thru_hole circle (at 19.05 25.4) (size 1.524 1.524) (drill 0.914) (layers *.Cu *.Mask) (tstamp 7023e80b-5dcd-4c99-b211-bda07ca1e029)) 37 | (pad "12" thru_hole circle (at 19.05 22.86) (size 1.524 1.524) (drill 0.914) (layers *.Cu *.Mask) (tstamp 35eab331-86c6-4cb6-9184-78f5a185c17a)) 38 | (pad "13" thru_hole circle (at 19.05 20.32) (size 1.524 1.524) (drill 0.914) (layers *.Cu *.Mask) (tstamp ceeaa25e-5dd0-4b0b-abeb-d03824759358)) 39 | (pad "14" thru_hole circle (at 19.05 17.78) (size 1.524 1.524) (drill 0.914) (layers *.Cu *.Mask) (tstamp 44e4199d-9a44-4390-be79-46db6e1a8ab7)) 40 | (pad "15" thru_hole circle (at 19.05 15.24) (size 1.524 1.524) (drill 0.914) (layers *.Cu *.Mask) (tstamp a1dc82c7-483b-405f-bfaa-f81bfff53176)) 41 | (pad "16" thru_hole circle (at 19.05 12.7) (size 1.524 1.524) (drill 0.914) (layers *.Cu *.Mask) (tstamp 08808fe0-8321-40f0-87db-1dbf09a432da)) 42 | (pad "17" thru_hole circle (at 19.05 10.16) (size 1.524 1.524) (drill 0.914) (layers *.Cu *.Mask) (tstamp 689b9dac-7963-4ed8-bd29-1d769b381dc7)) 43 | (pad "18" thru_hole circle (at 19.05 7.62) (size 1.524 1.524) (drill 0.914) (layers *.Cu *.Mask) (tstamp af1b8d8a-af73-4164-abf7-747ac1cfdb1e)) 44 | (pad "19" thru_hole circle (at 19.05 5.08) (size 1.524 1.524) (drill 0.914) (layers *.Cu *.Mask) (tstamp 4600b549-e24e-4889-b3b7-e9ef9d4c6984)) 45 | (pad "20" thru_hole circle (at 19.05 2.54) (size 1.524 1.524) (drill 0.914) (layers *.Cu *.Mask) (tstamp bcc82edf-d3ff-47ec-b91e-82b6e866fdd7)) 46 | (pad "21" thru_hole circle (at 3.81 2.54) (size 1.524 1.524) (drill 0.914) (layers *.Cu *.Mask) (tstamp 86fed3de-6c75-486e-9228-38c55296cc6a)) 47 | (pad "22" thru_hole circle (at 3.81 5.08) (size 1.524 1.524) (drill 0.914) (layers *.Cu *.Mask) (tstamp 9a371df2-e129-41a2-a3b9-8b3756d89187)) 48 | (pad "23" thru_hole circle (at 3.81 7.62) (size 1.524 1.524) (drill 0.914) (layers *.Cu *.Mask) (tstamp bda8a30d-6033-42b7-853a-22600c7cfc23)) 49 | (pad "24" thru_hole circle (at 3.81 10.16) (size 1.524 1.524) (drill 0.914) (layers *.Cu *.Mask) (tstamp 964742c0-ee94-4927-91df-9434b273df16)) 50 | (pad "25" thru_hole circle (at 3.81 12.7) (size 1.524 1.524) (drill 0.914) (layers *.Cu *.Mask) (tstamp 945a9e1b-922c-4978-88f4-f5ae5b2dedbd)) 51 | (pad "26" thru_hole circle (at 3.81 15.24) (size 1.524 1.524) (drill 0.914) (layers *.Cu *.Mask) (tstamp cc3c5f12-550a-4280-aa78-14043a83d70d)) 52 | (pad "27" thru_hole circle (at 3.800007 17.756395) (size 1.524 1.524) (drill 0.914) (layers *.Cu *.Mask) (tstamp a59d5dac-7b86-4797-b51e-25d2651242a5)) 53 | (pad "28" thru_hole circle (at 3.81 20.32) (size 1.524 1.524) (drill 0.914) (layers *.Cu *.Mask) (tstamp 20ff2437-7714-47c8-8f0f-c35c92aed053)) 54 | (pad "29" thru_hole circle (at 3.81 22.86) (size 1.524 1.524) (drill 0.914) (layers *.Cu *.Mask) (tstamp 9b947aa1-ba9d-4a23-bc1a-15da5f7737a9)) 55 | (pad "30" thru_hole circle (at 3.81 25.4) (size 1.524 1.524) (drill 0.914) (layers *.Cu *.Mask) (tstamp 1fd2c422-69ae-40c0-b3b2-cb505077339f)) 56 | (pad "31" thru_hole circle (at 3.81 27.94) (size 1.524 1.524) (drill 0.914) (layers *.Cu *.Mask) (tstamp 793885b0-bfaa-4c5f-82aa-79183476bde6)) 57 | (pad "32" thru_hole circle (at 3.81 30.48) (size 1.524 1.524) (drill 0.914) (layers *.Cu *.Mask) (tstamp bab293be-84e7-44d3-8bb3-d23ed8a48dea)) 58 | (pad "33" thru_hole circle (at 3.81 33.02) (size 1.524 1.524) (drill 0.914) (layers *.Cu *.Mask) (tstamp 69b8d062-0946-466a-ab5e-1703755111a8)) 59 | (pad "34" thru_hole circle (at 3.81 35.56) (size 1.524 1.524) (drill 0.914) (layers *.Cu *.Mask) (tstamp 84a31ba5-ed36-4843-b612-7c06c39a7b75)) 60 | (pad "35" thru_hole circle (at 3.81 38.1) (size 1.524 1.524) (drill 0.914) (layers *.Cu *.Mask) (tstamp 971f6f2b-78bc-4de0-9bca-4a8b5b2e3953)) 61 | (pad "36" thru_hole circle (at 3.81 40.64) (size 1.524 1.524) (drill 0.914) (layers *.Cu *.Mask) (tstamp 2b9f2be9-94ac-4f24-8583-0445b8833796)) 62 | (pad "37" thru_hole circle (at 3.81 43.18) (size 1.524 1.524) (drill 0.914) (layers *.Cu *.Mask) (tstamp b747b346-728a-4375-a6c4-7daa541af23d)) 63 | (pad "38" thru_hole circle (at 3.81 45.72) (size 1.524 1.524) (drill 0.914) (layers *.Cu *.Mask) (tstamp 6f61b7f1-6f97-449d-9855-231f77064329)) 64 | (pad "39" thru_hole circle (at 3.81 48.26) (size 1.524 1.524) (drill 0.914) (layers *.Cu *.Mask) (tstamp b7fa7329-69d9-4543-b748-c2744eb82983)) 65 | (pad "40" thru_hole circle (at 3.81 50.8) (size 1.524 1.524) (drill 0.914) (layers *.Cu *.Mask) (tstamp b4c641b6-91f2-4abf-b7e4-ff0240c3f754)) 66 | ) 67 | -------------------------------------------------------------------------------- /Kicad_Project/MP2_DFN_Custom_parts.pretty/CAP_Polarized_SMD.kicad_mod: -------------------------------------------------------------------------------- 1 | (footprint "CAP_Polarized_SMD" (version 20211014) (generator pcbnew) 2 | (layer "F.Cu") 3 | (tedit 62C0D754) 4 | (attr smd) 5 | (fp_text reference "REF**" (at 16 2 unlocked) (layer "F.SilkS") 6 | (effects (font (size 1 1) (thickness 0.15))) 7 | (tstamp e5c9838f-50d4-4e91-b4f6-e3f1f694f4d5) 8 | ) 9 | (fp_text value "CAP_Polarized_SMD" (at 0 -5 unlocked) (layer "F.Fab") 10 | (effects (font (size 1 1) (thickness 0.15))) 11 | (tstamp 44db819b-1a24-43f0-8521-d8071b3535ac) 12 | ) 13 | (fp_text user "+" (at 5.5 10 unlocked) (layer "F.SilkS") 14 | (effects (font (size 3 3) (thickness 0.4))) 15 | (tstamp 551f0dd3-f84a-4a8f-87ec-c173990321d9) 16 | ) 17 | (fp_text user "-" (at 5.5 2.5 unlocked) (layer "F.SilkS") 18 | (effects (font (size 3 3) (thickness 0.4))) 19 | (tstamp 6c345c69-6f3e-4e97-9eee-1626ba330dd4) 20 | ) 21 | (fp_text user "${REFERENCE}" (at 16 10 unlocked) (layer "F.Fab") 22 | (effects (font (size 1 1) (thickness 0.15))) 23 | (tstamp 86d03769-91ef-4d72-a8d6-ea9988390db3) 24 | ) 25 | (fp_rect (start 4 -4) (end 32 12.5) (layer "F.SilkS") (width 0.12) (fill none) (tstamp 3c7a3a9f-7a53-4cae-9dc3-e62271858f7b)) 26 | (fp_rect (start -1 13) (end 32 -4.5) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp 05e3d6bd-8b38-4555-ac30-bba908ca1afb)) 27 | (pad "1" smd roundrect (at 2 10) (size 5 3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.1) (tstamp 92f88e1f-e9ed-4768-b8cb-e8a848edcecd)) 28 | (pad "2" smd roundrect (at 2 2.5) (size 5 3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.1) (tstamp c8074181-c1ed-4fba-b9ab-c4ff6bc80ce8)) 29 | ) 30 | -------------------------------------------------------------------------------- /Kicad_Project/MP2_DFN_Custom_parts.pretty/CAP_Polarized_SMD_simple.kicad_mod: -------------------------------------------------------------------------------- 1 | (footprint "CAP_Polarized_SMD_simple" (version 20211014) (generator pcbnew) 2 | (layer "F.Cu") 3 | (tedit 62C35D73) 4 | (attr smd) 5 | (fp_text reference "REF**" (at 16 2 unlocked) (layer "F.SilkS") 6 | (effects (font (size 1 1) (thickness 0.15))) 7 | (tstamp e5c9838f-50d4-4e91-b4f6-e3f1f694f4d5) 8 | ) 9 | (fp_text value "CAP_Polarized_SMD_simple" (at 0 -5 unlocked) (layer "F.Fab") 10 | (effects (font (size 1 1) (thickness 0.15))) 11 | (tstamp 44db819b-1a24-43f0-8521-d8071b3535ac) 12 | ) 13 | (fp_text user "+" (at -2 10 unlocked) (layer "F.SilkS") 14 | (effects (font (size 3 3) (thickness 0.4))) 15 | (tstamp 551f0dd3-f84a-4a8f-87ec-c173990321d9) 16 | ) 17 | (fp_text user "-" (at -2 2.5 unlocked) (layer "F.SilkS") 18 | (effects (font (size 3 3) (thickness 0.4))) 19 | (tstamp 6c345c69-6f3e-4e97-9eee-1626ba330dd4) 20 | ) 21 | (fp_text user "${REFERENCE}" (at 16 10 unlocked) (layer "F.Fab") 22 | (effects (font (size 1 1) (thickness 0.15))) 23 | (tstamp 86d03769-91ef-4d72-a8d6-ea9988390db3) 24 | ) 25 | (fp_rect (start 5 12.5) (end -27.5 -5) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp b1d84ceb-7bf1-48b4-b0d9-90810db45b99)) 26 | (pad "1" smd roundrect (at 2 10) (size 5 3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.1) (tstamp 92f88e1f-e9ed-4768-b8cb-e8a848edcecd)) 27 | (pad "2" smd roundrect (at 2 2.5) (size 5 3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.1) (tstamp c8074181-c1ed-4fba-b9ab-c4ff6bc80ce8)) 28 | ) 29 | -------------------------------------------------------------------------------- /Kicad_Project/MP2_DFN_Custom_parts.pretty/CAP_Polaryzed.kicad_mod: -------------------------------------------------------------------------------- 1 | (footprint "CAP_Polaryzed" (version 20221018) (generator pcbnew) 2 | (layer "F.Cu") 3 | (attr smd) 4 | (fp_text reference "REF**" (at 2.1 -2.25 unlocked) (layer "F.SilkS") 5 | (effects (font (size 1 1) (thickness 0.15))) 6 | (tstamp 1cb96178-079d-4f88-8a1f-cd0f3361006a) 7 | ) 8 | (fp_text value "CAP_Polaryzed" (at 0 -5.08 unlocked) (layer "F.Fab") 9 | (effects (font (size 1 1) (thickness 0.15))) 10 | (tstamp b6c3dd19-d098-433a-98b0-8d333e0c5cc4) 11 | ) 12 | (fp_text user "+" (at 4.4 11.8 unlocked) (layer "F.SilkS") 13 | (effects (font (size 3 3) (thickness 0.4))) 14 | (tstamp bc89d3d9-daaf-43d4-b9c2-3a70cec45f61) 15 | ) 16 | (fp_text user "-" (at 4.5 4.3 unlocked) (layer "F.SilkS") 17 | (effects (font (size 3 3) (thickness 0.4))) 18 | (tstamp bfb972cc-d7a2-4be4-b80c-d1ca5f107aac) 19 | ) 20 | (fp_text user "${REFERENCE}" (at 1.9 -0.65 unlocked) (layer "F.Fab") 21 | (effects (font (size 1 1) (thickness 0.15))) 22 | (tstamp aba1cfc8-e93d-4677-abbf-9c19f9a4c7b8) 23 | ) 24 | (fp_line (start 3 0) (end 3 16) 25 | (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 9872dccb-97b2-489e-853a-d1c72db29c37)) 26 | (fp_rect (start 0 14.3) (end 3 1.8) 27 | (stroke (width 0.05) (type solid)) (fill none) (layer "F.CrtYd") (tstamp 94811785-f9ca-48d6-b3ad-1d01c21eb288)) 28 | (pad "1" smd roundrect (at 1.5 11.8 90) (size 5 3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.1) (tstamp 928933a3-2971-40c6-96e7-161b401ffd58)) 29 | (pad "2" smd roundrect (at 1.5 4.3 90) (size 5 3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.1) (tstamp 716b4129-4a7e-4581-9fb1-badbf74172bf)) 30 | ) 31 | -------------------------------------------------------------------------------- /Kicad_Project/MP2_DFN_Custom_parts.pretty/PQDE6W.kicad_mod: -------------------------------------------------------------------------------- 1 | (footprint "PQDE6W" (version 20211014) (generator pcbnew) 2 | (layer "F.Cu") 3 | (tedit 628420AD) 4 | (attr through_hole) 5 | (fp_text reference "REF**" (at 12.446 10.946 unlocked) (layer "F.SilkS") 6 | (effects (font (size 1 1) (thickness 0.15))) 7 | (tstamp e02aa7f6-3311-45f9-a392-49d8927cbc6a) 8 | ) 9 | (fp_text value "PQDE6W" (at 12.446 12.446 unlocked) (layer "F.Fab") 10 | (effects (font (size 1 1) (thickness 0.15))) 11 | (tstamp 1e9dcbc0-ed04-41e3-9512-fbb37cd7d179) 12 | ) 13 | (fp_text user "Vin" (at 2.54 17.78 unlocked) (layer "F.SilkS") 14 | (effects (font (size 1 1) (thickness 0.15))) 15 | (tstamp 16fbbcc3-471d-4df7-bd39-383fab759fde) 16 | ) 17 | (fp_text user "GNDout" (at 21.59 5.08 unlocked) (layer "F.SilkS") 18 | (effects (font (size 1 1) (thickness 0.15))) 19 | (tstamp 3ae98a70-72b8-4d72-8f0c-ecef7b1ca6d6) 20 | ) 21 | (fp_text user "GNDin" (at 3.81 7.62 unlocked) (layer "F.SilkS") 22 | (effects (font (size 1 1) (thickness 0.15))) 23 | (tstamp 5d82a0b1-5c8e-42d0-8222-7c4b7e42e518) 24 | ) 25 | (fp_text user "Vout" (at 22.86 20.32 unlocked) (layer "F.SilkS") 26 | (effects (font (size 1 1) (thickness 0.15))) 27 | (tstamp f930fa91-6adf-4e04-b42b-e0932fc06543) 28 | ) 29 | (fp_text user "${REFERENCE}" (at 12.446 13.946 unlocked) (layer "F.Fab") 30 | (effects (font (size 1 1) (thickness 0.15))) 31 | (tstamp 29ba223f-0062-42d7-819b-390aa3bcacc3) 32 | ) 33 | (fp_rect (start 0 0) (end 25.4 25.4) (layer "F.SilkS") (width 0.12) (fill none) (tstamp d4bb1d66-04fd-4536-a2d7-b63f444dbb57)) 34 | (pad "1" thru_hole circle (at 2.54 15.24) (size 2.5 2.5) (drill 1.5) (layers *.Cu *.Mask) (tstamp 7f093f1d-323b-4b4e-b33a-3f6815b22768)) 35 | (pad "2" thru_hole circle (at 2.54 10.16) (size 2.5 2.5) (drill 1.5) (layers *.Cu *.Mask) (tstamp 73cb09ad-e380-49f3-bc9d-038b1104bc93)) 36 | (pad "3" thru_hole circle (at 22.86 2.54) (size 2.5 2.5) (drill 1.5) (layers *.Cu *.Mask) (tstamp bad86c5b-550c-459d-ae24-5ea963bd342c)) 37 | (pad "4" thru_hole circle (at 22.86 22.86) (size 2.5 2.5) (drill 1.5) (layers *.Cu *.Mask) (tstamp 5b77bfad-fdd5-4e7d-86ed-ad21fd1ee4e0)) 38 | ) 39 | -------------------------------------------------------------------------------- /Kicad_Project/MP2_DFN_Custom_parts.pretty/STM32F405_pill.kicad_mod: -------------------------------------------------------------------------------- 1 | (footprint "STM32F405_pill" (version 20221018) (generator pcbnew) 2 | (layer "F.Cu") 3 | (property "Sheetfile" "MP2_DFN.kicad_sch") 4 | (property "Sheetname" "") 5 | (property "exclude_from_bom" "") 6 | (attr through_hole exclude_from_pos_files exclude_from_bom) 7 | (fp_text reference "U5" (at 11.07826 2.471 -90 unlocked) (layer "F.SilkS") hide 8 | (effects (font (size 0.8 0.6) (thickness 0.12))) 9 | (tstamp dffa83cb-8c84-45f1-816a-2d2014576346) 10 | ) 11 | (fp_text value "STM32F405" (at 10.16 24.13 270 unlocked) (layer "F.Fab") 12 | (effects (font (size 1 1) (thickness 0.15))) 13 | (tstamp 45131af1-5b5d-4350-a555-8ee162a40f19) 14 | ) 15 | (fp_text user "1" (at 10.42826 46.821 unlocked) (layer "F.SilkS") hide 16 | (effects (font (size 1 1) (thickness 0.15))) 17 | (tstamp 27bd1673-f54c-44bd-a23d-ec35ad069e54) 18 | ) 19 | (fp_text user "${REFERENCE}" (at 13.97 15.24 -90 unlocked) (layer "F.Fab") 20 | (effects (font (size 0.8 0.6) (thickness 0.12))) 21 | (tstamp fb23d6ef-c6e5-4fbb-8adc-6e97e9e061f9) 22 | ) 23 | (fp_rect (start 0 0) (end 22.86 53.34) 24 | (stroke (width 0.12) (type solid)) (fill none) (layer "F.SilkS") (tstamp 4bc777cb-105a-4354-8d2d-2c6023d6834a)) 25 | (fp_rect (start 2.54 1.27) (end 5.08 3.81) 26 | (stroke (width 0.12) (type solid)) (fill none) (layer "F.SilkS") (tstamp 25e9a07b-3bfc-4f66-8231-44f52fc49456)) 27 | (fp_rect (start 2.54 1.27) (end 5.08 52.07) 28 | (stroke (width 0.12) (type solid)) (fill none) (layer "F.SilkS") (tstamp 90f55dbf-f953-4764-a3c1-f72b130dd9bf)) 29 | (fp_rect (start 17.78 1.27) (end 20.32 3.81) 30 | (stroke (width 0.12) (type solid)) (fill none) (layer "F.SilkS") (tstamp 4e939670-96ef-4efd-9268-4f77bea8a495)) 31 | (fp_rect (start 17.78 1.27) (end 20.32 52.07) 32 | (stroke (width 0.12) (type solid)) (fill none) (layer "F.SilkS") (tstamp be6e4c43-b043-4b40-b931-bcc2f4253f1f)) 33 | (pad "1" thru_hole circle (at 19.05 50.8) (size 1.524 1.524) (drill 0.914) (layers "*.Cu" "*.Mask") (tstamp 74c2a065-3772-4e7c-8d24-bd06d44431f5)) 34 | (pad "2" thru_hole circle (at 19.05 48.26) (size 1.524 1.524) (drill 0.914) (layers "*.Cu" "*.Mask") (tstamp b3e8be4b-9211-41a5-aabf-2c30d7185d9c)) 35 | (pad "3" thru_hole circle (at 19.05 45.72) (size 1.524 1.524) (drill 0.914) (layers "*.Cu" "*.Mask") (tstamp d2192e76-fcfc-43c5-9ac3-b98fe1440498)) 36 | (pad "4" thru_hole circle (at 19.05 43.18) (size 1.524 1.524) (drill 0.914) (layers "*.Cu" "*.Mask") (tstamp 4583a55f-f22b-42df-b9ed-e5d2a85f4203)) 37 | (pad "5" thru_hole circle (at 19.05 40.64) (size 1.524 1.524) (drill 0.914) (layers "*.Cu" "*.Mask") (tstamp b1142979-c34d-438d-ba0e-9a4155e85a02)) 38 | (pad "6" thru_hole circle (at 19.05 38.1) (size 1.524 1.524) (drill 0.914) (layers "*.Cu" "*.Mask") (tstamp 82fcf0d2-a915-4043-b898-9bc4acac97f5)) 39 | (pad "7" thru_hole circle (at 19.05 35.56) (size 1.524 1.524) (drill 0.914) (layers "*.Cu" "*.Mask") (tstamp a907ef67-fe8d-4103-937c-8b1de61c5fc6)) 40 | (pad "8" thru_hole circle (at 19.05 33.02) (size 1.524 1.524) (drill 0.914) (layers "*.Cu" "*.Mask") (tstamp ce1f8fe1-7a4e-46ba-91a9-87da9fd18854)) 41 | (pad "9" thru_hole circle (at 19.05 30.48) (size 1.524 1.524) (drill 0.914) (layers "*.Cu" "*.Mask") (tstamp a5c6a83b-350d-4df5-9eb1-f0f6e6466230)) 42 | (pad "10" thru_hole circle (at 19.05 27.94) (size 1.524 1.524) (drill 0.914) (layers "*.Cu" "*.Mask") (tstamp e5c8a444-c47f-474d-aaa5-1e1dc0ebc712)) 43 | (pad "11" thru_hole circle (at 19.05 25.4) (size 1.524 1.524) (drill 0.914) (layers "*.Cu" "*.Mask") (tstamp ba706a59-d0b0-49c4-8360-180d99d66c0d)) 44 | (pad "12" thru_hole circle (at 19.05 22.86) (size 1.524 1.524) (drill 0.914) (layers "*.Cu" "*.Mask") (tstamp 84495b10-1b33-45c4-9c1a-3b5c47a6cc22)) 45 | (pad "13" thru_hole circle (at 19.05 20.32) (size 1.524 1.524) (drill 0.914) (layers "*.Cu" "*.Mask") (tstamp 1c0607ae-6805-46ea-a9aa-2724103357bd)) 46 | (pad "14" thru_hole circle (at 19.05 17.78) (size 1.524 1.524) (drill 0.914) (layers "*.Cu" "*.Mask") (tstamp ba67fac8-ac3a-48bc-8f39-cd4dab3ae3a0)) 47 | (pad "15" thru_hole circle (at 19.05 15.24) (size 1.524 1.524) (drill 0.914) (layers "*.Cu" "*.Mask") (tstamp e01d7f1a-02f5-45d8-9f77-5af34f80fe77)) 48 | (pad "16" thru_hole circle (at 19.05 12.7) (size 1.524 1.524) (drill 0.914) (layers "*.Cu" "*.Mask") (tstamp 82d69bcb-39f3-4e1e-8cfa-8268f5832d98)) 49 | (pad "17" thru_hole circle (at 19.05 10.16) (size 1.524 1.524) (drill 0.914) (layers "*.Cu" "*.Mask") (tstamp 5948dbe1-8202-4883-8a8c-f9933d459094)) 50 | (pad "18" thru_hole circle (at 19.05 7.62) (size 1.524 1.524) (drill 0.914) (layers "*.Cu" "*.Mask") (tstamp d9c154ea-9387-45f6-a4a0-8cda5c11a094)) 51 | (pad "19" thru_hole circle (at 19.05 5.08) (size 1.524 1.524) (drill 0.914) (layers "*.Cu" "*.Mask") (tstamp 5fa20aea-59c7-4846-912a-ed2b102751ac)) 52 | (pad "20" thru_hole circle (at 19.05 2.54) (size 1.524 1.524) (drill 0.914) (layers "*.Cu" "*.Mask") (tstamp 5f2bc360-f677-48fd-af6c-3f6c4d66e091)) 53 | (pad "21" thru_hole circle (at 3.81 2.54) (size 1.524 1.524) (drill 0.914) (layers "*.Cu" "*.Mask") (tstamp 1ccb4c11-32d2-4e9d-9b35-0fba05d03304)) 54 | (pad "22" thru_hole circle (at 3.81 5.08) (size 1.524 1.524) (drill 0.914) (layers "*.Cu" "*.Mask") (tstamp c3e6111b-3f21-4783-87bd-0e6396f8af12)) 55 | (pad "23" thru_hole circle (at 3.81 7.62) (size 1.524 1.524) (drill 0.914) (layers "*.Cu" "*.Mask") (tstamp f2587d63-657a-4801-8297-81c877bc6baa)) 56 | (pad "24" thru_hole circle (at 3.81 10.16) (size 1.524 1.524) (drill 0.914) (layers "*.Cu" "*.Mask") (tstamp ef9ffab3-d789-49fe-974a-e754baf1954b)) 57 | (pad "25" thru_hole circle (at 3.81 12.7) (size 1.524 1.524) (drill 0.914) (layers "*.Cu" "*.Mask") (tstamp 27a873bb-5ad4-471b-bc7c-ffe1ef2309a3)) 58 | (pad "26" thru_hole circle (at 3.81 15.24) (size 1.524 1.524) (drill 0.914) (layers "*.Cu" "*.Mask") (tstamp 1504ba96-6213-4e2a-ae7c-1f778f4e0159)) 59 | (pad "27" thru_hole circle (at 3.800007 17.756395) (size 1.524 1.524) (drill 0.914) (layers "*.Cu" "*.Mask") (tstamp 1dc1e212-2a67-4199-a870-cf5b9d27bf9e)) 60 | (pad "28" thru_hole circle (at 3.81 20.32) (size 1.524 1.524) (drill 0.914) (layers "*.Cu" "*.Mask") (tstamp 8f168b4b-457e-4ebf-8b64-29ace67bdc40)) 61 | (pad "29" thru_hole circle (at 3.81 22.86) (size 1.524 1.524) (drill 0.914) (layers "*.Cu" "*.Mask") (tstamp b864b701-e904-4c80-832f-8da14d1a64d8)) 62 | (pad "30" thru_hole circle (at 3.81 25.4) (size 1.524 1.524) (drill 0.914) (layers "*.Cu" "*.Mask") (tstamp 42b2eeb3-ab19-4d0f-91c0-19422cdc247c)) 63 | (pad "31" thru_hole circle (at 3.81 27.94) (size 1.524 1.524) (drill 0.914) (layers "*.Cu" "*.Mask") (tstamp 08c9230b-58a0-488f-a7e0-b55a42052796)) 64 | (pad "32" thru_hole circle (at 3.81 30.48) (size 1.524 1.524) (drill 0.914) (layers "*.Cu" "*.Mask") (tstamp 9ae8c0e6-1118-47bb-8a3f-e7888a5d31a8)) 65 | (pad "33" thru_hole circle (at 3.81 33.02) (size 1.524 1.524) (drill 0.914) (layers "*.Cu" "*.Mask") (tstamp cfd37599-9dc9-48a7-9fdb-1d721a472633)) 66 | (pad "34" thru_hole circle (at 3.81 35.56) (size 1.524 1.524) (drill 0.914) (layers "*.Cu" "*.Mask") (tstamp 6cdd6394-c0b1-47c7-9860-1d824ac3127e)) 67 | (pad "35" thru_hole circle (at 3.81 38.1) (size 1.524 1.524) (drill 0.914) (layers "*.Cu" "*.Mask") (tstamp a76a16f9-6c5f-4e17-92e2-7f62ab060891)) 68 | (pad "36" thru_hole circle (at 3.81 40.64) (size 1.524 1.524) (drill 0.914) (layers "*.Cu" "*.Mask") (tstamp 1a783a6e-f830-44e0-b5db-7ed8aa32e314)) 69 | (pad "37" thru_hole circle (at 3.81 43.18) (size 1.524 1.524) (drill 0.914) (layers "*.Cu" "*.Mask") (tstamp b9c6c725-e974-4ae4-b5d7-5b42532cd50b)) 70 | (pad "38" thru_hole circle (at 3.81 45.72) (size 1.524 1.524) (drill 0.914) (layers "*.Cu" "*.Mask") (tstamp e2c9fc21-b9be-41ac-a5d0-19a08856e316)) 71 | (pad "39" thru_hole circle (at 3.81 48.26) (size 1.524 1.524) (drill 0.914) (layers "*.Cu" "*.Mask") (tstamp 3ae49708-781d-401e-9c66-0ac81cfdc998)) 72 | (pad "40" thru_hole circle (at 3.81 50.8) (size 1.524 1.524) (drill 0.914) (layers "*.Cu" "*.Mask") (tstamp eba24925-4c4f-4e67-9af6-bc74eea8a37e)) 73 | ) 74 | -------------------------------------------------------------------------------- /Kicad_Project/MP2_DFN_Custom_parts.pretty/Shunt_2512_6332Metric.kicad_mod: -------------------------------------------------------------------------------- 1 | (footprint "Shunt_2512_6332Metric" (version 20211014) (generator pcbnew) 2 | (layer "F.Cu") 3 | (tedit 63165FC7) 4 | (attr smd) 5 | (fp_text reference "REF**" (at 0 -2.7 unlocked) (layer "F.SilkS") 6 | (effects (font (size 1 1) (thickness 0.15))) 7 | (tstamp e0d067c4-3683-4f5c-9f8a-c6f68279209c) 8 | ) 9 | (fp_text value "Shunt_2512_6332Metric" (at 0 4.5 unlocked) (layer "F.Fab") 10 | (effects (font (size 1 1) (thickness 0.15))) 11 | (tstamp 1a7667da-3ff5-4f44-b792-e8b3e50fce30) 12 | ) 13 | (fp_text user "${REFERENCE}" (at 0 6.5 unlocked) (layer "F.Fab") 14 | (effects (font (size 1 1) (thickness 0.15))) 15 | (tstamp 3b8976fc-44cc-4997-975b-3f307f5f0cf6) 16 | ) 17 | (fp_line (start -2.177064 1.69) (end 2.177064 1.69) (layer "F.SilkS") (width 0.12) (tstamp a51f6d0e-de46-4c3e-bb92-8cc37da27525)) 18 | (fp_line (start -2.177064 -1.73) (end 2.177064 -1.73) (layer "F.SilkS") (width 0.12) (tstamp b250802b-7905-47dc-ad65-7d3e23a84245)) 19 | (fp_line (start 3.82 -1.94) (end 3.82 1.9) (layer "F.CrtYd") (width 0.05) (tstamp 36df24dc-bae3-4781-8cdc-802858ee6c50)) 20 | (fp_line (start -3.82 1.9) (end -3.82 -1.94) (layer "F.CrtYd") (width 0.05) (tstamp a49bf15b-5132-4599-9ef0-cd59c9fd5040)) 21 | (fp_line (start 3.82 1.9) (end -3.82 1.9) (layer "F.CrtYd") (width 0.05) (tstamp b7a1da4f-c21a-4ea3-b860-230fe220476d)) 22 | (fp_line (start -3.82 -1.94) (end 3.82 -1.94) (layer "F.CrtYd") (width 0.05) (tstamp c7cc65ad-80ea-42d9-9ec9-ef6f9b46909f)) 23 | (fp_line (start -3.15 1.58) (end -3.15 -1.62) (layer "F.Fab") (width 0.1) (tstamp 3b264de9-4d0c-42ed-9138-3c9dabee3696)) 24 | (fp_line (start 3.15 1.58) (end -3.15 1.58) (layer "F.Fab") (width 0.1) (tstamp 5ee51c1e-c321-4c95-ab5b-0dc29fa29c66)) 25 | (fp_line (start -3.15 -1.62) (end 3.15 -1.62) (layer "F.Fab") (width 0.1) (tstamp 80d4a494-9f57-4905-849d-a2d0c159dbb7)) 26 | (fp_line (start 3.15 -1.62) (end 3.15 1.58) (layer "F.Fab") (width 0.1) (tstamp c25100fe-e887-4e3f-a69e-8133986a6387)) 27 | (pad "1" smd roundrect (at -2.2875 -0.02) (size 2.575 3.35) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.05) (tstamp 81823c20-cf6c-462c-a3a9-705189bd06f4)) 28 | (pad "2" smd roundrect (at 2.2875 -0.02) (size 2.575 3.35) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.05) (tstamp 09975d3f-d943-4180-89ec-5a015692688d)) 29 | ) 30 | -------------------------------------------------------------------------------- /Kicad_Project/MP2_DFN_Custom_parts.pretty/TO220_horizontal_smallgate.kicad_mod: -------------------------------------------------------------------------------- 1 | (footprint "TO220_horizontal_smallgate" (version 20221018) (generator pcbnew) 2 | (layer "F.Cu") 3 | (attr through_hole) 4 | (fp_text reference "REF**" (at 2 -1.95 unlocked) (layer "F.SilkS") 5 | (effects (font (size 1 1) (thickness 0.15))) 6 | (tstamp d691d570-61f0-4282-94c8-8a1feeda9894) 7 | ) 8 | (fp_text value "TO220_horizontal_smallgate" (at 5.95 -3.65 unlocked) (layer "F.Fab") 9 | (effects (font (size 1 1) (thickness 0.15))) 10 | (tstamp 30d70c5a-00fb-448c-a229-4d4990d186b2) 11 | ) 12 | (fp_text user "${REFERENCE}" (at 2.15 20.95 unlocked) (layer "F.Fab") 13 | (effects (font (size 1 1) (thickness 0.15))) 14 | (tstamp 5e5bcb08-b14e-4d83-97de-1f7dcdb8912a) 15 | ) 16 | (fp_line (start -2.58 3.69) (end -2.58 13.18) 17 | (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 7ecdd65d-6ba6-4230-9ee9-5b6b59caf93a)) 18 | (fp_line (start -2.58 3.69) (end 7.66 3.69) 19 | (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ff7d88f7-31e2-4752-bc36-d0bd728ef304)) 20 | (fp_line (start -2.58 13.18) (end 7.66 13.18) 21 | (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 86f58d75-a97d-4c7b-be59-432bd9ef49e3)) 22 | (fp_line (start -2.58 13.42) (end -2.58 14.62) 23 | (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c0feaff3-36ba-4118-a354-7571f36782d9)) 24 | (fp_line (start -2.58 15.82) (end -2.58 17.02) 25 | (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp cc0654b1-0df3-45a9-84b6-bef5ed97de2d)) 26 | (fp_line (start -2.58 18.22) (end -2.58 19.42) 27 | (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 48bbf0b5-21c6-451d-945b-c9de4ab0704d)) 28 | (fp_line (start -2.58 19.58) (end -1.38 19.58) 29 | (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 874ff93e-9ec5-48d6-85c1-393930874ce6)) 30 | (fp_line (start -0.181 19.58) (end 1.02 19.58) 31 | (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 61d700ee-227f-4ca6-bda1-440f8554fe43)) 32 | (fp_line (start 0 0.85) (end 0 3.69) 33 | (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 12176097-49fb-4b3e-9ec5-fc29130b8e89)) 34 | (fp_line (start 2.22 19.58) (end 3.42 19.58) 35 | (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f94c0bea-2420-4ff2-9631-4f7226ba3210)) 36 | (fp_line (start 2.54 1.1) (end 2.54 3.69) 37 | (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 474728e1-b4b0-4ba0-9c19-f4bc58f6d7d3)) 38 | (fp_line (start 4.62 19.58) (end 5.82 19.58) 39 | (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b29686f5-a833-467c-8172-401584e2223e)) 40 | (fp_line (start 5.08 1.1) (end 5.08 3.69) 41 | (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 84b2c9b2-39bb-4579-92b1-8a083f1efb89)) 42 | (fp_line (start 7.02 19.58) (end 7.66 19.58) 43 | (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 147bfc15-b18e-4c96-bd89-6ecae82f3745)) 44 | (fp_line (start 7.66 3.69) (end 7.66 13.18) 45 | (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c08a438b-9637-4b85-99f2-862a7795a7fa)) 46 | (fp_line (start 7.66 13.42) (end 7.66 14.62) 47 | (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 06ef0a69-d382-4dd6-b213-fc1ff2832ec1)) 48 | (fp_line (start 7.66 15.82) (end 7.66 17.02) 49 | (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp dcf35860-c48b-44f4-bcfa-731a8dc7e286)) 50 | (fp_line (start 7.66 18.22) (end 7.66 19.42) 51 | (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 19fbf6db-5df4-40a6-a400-441cd195485b)) 52 | (fp_line (start -2.71 -1.25) (end -2.71 19.71) 53 | (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp e93dc6fa-ef57-43d9-bbc2-785b67264d0e)) 54 | (fp_line (start -2.71 19.71) (end 7.79 19.71) 55 | (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp c0a195a5-5f5c-45ae-a793-3e35dc886fbd)) 56 | (fp_line (start 7.79 -1.25) (end -2.71 -1.25) 57 | (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp a6f334f5-5d48-4010-8adb-39fc2f38ed25)) 58 | (fp_line (start 7.79 19.71) (end 7.79 -1.25) 59 | (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp f66d233d-b8d9-4099-a587-fd28be5fc7d7)) 60 | (fp_line (start -2.46 3.81) (end -2.46 13.06) 61 | (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp cdee4ac4-12b0-43d0-b0fa-a4e24f77fe78)) 62 | (fp_line (start -2.46 13.06) (end -2.46 19.46) 63 | (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 4b10f547-6c45-4de6-b9b9-1352d027ba89)) 64 | (fp_line (start -2.46 13.06) (end 7.54 13.06) 65 | (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 2b546293-df36-4008-ac7b-ffc8f094873f)) 66 | (fp_line (start -2.46 19.46) (end 7.54 19.46) 67 | (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f112124d-d902-4c73-ac75-fed6887a2f24)) 68 | (fp_line (start 0 3.81) (end 0 0) 69 | (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 3c29a4b1-4fb7-4326-9869-3824d0652873)) 70 | (fp_line (start 2.54 3.81) (end 2.54 0) 71 | (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp ee4513c4-bcb6-4533-bab0-b0dc41bb6be7)) 72 | (fp_line (start 5.08 3.81) (end 5.08 0) 73 | (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 742dec7f-66f3-46d2-93a6-8be009f1b367)) 74 | (fp_line (start 7.54 3.81) (end -2.46 3.81) 75 | (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 2ad98d0c-bebb-4fd0-8c8a-593b1b46a883)) 76 | (fp_line (start 7.54 13.06) (end -2.46 13.06) 77 | (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 98c66237-f3d5-4e97-891e-29dfcb028524)) 78 | (fp_line (start 7.54 13.06) (end 7.54 3.81) 79 | (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 47b90c06-348a-4bd3-a034-46faf670ee02)) 80 | (fp_line (start 7.54 19.46) (end 7.54 13.06) 81 | (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp e6e7c064-43a4-4fc2-b714-caedbc267adc)) 82 | (fp_circle (center 2.54 16.66) (end 4.39 16.66) 83 | (stroke (width 0.1) (type solid)) (fill none) (layer "F.Fab") (tstamp 876d3327-26df-4df5-9bd5-8e8912d0c327)) 84 | (pad "" np_thru_hole oval (at 2.54 16.66) (size 3.5 3.5) (drill 3.5) (layers "*.Cu" "*.Mask") (tstamp fb66f124-df1c-4381-af0d-f9c9df318679)) 85 | (pad "1" thru_hole circle (at 0 0) (size 1.5 1.5) (drill 1.1) (layers "*.Cu" "*.Mask") (tstamp e3841e4d-47ed-4862-87c2-72237d4d52c5)) 86 | (pad "2" thru_hole oval (at 2.54 0) (size 1.905 2) (drill 1.1) (layers "*.Cu" "*.Mask") (remove_unused_layers) (keep_end_layers) (tstamp 1814aa49-2885-4c9d-9d88-bfd5689e2aae)) 87 | (pad "3" thru_hole oval (at 5.08 0) (size 1.905 2) (drill 1.1) (layers "*.Cu" "*.Mask") (remove_unused_layers) (keep_end_layers) (tstamp d3f5e3e4-35de-4be1-9c2b-3d2337dbcd3c)) 88 | ) 89 | -------------------------------------------------------------------------------- /Kicad_Project/MP2_DFN_Custom_parts.pretty/TO220_replacement_module.kicad_mod: -------------------------------------------------------------------------------- 1 | (footprint "TO220_replacement_module" (version 20211014) (generator pcbnew) 2 | (layer "F.Cu") 3 | (tedit 628179B9) 4 | (attr through_hole) 5 | (fp_text reference "REF**" (at 5.08 -7.62 unlocked) (layer "F.SilkS") 6 | (effects (font (size 1 1) (thickness 0.15))) 7 | (tstamp 9112ddd5-10d5-48b8-954f-f1d5adcacbd9) 8 | ) 9 | (fp_text value "TO220_replacement_module" (at 10.16 -5.08 unlocked) (layer "F.Fab") 10 | (effects (font (size 1 1) (thickness 0.15))) 11 | (tstamp 1876c30c-72b2-4a8d-9f32-bf8b213530b4) 12 | ) 13 | (fp_text user "GND" (at 5.09 0.94 unlocked) (layer "F.SilkS") 14 | (effects (font (size 1 1) (thickness 0.15))) 15 | (tstamp 0a5610bb-d01a-4417-8271-dc424dd2c838) 16 | ) 17 | (fp_text user "Vout" (at 8.43 0.92 unlocked) (layer "F.SilkS") 18 | (effects (font (size 1 1) (thickness 0.15))) 19 | (tstamp 4d2fd49e-2cb2-44d4-8935-68488970d97b) 20 | ) 21 | (fp_text user "Vin" (at 2.28 0.93 unlocked) (layer "F.SilkS") 22 | (effects (font (size 1 1) (thickness 0.15))) 23 | (tstamp 8b963561-586b-4575-b721-87e7914602c6) 24 | ) 25 | (fp_text user "${REFERENCE}" (at 5.08 -2.54 unlocked) (layer "F.Fab") 26 | (effects (font (size 1 1) (thickness 0.15))) 27 | (tstamp 099473f1-6598-46ff-a50f-4c520832170d) 28 | ) 29 | (fp_line (start -1.76 0.1) (end 10.66 0.1) (layer "F.SilkS") (width 0.12) (tstamp 83d85a81-e014-4ee9-9433-a9a045c80893)) 30 | (fp_rect (start -0.254 0) (end 10.668 5.08) (layer "F.SilkS") (width 0.12) (fill none) (tstamp 46491a9d-8b3d-4c74-b09a-70c876f162e5)) 31 | (fp_rect (start -1.778 0) (end -0.254 5.08) (layer "F.SilkS") (width 0.12) (fill none) (tstamp f2392fe0-54af-4e02-8793-9ba2471944b5)) 32 | (pad "1" thru_hole circle (at 2.54 2.54) (size 2 2) (drill 1.1) (layers *.Cu *.Mask) (tstamp 4346fe55-f906-453a-b81a-1c013104a598)) 33 | (pad "2" thru_hole circle (at 5.08 2.54) (size 2 2) (drill 1.1) (layers *.Cu *.Mask) (tstamp 56d2bc5d-fd72-4542-ab0f-053a5fd60efa)) 34 | (pad "3" thru_hole circle (at 7.62 2.54) (size 2 2) (drill 1.1) (layers *.Cu *.Mask) (tstamp 0fb27e11-fde6-4a25-adbb-e9684771b369)) 35 | ) 36 | -------------------------------------------------------------------------------- /Kicad_Project/MP2_DFN_Custom_parts.pretty/custom_NVMTSC4D3N15MC.kicad_mod: -------------------------------------------------------------------------------- 1 | (footprint "custom_NVMTSC4D3N15MC" (version 20221018) (generator pcbnew) 2 | (layer "F.Cu") 3 | (descr "NVMTSC4D3N15MC-3") 4 | (tags "MOSFET (N-Channel)") 5 | (property "LCSC" "C3280341") 6 | (property "MFR PT" "NVMTSC4D3N15MC") 7 | (property "Sheetfile" "CCC_ESC.kicad_sch") 8 | (property "Sheetname" "") 9 | (attr smd) 10 | (fp_text reference "QC4" (at 0.4689 0.2075) (layer "F.SilkS") hide 11 | (effects (font (size 1.27 1.27) (thickness 0.254))) 12 | (tstamp 4bba4ac3-ba5c-46c8-9157-98c2b8050e7b) 13 | ) 14 | (fp_text value "NVMTSC4D3N15MC" (at 0 -6) (layer "F.SilkS") hide 15 | (effects (font (size 1.27 1.27) (thickness 0.254))) 16 | (tstamp a6185c55-2f56-4ef8-96e2-0c5fceff7e4d) 17 | ) 18 | (fp_text user "gge178" (at 0 1.74) (layer "Cmts.User") hide 19 | (effects (font (size 1 1) (thickness 0.15))) 20 | (tstamp 30c48f55-3b9c-48fa-82b5-fe57f907889f) 21 | ) 22 | (fp_text user "${REFERENCE}" (at -0.25 6.25) (layer "F.Fab") hide 23 | (effects (font (size 1.27 1.27) (thickness 0.254))) 24 | (tstamp 06f14921-edba-43f7-be24-f0bfe5c83c6c) 25 | ) 26 | (fp_line (start -4.05 4.7) (end -4.05 4.7) 27 | (stroke (width 0.1) (type solid)) (layer "F.SilkS") (tstamp 1d351bb7-85a8-419f-9568-61852fdf553f)) 28 | (fp_line (start -4.05 4.8) (end -4.05 4.8) 29 | (stroke (width 0.1) (type solid)) (layer "F.SilkS") (tstamp 3f3fbed8-ad50-4d02-a0e7-0c083e973f00)) 30 | (fp_arc (start -4.05 4.7) (mid -4 4.75) (end -4.05 4.8) 31 | (stroke (width 0.1) (type solid)) (layer "F.SilkS") (tstamp c97bc7e1-43be-4832-917b-23f8f72370b9)) 32 | (fp_arc (start -4.05 4.8) (mid -4.1 4.75) (end -4.05 4.7) 33 | (stroke (width 0.1) (type solid)) (layer "F.SilkS") (tstamp f0225f74-d79a-4b6e-95ae-254df9b815c7)) 34 | (fp_line (start -4.25 -5) (end 4.25 -5) 35 | (stroke (width 0.1) (type solid)) (layer "F.CrtYd") (tstamp 44c79737-c324-499e-9f54-9e2cffaafcac)) 36 | (fp_line (start -4.25 5) (end -4.25 -5) 37 | (stroke (width 0.1) (type solid)) (layer "F.CrtYd") (tstamp 97330ccd-d858-48b6-a915-57f1b757cf02)) 38 | (fp_line (start 4.25 -5) (end 4.25 5) 39 | (stroke (width 0.1) (type solid)) (layer "F.CrtYd") (tstamp 89473313-6639-4338-a0fb-674da749b2a9)) 40 | (fp_line (start 4.25 5) (end -4.25 5) 41 | (stroke (width 0.1) (type solid)) (layer "F.CrtYd") (tstamp a7cfa241-33d0-4a83-a862-17fa7be061d6)) 42 | (fp_line (start -4 3.95) (end -4 -3.95) 43 | (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 7e24c587-a341-4362-8ca7-0cc08826cef0)) 44 | (fp_line (start 4 -3.95) (end 4 3.95) 45 | (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c4d17d45-a8b6-449d-b4a7-95b053473ad4)) 46 | (fp_line (start 4 3.95) (end -4 3.95) 47 | (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a2e6b924-237e-4322-89b4-b3e9eeb69512)) 48 | (pad "1" smd rect (at -3 4.07) (size 1.25 1.28) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 69fe1130-563a-4eda-a4b9-35cc004bbedb)) 49 | (pad "2" thru_hole circle (at -3 -4) (size 0.8 0.8) (drill 0.4) (layers "*.Cu" "*.Mask") (remove_unused_layers) (keep_end_layers) 50 | (clearance 0.3) (tstamp 0a6e85e9-e6bc-42ec-95e2-425ccb597baa)) 51 | (pad "2" thru_hole circle (at -3 -2.25) (size 0.8 0.8) (drill 0.4) (layers "*.Cu" "*.Mask") (remove_unused_layers) (keep_end_layers) 52 | (clearance 0.3) (tstamp 8a6658c8-8229-476f-b521-c5438160c030)) 53 | (pad "2" thru_hole circle (at -3 -0.5) (size 0.8 0.8) (drill 0.4) (layers "*.Cu" "*.Mask") (remove_unused_layers) (keep_end_layers) 54 | (clearance 0.3) (tstamp 6c490598-ab7e-43a5-898c-aeb1456f70a3)) 55 | (pad "2" thru_hole circle (at -3 1.25) (size 0.8 0.8) (drill 0.4) (layers "*.Cu" "*.Mask") (remove_unused_layers) (keep_end_layers) 56 | (clearance 0.3) (tstamp b8199730-1d3b-4d02-9da9-7659f8513dc7)) 57 | (pad "2" thru_hole circle (at -1 -4) (size 0.8 0.8) (drill 0.4) (layers "*.Cu" "*.Mask") (remove_unused_layers) (keep_end_layers) 58 | (clearance 0.3) (tstamp 2bedf428-71ff-414b-8fc0-f992bf52eeaa)) 59 | (pad "2" thru_hole circle (at -1 -2.25) (size 0.8 0.8) (drill 0.4) (layers "*.Cu" "*.Mask") (remove_unused_layers) (keep_end_layers) 60 | (clearance 0.3) (tstamp d0a88484-4c0b-4e1d-b4ec-5cfb383fc709)) 61 | (pad "2" thru_hole circle (at -1 -0.5) (size 0.8 0.8) (drill 0.4) (layers "*.Cu" "*.Mask") (remove_unused_layers) (keep_end_layers) 62 | (clearance 0.3) (tstamp 1566b6f9-e559-4c35-bc11-81c31a58ebce)) 63 | (pad "2" thru_hole circle (at -1 1.25) (size 0.8 0.8) (drill 0.4) (layers "*.Cu" "*.Mask") (remove_unused_layers) (keep_end_layers) 64 | (clearance 0.3) (tstamp 369a519d-df09-4d12-8812-883d4eab6c53)) 65 | (pad "2" smd custom (at 0 -0.81 90) (size 5.5 7) (layers "F.Cu" "F.Paste" "F.Mask") 66 | (thermal_bridge_angle 45) 67 | (options (clearance outline) (anchor rect)) 68 | (primitives 69 | (gr_poly 70 | (pts 71 | (xy -2.75 -3.5) 72 | (xy 2.66 -3.5005) 73 | (xy 2.66 -3.6255) 74 | (xy 3.9 -3.625) 75 | (xy 3.9 -2.375) 76 | (xy 2.75 -2.375) 77 | (xy 2.75 -1.625) 78 | (xy 3.9 -1.625) 79 | (xy 3.9 -0.375) 80 | (xy 2.75 -0.375) 81 | (xy 2.75 0.375) 82 | (xy 3.9 0.375) 83 | (xy 3.9 1.625) 84 | (xy 2.75 1.625) 85 | (xy 2.75 2.375) 86 | (xy 3.9 2.375) 87 | (xy 3.9 3.625) 88 | (xy 2.66 3.6255) 89 | (xy 2.66 3.5005) 90 | (xy -2.75 3.5) 91 | ) 92 | (width 0.2) (fill yes)) 93 | ) (tstamp f06fa2f7-7eb8-4b08-b545-5776760d8eed)) 94 | (pad "2" thru_hole circle (at 1 -4) (size 0.8 0.8) (drill 0.4) (layers "*.Cu" "*.Mask") (remove_unused_layers) (keep_end_layers) 95 | (clearance 0.3) (tstamp 9cd2abc4-037c-485e-86d0-6e739a7fd118)) 96 | (pad "2" thru_hole circle (at 1 -2.25) (size 0.8 0.8) (drill 0.4) (layers "*.Cu" "*.Mask") (remove_unused_layers) (keep_end_layers) 97 | (clearance 0.3) (tstamp 1bb63665-a30c-4ba2-bda8-9e5354b84283)) 98 | (pad "2" thru_hole circle (at 1 -0.5) (size 0.8 0.8) (drill 0.4) (layers "*.Cu" "*.Mask") (remove_unused_layers) (keep_end_layers) 99 | (clearance 0.3) (tstamp 0827d65a-98f3-4a8f-8217-db03f38cffef)) 100 | (pad "2" thru_hole circle (at 1 1.25) (size 0.8 0.8) (drill 0.4) (layers "*.Cu" "*.Mask") (remove_unused_layers) (keep_end_layers) 101 | (clearance 0.3) (tstamp e1c0ea89-3803-420e-bc0e-26542d534912)) 102 | (pad "2" thru_hole circle (at 3 -4) (size 0.8 0.8) (drill 0.4) (layers "*.Cu" "*.Mask") (remove_unused_layers) (keep_end_layers) 103 | (clearance 0.3) (tstamp 3ddbccd3-3016-41db-b584-d0863602192a)) 104 | (pad "2" thru_hole circle (at 3 -2.25) (size 0.8 0.8) (drill 0.4) (layers "*.Cu" "*.Mask") (remove_unused_layers) (keep_end_layers) 105 | (clearance 0.3) (tstamp ecdfecf1-5240-45a9-9c78-f6efbf4f600c)) 106 | (pad "2" thru_hole circle (at 3 -0.5) (size 0.8 0.8) (drill 0.4) (layers "*.Cu" "*.Mask") (remove_unused_layers) (keep_end_layers) 107 | (clearance 0.3) (tstamp a9aad62a-5821-4d72-9cbe-508c256357f6)) 108 | (pad "2" thru_hole circle (at 3 1.25) (size 0.8 0.8) (drill 0.4) (layers "*.Cu" "*.Mask") (remove_unused_layers) (keep_end_layers) 109 | (clearance 0.3) (tstamp 9429ee16-7b5e-4464-9511-7d64d16f6482)) 110 | (pad "3" smd rect (at -1 4.07) (size 1.25 1.28) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 883d6302-f144-4e92-82bb-be5eb464cf58)) 111 | (pad "3" smd rect (at 1 4.07) (size 1.25 1.28) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp dc3f45c6-775a-4698-b353-9ff7ac32cb7a)) 112 | (pad "3" smd rect (at 3 4.07) (size 1.25 1.28) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp e21d4c91-945b-4e76-aed1-2c6fb9c1f2ed)) 113 | (model "NVMTSC4D3N15MC.stp" 114 | (offset (xyz 0 0 0)) 115 | (scale (xyz 1 1 1)) 116 | (rotate (xyz 0 0 0)) 117 | ) 118 | ) 119 | -------------------------------------------------------------------------------- /Kicad_Project/NVMTSC4D3N15MC/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owhite/MP2-DFN/8d143acf6759c34189a9e880233410b96623ab0f/Kicad_Project/NVMTSC4D3N15MC/.DS_Store -------------------------------------------------------------------------------- /Kicad_Project/NVMTSC4D3N15MC/NVMTSC4D3N15MC.dcm: -------------------------------------------------------------------------------- 1 | EESchema-DOCLIB Version 2.0 2 | # 3 | $CMP NVMTSC4D3N15MC 4 | D MOSFET PTNG 150V IN CEBU DFNW 8X8 DUAL COOL FOR AUTOMOTIVE 5 | K 6 | F https://www.onsemi.com/pdf/datasheet/nvmtsc4d3n15mc-d.pdf 7 | $ENDCMP 8 | # 9 | #End Doc Library 10 | -------------------------------------------------------------------------------- /Kicad_Project/NVMTSC4D3N15MC/NVMTSC4D3N15MC.kicad_mod: -------------------------------------------------------------------------------- 1 | (footprint "NVMTSC4D3N15MC" (version 20221018) (generator pcbnew) 2 | (layer "F.Cu") 3 | (descr "NVMTSC4D3N15MC-3") 4 | (tags "MOSFET (N-Channel)") 5 | (property "Sheetfile" "CCC_ESC.kicad_sch") 6 | (property "Sheetname" "") 7 | (attr smd) 8 | (fp_text reference "QB3" (at 0 0) (layer "F.SilkS") 9 | (effects (font (size 1.27 1.27) (thickness 0.254))) 10 | (tstamp 06716590-18c3-4179-9d7c-06f9b98b3119) 11 | ) 12 | (fp_text value "NVMTSC4D3N15MC" (at 0 0) (layer "F.SilkS") hide 13 | (effects (font (size 1.27 1.27) (thickness 0.254))) 14 | (tstamp fc1884b8-7da7-42f7-bcab-0466eddee126) 15 | ) 16 | (fp_text user "gge178" (at 0 1.74) (layer "Cmts.User") hide 17 | (effects (font (size 1 1) (thickness 0.15))) 18 | (tstamp 7d12debc-4fd0-4518-8ade-75678e6c8be0) 19 | ) 20 | (fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab") hide 21 | (effects (font (size 1.27 1.27) (thickness 0.254))) 22 | (tstamp d46df8f2-ccce-4689-9092-764d30e8c423) 23 | ) 24 | (fp_line (start -4.05 4.7) (end -4.05 4.7) 25 | (stroke (width 0.1) (type solid)) (layer "F.SilkS") (tstamp c7a0c848-95a3-421d-9b58-47b4e04ecee5)) 26 | (fp_line (start -4.05 4.8) (end -4.05 4.8) 27 | (stroke (width 0.1) (type solid)) (layer "F.SilkS") (tstamp 6e21da2a-e9c8-4ed7-8d16-6da573393523)) 28 | (fp_arc (start -4.05 4.7) (mid -4 4.75) (end -4.05 4.8) 29 | (stroke (width 0.1) (type solid)) (layer "F.SilkS") (tstamp c3880052-08fc-4c06-8e55-06dd7e0c7cab)) 30 | (fp_arc (start -4.05 4.8) (mid -4.1 4.75) (end -4.05 4.7) 31 | (stroke (width 0.1) (type solid)) (layer "F.SilkS") (tstamp 7950d603-992c-4fe1-8f83-bb8fd2ae58e3)) 32 | (fp_line (start -4.25 -5) (end 4.25 -5) 33 | (stroke (width 0.1) (type solid)) (layer "F.CrtYd") (tstamp c8e204b8-b9c2-4eb5-8445-02d1099e5484)) 34 | (fp_line (start -4.25 5) (end -4.25 -5) 35 | (stroke (width 0.1) (type solid)) (layer "F.CrtYd") (tstamp d279678b-c538-4206-9f9c-adfb2f6e084f)) 36 | (fp_line (start 4.25 -5) (end 4.25 5) 37 | (stroke (width 0.1) (type solid)) (layer "F.CrtYd") (tstamp ab65daa5-5270-49ce-aa0e-fb4eaca92bb6)) 38 | (fp_line (start 4.25 5) (end -4.25 5) 39 | (stroke (width 0.1) (type solid)) (layer "F.CrtYd") (tstamp bfaae93c-e749-4674-a450-8f1f3d0ba643)) 40 | (fp_line (start -4 -3.95) (end 4 -3.95) 41 | (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 48c81db5-8a94-4698-9d8a-d208f9de4c15)) 42 | (fp_line (start -4 3.95) (end -4 -3.95) 43 | (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 6708729c-5be6-407d-9367-41c96169fb76)) 44 | (fp_line (start 4 -3.95) (end 4 3.95) 45 | (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 89b7fb50-26b1-4299-a6d3-05b0a59203e9)) 46 | (fp_line (start 4 3.95) (end -4 3.95) 47 | (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d67811f0-e475-459a-9b8e-affd79aa091e)) 48 | (pad "1" smd rect (at -3 4.07) (size 1.25 1.28) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp b7e7dcd7-b8a1-4803-89dd-0474f684df8d)) 49 | (pad "2" smd rect (at -3 -4.135 90) (size 1.15 1.25) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp b2823a53-32e2-44f6-969f-50f789006bb0)) 50 | (pad "2" smd rect (at -1 -4.135 90) (size 1.15 1.25) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 42422a6d-4da3-4dc7-8350-6f9369506fff)) 51 | (pad "2" smd rect (at 0 -0.81 90) (size 5.5 7) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp ef659553-b9c2-409b-a961-8c65eb9881a1)) 52 | (pad "2" smd rect (at 1 -4.135 90) (size 1.15 1.25) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 88f2d61c-d9dd-4637-ba96-52bd5cc3b1ac)) 53 | (pad "2" smd rect (at 3 -4.135 90) (size 1.15 1.25) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 73df9011-3e2d-4e80-b150-456d7e88bcb0)) 54 | (pad "3" smd rect (at -1 4.07) (size 1.25 1.28) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 62a8f1d6-f910-4109-805d-6d868e705486)) 55 | (pad "3" smd rect (at 1 4.07) (size 1.25 1.28) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 73e44b92-659a-46dc-b6e9-a66f09f3b1bb)) 56 | (pad "3" smd rect (at 3 4.07) (size 1.25 1.28) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 808ff427-5e09-494f-86bc-0e4cc49216cd)) 57 | (pad "10" smd rect (at -3.563 -3.47) (size 0.125 0.18) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 414549d3-6b2d-4400-8a6d-eec12c9c2166)) 58 | (pad "11" smd rect (at 3.563 -3.47) (size 0.125 0.18) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 37a3bf33-1ea9-4d24-af9b-5cfbb999f79c)) 59 | (model "NVMTSC4D3N15MC.stp" 60 | (offset (xyz 0 0 0)) 61 | (scale (xyz 1 1 1)) 62 | (rotate (xyz 0 0 0)) 63 | ) 64 | ) 65 | -------------------------------------------------------------------------------- /Kicad_Project/NVMTSC4D3N15MC/NVMTSC4D3N15MC.kicad_sym: -------------------------------------------------------------------------------- 1 | (kicad_symbol_lib (version 20211014) (generator SamacSys_ECAD_Model) 2 | (symbol "NVMTSC4D3N15MC" (in_bom yes) (on_board yes) 3 | (property "Reference" "Q" (at 21.59 7.62 0) 4 | (effects (font (size 1.27 1.27)) (justify left top)) 5 | ) 6 | (property "Value" "NVMTSC4D3N15MC" (at 21.59 5.08 0) 7 | (effects (font (size 1.27 1.27)) (justify left top)) 8 | ) 9 | (property "Footprint" "NVMTSC4D3N15MC" (at 21.59 -94.92 0) 10 | (effects (font (size 1.27 1.27)) (justify left top) hide) 11 | ) 12 | (property "Datasheet" "https://www.onsemi.com/pdf/datasheet/nvmtsc4d3n15mc-d.pdf" (at 21.59 -194.92 0) 13 | (effects (font (size 1.27 1.27)) (justify left top) hide) 14 | ) 15 | (property "ki_description" "MOSFET PTNG 150V IN CEBU DFNW 8X8 DUAL COOL FOR AUTOMOTIVE" (at 21.59 -294.92 0) 16 | (effects (font (size 1.27 1.27)) (justify left top) hide) 17 | ) 18 | (property "Height" "1.02" (at 21.59 -394.92 0) 19 | (effects (font (size 1.27 1.27)) (justify left top) hide) 20 | ) 21 | (property "Mouser Part Number" "863-NVMTSC4D3N15MC" (at 21.59 -494.92 0) 22 | (effects (font (size 1.27 1.27)) (justify left top) hide) 23 | ) 24 | (property "Mouser Price/Stock" "https://www.mouser.co.uk/ProductDetail/onsemi/NVMTSC4D3N15MC?qs=stqOd1AaK7%252BZYtznn58cMQ%3D%3D" (at 21.59 -594.92 0) 25 | (effects (font (size 1.27 1.27)) (justify left top) hide) 26 | ) 27 | (property "Manufacturer_Name" "onsemi" (at 21.59 -694.92 0) 28 | (effects (font (size 1.27 1.27)) (justify left top) hide) 29 | ) 30 | (property "Manufacturer_Part_Number" "NVMTSC4D3N15MC" (at 21.59 -794.92 0) 31 | (effects (font (size 1.27 1.27)) (justify left top) hide) 32 | ) 33 | (rectangle 34 | (start 5.08 2.54) 35 | (end 20.32 -15.24) 36 | (stroke (width 0.254) (type default)) 37 | (fill (type background)) 38 | ) 39 | (pin passive line (at 0 0 0) (length 5.08) 40 | (name "G" (effects (font (size 1.27 1.27)))) 41 | (number "1" (effects (font (size 1.27 1.27)))) 42 | ) 43 | (pin passive line (at 0 -2.54 0) (length 5.08) 44 | (name "S_1" (effects (font (size 1.27 1.27)))) 45 | (number "2" (effects (font (size 1.27 1.27)))) 46 | ) 47 | (pin passive line (at 0 -5.08 0) (length 5.08) 48 | (name "S_2" (effects (font (size 1.27 1.27)))) 49 | (number "3" (effects (font (size 1.27 1.27)))) 50 | ) 51 | (pin passive line (at 0 -7.62 0) (length 5.08) 52 | (name "S_3" (effects (font (size 1.27 1.27)))) 53 | (number "4" (effects (font (size 1.27 1.27)))) 54 | ) 55 | (pin passive line (at 0 -10.16 0) (length 5.08) 56 | (name "D_1" (effects (font (size 1.27 1.27)))) 57 | (number "5" (effects (font (size 1.27 1.27)))) 58 | ) 59 | (pin passive line (at 0 -12.7 0) (length 5.08) 60 | (name "D_2" (effects (font (size 1.27 1.27)))) 61 | (number "6" (effects (font (size 1.27 1.27)))) 62 | ) 63 | (pin passive line (at 25.4 0 180) (length 5.08) 64 | (name "D_3" (effects (font (size 1.27 1.27)))) 65 | (number "7" (effects (font (size 1.27 1.27)))) 66 | ) 67 | (pin passive line (at 25.4 -2.54 180) (length 5.08) 68 | (name "D_4" (effects (font (size 1.27 1.27)))) 69 | (number "8" (effects (font (size 1.27 1.27)))) 70 | ) 71 | (pin passive line (at 25.4 -5.08 180) (length 5.08) 72 | (name "D_5" (effects (font (size 1.27 1.27)))) 73 | (number "9" (effects (font (size 1.27 1.27)))) 74 | ) 75 | (pin passive line (at 25.4 -7.62 180) (length 5.08) 76 | (name "D_6" (effects (font (size 1.27 1.27)))) 77 | (number "10" (effects (font (size 1.27 1.27)))) 78 | ) 79 | (pin passive line (at 25.4 -10.16 180) (length 5.08) 80 | (name "D_7" (effects (font (size 1.27 1.27)))) 81 | (number "11" (effects (font (size 1.27 1.27)))) 82 | ) 83 | ) 84 | ) 85 | -------------------------------------------------------------------------------- /Kicad_Project/NVMTSC4D3N15MC/NVMTSC4D3N15MC.lib: -------------------------------------------------------------------------------- 1 | EESchema-LIBRARY Version 2.3 2 | #encoding utf-8 3 | #SamacSys ECAD Model NVMTSC4D3N15MC 4 | #/15423049/248325/2.50/11/3/MOSFET (N-Channel) 5 | DEF NVMTSC4D3N15MC Q 0 30 Y Y 1 F N 6 | F0 "Q" 850 300 50 H V L CNN 7 | F1 "NVMTSC4D3N15MC" 850 200 50 H V L CNN 8 | F2 "NVMTSC4D3N15MC" 850 100 50 H I L CNN 9 | F3 "https://www.onsemi.com/pdf/datasheet/nvmtsc4d3n15mc-d.pdf" 850 0 50 H I L CNN 10 | F4 "MOSFET PTNG 150V IN CEBU DFNW 8X8 DUAL COOL FOR AUTOMOTIVE" 850 -100 50 H I L CNN "Description" 11 | F5 "1.02" 850 -200 50 H I L CNN "Height" 12 | F6 "863-NVMTSC4D3N15MC" 850 -300 50 H I L CNN "Mouser Part Number" 13 | F7 "https://www.mouser.co.uk/ProductDetail/onsemi/NVMTSC4D3N15MC?qs=stqOd1AaK7%252BZYtznn58cMQ%3D%3D" 850 -400 50 H I L CNN "Mouser Price/Stock" 14 | F8 "onsemi" 850 -500 50 H I L CNN "Manufacturer_Name" 15 | F9 "NVMTSC4D3N15MC" 850 -600 50 H I L CNN "Manufacturer_Part_Number" 16 | DRAW 17 | X G 1 0 0 200 R 50 50 0 0 P 18 | X S_1 2 0 -100 200 R 50 50 0 0 P 19 | X S_2 3 0 -200 200 R 50 50 0 0 P 20 | X S_3 4 0 -300 200 R 50 50 0 0 P 21 | X D_1 5 0 -400 200 R 50 50 0 0 P 22 | X D_2 6 0 -500 200 R 50 50 0 0 P 23 | X D_3 7 1000 0 200 L 50 50 0 0 P 24 | X D_4 8 1000 -100 200 L 50 50 0 0 P 25 | X D_5 9 1000 -200 200 L 50 50 0 0 P 26 | X D_6 10 1000 -300 200 L 50 50 0 0 P 27 | X D_7 11 1000 -400 200 L 50 50 0 0 P 28 | P 5 0 1 6 200 100 800 100 800 -600 200 -600 200 100 N 29 | ENDDRAW 30 | ENDDEF 31 | # 32 | #End Library 33 | -------------------------------------------------------------------------------- /Kicad_Project/NVMTSC4D3N15MC/NVMTSC4D3N15MC.mod: -------------------------------------------------------------------------------- 1 | PCBNEW-LibModule-V1 2023-08-23 20:18:11 2 | # encoding utf-8 3 | Units mm 4 | $INDEX 5 | NVMTSC4D3N15MC 6 | $EndINDEX 7 | $MODULE NVMTSC4D3N15MC 8 | Po 0 0 0 15 64e65b73 00000000 ~~ 9 | Li NVMTSC4D3N15MC 10 | Cd NVMTSC4D3N15MC-3 11 | Kw MOSFET (N-Channel) 12 | Sc 0 13 | At SMD 14 | AR 15 | Op 0 0 0 16 | T0 0.000 -0 1.27 1.27 0 0.254 N V 21 N "Q**" 17 | T1 0.000 -0 1.27 1.27 0 0.254 N I 21 N "NVMTSC4D3N15MC" 18 | DS -4 -3.95 4 -3.95 0.1 24 19 | DS 4 -3.95 4 3.95 0.1 24 20 | DS 4 3.95 -4 3.95 0.1 24 21 | DS -4 3.95 -4 -3.95 0.1 24 22 | DS -5 -5.71 5 -5.71 0.1 24 23 | DS 5 -5.71 5 5.71 0.1 24 24 | DS 5 5.71 -5 5.71 0.1 24 25 | DS -5 5.71 -5 -5.71 0.1 24 26 | DS -3 5.1 -3 5.1 0.1 21 27 | DS -3 5.2 -3 5.2 0.1 21 28 | DA -3 5.15 -3.000 5.1 -1800 0.1 21 29 | DA -3 5.15 -3.000 5.2 -1800 0.1 21 30 | $PAD 31 | Po -3.000 4.07 32 | Sh "1" R 1.250 1.280 0 0 0 33 | At SMD N 00888000 34 | Ne 0 "" 35 | $EndPAD 36 | $PAD 37 | Po -1.000 4.07 38 | Sh "2" R 1.250 1.280 0 0 0 39 | At SMD N 00888000 40 | Ne 0 "" 41 | $EndPAD 42 | $PAD 43 | Po 1.000 4.07 44 | Sh "3" R 1.250 1.280 0 0 0 45 | At SMD N 00888000 46 | Ne 0 "" 47 | $EndPAD 48 | $PAD 49 | Po 3.000 4.07 50 | Sh "4" R 1.250 1.280 0 0 0 51 | At SMD N 00888000 52 | Ne 0 "" 53 | $EndPAD 54 | $PAD 55 | Po 3.000 -4.135 56 | Sh "5" R 1.150 1.250 0 0 900 57 | At SMD N 00888000 58 | Ne 0 "" 59 | $EndPAD 60 | $PAD 61 | Po 1.000 -4.135 62 | Sh "6" R 1.150 1.250 0 0 900 63 | At SMD N 00888000 64 | Ne 0 "" 65 | $EndPAD 66 | $PAD 67 | Po -1.000 -4.135 68 | Sh "7" R 1.150 1.250 0 0 900 69 | At SMD N 00888000 70 | Ne 0 "" 71 | $EndPAD 72 | $PAD 73 | Po -3.000 -4.135 74 | Sh "8" R 1.150 1.250 0 0 900 75 | At SMD N 00888000 76 | Ne 0 "" 77 | $EndPAD 78 | $PAD 79 | Po 0.000 -0.81 80 | Sh "9" R 5.500 7.000 0 0 900 81 | At SMD N 00888000 82 | Ne 0 "" 83 | $EndPAD 84 | $PAD 85 | Po -3.563 -3.47 86 | Sh "10" R 0.125 0.180 0 0 0 87 | At SMD N 00888000 88 | Ne 0 "" 89 | $EndPAD 90 | $PAD 91 | Po 3.563 -3.47 92 | Sh "11" R 0.125 0.180 0 0 0 93 | At SMD N 00888000 94 | Ne 0 "" 95 | $EndPAD 96 | $EndMODULE NVMTSC4D3N15MC 97 | $EndLIBRARY 98 | -------------------------------------------------------------------------------- /Kicad_Project/NVMTSC4D3N15MC/custom_NVMTSC4D3N15MC.kicad_mod: -------------------------------------------------------------------------------- 1 | (footprint "custom_NVMTSC4D3N15MC" (version 20221018) (generator pcbnew) 2 | (layer "F.Cu") 3 | (descr "NVMTSC4D3N15MC-3") 4 | (tags "MOSFET (N-Channel)") 5 | (property "LCSC" "C3280341") 6 | (property "MFR PT" "NVMTSC4D3N15MC") 7 | (property "Sheetfile" "CCC_ESC.kicad_sch") 8 | (property "Sheetname" "") 9 | (attr smd) 10 | (fp_text reference "QC4" (at 0.4689 0.2075) (layer "F.SilkS") hide 11 | (effects (font (size 1.27 1.27) (thickness 0.254))) 12 | (tstamp 4bba4ac3-ba5c-46c8-9157-98c2b8050e7b) 13 | ) 14 | (fp_text value "NVMTSC4D3N15MC" (at 0 -6) (layer "F.SilkS") hide 15 | (effects (font (size 1.27 1.27) (thickness 0.254))) 16 | (tstamp a6185c55-2f56-4ef8-96e2-0c5fceff7e4d) 17 | ) 18 | (fp_text user "gge178" (at 0 1.74) (layer "Cmts.User") hide 19 | (effects (font (size 1 1) (thickness 0.15))) 20 | (tstamp 30c48f55-3b9c-48fa-82b5-fe57f907889f) 21 | ) 22 | (fp_text user "${REFERENCE}" (at -0.25 6.25) (layer "F.Fab") hide 23 | (effects (font (size 1.27 1.27) (thickness 0.254))) 24 | (tstamp 06f14921-edba-43f7-be24-f0bfe5c83c6c) 25 | ) 26 | (fp_line (start -4.05 4.7) (end -4.05 4.7) 27 | (stroke (width 0.1) (type solid)) (layer "F.SilkS") (tstamp 1d351bb7-85a8-419f-9568-61852fdf553f)) 28 | (fp_line (start -4.05 4.8) (end -4.05 4.8) 29 | (stroke (width 0.1) (type solid)) (layer "F.SilkS") (tstamp 3f3fbed8-ad50-4d02-a0e7-0c083e973f00)) 30 | (fp_arc (start -4.05 4.7) (mid -4 4.75) (end -4.05 4.8) 31 | (stroke (width 0.1) (type solid)) (layer "F.SilkS") (tstamp c97bc7e1-43be-4832-917b-23f8f72370b9)) 32 | (fp_arc (start -4.05 4.8) (mid -4.1 4.75) (end -4.05 4.7) 33 | (stroke (width 0.1) (type solid)) (layer "F.SilkS") (tstamp f0225f74-d79a-4b6e-95ae-254df9b815c7)) 34 | (fp_line (start -4.25 -5) (end 4.25 -5) 35 | (stroke (width 0.1) (type solid)) (layer "F.CrtYd") (tstamp 44c79737-c324-499e-9f54-9e2cffaafcac)) 36 | (fp_line (start -4.25 5) (end -4.25 -5) 37 | (stroke (width 0.1) (type solid)) (layer "F.CrtYd") (tstamp 97330ccd-d858-48b6-a915-57f1b757cf02)) 38 | (fp_line (start 4.25 -5) (end 4.25 5) 39 | (stroke (width 0.1) (type solid)) (layer "F.CrtYd") (tstamp 89473313-6639-4338-a0fb-674da749b2a9)) 40 | (fp_line (start 4.25 5) (end -4.25 5) 41 | (stroke (width 0.1) (type solid)) (layer "F.CrtYd") (tstamp a7cfa241-33d0-4a83-a862-17fa7be061d6)) 42 | (fp_line (start -4 3.95) (end -4 -3.95) 43 | (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 7e24c587-a341-4362-8ca7-0cc08826cef0)) 44 | (fp_line (start 4 -3.95) (end 4 3.95) 45 | (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c4d17d45-a8b6-449d-b4a7-95b053473ad4)) 46 | (fp_line (start 4 3.95) (end -4 3.95) 47 | (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a2e6b924-237e-4322-89b4-b3e9eeb69512)) 48 | (pad "1" smd rect (at -3 4.07) (size 1.25 1.28) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 69fe1130-563a-4eda-a4b9-35cc004bbedb)) 49 | (pad "2" thru_hole circle (at -3 -4) (size 0.8 0.8) (drill 0.4) (layers "*.Cu" "*.Mask") (remove_unused_layers) (keep_end_layers) 50 | (clearance 0.3) (tstamp 0a6e85e9-e6bc-42ec-95e2-425ccb597baa)) 51 | (pad "2" thru_hole circle (at -3 -2.25) (size 0.8 0.8) (drill 0.4) (layers "*.Cu" "*.Mask") (remove_unused_layers) (keep_end_layers) 52 | (clearance 0.3) (tstamp 8a6658c8-8229-476f-b521-c5438160c030)) 53 | (pad "2" thru_hole circle (at -3 -0.5) (size 0.8 0.8) (drill 0.4) (layers "*.Cu" "*.Mask") (remove_unused_layers) (keep_end_layers) 54 | (clearance 0.3) (tstamp 6c490598-ab7e-43a5-898c-aeb1456f70a3)) 55 | (pad "2" thru_hole circle (at -3 1.25) (size 0.8 0.8) (drill 0.4) (layers "*.Cu" "*.Mask") (remove_unused_layers) (keep_end_layers) 56 | (clearance 0.3) (tstamp b8199730-1d3b-4d02-9da9-7659f8513dc7)) 57 | (pad "2" thru_hole circle (at -1 -4) (size 0.8 0.8) (drill 0.4) (layers "*.Cu" "*.Mask") (remove_unused_layers) (keep_end_layers) 58 | (clearance 0.3) (tstamp 2bedf428-71ff-414b-8fc0-f992bf52eeaa)) 59 | (pad "2" thru_hole circle (at -1 -2.25) (size 0.8 0.8) (drill 0.4) (layers "*.Cu" "*.Mask") (remove_unused_layers) (keep_end_layers) 60 | (clearance 0.3) (tstamp d0a88484-4c0b-4e1d-b4ec-5cfb383fc709)) 61 | (pad "2" thru_hole circle (at -1 -0.5) (size 0.8 0.8) (drill 0.4) (layers "*.Cu" "*.Mask") (remove_unused_layers) (keep_end_layers) 62 | (clearance 0.3) (tstamp 1566b6f9-e559-4c35-bc11-81c31a58ebce)) 63 | (pad "2" thru_hole circle (at -1 1.25) (size 0.8 0.8) (drill 0.4) (layers "*.Cu" "*.Mask") (remove_unused_layers) (keep_end_layers) 64 | (clearance 0.3) (tstamp 369a519d-df09-4d12-8812-883d4eab6c53)) 65 | (pad "2" smd custom (at 0 -0.81 90) (size 5.5 7) (layers "F.Cu" "F.Paste" "F.Mask") 66 | (thermal_bridge_angle 45) 67 | (options (clearance outline) (anchor rect)) 68 | (primitives 69 | (gr_poly 70 | (pts 71 | (xy -2.75 -3.5) 72 | (xy 2.66 -3.5005) 73 | (xy 2.66 -3.6255) 74 | (xy 3.9 -3.625) 75 | (xy 3.9 -2.375) 76 | (xy 2.75 -2.375) 77 | (xy 2.75 -1.625) 78 | (xy 3.9 -1.625) 79 | (xy 3.9 -0.375) 80 | (xy 2.75 -0.375) 81 | (xy 2.75 0.375) 82 | (xy 3.9 0.375) 83 | (xy 3.9 1.625) 84 | (xy 2.75 1.625) 85 | (xy 2.75 2.375) 86 | (xy 3.9 2.375) 87 | (xy 3.9 3.625) 88 | (xy 2.66 3.6255) 89 | (xy 2.66 3.5005) 90 | (xy -2.75 3.5) 91 | ) 92 | (width 0.2) (fill yes)) 93 | ) (tstamp f06fa2f7-7eb8-4b08-b545-5776760d8eed)) 94 | (pad "2" thru_hole circle (at 1 -4) (size 0.8 0.8) (drill 0.4) (layers "*.Cu" "*.Mask") (remove_unused_layers) (keep_end_layers) 95 | (clearance 0.3) (tstamp 9cd2abc4-037c-485e-86d0-6e739a7fd118)) 96 | (pad "2" thru_hole circle (at 1 -2.25) (size 0.8 0.8) (drill 0.4) (layers "*.Cu" "*.Mask") (remove_unused_layers) (keep_end_layers) 97 | (clearance 0.3) (tstamp 1bb63665-a30c-4ba2-bda8-9e5354b84283)) 98 | (pad "2" thru_hole circle (at 1 -0.5) (size 0.8 0.8) (drill 0.4) (layers "*.Cu" "*.Mask") (remove_unused_layers) (keep_end_layers) 99 | (clearance 0.3) (tstamp 0827d65a-98f3-4a8f-8217-db03f38cffef)) 100 | (pad "2" thru_hole circle (at 1 1.25) (size 0.8 0.8) (drill 0.4) (layers "*.Cu" "*.Mask") (remove_unused_layers) (keep_end_layers) 101 | (clearance 0.3) (tstamp e1c0ea89-3803-420e-bc0e-26542d534912)) 102 | (pad "2" thru_hole circle (at 3 -4) (size 0.8 0.8) (drill 0.4) (layers "*.Cu" "*.Mask") (remove_unused_layers) (keep_end_layers) 103 | (clearance 0.3) (tstamp 3ddbccd3-3016-41db-b584-d0863602192a)) 104 | (pad "2" thru_hole circle (at 3 -2.25) (size 0.8 0.8) (drill 0.4) (layers "*.Cu" "*.Mask") (remove_unused_layers) (keep_end_layers) 105 | (clearance 0.3) (tstamp ecdfecf1-5240-45a9-9c78-f6efbf4f600c)) 106 | (pad "2" thru_hole circle (at 3 -0.5) (size 0.8 0.8) (drill 0.4) (layers "*.Cu" "*.Mask") (remove_unused_layers) (keep_end_layers) 107 | (clearance 0.3) (tstamp a9aad62a-5821-4d72-9cbe-508c256357f6)) 108 | (pad "2" thru_hole circle (at 3 1.25) (size 0.8 0.8) (drill 0.4) (layers "*.Cu" "*.Mask") (remove_unused_layers) (keep_end_layers) 109 | (clearance 0.3) (tstamp 9429ee16-7b5e-4464-9511-7d64d16f6482)) 110 | (pad "3" smd rect (at -1 4.07) (size 1.25 1.28) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 883d6302-f144-4e92-82bb-be5eb464cf58)) 111 | (pad "3" smd rect (at 1 4.07) (size 1.25 1.28) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp dc3f45c6-775a-4698-b353-9ff7ac32cb7a)) 112 | (pad "3" smd rect (at 3 4.07) (size 1.25 1.28) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp e21d4c91-945b-4e76-aed1-2c6fb9c1f2ed)) 113 | (model "NVMTSC4D3N15MC.stp" 114 | (offset (xyz 0 0 0)) 115 | (scale (xyz 1 1 1)) 116 | (rotate (xyz 0 0 0)) 117 | ) 118 | ) 119 | -------------------------------------------------------------------------------- /Kicad_Project/bom2grouped_csv_jlcpcb.xsl: -------------------------------------------------------------------------------- 1 | 16 | 30 | 31 | 32 | 34 | ]> 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | Comment,Designator,Footprint,LCSC 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | &nl; 60 | ""," 61 | 62 | 63 | 64 | 65 | 66 | , 67 | 68 | "," 69 | 70 | "," 71 | " 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | ," 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 98 | 99 | 100 | " 101 | 102 | 103 | 104 | 105 | -------------------------------------------------------------------------------- /Kicad_Project/production/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owhite/MP2-DFN/8d143acf6759c34189a9e880233410b96623ab0f/Kicad_Project/production/.DS_Store -------------------------------------------------------------------------------- /Kicad_Project/production/MP2_DFN_2024-06-16_20-33-54/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owhite/MP2-DFN/8d143acf6759c34189a9e880233410b96623ab0f/Kicad_Project/production/MP2_DFN_2024-06-16_20-33-54/.DS_Store -------------------------------------------------------------------------------- /Kicad_Project/sym-lib-table: -------------------------------------------------------------------------------- 1 | (sym_lib_table 2 | (lib (name "MP2_DFN_Custom_Symbols")(type "KiCad")(uri "${KIPRJMOD}/MP2_DFN_Custom_Symbols.kicad_sym")(options "")(descr "")) 3 | ) 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | BSD 3-Clause License 2 | 3 | Copyright (c) 2022, badgineer 4 | All rights reserved. 5 | 6 | Redistribution and use in source and binary forms, with or without 7 | modification, are permitted provided that the following conditions are met: 8 | 9 | 1. Redistributions of source code must retain the above copyright notice, this 10 | list of conditions and the following disclaimer. 11 | 12 | 2. Redistributions in binary form must reproduce the above copyright notice, 13 | this list of conditions and the following disclaimer in the documentation 14 | and/or other materials provided with the distribution. 15 | 16 | 3. Neither the name of the copyright holder nor the names of its 17 | contributors may be used to endorse or promote products derived from 18 | this software without specific prior written permission. 19 | 20 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" 21 | AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 22 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE 23 | DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE 24 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 25 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR 26 | SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER 27 | CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, 28 | OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 29 | OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 30 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # **MP2-DFN** 2 | A motor controller board based on the NVMTSC4D3N15MC with a DFN footprint. 3 | 4 | ## Version 0.2 5 | 6 | Thanks to badgineer for extensive review of the circuit. 7 | 8 | Punchlist: 9 | + Removed some TVSs 10 | + Removed one of the Vsensing circuits 11 | + Improved busbars for assembly 12 | + Heatsink for assembly 13 | + Updated bulk mlccs to 250v rating 14 | + Inverted 12v DC-DC 15 | + Inverted 5v DC-DC 16 | 17 | The project hosted here absolutely would not have been possible without the intellectual work of the MP2-ESC, and the team that contributed to development of that ESC. 18 | 19 | ## Version 0.3 20 | Previous version works great. The only change has been to extend the VBAT connectors. 21 | 22 | ## Attribution 23 | 24 | **Attribution for the MP2-DFN must always include acknowledgement of badgineer's original [MP2-ESC](https://github.com/badgineer/MP2-ESC).** 25 | 26 | It should also be noted that in comparison to the MP2-ESC, this ESC is larger, more expensive, and completely untested. However, it is expected to still run with the [STM32F405 pill](https://github.com/davidmolony/F405_pill), and be fully compatible with David Molony's [MESC Firmware](https://github.com/davidmolony/MESC_Firmware). 27 | --------------------------------------------------------------------------------