├── .gitignore ├── LICENSE ├── README.md ├── img ├── 486SocketBlaster_pcb.png ├── 486SocketBlaster_rev0.1.jpg ├── AssemblyInstructions.png └── headers.jpg └── kicad ├── 486SocketBlaster.kicad_pcb ├── 486SocketBlaster.lib ├── 486SocketBlaster.pro ├── 486SocketBlaster.sch ├── 486pga.pretty ├── 486_168pga.kicad_mod ├── 486_168pga_socket.kicad_mod ├── VoltageRegulator.kicad_mod └── VoltageRegulator2.kicad_mod └── sym-lib-table /.gitignore: -------------------------------------------------------------------------------- 1 | /kicad/*-cache 2 | /kicad/*-cache.lib 3 | /kicad/*-bak 4 | /kicad/gerbers/* 5 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | GNU GENERAL PUBLIC LICENSE 2 | Version 2, June 1991 3 | 4 | Copyright (C) 1989, 1991 Free Software Foundation, Inc., 5 | 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA 6 | Everyone is permitted to copy and distribute verbatim copies 7 | of this license document, but changing it is not allowed. 8 | 9 | Preamble 10 | 11 | The licenses for most software are designed to take away your 12 | freedom to share and change it. By contrast, the GNU General Public 13 | License is intended to guarantee your freedom to share and change free 14 | software--to make sure the software is free for all its users. This 15 | General Public License applies to most of the Free Software 16 | Foundation's software and to any other program whose authors commit to 17 | using it. (Some other Free Software Foundation software is covered by 18 | the GNU Lesser General Public License instead.) You can apply it to 19 | your programs, too. 20 | 21 | When we speak of free software, we are referring to freedom, not 22 | price. Our General Public Licenses are designed to make sure that you 23 | have the freedom to distribute copies of free software (and charge for 24 | this service if you wish), that you receive source code or can get it 25 | if you want it, that you can change the software or use pieces of it 26 | in new free programs; and that you know you can do these things. 27 | 28 | To protect your rights, we need to make restrictions that forbid 29 | anyone to deny you these rights or to ask you to surrender the rights. 30 | These restrictions translate to certain responsibilities for you if you 31 | distribute copies of the software, or if you modify it. 32 | 33 | For example, if you distribute copies of such a program, whether 34 | gratis or for a fee, you must give the recipients all the rights that 35 | you have. You must make sure that they, too, receive or can get the 36 | source code. And you must show them these terms so they know their 37 | rights. 38 | 39 | We protect your rights with two steps: (1) copyright the software, and 40 | (2) offer you this license which gives you legal permission to copy, 41 | distribute and/or modify the software. 42 | 43 | Also, for each author's protection and ours, we want to make certain 44 | that everyone understands that there is no warranty for this free 45 | software. If the software is modified by someone else and passed on, we 46 | want its recipients to know that what they have is not the original, so 47 | that any problems introduced by others will not reflect on the original 48 | authors' reputations. 49 | 50 | Finally, any free program is threatened constantly by software 51 | patents. We wish to avoid the danger that redistributors of a free 52 | program will individually obtain patent licenses, in effect making the 53 | program proprietary. To prevent this, we have made it clear that any 54 | patent must be licensed for everyone's free use or not licensed at all. 55 | 56 | The precise terms and conditions for copying, distribution and 57 | modification follow. 58 | 59 | GNU GENERAL PUBLIC LICENSE 60 | TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION 61 | 62 | 0. This License applies to any program or other work which contains 63 | a notice placed by the copyright holder saying it may be distributed 64 | under the terms of this General Public License. The "Program", below, 65 | refers to any such program or work, and a "work based on the Program" 66 | means either the Program or any derivative work under copyright law: 67 | that is to say, a work containing the Program or a portion of it, 68 | either verbatim or with modifications and/or translated into another 69 | language. (Hereinafter, translation is included without limitation in 70 | the term "modification".) Each licensee is addressed as "you". 71 | 72 | Activities other than copying, distribution and modification are not 73 | covered by this License; they are outside its scope. The act of 74 | running the Program is not restricted, and the output from the Program 75 | is covered only if its contents constitute a work based on the 76 | Program (independent of having been made by running the Program). 77 | Whether that is true depends on what the Program does. 78 | 79 | 1. You may copy and distribute verbatim copies of the Program's 80 | source code as you receive it, in any medium, provided that you 81 | conspicuously and appropriately publish on each copy an appropriate 82 | copyright notice and disclaimer of warranty; keep intact all the 83 | notices that refer to this License and to the absence of any warranty; 84 | and give any other recipients of the Program a copy of this License 85 | along with the Program. 86 | 87 | You may charge a fee for the physical act of transferring a copy, and 88 | you may at your option offer warranty protection in exchange for a fee. 89 | 90 | 2. You may modify your copy or copies of the Program or any portion 91 | of it, thus forming a work based on the Program, and copy and 92 | distribute such modifications or work under the terms of Section 1 93 | above, provided that you also meet all of these conditions: 94 | 95 | a) You must cause the modified files to carry prominent notices 96 | stating that you changed the files and the date of any change. 97 | 98 | b) You must cause any work that you distribute or publish, that in 99 | whole or in part contains or is derived from the Program or any 100 | part thereof, to be licensed as a whole at no charge to all third 101 | parties under the terms of this License. 102 | 103 | c) If the modified program normally reads commands interactively 104 | when run, you must cause it, when started running for such 105 | interactive use in the most ordinary way, to print or display an 106 | announcement including an appropriate copyright notice and a 107 | notice that there is no warranty (or else, saying that you provide 108 | a warranty) and that users may redistribute the program under 109 | these conditions, and telling the user how to view a copy of this 110 | License. (Exception: if the Program itself is interactive but 111 | does not normally print such an announcement, your work based on 112 | the Program is not required to print an announcement.) 113 | 114 | These requirements apply to the modified work as a whole. If 115 | identifiable sections of that work are not derived from the Program, 116 | and can be reasonably considered independent and separate works in 117 | themselves, then this License, and its terms, do not apply to those 118 | sections when you distribute them as separate works. But when you 119 | distribute the same sections as part of a whole which is a work based 120 | on the Program, the distribution of the whole must be on the terms of 121 | this License, whose permissions for other licensees extend to the 122 | entire whole, and thus to each and every part regardless of who wrote it. 123 | 124 | Thus, it is not the intent of this section to claim rights or contest 125 | your rights to work written entirely by you; rather, the intent is to 126 | exercise the right to control the distribution of derivative or 127 | collective works based on the Program. 128 | 129 | In addition, mere aggregation of another work not based on the Program 130 | with the Program (or with a work based on the Program) on a volume of 131 | a storage or distribution medium does not bring the other work under 132 | the scope of this License. 133 | 134 | 3. You may copy and distribute the Program (or a work based on it, 135 | under Section 2) in object code or executable form under the terms of 136 | Sections 1 and 2 above provided that you also do one of the following: 137 | 138 | a) Accompany it with the complete corresponding machine-readable 139 | source code, which must be distributed under the terms of Sections 140 | 1 and 2 above on a medium customarily used for software interchange; or, 141 | 142 | b) Accompany it with a written offer, valid for at least three 143 | years, to give any third party, for a charge no more than your 144 | cost of physically performing source distribution, a complete 145 | machine-readable copy of the corresponding source code, to be 146 | distributed under the terms of Sections 1 and 2 above on a medium 147 | customarily used for software interchange; or, 148 | 149 | c) Accompany it with the information you received as to the offer 150 | to distribute corresponding source code. (This alternative is 151 | allowed only for noncommercial distribution and only if you 152 | received the program in object code or executable form with such 153 | an offer, in accord with Subsection b above.) 154 | 155 | The source code for a work means the preferred form of the work for 156 | making modifications to it. For an executable work, complete source 157 | code means all the source code for all modules it contains, plus any 158 | associated interface definition files, plus the scripts used to 159 | control compilation and installation of the executable. However, as a 160 | special exception, the source code distributed need not include 161 | anything that is normally distributed (in either source or binary 162 | form) with the major components (compiler, kernel, and so on) of the 163 | operating system on which the executable runs, unless that component 164 | itself accompanies the executable. 165 | 166 | If distribution of executable or object code is made by offering 167 | access to copy from a designated place, then offering equivalent 168 | access to copy the source code from the same place counts as 169 | distribution of the source code, even though third parties are not 170 | compelled to copy the source along with the object code. 171 | 172 | 4. You may not copy, modify, sublicense, or distribute the Program 173 | except as expressly provided under this License. Any attempt 174 | otherwise to copy, modify, sublicense or distribute the Program is 175 | void, and will automatically terminate your rights under this License. 176 | However, parties who have received copies, or rights, from you under 177 | this License will not have their licenses terminated so long as such 178 | parties remain in full compliance. 179 | 180 | 5. You are not required to accept this License, since you have not 181 | signed it. However, nothing else grants you permission to modify or 182 | distribute the Program or its derivative works. These actions are 183 | prohibited by law if you do not accept this License. Therefore, by 184 | modifying or distributing the Program (or any work based on the 185 | Program), you indicate your acceptance of this License to do so, and 186 | all its terms and conditions for copying, distributing or modifying 187 | the Program or works based on it. 188 | 189 | 6. Each time you redistribute the Program (or any work based on the 190 | Program), the recipient automatically receives a license from the 191 | original licensor to copy, distribute or modify the Program subject to 192 | these terms and conditions. You may not impose any further 193 | restrictions on the recipients' exercise of the rights granted herein. 194 | You are not responsible for enforcing compliance by third parties to 195 | this License. 196 | 197 | 7. If, as a consequence of a court judgment or allegation of patent 198 | infringement or for any other reason (not limited to patent issues), 199 | conditions are imposed on you (whether by court order, agreement or 200 | otherwise) that contradict the conditions of this License, they do not 201 | excuse you from the conditions of this License. If you cannot 202 | distribute so as to satisfy simultaneously your obligations under this 203 | License and any other pertinent obligations, then as a consequence you 204 | may not distribute the Program at all. For example, if a patent 205 | license would not permit royalty-free redistribution of the Program by 206 | all those who receive copies directly or indirectly through you, then 207 | the only way you could satisfy both it and this License would be to 208 | refrain entirely from distribution of the Program. 209 | 210 | If any portion of this section is held invalid or unenforceable under 211 | any particular circumstance, the balance of the section is intended to 212 | apply and the section as a whole is intended to apply in other 213 | circumstances. 214 | 215 | It is not the purpose of this section to induce you to infringe any 216 | patents or other property right claims or to contest validity of any 217 | such claims; this section has the sole purpose of protecting the 218 | integrity of the free software distribution system, which is 219 | implemented by public license practices. Many people have made 220 | generous contributions to the wide range of software distributed 221 | through that system in reliance on consistent application of that 222 | system; it is up to the author/donor to decide if he or she is willing 223 | to distribute software through any other system and a licensee cannot 224 | impose that choice. 225 | 226 | This section is intended to make thoroughly clear what is believed to 227 | be a consequence of the rest of this License. 228 | 229 | 8. If the distribution and/or use of the Program is restricted in 230 | certain countries either by patents or by copyrighted interfaces, the 231 | original copyright holder who places the Program under this License 232 | may add an explicit geographical distribution limitation excluding 233 | those countries, so that distribution is permitted only in or among 234 | countries not thus excluded. In such case, this License incorporates 235 | the limitation as if written in the body of this License. 236 | 237 | 9. The Free Software Foundation may publish revised and/or new versions 238 | of the General Public License from time to time. Such new versions will 239 | be similar in spirit to the present version, but may differ in detail to 240 | address new problems or concerns. 241 | 242 | Each version is given a distinguishing version number. If the Program 243 | specifies a version number of this License which applies to it and "any 244 | later version", you have the option of following the terms and conditions 245 | either of that version or of any later version published by the Free 246 | Software Foundation. If the Program does not specify a version number of 247 | this License, you may choose any version ever published by the Free Software 248 | Foundation. 249 | 250 | 10. If you wish to incorporate parts of the Program into other free 251 | programs whose distribution conditions are different, write to the author 252 | to ask for permission. For software which is copyrighted by the Free 253 | Software Foundation, write to the Free Software Foundation; we sometimes 254 | make exceptions for this. Our decision will be guided by the two goals 255 | of preserving the free status of all derivatives of our free software and 256 | of promoting the sharing and reuse of software generally. 257 | 258 | NO WARRANTY 259 | 260 | 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY 261 | FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN 262 | OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES 263 | PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED 264 | OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF 265 | MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS 266 | TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE 267 | PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, 268 | REPAIR OR CORRECTION. 269 | 270 | 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING 271 | WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR 272 | REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, 273 | INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING 274 | OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED 275 | TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY 276 | YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER 277 | PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE 278 | POSSIBILITY OF SUCH DAMAGES. 279 | 280 | END OF TERMS AND CONDITIONS 281 | 282 | How to Apply These Terms to Your New Programs 283 | 284 | If you develop a new program, and you want it to be of the greatest 285 | possible use to the public, the best way to achieve this is to make it 286 | free software which everyone can redistribute and change under these terms. 287 | 288 | To do so, attach the following notices to the program. It is safest 289 | to attach them to the start of each source file to most effectively 290 | convey the exclusion of warranty; and each file should have at least 291 | the "copyright" line and a pointer to where the full notice is found. 292 | 293 | {description} 294 | Copyright (C) {year} {fullname} 295 | 296 | This program is free software; you can redistribute it and/or modify 297 | it under the terms of the GNU General Public License as published by 298 | the Free Software Foundation; either version 2 of the License, or 299 | (at your option) any later version. 300 | 301 | This program is distributed in the hope that it will be useful, 302 | but WITHOUT ANY WARRANTY; without even the implied warranty of 303 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 304 | GNU General Public License for more details. 305 | 306 | You should have received a copy of the GNU General Public License along 307 | with this program; if not, write to the Free Software Foundation, Inc., 308 | 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. 309 | 310 | Also add information on how to contact you by electronic and paper mail. 311 | 312 | If the program is interactive, make it output a short notice like this 313 | when it starts in an interactive mode: 314 | 315 | Gnomovision version 69, Copyright (C) year name of author 316 | Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'. 317 | This is free software, and you are welcome to redistribute it 318 | under certain conditions; type `show c' for details. 319 | 320 | The hypothetical commands `show w' and `show c' should show the appropriate 321 | parts of the General Public License. Of course, the commands you use may 322 | be called something other than `show w' and `show c'; they could even be 323 | mouse-clicks or menu items--whatever suits your program. 324 | 325 | You should also get your employer (if you work as a programmer) or your 326 | school, if any, to sign a "copyright disclaimer" for the program, if 327 | necessary. Here is a sample; alter the names: 328 | 329 | Yoyodyne, Inc., hereby disclaims all copyright interest in the program 330 | `Gnomovision' (which makes passes at compilers) written by James Hacker. 331 | 332 | {signature of Ty Coon}, 1 April 1989 333 | Ty Coon, President of Vice 334 | 335 | This General Public License does not permit incorporating your program into 336 | proprietary programs. If your program is a subroutine library, you may 337 | consider it more useful to permit linking proprietary applications with the 338 | library. If this is what you want to do, use the GNU Lesser General 339 | Public License instead of this License. 340 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # 486SocketBlaster 2 | 3 | 486SocketBlaster is a simple voltage adapter for 486 processors. It allows you 4 | to use a 3-volt 486 CPU on an older 5-volt-only motherboard. For example you 5 | can use a DX4 or an Am5x86 on an old 486 motherboard that would normally only 6 | work with 5-volt CPUs. This basically converts any 3-volt CPU to an "Overdrive". 7 | 8 | 486SocketBlaster Rev0.1 on a purple PCB 9 | 10 | 486SocketBlaster PCB 11 | 12 | # How does it work ? 13 | 14 | It is really simple: All CPU pins are passed through to the motherboard socket, 15 | except for the Vcc. Those are connected to the output of a mini buck converter 16 | that can be soldered to the 486SocketBlaster board. 17 | 18 | # Soldering/Assembly Instructions 19 | 20 | This board is not the easiest thing to solder, but can be done with a standard 21 | soldering iron and some patience. 22 | The best way to solder the headers is to start with the innermost one and work 23 | outwards in a spiral manner alternating between the top and bottom side as 24 | needed (see image below). This way you only work on the outside and can easily 25 | reach all the pins. 26 | 27 | Assembly Instructions 28 | 29 | A desoldering gun may be useful when you accidentally clog up other holes. But 30 | it is probably best to be very careful and avoid clogging them in the first 31 | place. Also using flux makes it easier. 32 | 33 | Please make sure you check the solder joints (also check for continuity) before 34 | you add another row of headers on the same side, because the new row will 35 | permanently block your access to the solder joints! 36 | Desoldering a header is almost impossible even with a desoldering gun due to the 37 | very tight hole tolerances. 38 | So it has to be soldered correctly from the first try. 39 | 40 | # Voltage regulator 41 | 42 | The 486SocketBlaster can be powered by a cheap of-the-shelf buck converter, or 43 | by an external one. The circuit board accepts two common types of small voltage 44 | buck converters, usually found using keywords like "mini buck converter". 45 | These are commonly rated at up to 3A of current. Given that 3-volt 486 CPUs are 46 | usually very efficient (the DX4-100 is rated at max 3.55/5.22W typical/max) such 47 | a regulator should be adequate in most cases. 48 | For best stability try to source a good quality part. 49 | 50 | If you are planning to overclock or to use a more power hungry CPU, please use an external regulation circuit plugged in to the `ExtPwr` header, or use a *very* good quality mini buck converter. 51 | 52 | # WARNING!!! 53 | 54 | Please make sure you know what you are doing! 55 | Improper assembly/settings/use can damage both your precious motherboard and your precious CPU! 56 | 57 | # Features 58 | 59 | - External Power Header. This can be used either for monitoring the CPU voltage, or for providing power externally, either with an external power supply or an external voltage regulator. 60 | - CLKMUL Header for selecting/overriding the CPU multiplier. This controls CPU pin `R17`. 1-2 connects it to the motherboard socket pin and 2-3 connects it to ground. This reduces the multiplier of a DX4 to 2x (66MHz) and sets the multiplier of an Am5x86 to 4x (133MHz). 61 | - WB/WT Header for selecting/overriding Write-Back/Write-Through cache. This controls processor CPU pin `B13` (which is the `CLKMUL` pin in earlier 486 CPUs). 1-2 connects it to the motherboard socket pin, and 2-3 connects it to Vcc, which enables Write-Back. 62 | 63 | # Bill of materials 64 | 65 | Item | ## | Description 66 | --------------------------------|-----|-------------------------------------------------------- 67 | mini buck converter | 1 | We support two common sizes: 22x17mm and 18x12mm. These usually have chips like MP1584, MP2307 and others 68 | 40pin SIP pin header (male) | 5 | Single-row round pin 2.54mm pitch (male). Socket pin diameter: 0.50mm, PCB pin diameter: 0.60mm. (see photo below) 69 | 40pin SIP socket header (female)| 5 | Single-row round pin sockets, 2.54mm pitch. PCB pin diameter: 0.55mm. (see photo below) 70 | SMD Ceramic Capacitors | 4 | 10uF SMD 1206, 6.3V or higher 71 | Through-hole Capacitor | 1 | 10uF ceramic through-hole capacitor, 6.3V or higher 72 | 3-pin header 2.54mm pitch | 2 | (optional) Headers used for selecting the CPU Multiplier (CLKMUL) and Write-Back/Write-Through cache (WB/WT) 73 | Jumper 2.54mm pitch | 2 | (optional) Jumpers for the CLKMUL and WB/WT headers 74 | 75 | Gerber files can be found in the releases: https://github.com/scrapcomputing/486SocketBlaster/releases 76 | 77 | Please note that the headers are a very tight fit. So please make sure that you get headers of the correct pin diameter. 78 | 79 | With the limited testing I have done so far, it seems that you need at least 80 | one 10uF through-hole ceramic capacitor, otherwise the voltage ripple is too 81 | high and the system can become unstable with a DX4 @ 100MHz, using a cheap 82 | MP1584-based buck converter. 83 | 84 | ![headers](img/headers.jpg) 85 | 86 | # Videos featuring the 486 Socket Blaster 87 | - Original video with rev0.1 PCB (part 1): https://www.youtube.com/watch?v=n5qlx4qKbSE 88 | - Rev0.2 PCB and trying out smoothing caps (part 2): https://www.youtube.com/watch?v=7anzRWXtba0 89 | - Choosing capacitor values for a 5x86 (part 3): https://www.youtube.com/watch?v=CLPSJ0jOQsU 90 | - Detailed assembly instructions by Epictronics (rev 0.4 PCB): https://www.youtube.com/watch?v=vEpAoVE4KjU 91 | 92 | # Changelist 93 | - Rev 0.5 : Adds WB/WT header and fixes CLKMUL table silkscreen for am5x86. 94 | - Rev 0.4 : Larger holes for the female headers (0.62mm instead of 0.57mm). These should fit headers with 0.55mm pin diameter. 95 | - Rev 0.3 : Updates silk screen for larger capacitor values and fixes CLKMUL table. 96 | - Rev 0.2 : Fixes initial revision bugs. 97 | 98 | # List of other similar 486 adapter projects 99 | - With an onboard voltage regulator: https://github.com/LimeProgramming/486SocketBlaster/tree/4-layer-onboard-regulator 100 | -------------------------------------------------------------------------------- /img/486SocketBlaster_pcb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scrapcomputing/486SocketBlaster/0180b226b5baae5e7e8bec288a1cd4f97f7a599c/img/486SocketBlaster_pcb.png -------------------------------------------------------------------------------- /img/486SocketBlaster_rev0.1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scrapcomputing/486SocketBlaster/0180b226b5baae5e7e8bec288a1cd4f97f7a599c/img/486SocketBlaster_rev0.1.jpg -------------------------------------------------------------------------------- /img/AssemblyInstructions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scrapcomputing/486SocketBlaster/0180b226b5baae5e7e8bec288a1cd4f97f7a599c/img/AssemblyInstructions.png -------------------------------------------------------------------------------- /img/headers.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scrapcomputing/486SocketBlaster/0180b226b5baae5e7e8bec288a1cd4f97f7a599c/img/headers.jpg -------------------------------------------------------------------------------- /kicad/486SocketBlaster.lib: -------------------------------------------------------------------------------- 1 | EESchema-LIBRARY Version 2.4 2 | #encoding utf-8 3 | # 4 | # 486 5 | # 6 | DEF 486 U 0 40 Y Y 1 F N 7 | F0 "U" -8150 -600 50 H V C CNN 8 | F1 "486" -8150 -600 50 H V C CNN 9 | F2 "" -8150 -600 50 H I C CNN 10 | F3 "" -8150 -600 50 H I C CNN 11 | DRAW 12 | X A1 A1 -8800 -300 100 U 50 50 1 1 B 13 | X A10 A10 -7900 -300 100 U 50 50 1 1 B 14 | X A11_vss A11 -7800 -300 100 U 50 50 1 1 W 15 | X A12 A12 -7700 -300 100 U 50 50 1 1 B 16 | X A13 A13 -7600 -300 100 U 50 50 1 1 B 17 | X A14 A14 -7500 -300 100 U 50 50 1 1 B 18 | X A15 A15 -7400 -300 100 U 50 50 1 1 B 19 | X A16 A16 -7300 -300 100 U 50 50 1 1 B 20 | X A17 A17 -7200 -300 100 U 50 50 1 1 B 21 | X A2 A2 -8700 -300 100 U 50 50 1 1 B 22 | X A3 A3 -8600 -300 100 U 50 50 1 1 B 23 | X A4 A4 -8500 -300 100 U 50 50 1 1 B 24 | X A5 A5 -8400 -300 100 U 50 50 1 1 B 25 | X A6 A6 -8300 -300 100 U 50 50 1 1 B 26 | X A7_vss A7 -8200 -300 100 U 50 50 1 1 W 27 | X A8 A8 -8100 -300 100 U 50 50 1 1 B 28 | X A9_vss A9 -8000 -300 100 U 50 50 1 1 W 29 | X B1 B1 -7100 -300 100 U 50 50 1 1 B 30 | X B10 B10 -6200 -300 100 U 50 50 1 1 B 31 | X B11_vcc B11 -6100 -300 100 U 50 50 1 1 W 32 | X B12 B12 -6000 -300 100 U 50 50 1 1 B 33 | X B13 B13 -5900 -300 100 U 50 50 1 1 B 34 | X B14 B14 -5800 -300 100 U 50 50 1 1 B 35 | X B15 B15 -5700 -300 100 U 50 50 1 1 B 36 | X B16 B16 -5600 -300 100 U 50 50 1 1 B 37 | X B17 B17 -5500 -300 100 U 50 50 1 1 B 38 | X B2 B2 -7000 -300 100 U 50 50 1 1 B 39 | X B3_vss B3 -6900 -300 100 U 50 50 1 1 W 40 | X B4_vss B4 -6800 -300 100 U 50 50 1 1 W 41 | X B5_vss B5 -6700 -300 100 U 50 50 1 1 W 42 | X B6 B6 -6600 -300 100 U 50 50 1 1 B 43 | X B7_vcc B7 -6500 -300 100 U 50 50 1 1 W 44 | X B8 B8 -6400 -300 100 U 50 50 1 1 B 45 | X B9_vcc B9 -6300 -300 100 U 50 50 1 1 W 46 | X C1 C1 -5400 -300 100 U 50 50 1 1 B 47 | X C10 C10 -4500 -300 100 U 50 50 1 1 B 48 | X C11 C11 -4400 -300 100 U 50 50 1 1 B 49 | X C12 C12 -4300 -300 100 U 50 50 1 1 B 50 | X C13 C13 -4200 -300 100 U 50 50 1 1 B 51 | X C14 C14 -4100 -300 100 U 50 50 1 1 B 52 | X C15 C15 -4000 -300 100 U 50 50 1 1 B 53 | X C16 C16 -3900 -300 100 U 50 50 1 1 B 54 | X C17 C17 -3800 -300 100 U 50 50 1 1 B 55 | X C2 C2 -5300 -300 100 U 50 50 1 1 B 56 | X C3 C3 -5200 -300 100 U 50 50 1 1 B 57 | X C4_vcc C4 -5100 -300 100 U 50 50 1 1 W 58 | X C5_vcc C5 -5000 -300 100 U 50 50 1 1 W 59 | X C6 C6 -4900 -300 100 U 50 50 1 1 B 60 | X C7 C7 -4800 -300 100 U 50 50 1 1 B 61 | X C8 C8 -4700 -300 100 U 50 50 1 1 B 62 | X C9 C9 -4600 -300 100 U 50 50 1 1 B 63 | X D1 D1 -3700 -300 100 U 50 50 1 1 B 64 | X D15 D15 -3400 -300 100 U 50 50 1 1 B 65 | X D16 D16 -3300 -300 100 U 50 50 1 1 B 66 | X D17 D17 -3200 -300 100 U 50 50 1 1 B 67 | X D2 D2 -3600 -300 100 U 50 50 1 1 B 68 | X D3 D3 -3500 -300 100 U 50 50 1 1 B 69 | X E1_vss E1 -3100 -300 100 U 50 50 1 1 W 70 | X E15 E15 -2800 -300 100 U 50 50 1 1 B 71 | X E16_vcc E16 -2700 -300 100 U 50 50 1 1 W 72 | X E17_vss E17 -2600 -300 100 U 50 50 1 1 W 73 | X E2_vcc E2 -3000 -300 100 U 50 50 1 1 W 74 | X E3 E3 -2900 -300 100 U 50 50 1 1 B 75 | X F1 F1 -2500 -300 100 U 50 50 1 1 B 76 | X F15 F15 -2200 -300 100 U 50 50 1 1 B 77 | X F16 F16 -2100 -300 100 U 50 50 1 1 B 78 | X F17 F17 -2000 -300 100 U 50 50 1 1 B 79 | X F2 F2 -2400 -300 100 U 50 50 1 1 B 80 | X F3 F3 -2300 -300 100 U 50 50 1 1 B 81 | X G1_vss G1 -1900 -300 100 U 50 50 1 1 W 82 | X G15 G15 -1600 -300 100 U 50 50 1 1 B 83 | X G16_vcc G16 -1500 -300 100 U 50 50 1 1 W 84 | X G17_vss G17 -1400 -300 100 U 50 50 1 1 W 85 | X G2_vcc G2 -1800 -300 100 U 50 50 1 1 W 86 | X G3 G3 -1700 -300 100 U 50 50 1 1 B 87 | X H1_vss H1 -1300 -300 100 U 50 50 1 1 W 88 | X H15 H15 -1000 -300 100 U 50 50 1 1 B 89 | X H16_vcc H16 -900 -300 100 U 50 50 1 1 W 90 | X H17_vss H17 -800 -300 100 U 50 50 1 1 W 91 | X H2 H2 -1200 -300 100 U 50 50 1 1 B 92 | X H3 H3 -1100 -300 100 U 50 50 1 1 B 93 | X J1_VCC_5volts J1 -700 -300 100 U 50 50 1 1 W 94 | X J15 J15 -400 -300 100 U 50 50 1 1 B 95 | X J16 J16 -300 -300 100 U 50 50 1 1 B 96 | X J17 J17 -200 -300 100 U 50 50 1 1 B 97 | X J2 J2 -600 -300 100 U 50 50 1 1 B 98 | X J3 J3 -500 -300 100 U 50 50 1 1 B 99 | X K1_vss K1 -100 -300 100 U 50 50 1 1 W 100 | X K15 K15 200 -300 100 U 50 50 1 1 B 101 | X K16_vcc K16 300 -300 100 U 50 50 1 1 W 102 | X K17_vss K17 400 -300 100 U 50 50 1 1 W 103 | X K2_vcc K2 0 -300 100 U 50 50 1 1 W 104 | X K3 K3 100 -300 100 U 50 50 1 1 B 105 | X L1_vss L1 500 -300 100 U 50 50 1 1 W 106 | X L15 L15 800 -300 100 U 50 50 1 1 B 107 | X L16_vcc L16 900 -300 100 U 50 50 1 1 W 108 | X L17_vss L17 1000 -300 100 U 50 50 1 1 W 109 | X L2 L2 600 -300 100 U 50 50 1 1 B 110 | X L3 L3 700 -300 100 U 50 50 1 1 B 111 | X M1_vss M1 1100 -300 100 U 50 50 1 1 W 112 | X M15 M15 1400 -300 100 U 50 50 1 1 B 113 | X M16_vcc M16 1500 -300 100 U 50 50 1 1 W 114 | X M17_vss M17 1600 -300 100 U 50 50 1 1 W 115 | X M2_vcc M2 1200 -300 100 U 50 50 1 1 W 116 | X M3 M3 1300 -300 100 U 50 50 1 1 B 117 | X N1 N1 1700 -300 100 U 50 50 1 1 B 118 | X N15 N15 2000 -300 100 U 50 50 1 1 B 119 | X N16 N16 2100 -300 100 U 50 50 1 1 B 120 | X N17 N17 2200 -300 100 U 50 50 1 1 B 121 | X N2 N2 1800 -300 100 U 50 50 1 1 B 122 | X N3 N3 1900 -300 100 U 50 50 1 1 B 123 | X P1 P1 2300 -300 100 U 50 50 1 1 B 124 | X P15 P15 2600 -300 100 U 50 50 1 1 B 125 | X P16_vcc P16 2700 -300 100 U 50 50 1 1 W 126 | X P17_vss P17 2800 -300 100 U 50 50 1 1 W 127 | X P2 P2 2400 -300 100 U 50 50 1 1 B 128 | X P3 P3 2500 -300 100 U 50 50 1 1 B 129 | X Q1 Q1 2900 -300 100 U 50 50 1 1 B 130 | X Q10 Q10 3800 -300 100 U 50 50 1 1 B 131 | X Q11 Q11 3900 -300 100 U 50 50 1 1 B 132 | X Q12 Q12 4000 -300 100 U 50 50 1 1 B 133 | X Q13 Q13 4100 -300 100 U 50 50 1 1 B 134 | X Q14 Q14 4200 -300 100 U 50 50 1 1 B 135 | X Q15 Q15 4300 -300 100 U 50 50 1 1 B 136 | X Q16 Q16 4400 -300 100 U 50 50 1 1 B 137 | X Q17 Q17 4500 -300 100 U 50 50 1 1 B 138 | X Q2_vss Q2 3000 -300 100 U 50 50 1 1 W 139 | X Q3 Q3 3100 -300 100 U 50 50 1 1 B 140 | X Q4 Q4 3200 -300 100 U 50 50 1 1 B 141 | X Q5 Q5 3300 -300 100 U 50 50 1 1 B 142 | X Q6 Q6 3400 -300 100 U 50 50 1 1 B 143 | X Q7 Q7 3500 -300 100 U 50 50 1 1 B 144 | X Q8 Q8 3600 -300 100 U 50 50 1 1 B 145 | X Q9 Q9 3700 -300 100 U 50 50 1 1 B 146 | X R1 R1 4600 -300 100 U 50 50 1 1 B 147 | X R10_vcc R10 5500 -300 100 U 50 50 1 1 W 148 | X R11_vcc R11 5600 -300 100 U 50 50 1 1 W 149 | X R12 R12 5700 -300 100 U 50 50 1 1 B 150 | X R13 R13 5800 -300 100 U 50 50 1 1 B 151 | X R14_vcc R14 5900 -300 100 U 50 50 1 1 W 152 | X R15 R15 6000 -300 100 U 50 50 1 1 B 153 | X R16 R16 6100 -300 100 U 50 50 1 1 B 154 | X R17 R17 6200 -300 100 U 50 50 1 1 B 155 | X R2 R2 4700 -300 100 U 50 50 1 1 B 156 | X R3_vcc R3 4800 -300 100 U 50 50 1 1 W 157 | X R4_vss R4 4900 -300 100 U 50 50 1 1 W 158 | X R5 R5 5000 -300 100 U 50 50 1 1 B 159 | X R6_vcc R6 5100 -300 100 U 50 50 1 1 W 160 | X R7 R7 5200 -300 100 U 50 50 1 1 B 161 | X R8_vcc R8 5300 -300 100 U 50 50 1 1 W 162 | X R9_vcc R9 5400 -300 100 U 50 50 1 1 W 163 | X S1 S1 6300 -300 100 U 50 50 1 1 B 164 | X S10_vss S10 7200 -300 100 U 50 50 1 1 W 165 | X S11_vss S11 7300 -300 100 U 50 50 1 1 W 166 | X S12_vss S12 7400 -300 100 U 50 50 1 1 W 167 | X S13 S13 7500 -300 100 U 50 50 1 1 B 168 | X S14_vss S14 7600 -300 100 U 50 50 1 1 W 169 | X S15 S15 7700 -300 100 U 50 50 1 1 B 170 | X S16 S16 7800 -300 100 U 50 50 1 1 B 171 | X S17 S17 7900 -300 100 U 50 50 1 1 B 172 | X S2 S2 6400 -300 100 U 50 50 1 1 B 173 | X S3 S3 6500 -300 100 U 50 50 1 1 B 174 | X S4 S4 6600 -300 100 U 50 50 1 1 B 175 | X S5 S5 6700 -300 100 U 50 50 1 1 B 176 | X S6_vss S6 6800 -300 100 U 50 50 1 1 W 177 | X S7 S7 6900 -300 100 U 50 50 1 1 B 178 | X S8_vss S8 7000 -300 100 U 50 50 1 1 W 179 | X S9_vss S9 7100 -300 100 U 50 50 1 1 W 180 | ENDDRAW 181 | ENDDEF 182 | # 183 | # VoltageRegulator 184 | # 185 | DEF VoltageRegulator U 0 40 Y Y 1 F N 186 | F0 "U" 200 -250 50 H V C CNN 187 | F1 "VoltageRegulator" 200 -300 50 H V C CNN 188 | F2 "" 200 -250 50 H I C CNN 189 | F3 "" 200 -250 50 H I C CNN 190 | DRAW 191 | S -200 -300 550 -650 0 1 0 N 192 | X GNDin GNDin -300 -550 100 R 50 50 1 1 W 193 | X GNDout GNDout 650 -550 100 L 50 50 1 1 w 194 | X Vin Vin -300 -400 100 R 50 50 1 1 W 195 | X Vout Vout 650 -400 100 L 50 50 1 1 w 196 | ENDDRAW 197 | ENDDEF 198 | # 199 | #End Library 200 | -------------------------------------------------------------------------------- /kicad/486SocketBlaster.pro: -------------------------------------------------------------------------------- 1 | update=Mon 13 Feb 2023 09:31:37 PM PST 2 | version=1 3 | last_client=kicad 4 | [general] 5 | version=1 6 | RootSch= 7 | BoardNm= 8 | [cvpcb] 9 | version=1 10 | NetIExt=net 11 | [eeschema] 12 | version=1 13 | LibDir= 14 | [eeschema/libraries] 15 | [schematic_editor] 16 | version=1 17 | PageLayoutDescrFile= 18 | PlotDirectoryName= 19 | SubpartIdSeparator=0 20 | SubpartFirstId=65 21 | NetFmtName=Pcbnew 22 | SpiceAjustPassiveValues=0 23 | LabSize=50 24 | ERC_TestSimilarLabels=1 25 | [pcbnew] 26 | version=1 27 | PageLayoutDescrFile= 28 | LastNetListRead=486adapter.net 29 | CopperLayerCount=2 30 | BoardThickness=1.6 31 | AllowMicroVias=0 32 | AllowBlindVias=0 33 | RequireCourtyardDefinitions=0 34 | ProhibitOverlappingCourtyards=1 35 | MinTrackWidth=0.2 36 | MinViaDiameter=0.4 37 | MinViaDrill=0.3 38 | MinMicroViaDiameter=0.2 39 | MinMicroViaDrill=0.09999999999999999 40 | MinHoleToHole=0.25 41 | TrackWidth1=0.25 42 | TrackWidth2=0.2 43 | TrackWidth3=0.25 44 | TrackWidth4=0.31 45 | TrackWidth5=0.35 46 | TrackWidth6=0.45 47 | TrackWidth7=0.76 48 | TrackWidth8=1.27 49 | ViaDiameter1=0.8 50 | ViaDrill1=0.4 51 | ViaDiameter2=0.8 52 | ViaDrill2=0.4 53 | ViaDiameter3=1.2 54 | ViaDrill3=0.6 55 | ViaDiameter4=1.6 56 | ViaDrill4=0.8 57 | dPairWidth1=0.2 58 | dPairGap1=0.25 59 | dPairViaGap1=0.25 60 | SilkLineWidth=0.12 61 | SilkTextSizeV=1 62 | SilkTextSizeH=1 63 | SilkTextSizeThickness=0.15 64 | SilkTextItalic=0 65 | SilkTextUpright=1 66 | CopperLineWidth=0.2 67 | CopperTextSizeV=1.5 68 | CopperTextSizeH=1.5 69 | CopperTextThickness=0.3 70 | CopperTextItalic=0 71 | CopperTextUpright=1 72 | EdgeCutLineWidth=0.05 73 | CourtyardLineWidth=0.05 74 | OthersLineWidth=0.15 75 | OthersTextSizeV=1 76 | OthersTextSizeH=1 77 | OthersTextSizeThickness=0.15 78 | OthersTextItalic=0 79 | OthersTextUpright=1 80 | SolderMaskClearance=0 81 | SolderMaskMinWidth=0 82 | SolderPasteClearance=0 83 | SolderPasteRatio=-0 84 | [pcbnew/Layer.F.Cu] 85 | Name=F.Cu 86 | Type=0 87 | Enabled=1 88 | [pcbnew/Layer.In1.Cu] 89 | Name=In1.Cu 90 | Type=0 91 | Enabled=0 92 | [pcbnew/Layer.In2.Cu] 93 | Name=In2.Cu 94 | Type=0 95 | Enabled=0 96 | [pcbnew/Layer.In3.Cu] 97 | Name=In3.Cu 98 | Type=0 99 | Enabled=0 100 | [pcbnew/Layer.In4.Cu] 101 | Name=In4.Cu 102 | Type=0 103 | Enabled=0 104 | [pcbnew/Layer.In5.Cu] 105 | Name=In5.Cu 106 | Type=0 107 | Enabled=0 108 | [pcbnew/Layer.In6.Cu] 109 | Name=In6.Cu 110 | Type=0 111 | Enabled=0 112 | [pcbnew/Layer.In7.Cu] 113 | Name=In7.Cu 114 | Type=0 115 | Enabled=0 116 | [pcbnew/Layer.In8.Cu] 117 | Name=In8.Cu 118 | Type=0 119 | Enabled=0 120 | [pcbnew/Layer.In9.Cu] 121 | Name=In9.Cu 122 | Type=0 123 | Enabled=0 124 | [pcbnew/Layer.In10.Cu] 125 | Name=In10.Cu 126 | Type=0 127 | Enabled=0 128 | [pcbnew/Layer.In11.Cu] 129 | Name=In11.Cu 130 | Type=0 131 | Enabled=0 132 | [pcbnew/Layer.In12.Cu] 133 | Name=In12.Cu 134 | Type=0 135 | Enabled=0 136 | [pcbnew/Layer.In13.Cu] 137 | Name=In13.Cu 138 | Type=0 139 | Enabled=0 140 | [pcbnew/Layer.In14.Cu] 141 | Name=In14.Cu 142 | Type=0 143 | Enabled=0 144 | [pcbnew/Layer.In15.Cu] 145 | Name=In15.Cu 146 | Type=0 147 | Enabled=0 148 | [pcbnew/Layer.In16.Cu] 149 | Name=In16.Cu 150 | Type=0 151 | Enabled=0 152 | [pcbnew/Layer.In17.Cu] 153 | Name=In17.Cu 154 | Type=0 155 | Enabled=0 156 | [pcbnew/Layer.In18.Cu] 157 | Name=In18.Cu 158 | Type=0 159 | Enabled=0 160 | [pcbnew/Layer.In19.Cu] 161 | Name=In19.Cu 162 | Type=0 163 | Enabled=0 164 | [pcbnew/Layer.In20.Cu] 165 | Name=In20.Cu 166 | Type=0 167 | Enabled=0 168 | [pcbnew/Layer.In21.Cu] 169 | Name=In21.Cu 170 | Type=0 171 | Enabled=0 172 | [pcbnew/Layer.In22.Cu] 173 | Name=In22.Cu 174 | Type=0 175 | Enabled=0 176 | [pcbnew/Layer.In23.Cu] 177 | Name=In23.Cu 178 | Type=0 179 | Enabled=0 180 | [pcbnew/Layer.In24.Cu] 181 | Name=In24.Cu 182 | Type=0 183 | Enabled=0 184 | [pcbnew/Layer.In25.Cu] 185 | Name=In25.Cu 186 | Type=0 187 | Enabled=0 188 | [pcbnew/Layer.In26.Cu] 189 | Name=In26.Cu 190 | Type=0 191 | Enabled=0 192 | [pcbnew/Layer.In27.Cu] 193 | Name=In27.Cu 194 | Type=0 195 | Enabled=0 196 | [pcbnew/Layer.In28.Cu] 197 | Name=In28.Cu 198 | Type=0 199 | Enabled=0 200 | [pcbnew/Layer.In29.Cu] 201 | Name=In29.Cu 202 | Type=0 203 | Enabled=0 204 | [pcbnew/Layer.In30.Cu] 205 | Name=In30.Cu 206 | Type=0 207 | Enabled=0 208 | [pcbnew/Layer.B.Cu] 209 | Name=B.Cu 210 | Type=0 211 | Enabled=1 212 | [pcbnew/Layer.B.Adhes] 213 | Enabled=1 214 | [pcbnew/Layer.F.Adhes] 215 | Enabled=1 216 | [pcbnew/Layer.B.Paste] 217 | Enabled=1 218 | [pcbnew/Layer.F.Paste] 219 | Enabled=1 220 | [pcbnew/Layer.B.SilkS] 221 | Enabled=1 222 | [pcbnew/Layer.F.SilkS] 223 | Enabled=1 224 | [pcbnew/Layer.B.Mask] 225 | Enabled=1 226 | [pcbnew/Layer.F.Mask] 227 | Enabled=1 228 | [pcbnew/Layer.Dwgs.User] 229 | Enabled=1 230 | [pcbnew/Layer.Cmts.User] 231 | Enabled=1 232 | [pcbnew/Layer.Eco1.User] 233 | Enabled=1 234 | [pcbnew/Layer.Eco2.User] 235 | Enabled=1 236 | [pcbnew/Layer.Edge.Cuts] 237 | Enabled=1 238 | [pcbnew/Layer.Margin] 239 | Enabled=1 240 | [pcbnew/Layer.B.CrtYd] 241 | Enabled=1 242 | [pcbnew/Layer.F.CrtYd] 243 | Enabled=1 244 | [pcbnew/Layer.B.Fab] 245 | Enabled=1 246 | [pcbnew/Layer.F.Fab] 247 | Enabled=1 248 | [pcbnew/Layer.Rescue] 249 | Enabled=0 250 | [pcbnew/Netclasses] 251 | [pcbnew/Netclasses/Default] 252 | Name=Default 253 | Clearance=0.2 254 | TrackWidth=0.25 255 | ViaDiameter=0.8 256 | ViaDrill=0.4 257 | uViaDiameter=0.3 258 | uViaDrill=0.1 259 | dPairWidth=0.2 260 | dPairGap=0.25 261 | dPairViaGap=0.25 262 | -------------------------------------------------------------------------------- /kicad/486SocketBlaster.sch: -------------------------------------------------------------------------------- 1 | EESchema Schematic File Version 4 2 | EELAYER 30 0 3 | EELAYER END 4 | $Descr A2 23386 16535 5 | encoding utf-8 6 | Sheet 1 1 7 | Title "486SocketBlaster" 8 | Date "2023-06-24" 9 | Rev "0.5" 10 | Comp "ScrapComputing" 11 | Comment1 "" 12 | Comment2 "" 13 | Comment3 "" 14 | Comment4 "" 15 | $EndDescr 16 | $Comp 17 | L 486SocketBlaster:486 Bot1 18 | U 1 1 63946169 19 | P 10400 9250 20 | F 0 "Bot1" H 9935 9906 50 0000 C CNN 21 | F 1 "486" H 9935 9815 50 0000 C CNN 22 | F 2 "486pga:486_168pga" H 1650 8650 50 0001 C CNN 23 | F 3 "" H 1650 8650 50 0001 C CNN 24 | 1 10400 9250 25 | 1 0 0 -1 26 | $EndComp 27 | Wire Wire Line 28 | 1600 8500 1600 9550 29 | Wire Wire Line 30 | 1700 8500 1700 9550 31 | Wire Wire Line 32 | 1800 8500 1800 9550 33 | Wire Wire Line 34 | 1900 9550 1900 8500 35 | Wire Wire Line 36 | 2000 8500 2000 9550 37 | Wire Wire Line 38 | 2100 9550 2100 8500 39 | Wire Wire Line 40 | 2200 8500 2200 8900 41 | Wire Wire Line 42 | 2300 9550 2300 8500 43 | Wire Wire Line 44 | 2400 8500 2400 8900 45 | Wire Wire Line 46 | 2500 8500 2500 9550 47 | Wire Wire Line 48 | 2600 9550 2600 8900 49 | Wire Wire Line 50 | 2700 8500 2700 9550 51 | Wire Wire Line 52 | 2800 9550 2800 8500 53 | Wire Wire Line 54 | 2400 9550 2400 8900 55 | Wire Wire Line 56 | 3500 8500 3500 8900 57 | Wire Wire Line 58 | 3600 9550 3600 8900 59 | Wire Wire Line 60 | 3700 8500 3700 8900 61 | Wire Wire Line 62 | 3800 9550 3800 8500 63 | Wire Wire Line 64 | 4000 9550 4000 8500 65 | Wire Wire Line 66 | 4200 8500 4200 9550 67 | Wire Wire Line 68 | 4400 9550 4400 8500 69 | Wire Wire Line 70 | 4600 8500 4600 9550 71 | Wire Wire Line 72 | 4700 9550 4700 8500 73 | Wire Wire Line 74 | 4800 8500 4800 9550 75 | Wire Wire Line 76 | 4900 9550 4900 8500 77 | Wire Wire Line 78 | 5000 8500 5000 9550 79 | Wire Wire Line 80 | 5100 9550 5100 8500 81 | Wire Wire Line 82 | 5200 8500 5200 9550 83 | Wire Wire Line 84 | 5500 9550 5500 8500 85 | Wire Wire Line 86 | 5600 8500 5600 9550 87 | Wire Wire Line 88 | 5700 9550 5700 8500 89 | Wire Wire Line 90 | 5800 8500 5800 9550 91 | Wire Wire Line 92 | 5900 9550 5900 8500 93 | Wire Wire Line 94 | 6000 8500 6000 9550 95 | Wire Wire Line 96 | 6100 9550 6100 8500 97 | Wire Wire Line 98 | 6200 8500 6200 9550 99 | Wire Wire Line 100 | 6300 9550 6300 8500 101 | Wire Wire Line 102 | 6400 8500 6400 9550 103 | Wire Wire Line 104 | 6500 9550 6500 8500 105 | Wire Wire Line 106 | 6600 9550 6600 8500 107 | Wire Wire Line 108 | 6700 8500 6700 9550 109 | Wire Wire Line 110 | 6800 9550 6800 8500 111 | Wire Wire Line 112 | 6900 8500 6900 9550 113 | Wire Wire Line 114 | 7000 9550 7000 8500 115 | Wire Wire Line 116 | 7100 8500 7100 9550 117 | Wire Wire Line 118 | 7200 9550 7200 8500 119 | Wire Wire Line 120 | 7300 8500 7300 8900 121 | Wire Wire Line 122 | 7500 9550 7500 8500 123 | Wire Wire Line 124 | 7600 8500 7600 9550 125 | Wire Wire Line 126 | 7800 9550 7800 8900 127 | Wire Wire Line 128 | 8000 9550 8000 8500 129 | Wire Wire Line 130 | 7900 8500 7900 9550 131 | Wire Wire Line 132 | 8100 8500 8100 9550 133 | Wire Wire Line 134 | 8200 9550 8200 8500 135 | Wire Wire Line 136 | 8300 8500 8300 9550 137 | Wire Wire Line 138 | 8400 9550 8400 8500 139 | Wire Wire Line 140 | 8500 8500 8500 8900 141 | Wire Wire Line 142 | 8700 9550 8700 8500 143 | Wire Wire Line 144 | 8800 8500 8800 9550 145 | Wire Wire Line 146 | 9000 9550 9000 8900 147 | Wire Wire Line 148 | 9200 9550 9200 8500 149 | Wire Wire Line 150 | 9300 8500 9300 9550 151 | Wire Wire Line 152 | 9400 9550 9400 8500 153 | Wire Wire Line 154 | 9600 8500 9600 8900 155 | Wire Wire Line 156 | 9800 8500 9800 9550 157 | Wire Wire Line 158 | 9900 9550 9900 8500 159 | Wire Wire Line 160 | 10000 8500 10000 9550 161 | Wire Wire Line 162 | 10100 9550 10100 8500 163 | Wire Wire Line 164 | 10200 8500 10200 9550 165 | Wire Wire Line 166 | 10900 9550 10900 8900 167 | Wire Wire Line 168 | 10500 8500 10500 9550 169 | Wire Wire Line 170 | 10600 9550 10600 8500 171 | Wire Wire Line 172 | 10800 8500 10800 8900 173 | Wire Wire Line 174 | 11500 9550 11500 8900 175 | Wire Wire Line 176 | 11000 8500 11000 9550 177 | Wire Wire Line 178 | 11100 9550 11100 8500 179 | Wire Wire Line 180 | 11200 8500 11200 9550 181 | Wire Wire Line 182 | 11400 8500 11400 8900 183 | Wire Wire Line 184 | 11700 8500 11700 9550 185 | Wire Wire Line 186 | 11800 9550 11800 8500 187 | Wire Wire Line 188 | 12000 8500 12000 8900 189 | Wire Wire Line 190 | 12200 8500 12200 9550 191 | Wire Wire Line 192 | 12300 9550 12300 8500 193 | Wire Wire Line 194 | 12400 8500 12400 9550 195 | Wire Wire Line 196 | 12700 8500 12700 9550 197 | Wire Wire Line 198 | 12800 8500 12800 9550 199 | Wire Wire Line 200 | 12900 9550 12900 8500 201 | Wire Wire Line 202 | 13000 8500 13000 9550 203 | Wire Wire Line 204 | 13300 8500 13300 9550 205 | Wire Wire Line 206 | 13500 8500 13500 9550 207 | Wire Wire Line 208 | 13600 9550 13600 8500 209 | Wire Wire Line 210 | 13700 8500 13700 9550 211 | Wire Wire Line 212 | 13900 9550 13900 8500 213 | Wire Wire Line 214 | 14100 9550 14100 8500 215 | Wire Wire Line 216 | 14200 9550 14200 8500 217 | Wire Wire Line 218 | 14500 9550 14500 8500 219 | Wire Wire Line 220 | 14700 9550 14700 8500 221 | Wire Wire Line 222 | 14800 8500 14800 9550 223 | Wire Wire Line 224 | 14900 8500 14900 9550 225 | Wire Wire Line 226 | 15000 9550 15000 8500 227 | Wire Wire Line 228 | 15100 8500 15100 9550 229 | Wire Wire Line 230 | 15400 8500 15400 9550 231 | Wire Wire Line 232 | 15600 9550 15600 8500 233 | Wire Wire Line 234 | 16100 8500 16100 9550 235 | Wire Wire Line 236 | 16200 9550 16200 8500 237 | Wire Wire Line 238 | 16800 8500 16800 9550 239 | Wire Wire Line 240 | 17300 8500 17300 9550 241 | Wire Wire Line 242 | 17700 8500 17700 8900 243 | Wire Wire Line 244 | 17900 8500 17900 9550 245 | Wire Wire Line 246 | 4100 9550 4100 9900 247 | Wire Wire Line 248 | 4100 9900 4300 9900 249 | Wire Wire Line 250 | 5300 9550 5300 9900 251 | Connection ~ 5300 9900 252 | Wire Wire Line 253 | 5300 9900 5400 9900 254 | Wire Wire Line 255 | 5400 9550 5400 9900 256 | Connection ~ 5400 9900 257 | Wire Wire Line 258 | 5400 9900 7400 9900 259 | Wire Wire Line 260 | 7400 9550 7400 9900 261 | Connection ~ 7400 9900 262 | Wire Wire Line 263 | 7400 9900 7700 9900 264 | Wire Wire Line 265 | 3900 9550 3900 9900 266 | Wire Wire Line 267 | 3900 9900 4100 9900 268 | Connection ~ 4100 9900 269 | Connection ~ 8600 9900 270 | Wire Wire Line 271 | 8600 9550 8600 9900 272 | Wire Wire Line 273 | 9500 9550 9500 9900 274 | Connection ~ 9500 9900 275 | Wire Wire Line 276 | 9500 9900 10400 9900 277 | Wire Wire Line 278 | 3900 8500 3900 7900 279 | Wire Wire Line 280 | 3900 7900 4100 7900 281 | Wire Wire Line 282 | 5300 7900 5300 8500 283 | Wire Wire Line 284 | 5400 8500 5400 7900 285 | Wire Wire Line 286 | 5400 7900 5300 7900 287 | Connection ~ 5300 7900 288 | Wire Wire Line 289 | 7400 8500 7400 7900 290 | Wire Wire Line 291 | 7400 7900 5400 7900 292 | Connection ~ 5400 7900 293 | Connection ~ 7400 7900 294 | Wire Wire Line 295 | 8600 7900 8600 8500 296 | Wire Wire Line 297 | 8600 7900 8900 7900 298 | Wire Wire Line 299 | 8900 7900 8900 8500 300 | Connection ~ 8600 7900 301 | Wire Wire Line 302 | 8900 7900 9500 7900 303 | Wire Wire Line 304 | 9500 7900 9500 8500 305 | Connection ~ 8900 7900 306 | Wire Wire Line 307 | 9500 7900 10400 7900 308 | Connection ~ 9500 7900 309 | Wire Wire Line 310 | 11300 7900 11300 8500 311 | Wire Wire Line 312 | 11300 7900 11600 7900 313 | Wire Wire Line 314 | 11900 7900 11900 8500 315 | Connection ~ 11300 7900 316 | Connection ~ 11900 7900 317 | Wire Wire Line 318 | 11300 9550 11300 9900 319 | Connection ~ 11300 9900 320 | Wire Wire Line 321 | 4100 8500 4100 7900 322 | Connection ~ 4100 7900 323 | Wire Wire Line 324 | 4100 7900 4300 7900 325 | Wire Wire Line 326 | 4300 8500 4300 7900 327 | Connection ~ 4300 7900 328 | Wire Wire Line 329 | 4300 7900 4650 7900 330 | Wire Wire Line 331 | 2200 8900 2400 8900 332 | Connection ~ 2200 8900 333 | Wire Wire Line 334 | 2200 8900 2200 9550 335 | Connection ~ 2400 8900 336 | Wire Wire Line 337 | 2600 8900 3500 8900 338 | Connection ~ 2600 8900 339 | Wire Wire Line 340 | 2600 8900 2600 8500 341 | Connection ~ 3500 8900 342 | Wire Wire Line 343 | 3500 8900 3500 9550 344 | Wire Wire Line 345 | 2400 8900 2600 8900 346 | Wire Wire Line 347 | 3500 8900 3600 8900 348 | Connection ~ 3600 8900 349 | Wire Wire Line 350 | 3600 8900 3600 8500 351 | Wire Wire Line 352 | 3600 8900 3700 8900 353 | Connection ~ 3700 8900 354 | Wire Wire Line 355 | 3700 8900 3700 9550 356 | Wire Wire Line 357 | 3700 8900 7300 8900 358 | Connection ~ 7300 8900 359 | Wire Wire Line 360 | 7300 8900 7300 9550 361 | Wire Wire Line 362 | 7300 8900 7800 8900 363 | Connection ~ 7800 8900 364 | Wire Wire Line 365 | 7800 8900 7800 8500 366 | Wire Wire Line 367 | 7800 8900 8500 8900 368 | Connection ~ 8500 8900 369 | Wire Wire Line 370 | 8500 8900 8500 9550 371 | Wire Wire Line 372 | 8500 8900 9000 8900 373 | Connection ~ 9000 8900 374 | Wire Wire Line 375 | 9000 8900 9000 8500 376 | Wire Wire Line 377 | 9100 8500 9100 8900 378 | Wire Wire Line 379 | 9000 8900 9100 8900 380 | Connection ~ 9100 8900 381 | Wire Wire Line 382 | 9100 8900 9100 9550 383 | Wire Wire Line 384 | 9100 8900 9600 8900 385 | Connection ~ 9600 8900 386 | Wire Wire Line 387 | 9600 8900 9600 9550 388 | Wire Wire Line 389 | 9600 8900 10300 8900 390 | Connection ~ 10900 8900 391 | Wire Wire Line 392 | 10300 8900 10300 8500 393 | Wire Wire Line 394 | 10900 8900 11400 8900 395 | Connection ~ 11400 8900 396 | Wire Wire Line 397 | 11400 8900 11400 9550 398 | Wire Wire Line 399 | 11400 8900 11500 8900 400 | Connection ~ 11500 8900 401 | Wire Wire Line 402 | 10900 8900 10900 8500 403 | Wire Wire Line 404 | 11500 8900 12000 8900 405 | Connection ~ 12000 8900 406 | Wire Wire Line 407 | 12000 8900 12000 9550 408 | Wire Wire Line 409 | 11500 8900 11500 8500 410 | Wire Wire Line 411 | 13200 8900 13200 8500 412 | Wire Wire Line 413 | 13400 8900 13400 8500 414 | Wire Wire Line 415 | 15300 8900 15300 8500 416 | Wire Wire Line 417 | 17400 8900 17400 8500 418 | Wire Wire Line 419 | 17600 8900 17600 8500 420 | Wire Wire Line 421 | 17800 8900 17800 8500 422 | Wire Wire Line 423 | 18000 8900 18000 8500 424 | Connection ~ 10300 8900 425 | Wire Wire Line 426 | 10300 8900 10800 8900 427 | Connection ~ 10800 8900 428 | Wire Wire Line 429 | 10800 8900 10900 8900 430 | Connection ~ 17800 8900 431 | Wire Wire Line 432 | 17800 8900 18000 8900 433 | Connection ~ 18000 8900 434 | Connection ~ 13200 8900 435 | Wire Wire Line 436 | 13200 8900 13400 8900 437 | Connection ~ 13400 8900 438 | Connection ~ 15300 8900 439 | Connection ~ 17200 8900 440 | Connection ~ 17500 8900 441 | Wire Wire Line 442 | 17500 8900 17600 8900 443 | Connection ~ 17600 8900 444 | Wire Wire Line 445 | 17600 8900 17700 8900 446 | Connection ~ 17700 8900 447 | Wire Wire Line 448 | 17700 8900 17800 8900 449 | Wire Wire Line 450 | 10800 8900 10800 9550 451 | Wire Wire Line 452 | 10300 8900 10300 9550 453 | Wire Wire Line 454 | 10400 8500 10400 7900 455 | Connection ~ 10400 7900 456 | Wire Wire Line 457 | 10400 7900 10700 7900 458 | Wire Wire Line 459 | 10400 9550 10400 9900 460 | Connection ~ 10400 9900 461 | Wire Wire Line 462 | 10400 9900 10700 9900 463 | Connection ~ 10700 7900 464 | Wire Wire Line 465 | 10700 9550 10700 9900 466 | Connection ~ 10700 9900 467 | Wire Wire Line 468 | 10700 7900 11300 7900 469 | Wire Wire Line 470 | 10700 9900 11300 9900 471 | Wire Wire Line 472 | 17500 8500 17500 8900 473 | Wire Wire Line 474 | 17200 8900 17200 8500 475 | Wire Wire Line 476 | 17100 9550 17100 8500 477 | Wire Wire Line 478 | 17000 8500 17000 9550 479 | Wire Wire Line 480 | 16900 9550 16900 8500 481 | Wire Wire Line 482 | 16700 9550 16700 8500 483 | Wire Wire Line 484 | 16400 8500 16400 9550 485 | Wire Wire Line 486 | 14300 8500 14300 9550 487 | Wire Wire Line 488 | 12500 9550 12500 8500 489 | $Comp 490 | L 486SocketBlaster:486 Top1 491 | U 1 1 63948A0A 492 | P 10400 8200 493 | F 0 "Top1" H 9935 8856 50 0000 C CNN 494 | F 1 "486" H 9935 8765 50 0000 C CNN 495 | F 2 "486pga:486_168pga_socket" H 1650 7600 50 0001 C CNN 496 | F 3 "" H 1650 7600 50 0001 C CNN 497 | 1 10400 8200 498 | 1 0 0 -1 499 | $EndComp 500 | Wire Wire Line 501 | 11300 9900 11600 9900 502 | Wire Wire Line 503 | 11900 7900 13100 7900 504 | Wire Wire Line 505 | 11600 8500 11600 7900 506 | Connection ~ 11600 7900 507 | Wire Wire Line 508 | 11600 7900 11900 7900 509 | Wire Wire Line 510 | 11600 9550 11600 9900 511 | Connection ~ 11600 9900 512 | Wire Wire Line 513 | 12100 8500 12100 9550 514 | Wire Wire Line 515 | 12000 8900 13200 8900 516 | Wire Wire Line 517 | 12600 8500 12600 9550 518 | Wire Wire Line 519 | 13100 8500 13100 7900 520 | Connection ~ 13100 7900 521 | Wire Wire Line 522 | 13100 9550 13100 9900 523 | Connection ~ 13100 9900 524 | Wire Wire Line 525 | 13200 8900 13200 9550 526 | Wire Wire Line 527 | 13400 8900 13400 9550 528 | Wire Wire Line 529 | 13800 8500 13800 9550 530 | Wire Wire Line 531 | 14000 8500 14000 9550 532 | Wire Wire Line 533 | 14400 8500 14400 9550 534 | Wire Wire Line 535 | 14600 8500 14600 9550 536 | Wire Wire Line 537 | 13400 8900 15300 8900 538 | Wire Wire Line 539 | 15200 8500 15200 7900 540 | Connection ~ 15200 7900 541 | Wire Wire Line 542 | 13100 7900 15200 7900 543 | Wire Wire Line 544 | 15300 8900 15300 9550 545 | Wire Wire Line 546 | 15500 8500 15500 7900 547 | Wire Wire Line 548 | 15200 7900 15500 7900 549 | Connection ~ 15500 7900 550 | Wire Wire Line 551 | 15500 9550 15500 9900 552 | Wire Wire Line 553 | 13100 9900 15200 9900 554 | Wire Wire Line 555 | 15500 9900 15700 9900 556 | Connection ~ 15500 9900 557 | Wire Wire Line 558 | 15500 7900 15700 7900 559 | Wire Wire Line 560 | 15700 8500 15700 7900 561 | Connection ~ 15700 7900 562 | Wire Wire Line 563 | 15700 7900 15800 7900 564 | Wire Wire Line 565 | 15800 8500 15800 7900 566 | Connection ~ 15800 7900 567 | Wire Wire Line 568 | 15800 7900 15900 7900 569 | Wire Wire Line 570 | 15900 7900 15900 8500 571 | Connection ~ 15900 7900 572 | Wire Wire Line 573 | 15900 7900 16000 7900 574 | Wire Wire Line 575 | 16000 8500 16000 7900 576 | Connection ~ 16000 7900 577 | Wire Wire Line 578 | 16000 7900 16300 7900 579 | Wire Wire Line 580 | 16300 8500 16300 7900 581 | Connection ~ 16300 7900 582 | Wire Wire Line 583 | 15700 9550 15700 9900 584 | Connection ~ 15700 9900 585 | Wire Wire Line 586 | 15700 9900 15800 9900 587 | Wire Wire Line 588 | 15800 9550 15800 9900 589 | Connection ~ 15800 9900 590 | Wire Wire Line 591 | 15800 9900 15900 9900 592 | Wire Wire Line 593 | 15900 9550 15900 9900 594 | Connection ~ 15900 9900 595 | Wire Wire Line 596 | 15900 9900 16000 9900 597 | Wire Wire Line 598 | 16000 9550 16000 9900 599 | Connection ~ 16000 9900 600 | Wire Wire Line 601 | 16000 9900 16300 9900 602 | Connection ~ 16300 9900 603 | Wire Wire Line 604 | 16500 8500 16500 9550 605 | Wire Wire Line 606 | 17400 8900 17500 8900 607 | Wire Wire Line 608 | 17200 8900 17400 8900 609 | Connection ~ 17400 8900 610 | Wire Wire Line 611 | 17200 8900 17200 9550 612 | Wire Wire Line 613 | 16300 9900 18400 9900 614 | Wire Wire Line 615 | 17400 8900 17400 9550 616 | Wire Wire Line 617 | 17500 9550 17500 8900 618 | Wire Wire Line 619 | 17600 8900 17600 9550 620 | Wire Wire Line 621 | 17700 9550 17700 8900 622 | Wire Wire Line 623 | 17800 8900 17800 9550 624 | Wire Wire Line 625 | 18000 8900 18000 9550 626 | Wire Wire Line 627 | 18100 8500 18100 9550 628 | Wire Wire Line 629 | 18200 9550 18200 8500 630 | Wire Wire Line 631 | 18300 8500 18300 9550 632 | Wire Wire Line 633 | 2900 9550 2900 8500 634 | Wire Wire Line 635 | 3000 8500 3000 9550 636 | Wire Wire Line 637 | 3100 9550 3100 8500 638 | Wire Wire Line 639 | 3200 8500 3200 9550 640 | Wire Wire Line 641 | 3300 9550 3300 8500 642 | Wire Wire Line 643 | 3400 8500 3400 9550 644 | Wire Wire Line 645 | 4300 9550 4300 9900 646 | Connection ~ 4300 9900 647 | Wire Wire Line 648 | 4300 9900 5300 9900 649 | Connection ~ 7700 9900 650 | Wire Wire Line 651 | 7700 9900 8600 9900 652 | Wire Wire Line 653 | 15200 9550 15200 9900 654 | Connection ~ 15200 9900 655 | Wire Wire Line 656 | 15200 9900 15500 9900 657 | $Comp 658 | L Device:C C1 659 | U 1 1 64DCC663 660 | P 19800 8500 661 | F 0 "C1" H 19915 8546 50 0000 L CNN 662 | F 1 "10uF" H 19915 8455 50 0000 L CNN 663 | F 2 "Capacitor_SMD:C_1206_3216Metric_Pad1.33x1.80mm_HandSolder" H 19838 8350 50 0001 C CNN 664 | F 3 "~" H 19800 8500 50 0001 C CNN 665 | 1 19800 8500 666 | 1 0 0 -1 667 | $EndComp 668 | Wire Wire Line 669 | 19800 8900 19800 8650 670 | Wire Wire Line 671 | 19800 7900 19800 8350 672 | $Comp 673 | L Device:C C2 674 | U 1 1 64EA696E 675 | P 20150 8500 676 | F 0 "C2" H 20265 8546 50 0000 L CNN 677 | F 1 "10uF" H 20265 8455 50 0000 L CNN 678 | F 2 "Capacitor_SMD:C_1206_3216Metric_Pad1.33x1.80mm_HandSolder" H 20188 8350 50 0001 C CNN 679 | F 3 "~" H 20150 8500 50 0001 C CNN 680 | 1 20150 8500 681 | 1 0 0 -1 682 | $EndComp 683 | Wire Wire Line 684 | 20150 8900 20150 8650 685 | Wire Wire Line 686 | 20150 7900 20150 8350 687 | Connection ~ 19800 8900 688 | Connection ~ 19800 7900 689 | $Comp 690 | L Device:C C3 691 | U 1 1 64FD19CF 692 | P 20500 8500 693 | F 0 "C3" H 20615 8546 50 0000 L CNN 694 | F 1 "10uF" H 20615 8455 50 0000 L CNN 695 | F 2 "Capacitor_SMD:C_1206_3216Metric_Pad1.33x1.80mm_HandSolder" H 20538 8350 50 0001 C CNN 696 | F 3 "~" H 20500 8500 50 0001 C CNN 697 | 1 20500 8500 698 | 1 0 0 -1 699 | $EndComp 700 | $Comp 701 | L Device:C C4 702 | U 1 1 64FD25F2 703 | P 20900 8500 704 | F 0 "C4" H 21015 8546 50 0000 L CNN 705 | F 1 "10uF" H 21015 8455 50 0000 L CNN 706 | F 2 "Capacitor_SMD:C_1206_3216Metric_Pad1.33x1.80mm_HandSolder" H 20938 8350 50 0001 C CNN 707 | F 3 "~" H 20900 8500 50 0001 C CNN 708 | 1 20900 8500 709 | 1 0 0 -1 710 | $EndComp 711 | $Comp 712 | L Device:C C5 713 | U 1 1 64FD3101 714 | P 21300 8500 715 | F 0 "C5" H 21415 8546 50 0000 L CNN 716 | F 1 "10uF" H 21415 8455 50 0000 L CNN 717 | F 2 "Capacitor_THT:C_Rect_L7.0mm_W3.5mm_P5.00mm" H 21338 8350 50 0001 C CNN 718 | F 3 "~" H 21300 8500 50 0001 C CNN 719 | 1 21300 8500 720 | 1 0 0 -1 721 | $EndComp 722 | Wire Wire Line 723 | 20500 8650 20500 8900 724 | Wire Wire Line 725 | 20500 8350 20500 7900 726 | Wire Wire Line 727 | 20900 8350 20900 7900 728 | Wire Wire Line 729 | 21300 8350 21300 7900 730 | Wire Wire Line 731 | 21300 8650 21300 8900 732 | Wire Wire Line 733 | 20900 8650 20900 8900 734 | $Comp 735 | L power:GND #PWR0101 736 | U 1 1 6515601E 737 | P 19100 8900 738 | F 0 "#PWR0101" H 19100 8650 50 0001 C CNN 739 | F 1 "GND" H 19105 8727 50 0000 C CNN 740 | F 2 "" H 19100 8900 50 0001 C CNN 741 | F 3 "" H 19100 8900 50 0001 C CNN 742 | 1 19100 8900 743 | 1 0 0 -1 744 | $EndComp 745 | Connection ~ 19100 8900 746 | Connection ~ 21300 7900 747 | Wire Wire Line 748 | 21300 7900 21650 7900 749 | Connection ~ 21300 8900 750 | Connection ~ 20900 7900 751 | Wire Wire Line 752 | 20900 7900 21300 7900 753 | Connection ~ 20900 8900 754 | Wire Wire Line 755 | 20900 8900 21300 8900 756 | Connection ~ 20500 7900 757 | Wire Wire Line 758 | 20500 7900 20900 7900 759 | Connection ~ 20500 8900 760 | Wire Wire Line 761 | 20500 8900 20900 8900 762 | Connection ~ 20150 7900 763 | Wire Wire Line 764 | 20150 7900 20500 7900 765 | Connection ~ 20150 8900 766 | Wire Wire Line 767 | 20150 8900 20500 8900 768 | Wire Wire Line 769 | 19800 8900 20150 8900 770 | Wire Wire Line 771 | 19800 7900 20150 7900 772 | Wire Wire Line 773 | 7700 9550 7700 9900 774 | Wire Wire Line 775 | 10700 7900 10700 8500 776 | Wire Wire Line 777 | 16300 9550 16300 9900 778 | Wire Wire Line 779 | 7400 7900 7700 7900 780 | Wire Wire Line 781 | 7700 8500 7700 7900 782 | Connection ~ 7700 7900 783 | Wire Wire Line 784 | 7700 7900 8600 7900 785 | Wire Wire Line 786 | 11600 9900 11900 9900 787 | Wire Wire Line 788 | 11900 9550 11900 9900 789 | Connection ~ 11900 9900 790 | Wire Wire Line 791 | 11900 9900 13100 9900 792 | Wire Wire Line 793 | 9700 8500 9700 9550 794 | Wire Wire Line 795 | 8600 9900 8900 9900 796 | Wire Wire Line 797 | 8900 9550 8900 9900 798 | Connection ~ 8900 9900 799 | Wire Wire Line 800 | 8900 9900 9500 9900 801 | Wire Wire Line 802 | 15300 8900 16550 8900 803 | Wire Wire Line 804 | 16600 8700 16650 8700 805 | Wire Wire Line 806 | 16650 8700 16650 8200 807 | Wire Wire Line 808 | 16650 8200 16700 8200 809 | Wire Wire Line 810 | 16600 8700 16600 9550 811 | Wire Wire Line 812 | 16500 8150 16550 8150 813 | Wire Wire Line 814 | 16550 8150 16550 8900 815 | Connection ~ 16550 8900 816 | Wire Wire Line 817 | 16550 8900 17200 8900 818 | Wire Wire Line 819 | 16500 7750 16500 8150 820 | Wire Wire Line 821 | 16600 7750 16600 8500 822 | Wire Wire Line 823 | 16700 7750 16700 8200 824 | $Comp 825 | L Connector_Generic:Conn_01x03 CLKMUL1 826 | U 1 1 658A9730 827 | P 16600 7550 828 | F 0 "CLKMUL1" V 16564 7730 50 0000 L CNN 829 | F 1 "CLKMUL" V 16473 7730 50 0000 L CNN 830 | F 2 "Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical" H 16600 7550 50 0001 C CNN 831 | F 3 "~" H 16600 7550 50 0001 C CNN 832 | 1 16600 7550 833 | 0 1 -1 0 834 | $EndComp 835 | $Comp 836 | L Connector_Generic:Conn_01x03 ExtPwr1 837 | U 1 1 63AD7998 838 | P 22150 8900 839 | F 0 "ExtPwr1" H 22230 8942 50 0000 L CNN 840 | F 1 "Conn_01x03" H 22230 8851 50 0000 L CNN 841 | F 2 "Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical" H 22150 8900 50 0001 C CNN 842 | F 3 "~" H 22150 8900 50 0001 C CNN 843 | 1 22150 8900 844 | 1 0 0 -1 845 | $EndComp 846 | Wire Wire Line 847 | 21300 8900 21950 8900 848 | Wire Wire Line 849 | 18550 9900 21750 9900 850 | Wire Wire Line 851 | 21750 9900 21750 8800 852 | Wire Wire Line 853 | 21750 8800 21950 8800 854 | Connection ~ 18550 9900 855 | Wire Wire Line 856 | 21950 9000 21650 9000 857 | Wire Wire Line 858 | 21650 7900 21650 9000 859 | $Comp 860 | L 486SocketBlaster:VoltageRegulator U1 861 | U 1 1 63BB2DD9 862 | P 18950 7650 863 | F 0 "U1" H 19137 7515 50 0000 C CNN 864 | F 1 "VoltageRegulator" H 19137 7424 50 0000 C CNN 865 | F 2 "486pga:VoltageRegulator2" H 19150 7400 50 0001 C CNN 866 | F 3 "" H 19150 7400 50 0001 C CNN 867 | 1 18950 7650 868 | 1 0 0 -1 869 | $EndComp 870 | Connection ~ 19700 8900 871 | Wire Wire Line 872 | 19700 8900 19800 8900 873 | Connection ~ 19700 7900 874 | Wire Wire Line 875 | 19700 7900 19800 7900 876 | Wire Wire Line 877 | 16300 7900 19700 7900 878 | Wire Wire Line 879 | 19100 8900 19700 8900 880 | Wire Wire Line 881 | 18650 8600 18550 8600 882 | Wire Wire Line 883 | 18550 8600 18550 9900 884 | $Comp 885 | L 486SocketBlaster:VoltageRegulator U3 886 | U 1 1 63BCFF04 887 | P 18950 8200 888 | F 0 "U3" H 19137 8065 50 0000 C CNN 889 | F 1 "VoltageRegulator" H 19137 7974 50 0000 C CNN 890 | F 2 "486pga:VoltageRegulator" H 19150 7950 50 0001 C CNN 891 | F 3 "" H 19150 7950 50 0001 C CNN 892 | 1 18950 8200 893 | 1 0 0 -1 894 | $EndComp 895 | Wire Wire Line 896 | 19600 8750 19650 8750 897 | Wire Wire Line 898 | 19700 8750 19700 8900 899 | Wire Wire Line 900 | 19700 8600 19600 8600 901 | Wire Wire Line 902 | 19700 7900 19700 8050 903 | Wire Wire Line 904 | 18550 8600 18550 8050 905 | Wire Wire Line 906 | 18550 8050 18650 8050 907 | Connection ~ 18550 8600 908 | Wire Wire Line 909 | 18650 8200 18600 8200 910 | Wire Wire Line 911 | 19600 8050 19700 8050 912 | Connection ~ 19700 8050 913 | Wire Wire Line 914 | 19700 8050 19700 8600 915 | Wire Wire Line 916 | 19600 8200 19650 8200 917 | Wire Wire Line 918 | 19650 8200 19650 8750 919 | Connection ~ 19650 8750 920 | Wire Wire Line 921 | 19650 8750 19700 8750 922 | Wire Wire Line 923 | 18650 8750 18600 8750 924 | Wire Wire Line 925 | 18600 8750 18600 8900 926 | Connection ~ 18600 8900 927 | Wire Wire Line 928 | 18600 8900 19100 8900 929 | Wire Wire Line 930 | 18600 8750 18600 8200 931 | Connection ~ 18600 8750 932 | Wire Wire Line 933 | 18000 8900 18450 8900 934 | $Comp 935 | L Connector_Generic:Conn_01x03 J1 936 | U 1 1 649AC0AE 937 | P 4550 7300 938 | F 0 "J1" V 4514 7112 50 0000 R CNN 939 | F 1 "Conn_01x03" V 4423 7112 50 0000 R CNN 940 | F 2 "Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical" H 4550 7300 50 0001 C CNN 941 | F 3 "~" H 4550 7300 50 0001 C CNN 942 | 1 4550 7300 943 | 0 -1 -1 0 944 | $EndComp 945 | Wire Wire Line 946 | 4500 8500 4500 7700 947 | Wire Wire Line 948 | 4500 9550 4500 8750 949 | Wire Wire Line 950 | 4500 8750 4450 8750 951 | Wire Wire Line 952 | 4450 8750 4450 7500 953 | Wire Wire Line 954 | 4550 7500 4550 7700 955 | Wire Wire Line 956 | 4550 7700 4500 7700 957 | Wire Wire Line 958 | 4650 7500 4650 7900 959 | Connection ~ 4650 7900 960 | Wire Wire Line 961 | 4650 7900 5300 7900 962 | $Comp 963 | L power:PWR_FLAG #FLG0101 964 | U 1 1 64A5E216 965 | P 18450 8900 966 | F 0 "#FLG0101" H 18450 8975 50 0001 C CNN 967 | F 1 "PWR_FLAG" H 18450 9073 50 0000 C CNN 968 | F 2 "" H 18450 8900 50 0001 C CNN 969 | F 3 "~" H 18450 8900 50 0001 C CNN 970 | 1 18450 8900 971 | 1 0 0 -1 972 | $EndComp 973 | Connection ~ 18450 8900 974 | Wire Wire Line 975 | 18450 8900 18600 8900 976 | $Comp 977 | L power:PWR_FLAG #FLG0102 978 | U 1 1 64A5F681 979 | P 18400 9900 980 | F 0 "#FLG0102" H 18400 9975 50 0001 C CNN 981 | F 1 "PWR_FLAG" H 18400 10073 50 0000 C CNN 982 | F 2 "" H 18400 9900 50 0001 C CNN 983 | F 3 "~" H 18400 9900 50 0001 C CNN 984 | 1 18400 9900 985 | 1 0 0 -1 986 | $EndComp 987 | Connection ~ 18400 9900 988 | Wire Wire Line 989 | 18400 9900 18550 9900 990 | $EndSCHEMATC 991 | -------------------------------------------------------------------------------- /kicad/486pga.pretty/486_168pga.kicad_mod: -------------------------------------------------------------------------------- 1 | (module 486_168pga (layer F.Cu) (tedit 63A92188) 2 | (fp_text reference REF** (at -21.336 13.716) (layer F.SilkS) 3 | (effects (font (size 1 1) (thickness 0.15))) 4 | ) 5 | (fp_text value 486_168pga (at -21.59 11.176) (layer F.Fab) 6 | (effects (font (size 1 1) (thickness 0.15))) 7 | ) 8 | (fp_line (start -7.112 33.782) (end -7.112 6.858) (layer B.SilkS) (width 0.15)) 9 | (fp_line (start -33.782 6.858) (end -7.112 6.858) (layer B.SilkS) (width 0.15)) 10 | (fp_line (start -33.782 33.782) (end -33.782 6.858) (layer B.SilkS) (width 0.15)) 11 | (fp_line (start -33.782 33.782) (end -7.112 33.782) (layer B.SilkS) (width 0.15)) 12 | (fp_line (start -43.18 43.18) (end -43.18 -2.54) (layer B.SilkS) (width 0.15)) 13 | (fp_line (start 2.54 43.18) (end -43.18 43.18) (layer B.SilkS) (width 0.15)) 14 | (fp_line (start 2.54 0) (end 2.54 43.18) (layer B.SilkS) (width 0.15)) 15 | (fp_line (start 0 -2.54) (end 2.54 0) (layer B.SilkS) (width 0.15)) 16 | (fp_line (start -43.18 -2.54) (end 0 -2.54) (layer B.SilkS) (width 0.15)) 17 | (fp_circle (center 0 40.64) (end -0.508 39.624) (layer B.SilkS) (width 0.15)) 18 | (fp_circle (center -2.54 38.1) (end -3.048 37.084) (layer B.SilkS) (width 0.15)) 19 | (fp_circle (center -5.08 35.56) (end -5.588 34.544) (layer B.SilkS) (width 0.15)) 20 | (fp_circle (center -35.56 35.56) (end -36.068 34.544) (layer B.SilkS) (width 0.15)) 21 | (fp_circle (center -38.1 38.1) (end -38.608 37.084) (layer B.SilkS) (width 0.15)) 22 | (fp_circle (center -40.64 40.64) (end -41.148 39.624) (layer B.SilkS) (width 0.15)) 23 | (fp_circle (center -40.64 0) (end -41.148 -1.016) (layer B.SilkS) (width 0.15)) 24 | (fp_circle (center -38.1 2.54) (end -38.608 1.524) (layer B.SilkS) (width 0.15)) 25 | (fp_circle (center -35.56 5.08) (end -36.068 4.064) (layer B.SilkS) (width 0.15)) 26 | (fp_circle (center 0 0) (end -0.508 -1.016) (layer B.SilkS) (width 0.15)) 27 | (fp_circle (center -2.54 2.54) (end -3.048 1.524) (layer B.SilkS) (width 0.15)) 28 | (fp_circle (center -5.08 5.08) (end -5.588 4.064) (layer B.SilkS) (width 0.15)) 29 | (fp_text user Bottom (at -20.828 20.066 180) (layer B.SilkS) 30 | (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) 31 | ) 32 | (pad S17 thru_hole circle (at -40.64 40.64) (size 1.03 1.03) (drill 0.67) (layers *.Cu *.Mask)) 33 | (pad S16 thru_hole circle (at -40.64 38.1) (size 1.03 1.03) (drill 0.67) (layers *.Cu *.Mask)) 34 | (pad S15 thru_hole circle (at -40.64 35.56) (size 1.03 1.03) (drill 0.67) (layers *.Cu *.Mask)) 35 | (pad S14 thru_hole circle (at -40.64 33.02) (size 1.03 1.03) (drill 0.67) (layers *.Cu *.Mask)) 36 | (pad S13 thru_hole circle (at -40.64 30.48) (size 1.03 1.03) (drill 0.67) (layers *.Cu *.Mask)) 37 | (pad S12 thru_hole circle (at -40.64 27.94) (size 1.03 1.03) (drill 0.67) (layers *.Cu *.Mask)) 38 | (pad S11 thru_hole circle (at -40.64 25.4) (size 1.03 1.03) (drill 0.67) (layers *.Cu *.Mask)) 39 | (pad S10 thru_hole circle (at -40.64 22.86) (size 1.03 1.03) (drill 0.67) (layers *.Cu *.Mask)) 40 | (pad S9 thru_hole circle (at -40.64 20.32) (size 1.03 1.03) (drill 0.67) (layers *.Cu *.Mask)) 41 | (pad S8 thru_hole circle (at -40.64 17.78) (size 1.03 1.03) (drill 0.67) (layers *.Cu *.Mask)) 42 | (pad S7 thru_hole circle (at -40.64 15.24) (size 1.03 1.03) (drill 0.67) (layers *.Cu *.Mask)) 43 | (pad S6 thru_hole circle (at -40.64 12.7) (size 1.03 1.03) (drill 0.67) (layers *.Cu *.Mask)) 44 | (pad S5 thru_hole circle (at -40.64 10.16) (size 1.03 1.03) (drill 0.67) (layers *.Cu *.Mask)) 45 | (pad S4 thru_hole circle (at -40.64 7.62) (size 1.03 1.03) (drill 0.67) (layers *.Cu *.Mask)) 46 | (pad S3 thru_hole circle (at -40.64 5.08) (size 1.03 1.03) (drill 0.67) (layers *.Cu *.Mask)) 47 | (pad S2 thru_hole circle (at -40.64 2.54) (size 1.03 1.03) (drill 0.67) (layers *.Cu *.Mask)) 48 | (pad S1 thru_hole circle (at -40.64 0) (size 1.03 1.03) (drill 0.67) (layers *.Cu *.Mask)) 49 | (pad R17 thru_hole circle (at -38.1 40.64) (size 1.03 1.03) (drill 0.67) (layers *.Cu *.Mask)) 50 | (pad R16 thru_hole circle (at -38.1 38.1) (size 1.03 1.03) (drill 0.67) (layers *.Cu *.Mask)) 51 | (pad R15 thru_hole circle (at -38.1 35.56) (size 1.03 1.03) (drill 0.67) (layers *.Cu *.Mask)) 52 | (pad R14 thru_hole circle (at -38.1 33.02) (size 1.03 1.03) (drill 0.67) (layers *.Cu *.Mask)) 53 | (pad R13 thru_hole circle (at -38.1 30.48) (size 1.03 1.03) (drill 0.67) (layers *.Cu *.Mask)) 54 | (pad R12 thru_hole circle (at -38.1 27.94) (size 1.03 1.03) (drill 0.67) (layers *.Cu *.Mask)) 55 | (pad R11 thru_hole circle (at -38.1 25.4) (size 1.03 1.03) (drill 0.67) (layers *.Cu *.Mask)) 56 | (pad R10 thru_hole circle (at -38.1 22.86) (size 1.03 1.03) (drill 0.67) (layers *.Cu *.Mask)) 57 | (pad R9 thru_hole circle (at -38.1 20.32) (size 1.03 1.03) (drill 0.67) (layers *.Cu *.Mask)) 58 | (pad R8 thru_hole circle (at -38.1 17.78) (size 1.03 1.03) (drill 0.67) (layers *.Cu *.Mask)) 59 | (pad R7 thru_hole circle (at -38.1 15.24) (size 1.03 1.03) (drill 0.67) (layers *.Cu *.Mask)) 60 | (pad R6 thru_hole circle (at -38.1 12.7) (size 1.03 1.03) (drill 0.67) (layers *.Cu *.Mask)) 61 | (pad R5 thru_hole circle (at -38.1 10.16) (size 1.03 1.03) (drill 0.67) (layers *.Cu *.Mask)) 62 | (pad R4 thru_hole circle (at -38.1 7.62) (size 1.03 1.03) (drill 0.67) (layers *.Cu *.Mask)) 63 | (pad R3 thru_hole circle (at -38.1 5.08) (size 1.03 1.03) (drill 0.67) (layers *.Cu *.Mask)) 64 | (pad R2 thru_hole circle (at -38.1 2.54) (size 1.03 1.03) (drill 0.67) (layers *.Cu *.Mask)) 65 | (pad R1 thru_hole circle (at -38.1 0) (size 1.03 1.03) (drill 0.67) (layers *.Cu *.Mask)) 66 | (pad Q17 thru_hole circle (at -35.56 40.64) (size 1.03 1.03) (drill 0.67) (layers *.Cu *.Mask)) 67 | (pad Q16 thru_hole circle (at -35.56 38.1) (size 1.03 1.03) (drill 0.67) (layers *.Cu *.Mask)) 68 | (pad Q15 thru_hole circle (at -35.56 35.56) (size 1.03 1.03) (drill 0.67) (layers *.Cu *.Mask)) 69 | (pad Q14 thru_hole circle (at -35.56 33.02) (size 1.03 1.03) (drill 0.67) (layers *.Cu *.Mask)) 70 | (pad Q13 thru_hole circle (at -35.56 30.48) (size 1.03 1.03) (drill 0.67) (layers *.Cu *.Mask)) 71 | (pad Q12 thru_hole circle (at -35.56 27.94) (size 1.03 1.03) (drill 0.67) (layers *.Cu *.Mask)) 72 | (pad Q11 thru_hole circle (at -35.56 25.4) (size 1.03 1.03) (drill 0.67) (layers *.Cu *.Mask)) 73 | (pad Q10 thru_hole circle (at -35.56 22.86) (size 1.03 1.03) (drill 0.67) (layers *.Cu *.Mask)) 74 | (pad Q9 thru_hole circle (at -35.56 20.32) (size 1.03 1.03) (drill 0.67) (layers *.Cu *.Mask)) 75 | (pad Q8 thru_hole circle (at -35.56 17.78) (size 1.03 1.03) (drill 0.67) (layers *.Cu *.Mask)) 76 | (pad Q7 thru_hole circle (at -35.56 15.24) (size 1.03 1.03) (drill 0.67) (layers *.Cu *.Mask)) 77 | (pad Q6 thru_hole circle (at -35.56 12.7) (size 1.03 1.03) (drill 0.67) (layers *.Cu *.Mask)) 78 | (pad Q5 thru_hole circle (at -35.56 10.16) (size 1.03 1.03) (drill 0.67) (layers *.Cu *.Mask)) 79 | (pad Q4 thru_hole circle (at -35.56 7.62) (size 1.03 1.03) (drill 0.67) (layers *.Cu *.Mask)) 80 | (pad Q3 thru_hole circle (at -35.56 5.08) (size 1.03 1.03) (drill 0.67) (layers *.Cu *.Mask)) 81 | (pad Q2 thru_hole circle (at -35.56 2.54) (size 1.03 1.03) (drill 0.67) (layers *.Cu *.Mask)) 82 | (pad Q1 thru_hole circle (at -35.56 0) (size 1.03 1.03) (drill 0.67) (layers *.Cu *.Mask)) 83 | (pad P17 thru_hole circle (at -33.02 40.64) (size 1.03 1.03) (drill 0.67) (layers *.Cu *.Mask)) 84 | (pad P16 thru_hole circle (at -33.02 38.1) (size 1.03 1.03) (drill 0.67) (layers *.Cu *.Mask)) 85 | (pad P15 thru_hole circle (at -33.02 35.56) (size 1.03 1.03) (drill 0.67) (layers *.Cu *.Mask)) 86 | (pad P3 thru_hole circle (at -33.02 5.08) (size 1.03 1.03) (drill 0.67) (layers *.Cu *.Mask)) 87 | (pad P2 thru_hole circle (at -33.02 2.54) (size 1.03 1.03) (drill 0.67) (layers *.Cu *.Mask)) 88 | (pad P1 thru_hole circle (at -33.02 0) (size 1.03 1.03) (drill 0.67) (layers *.Cu *.Mask)) 89 | (pad N17 thru_hole circle (at -30.48 40.64) (size 1.03 1.03) (drill 0.67) (layers *.Cu *.Mask)) 90 | (pad N16 thru_hole circle (at -30.48 38.1) (size 1.03 1.03) (drill 0.67) (layers *.Cu *.Mask)) 91 | (pad N15 thru_hole circle (at -30.48 35.56) (size 1.03 1.03) (drill 0.67) (layers *.Cu *.Mask)) 92 | (pad N3 thru_hole circle (at -30.48 5.08) (size 1.03 1.03) (drill 0.67) (layers *.Cu *.Mask)) 93 | (pad N2 thru_hole circle (at -30.48 2.54) (size 1.03 1.03) (drill 0.67) (layers *.Cu *.Mask)) 94 | (pad N1 thru_hole circle (at -30.48 0) (size 1.03 1.03) (drill 0.67) (layers *.Cu *.Mask)) 95 | (pad M17 thru_hole circle (at -27.94 40.64) (size 1.03 1.03) (drill 0.67) (layers *.Cu *.Mask)) 96 | (pad M16 thru_hole circle (at -27.94 38.1) (size 1.03 1.03) (drill 0.67) (layers *.Cu *.Mask)) 97 | (pad M15 thru_hole circle (at -27.94 35.56) (size 1.03 1.03) (drill 0.67) (layers *.Cu *.Mask)) 98 | (pad M3 thru_hole circle (at -27.94 5.08) (size 1.03 1.03) (drill 0.67) (layers *.Cu *.Mask)) 99 | (pad M2 thru_hole circle (at -27.94 2.54) (size 1.03 1.03) (drill 0.67) (layers *.Cu *.Mask)) 100 | (pad M1 thru_hole circle (at -27.94 0) (size 1.03 1.03) (drill 0.67) (layers *.Cu *.Mask)) 101 | (pad L17 thru_hole circle (at -25.4 40.64) (size 1.03 1.03) (drill 0.67) (layers *.Cu *.Mask)) 102 | (pad L16 thru_hole circle (at -25.4 38.1) (size 1.03 1.03) (drill 0.67) (layers *.Cu *.Mask)) 103 | (pad L15 thru_hole circle (at -25.4 35.56) (size 1.03 1.03) (drill 0.67) (layers *.Cu *.Mask)) 104 | (pad L3 thru_hole circle (at -25.4 5.08) (size 1.03 1.03) (drill 0.67) (layers *.Cu *.Mask)) 105 | (pad L2 thru_hole circle (at -25.4 2.54) (size 1.03 1.03) (drill 0.67) (layers *.Cu *.Mask)) 106 | (pad L1 thru_hole circle (at -25.4 0) (size 1.03 1.03) (drill 0.67) (layers *.Cu *.Mask)) 107 | (pad K17 thru_hole circle (at -22.86 40.64) (size 1.03 1.03) (drill 0.67) (layers *.Cu *.Mask)) 108 | (pad K16 thru_hole circle (at -22.86 38.1) (size 1.03 1.03) (drill 0.67) (layers *.Cu *.Mask)) 109 | (pad K15 thru_hole circle (at -22.86 35.56) (size 1.03 1.03) (drill 0.67) (layers *.Cu *.Mask)) 110 | (pad K3 thru_hole circle (at -22.86 5.08) (size 1.03 1.03) (drill 0.67) (layers *.Cu *.Mask)) 111 | (pad K2 thru_hole circle (at -22.86 2.54) (size 1.03 1.03) (drill 0.67) (layers *.Cu *.Mask)) 112 | (pad K1 thru_hole circle (at -22.86 0) (size 1.03 1.03) (drill 0.67) (layers *.Cu *.Mask)) 113 | (pad J17 thru_hole circle (at -20.32 40.64) (size 1.03 1.03) (drill 0.67) (layers *.Cu *.Mask)) 114 | (pad J16 thru_hole circle (at -20.32 38.1) (size 1.03 1.03) (drill 0.67) (layers *.Cu *.Mask)) 115 | (pad J15 thru_hole circle (at -20.32 35.56) (size 1.03 1.03) (drill 0.67) (layers *.Cu *.Mask)) 116 | (pad J3 thru_hole circle (at -20.32 5.08) (size 1.03 1.03) (drill 0.67) (layers *.Cu *.Mask)) 117 | (pad J2 thru_hole circle (at -20.32 2.54) (size 1.03 1.03) (drill 0.67) (layers *.Cu *.Mask)) 118 | (pad J1 thru_hole circle (at -20.32 0) (size 1.03 1.03) (drill 0.67) (layers *.Cu *.Mask)) 119 | (pad H17 thru_hole circle (at -17.78 40.64) (size 1.03 1.03) (drill 0.67) (layers *.Cu *.Mask)) 120 | (pad H16 thru_hole circle (at -17.78 38.1) (size 1.03 1.03) (drill 0.67) (layers *.Cu *.Mask)) 121 | (pad H15 thru_hole circle (at -17.78 35.56) (size 1.03 1.03) (drill 0.67) (layers *.Cu *.Mask)) 122 | (pad H3 thru_hole circle (at -17.78 5.08) (size 1.03 1.03) (drill 0.67) (layers *.Cu *.Mask)) 123 | (pad H2 thru_hole circle (at -17.78 2.54) (size 1.03 1.03) (drill 0.67) (layers *.Cu *.Mask)) 124 | (pad H1 thru_hole circle (at -17.78 0) (size 1.03 1.03) (drill 0.67) (layers *.Cu *.Mask)) 125 | (pad G17 thru_hole circle (at -15.24 40.64) (size 1.03 1.03) (drill 0.67) (layers *.Cu *.Mask)) 126 | (pad G16 thru_hole circle (at -15.24 38.1) (size 1.03 1.03) (drill 0.67) (layers *.Cu *.Mask)) 127 | (pad G15 thru_hole circle (at -15.24 35.56) (size 1.03 1.03) (drill 0.67) (layers *.Cu *.Mask)) 128 | (pad G3 thru_hole circle (at -15.24 5.08) (size 1.03 1.03) (drill 0.67) (layers *.Cu *.Mask)) 129 | (pad G2 thru_hole circle (at -15.24 2.54) (size 1.03 1.03) (drill 0.67) (layers *.Cu *.Mask)) 130 | (pad G1 thru_hole circle (at -15.24 0) (size 1.03 1.03) (drill 0.67) (layers *.Cu *.Mask)) 131 | (pad F17 thru_hole circle (at -12.7 40.64) (size 1.03 1.03) (drill 0.67) (layers *.Cu *.Mask)) 132 | (pad F16 thru_hole circle (at -12.7 38.1) (size 1.03 1.03) (drill 0.67) (layers *.Cu *.Mask)) 133 | (pad F15 thru_hole circle (at -12.7 35.56) (size 1.03 1.03) (drill 0.67) (layers *.Cu *.Mask)) 134 | (pad F3 thru_hole circle (at -12.7 5.08) (size 1.03 1.03) (drill 0.67) (layers *.Cu *.Mask)) 135 | (pad F2 thru_hole circle (at -12.7 2.54) (size 1.03 1.03) (drill 0.67) (layers *.Cu *.Mask)) 136 | (pad F1 thru_hole circle (at -12.7 0) (size 1.03 1.03) (drill 0.67) (layers *.Cu *.Mask)) 137 | (pad E17 thru_hole circle (at -10.16 40.64) (size 1.03 1.03) (drill 0.67) (layers *.Cu *.Mask)) 138 | (pad E16 thru_hole circle (at -10.16 38.1) (size 1.03 1.03) (drill 0.67) (layers *.Cu *.Mask)) 139 | (pad E15 thru_hole circle (at -10.16 35.56) (size 1.03 1.03) (drill 0.67) (layers *.Cu *.Mask)) 140 | (pad E3 thru_hole circle (at -10.16 5.08) (size 1.03 1.03) (drill 0.67) (layers *.Cu *.Mask)) 141 | (pad E2 thru_hole circle (at -10.16 2.54) (size 1.03 1.03) (drill 0.67) (layers *.Cu *.Mask)) 142 | (pad E1 thru_hole circle (at -10.16 0) (size 1.03 1.03) (drill 0.67) (layers *.Cu *.Mask)) 143 | (pad D17 thru_hole circle (at -7.62 40.64) (size 1.03 1.03) (drill 0.67) (layers *.Cu *.Mask)) 144 | (pad D16 thru_hole circle (at -7.62 38.1) (size 1.03 1.03) (drill 0.67) (layers *.Cu *.Mask)) 145 | (pad D15 thru_hole circle (at -7.62 35.56) (size 1.03 1.03) (drill 0.67) (layers *.Cu *.Mask)) 146 | (pad D3 thru_hole circle (at -7.62 5.08) (size 1.03 1.03) (drill 0.67) (layers *.Cu *.Mask)) 147 | (pad D2 thru_hole circle (at -7.62 2.54) (size 1.03 1.03) (drill 0.67) (layers *.Cu *.Mask)) 148 | (pad D1 thru_hole circle (at -7.62 0) (size 1.03 1.03) (drill 0.67) (layers *.Cu *.Mask)) 149 | (pad C17 thru_hole circle (at -5.08 40.64) (size 1.03 1.03) (drill 0.67) (layers *.Cu *.Mask)) 150 | (pad C16 thru_hole circle (at -5.08 38.1) (size 1.03 1.03) (drill 0.67) (layers *.Cu *.Mask)) 151 | (pad C15 thru_hole circle (at -5.08 35.56) (size 1.03 1.03) (drill 0.67) (layers *.Cu *.Mask)) 152 | (pad C14 thru_hole circle (at -5.08 33.02) (size 1.03 1.03) (drill 0.67) (layers *.Cu *.Mask)) 153 | (pad C13 thru_hole circle (at -5.08 30.48) (size 1.03 1.03) (drill 0.67) (layers *.Cu *.Mask)) 154 | (pad C12 thru_hole circle (at -5.08 27.94) (size 1.03 1.03) (drill 0.67) (layers *.Cu *.Mask)) 155 | (pad C11 thru_hole circle (at -5.08 25.4) (size 1.03 1.03) (drill 0.67) (layers *.Cu *.Mask)) 156 | (pad C10 thru_hole circle (at -5.08 22.86) (size 1.03 1.03) (drill 0.67) (layers *.Cu *.Mask)) 157 | (pad C9 thru_hole circle (at -5.08 20.32) (size 1.03 1.03) (drill 0.67) (layers *.Cu *.Mask)) 158 | (pad C8 thru_hole circle (at -5.08 17.78) (size 1.03 1.03) (drill 0.67) (layers *.Cu *.Mask)) 159 | (pad C7 thru_hole circle (at -5.08 15.24) (size 1.03 1.03) (drill 0.67) (layers *.Cu *.Mask)) 160 | (pad C6 thru_hole circle (at -5.08 12.7) (size 1.03 1.03) (drill 0.67) (layers *.Cu *.Mask)) 161 | (pad C5 thru_hole circle (at -5.08 10.16) (size 1.03 1.03) (drill 0.67) (layers *.Cu *.Mask)) 162 | (pad C4 thru_hole circle (at -5.08 7.62) (size 1.03 1.03) (drill 0.67) (layers *.Cu *.Mask)) 163 | (pad C3 thru_hole circle (at -5.08 5.08) (size 1.03 1.03) (drill 0.67) (layers *.Cu *.Mask)) 164 | (pad C2 thru_hole circle (at -5.08 2.54) (size 1.03 1.03) (drill 0.67) (layers *.Cu *.Mask)) 165 | (pad C1 thru_hole circle (at -5.08 0) (size 1.03 1.03) (drill 0.67) (layers *.Cu *.Mask)) 166 | (pad B17 thru_hole circle (at -2.54 40.64) (size 1.03 1.03) (drill 0.67) (layers *.Cu *.Mask)) 167 | (pad B16 thru_hole circle (at -2.54 38.1) (size 1.03 1.03) (drill 0.67) (layers *.Cu *.Mask)) 168 | (pad B15 thru_hole circle (at -2.54 35.56) (size 1.03 1.03) (drill 0.67) (layers *.Cu *.Mask)) 169 | (pad B14 thru_hole circle (at -2.54 33.02) (size 1.03 1.03) (drill 0.67) (layers *.Cu *.Mask)) 170 | (pad B13 thru_hole circle (at -2.54 30.48) (size 1.03 1.03) (drill 0.67) (layers *.Cu *.Mask)) 171 | (pad B12 thru_hole circle (at -2.54 27.94) (size 1.03 1.03) (drill 0.67) (layers *.Cu *.Mask)) 172 | (pad B11 thru_hole circle (at -2.54 25.4) (size 1.03 1.03) (drill 0.67) (layers *.Cu *.Mask)) 173 | (pad B10 thru_hole circle (at -2.54 22.86) (size 1.03 1.03) (drill 0.67) (layers *.Cu *.Mask)) 174 | (pad B9 thru_hole circle (at -2.54 20.32) (size 1.03 1.03) (drill 0.67) (layers *.Cu *.Mask)) 175 | (pad B8 thru_hole circle (at -2.54 17.78) (size 1.03 1.03) (drill 0.67) (layers *.Cu *.Mask)) 176 | (pad B7 thru_hole circle (at -2.54 15.24) (size 1.03 1.03) (drill 0.67) (layers *.Cu *.Mask)) 177 | (pad B6 thru_hole circle (at -2.54 12.7) (size 1.03 1.03) (drill 0.67) (layers *.Cu *.Mask)) 178 | (pad B5 thru_hole circle (at -2.54 10.16) (size 1.03 1.03) (drill 0.67) (layers *.Cu *.Mask)) 179 | (pad B4 thru_hole circle (at -2.54 7.62) (size 1.03 1.03) (drill 0.67) (layers *.Cu *.Mask)) 180 | (pad B3 thru_hole circle (at -2.54 5.08) (size 1.03 1.03) (drill 0.67) (layers *.Cu *.Mask)) 181 | (pad B2 thru_hole circle (at -2.54 2.54) (size 1.03 1.03) (drill 0.67) (layers *.Cu *.Mask)) 182 | (pad B1 thru_hole circle (at -2.54 0) (size 1.03 1.03) (drill 0.67) (layers *.Cu *.Mask)) 183 | (pad A17 thru_hole circle (at 0 40.64) (size 1.03 1.03) (drill 0.67) (layers *.Cu *.Mask)) 184 | (pad A16 thru_hole circle (at 0 38.1) (size 1.03 1.03) (drill 0.67) (layers *.Cu *.Mask)) 185 | (pad A15 thru_hole circle (at 0 35.56) (size 1.03 1.03) (drill 0.67) (layers *.Cu *.Mask)) 186 | (pad A14 thru_hole circle (at 0 33.02) (size 1.03 1.03) (drill 0.67) (layers *.Cu *.Mask)) 187 | (pad A13 thru_hole circle (at 0 30.48) (size 1.03 1.03) (drill 0.67) (layers *.Cu *.Mask)) 188 | (pad A12 thru_hole circle (at 0 27.94) (size 1.03 1.03) (drill 0.67) (layers *.Cu *.Mask)) 189 | (pad A11 thru_hole circle (at 0 25.4) (size 1.03 1.03) (drill 0.67) (layers *.Cu *.Mask)) 190 | (pad A10 thru_hole circle (at 0 22.86) (size 1.03 1.03) (drill 0.67) (layers *.Cu *.Mask)) 191 | (pad A9 thru_hole circle (at 0 20.32) (size 1.03 1.03) (drill 0.67) (layers *.Cu *.Mask)) 192 | (pad A8 thru_hole circle (at 0 17.78) (size 1.03 1.03) (drill 0.67) (layers *.Cu *.Mask)) 193 | (pad A7 thru_hole circle (at 0 15.24) (size 1.03 1.03) (drill 0.67) (layers *.Cu *.Mask)) 194 | (pad A6 thru_hole circle (at 0 12.7) (size 1.03 1.03) (drill 0.67) (layers *.Cu *.Mask)) 195 | (pad A5 thru_hole circle (at 0 10.16) (size 1.03 1.03) (drill 0.67) (layers *.Cu *.Mask)) 196 | (pad A4 thru_hole circle (at 0 7.62) (size 1.03 1.03) (drill 0.67) (layers *.Cu *.Mask)) 197 | (pad A3 thru_hole circle (at 0 5.08) (size 1.03 1.03) (drill 0.67) (layers *.Cu *.Mask)) 198 | (pad A2 thru_hole circle (at 0 2.54) (size 1.03 1.03) (drill 0.67) (layers *.Cu *.Mask)) 199 | (pad A1 thru_hole circle (at 0 0) (size 1.03 1.03) (drill 0.67) (layers *.Cu *.Mask)) 200 | ) 201 | -------------------------------------------------------------------------------- /kicad/486pga.pretty/486_168pga_socket.kicad_mod: -------------------------------------------------------------------------------- 1 | (module 486_168pga_socket (layer F.Cu) (tedit 63A9386E) 2 | (fp_text reference REF** (at -21.59 16.256) (layer F.SilkS) 3 | (effects (font (size 1 1) (thickness 0.15))) 4 | ) 5 | (fp_text value 486_168pga_socket (at -23.114 13.462) (layer F.Fab) 6 | (effects (font (size 1 1) (thickness 0.15))) 7 | ) 8 | (fp_circle (center -35.56 5.08) (end -34.798 5.588) (layer F.SilkS) (width 0.15)) 9 | (fp_circle (center -38.1 2.54) (end -37.338 3.048) (layer F.SilkS) (width 0.15)) 10 | (fp_circle (center -40.64 0) (end -39.878 0.508) (layer F.SilkS) (width 0.15)) 11 | (fp_circle (center 0 0) (end 0.762 0.508) (layer F.SilkS) (width 0.15)) 12 | (fp_circle (center -2.54 2.54) (end -1.778 3.048) (layer F.SilkS) (width 0.15)) 13 | (fp_circle (center -5.08 5.08) (end -4.318 5.588) (layer F.SilkS) (width 0.15)) 14 | (fp_circle (center 0 40.64) (end 0.762 41.148) (layer F.SilkS) (width 0.15)) 15 | (fp_circle (center -2.54 38.1) (end -1.778 38.608) (layer F.SilkS) (width 0.15)) 16 | (fp_circle (center -5.08 35.56) (end -4.318 36.068) (layer F.SilkS) (width 0.15)) 17 | (fp_circle (center -35.56 35.56) (end -34.798 36.068) (layer F.SilkS) (width 0.15)) 18 | (fp_circle (center -38.1 38.1) (end -37.338 38.608) (layer F.SilkS) (width 0.15)) 19 | (fp_circle (center -40.64 40.64) (end -39.878 41.148) (layer F.SilkS) (width 0.15)) 20 | (fp_line (start -33.02 7.62) (end -33.02 33.02) (layer F.SilkS) (width 0.15)) 21 | (fp_line (start -9.398 7.62) (end -33.02 7.62) (layer F.SilkS) (width 0.15)) 22 | (fp_line (start -7.62 33.02) (end -7.62 9.398) (layer F.SilkS) (width 0.15)) 23 | (fp_line (start -33.02 33.02) (end -7.62 33.02) (layer F.SilkS) (width 0.15)) 24 | (fp_line (start 0 -2.54) (end 2.54 0) (layer F.SilkS) (width 0.15)) 25 | (fp_line (start -43.18 -2.54) (end 0 -2.54) (layer F.SilkS) (width 0.15)) 26 | (fp_line (start 2.54 0) (end 2.54 43.18) (layer F.SilkS) (width 0.15)) 27 | (fp_line (start 2.54 43.18) (end -43.18 43.18) (layer F.SilkS) (width 0.15)) 28 | (fp_line (start -43.18 43.18) (end -43.18 -2.54) (layer F.SilkS) (width 0.15)) 29 | (fp_line (start -9.398 7.62) (end -7.62 9.398) (layer F.SilkS) (width 0.15)) 30 | (fp_text user A (at 0 -1.778) (layer F.SilkS) 31 | (effects (font (size 0.6 0.6) (thickness 0.15))) 32 | ) 33 | (fp_text user B (at -2.54 -1.778) (layer F.SilkS) 34 | (effects (font (size 0.6 0.6) (thickness 0.15))) 35 | ) 36 | (fp_text user C (at -5.08 -1.778) (layer F.SilkS) 37 | (effects (font (size 0.6 0.6) (thickness 0.15))) 38 | ) 39 | (fp_text user D (at -7.62 -1.778) (layer F.SilkS) 40 | (effects (font (size 0.6 0.6) (thickness 0.15))) 41 | ) 42 | (fp_text user E (at -10.16 -1.778) (layer F.SilkS) 43 | (effects (font (size 0.6 0.6) (thickness 0.15))) 44 | ) 45 | (fp_text user F (at -12.7 -1.778) (layer F.SilkS) 46 | (effects (font (size 0.6 0.6) (thickness 0.15))) 47 | ) 48 | (fp_text user G (at -15.24 -1.778) (layer F.SilkS) 49 | (effects (font (size 0.6 0.6) (thickness 0.15))) 50 | ) 51 | (fp_text user H (at -17.78 -1.778) (layer F.SilkS) 52 | (effects (font (size 0.6 0.6) (thickness 0.15))) 53 | ) 54 | (fp_text user J (at -20.32 -1.778) (layer F.SilkS) 55 | (effects (font (size 0.6 0.6) (thickness 0.15))) 56 | ) 57 | (fp_text user K (at -22.86 -1.778) (layer F.SilkS) 58 | (effects (font (size 0.6 0.6) (thickness 0.15))) 59 | ) 60 | (fp_text user L (at -25.4 -1.778) (layer F.SilkS) 61 | (effects (font (size 0.6 0.6) (thickness 0.15))) 62 | ) 63 | (fp_text user M (at -27.94 -1.778) (layer F.SilkS) 64 | (effects (font (size 0.6 0.6) (thickness 0.15))) 65 | ) 66 | (fp_text user N (at -30.48 -1.778) (layer F.SilkS) 67 | (effects (font (size 0.6 0.6) (thickness 0.15))) 68 | ) 69 | (fp_text user P (at -33.02 -1.778) (layer F.SilkS) 70 | (effects (font (size 0.6 0.6) (thickness 0.15))) 71 | ) 72 | (fp_text user Q (at -35.56 -1.778) (layer F.SilkS) 73 | (effects (font (size 0.6 0.6) (thickness 0.15))) 74 | ) 75 | (fp_text user R (at -38.1 -1.778) (layer F.SilkS) 76 | (effects (font (size 0.6 0.6) (thickness 0.15))) 77 | ) 78 | (fp_text user S (at -40.64 -1.778) (layer F.SilkS) 79 | (effects (font (size 0.6 0.6) (thickness 0.15))) 80 | ) 81 | (fp_text user M (at -27.94 42.672) (layer F.SilkS) 82 | (effects (font (size 0.6 0.6) (thickness 0.15))) 83 | ) 84 | (fp_text user S (at -40.64 42.672) (layer F.SilkS) 85 | (effects (font (size 0.6 0.6) (thickness 0.15))) 86 | ) 87 | (fp_text user L (at -25.4 42.672) (layer F.SilkS) 88 | (effects (font (size 0.6 0.6) (thickness 0.15))) 89 | ) 90 | (fp_text user K (at -22.86 42.672) (layer F.SilkS) 91 | (effects (font (size 0.6 0.6) (thickness 0.15))) 92 | ) 93 | (fp_text user J (at -20.32 42.672) (layer F.SilkS) 94 | (effects (font (size 0.6 0.6) (thickness 0.15))) 95 | ) 96 | (fp_text user H (at -17.78 42.672) (layer F.SilkS) 97 | (effects (font (size 0.6 0.6) (thickness 0.15))) 98 | ) 99 | (fp_text user R (at -38.1 42.672) (layer F.SilkS) 100 | (effects (font (size 0.6 0.6) (thickness 0.15))) 101 | ) 102 | (fp_text user Q (at -35.56 42.672) (layer F.SilkS) 103 | (effects (font (size 0.6 0.6) (thickness 0.15))) 104 | ) 105 | (fp_text user N (at -30.48 42.672) (layer F.SilkS) 106 | (effects (font (size 0.6 0.6) (thickness 0.15))) 107 | ) 108 | (fp_text user P (at -33.02 42.672) (layer F.SilkS) 109 | (effects (font (size 0.6 0.6) (thickness 0.15))) 110 | ) 111 | (fp_text user D (at -7.62 42.672) (layer F.SilkS) 112 | (effects (font (size 0.6 0.6) (thickness 0.15))) 113 | ) 114 | (fp_text user E (at -10.16 42.672) (layer F.SilkS) 115 | (effects (font (size 0.6 0.6) (thickness 0.15))) 116 | ) 117 | (fp_text user C (at -5.08 42.672) (layer F.SilkS) 118 | (effects (font (size 0.6 0.6) (thickness 0.15))) 119 | ) 120 | (fp_text user B (at -2.54 42.672) (layer F.SilkS) 121 | (effects (font (size 0.6 0.6) (thickness 0.15))) 122 | ) 123 | (fp_text user A (at 0 42.672) (layer F.SilkS) 124 | (effects (font (size 0.6 0.6) (thickness 0.15))) 125 | ) 126 | (fp_text user G (at -15.24 42.672) (layer F.SilkS) 127 | (effects (font (size 0.6 0.6) (thickness 0.15))) 128 | ) 129 | (fp_text user F (at -12.7 42.672) (layer F.SilkS) 130 | (effects (font (size 0.6 0.6) (thickness 0.15))) 131 | ) 132 | (fp_text user 1 (at 2.032 0) (layer F.SilkS) 133 | (effects (font (size 0.6 0.6) (thickness 0.15))) 134 | ) 135 | (fp_text user 2 (at 2.032 2.54) (layer F.SilkS) 136 | (effects (font (size 0.6 0.6) (thickness 0.15))) 137 | ) 138 | (fp_text user 3 (at 2.032 5.08) (layer F.SilkS) 139 | (effects (font (size 0.6 0.6) (thickness 0.15))) 140 | ) 141 | (fp_text user 4 (at 2.032 7.62) (layer F.SilkS) 142 | (effects (font (size 0.6 0.6) (thickness 0.15))) 143 | ) 144 | (fp_text user 5 (at 2.032 10.16) (layer F.SilkS) 145 | (effects (font (size 0.6 0.6) (thickness 0.15))) 146 | ) 147 | (fp_text user 6 (at 2.032 12.7) (layer F.SilkS) 148 | (effects (font (size 0.6 0.6) (thickness 0.15))) 149 | ) 150 | (fp_text user 7 (at 2.032 15.24) (layer F.SilkS) 151 | (effects (font (size 0.6 0.6) (thickness 0.15))) 152 | ) 153 | (fp_text user 8 (at 2.032 17.78) (layer F.SilkS) 154 | (effects (font (size 0.6 0.6) (thickness 0.15))) 155 | ) 156 | (fp_text user 9 (at 2.032 20.32) (layer F.SilkS) 157 | (effects (font (size 0.6 0.6) (thickness 0.15))) 158 | ) 159 | (fp_text user 10 (at 1.778 22.86) (layer F.SilkS) 160 | (effects (font (size 0.6 0.6) (thickness 0.15))) 161 | ) 162 | (fp_text user 11 (at 1.778 25.4) (layer F.SilkS) 163 | (effects (font (size 0.6 0.6) (thickness 0.15))) 164 | ) 165 | (fp_text user 12 (at 1.778 27.94) (layer F.SilkS) 166 | (effects (font (size 0.6 0.6) (thickness 0.15))) 167 | ) 168 | (fp_text user 13 (at 1.778 30.48) (layer F.SilkS) 169 | (effects (font (size 0.6 0.6) (thickness 0.15))) 170 | ) 171 | (fp_text user 14 (at 1.778 33.02) (layer F.SilkS) 172 | (effects (font (size 0.6 0.6) (thickness 0.15))) 173 | ) 174 | (fp_text user 15 (at 1.778 35.56) (layer F.SilkS) 175 | (effects (font (size 0.6 0.6) (thickness 0.15))) 176 | ) 177 | (fp_text user 16 (at 1.778 38.1) (layer F.SilkS) 178 | (effects (font (size 0.6 0.6) (thickness 0.15))) 179 | ) 180 | (fp_text user 17 (at 1.778 40.64) (layer F.SilkS) 181 | (effects (font (size 0.6 0.6) (thickness 0.15))) 182 | ) 183 | (fp_text user 3 (at -42.672 5.08) (layer F.SilkS) 184 | (effects (font (size 0.6 0.6) (thickness 0.15))) 185 | ) 186 | (fp_text user 5 (at -42.672 10.16) (layer F.SilkS) 187 | (effects (font (size 0.6 0.6) (thickness 0.15))) 188 | ) 189 | (fp_text user 6 (at -42.672 12.7) (layer F.SilkS) 190 | (effects (font (size 0.6 0.6) (thickness 0.15))) 191 | ) 192 | (fp_text user 1 (at -42.672 0) (layer F.SilkS) 193 | (effects (font (size 0.6 0.6) (thickness 0.15))) 194 | ) 195 | (fp_text user 8 (at -42.672 17.78) (layer F.SilkS) 196 | (effects (font (size 0.6 0.6) (thickness 0.15))) 197 | ) 198 | (fp_text user 16 (at -42.418 38.1) (layer F.SilkS) 199 | (effects (font (size 0.6 0.6) (thickness 0.15))) 200 | ) 201 | (fp_text user 10 (at -42.418 22.86) (layer F.SilkS) 202 | (effects (font (size 0.6 0.6) (thickness 0.15))) 203 | ) 204 | (fp_text user 13 (at -42.418 30.48) (layer F.SilkS) 205 | (effects (font (size 0.6 0.6) (thickness 0.15))) 206 | ) 207 | (fp_text user 14 (at -42.418 33.02) (layer F.SilkS) 208 | (effects (font (size 0.6 0.6) (thickness 0.15))) 209 | ) 210 | (fp_text user 7 (at -42.672 15.24) (layer F.SilkS) 211 | (effects (font (size 0.6 0.6) (thickness 0.15))) 212 | ) 213 | (fp_text user 2 (at -42.672 2.54) (layer F.SilkS) 214 | (effects (font (size 0.6 0.6) (thickness 0.15))) 215 | ) 216 | (fp_text user 9 (at -42.672 20.32) (layer F.SilkS) 217 | (effects (font (size 0.6 0.6) (thickness 0.15))) 218 | ) 219 | (fp_text user 11 (at -42.418 25.4) (layer F.SilkS) 220 | (effects (font (size 0.6 0.6) (thickness 0.15))) 221 | ) 222 | (fp_text user 12 (at -42.418 27.94) (layer F.SilkS) 223 | (effects (font (size 0.6 0.6) (thickness 0.15))) 224 | ) 225 | (fp_text user 4 (at -42.672 7.62) (layer F.SilkS) 226 | (effects (font (size 0.6 0.6) (thickness 0.15))) 227 | ) 228 | (fp_text user 17 (at -42.418 40.64) (layer F.SilkS) 229 | (effects (font (size 0.6 0.6) (thickness 0.15))) 230 | ) 231 | (fp_text user 15 (at -42.418 35.56) (layer F.SilkS) 232 | (effects (font (size 0.6 0.6) (thickness 0.15))) 233 | ) 234 | (pad B7 thru_hole circle (at -2.54 15.24) (size 0.98 0.98) (drill 0.62) (layers *.Cu *.Mask)) 235 | (pad B1 thru_hole circle (at -2.54 0) (size 0.98 0.98) (drill 0.62) (layers *.Cu *.Mask)) 236 | (pad A1 thru_hole circle (at 0 0) (size 0.98 0.98) (drill 0.62) (layers *.Cu *.Mask)) 237 | (pad B3 thru_hole circle (at -2.54 5.08) (size 0.98 0.98) (drill 0.62) (layers *.Cu *.Mask)) 238 | (pad A6 thru_hole circle (at 0 12.7) (size 0.98 0.98) (drill 0.62) (layers *.Cu *.Mask)) 239 | (pad B14 thru_hole circle (at -2.54 33.02) (size 0.98 0.98) (drill 0.62) (layers *.Cu *.Mask)) 240 | (pad B13 thru_hole circle (at -2.54 30.48) (size 0.98 0.98) (drill 0.62) (layers *.Cu *.Mask)) 241 | (pad B2 thru_hole circle (at -2.54 2.54) (size 0.98 0.98) (drill 0.62) (layers *.Cu *.Mask)) 242 | (pad C8 thru_hole circle (at -5.08 17.78) (size 0.98 0.98) (drill 0.62) (layers *.Cu *.Mask)) 243 | (pad C6 thru_hole circle (at -5.08 12.7) (size 0.98 0.98) (drill 0.62) (layers *.Cu *.Mask)) 244 | (pad A16 thru_hole circle (at 0 38.1) (size 0.98 0.98) (drill 0.62) (layers *.Cu *.Mask)) 245 | (pad A3 thru_hole circle (at 0 5.08) (size 0.98 0.98) (drill 0.62) (layers *.Cu *.Mask)) 246 | (pad A2 thru_hole circle (at 0 2.54) (size 0.98 0.98) (drill 0.62) (layers *.Cu *.Mask)) 247 | (pad S17 thru_hole circle (at -40.64 40.64) (size 0.98 0.98) (drill 0.62) (layers *.Cu *.Mask)) 248 | (pad S16 thru_hole circle (at -40.64 38.1) (size 0.98 0.98) (drill 0.62) (layers *.Cu *.Mask)) 249 | (pad S15 thru_hole circle (at -40.64 35.56) (size 0.98 0.98) (drill 0.62) (layers *.Cu *.Mask)) 250 | (pad S14 thru_hole circle (at -40.64 33.02) (size 0.98 0.98) (drill 0.62) (layers *.Cu *.Mask)) 251 | (pad C7 thru_hole circle (at -5.08 15.24) (size 0.98 0.98) (drill 0.62) (layers *.Cu *.Mask)) 252 | (pad C4 thru_hole circle (at -5.08 7.62) (size 0.98 0.98) (drill 0.62) (layers *.Cu *.Mask)) 253 | (pad B8 thru_hole circle (at -2.54 17.78) (size 0.98 0.98) (drill 0.62) (layers *.Cu *.Mask)) 254 | (pad A14 thru_hole circle (at 0 33.02) (size 0.98 0.98) (drill 0.62) (layers *.Cu *.Mask)) 255 | (pad C5 thru_hole circle (at -5.08 10.16) (size 0.98 0.98) (drill 0.62) (layers *.Cu *.Mask)) 256 | (pad B17 thru_hole circle (at -2.54 40.64) (size 0.98 0.98) (drill 0.62) (layers *.Cu *.Mask)) 257 | (pad C2 thru_hole circle (at -5.08 2.54) (size 0.98 0.98) (drill 0.62) (layers *.Cu *.Mask)) 258 | (pad B12 thru_hole circle (at -2.54 27.94) (size 0.98 0.98) (drill 0.62) (layers *.Cu *.Mask)) 259 | (pad A8 thru_hole circle (at 0 17.78) (size 0.98 0.98) (drill 0.62) (layers *.Cu *.Mask)) 260 | (pad S13 thru_hole circle (at -40.64 30.48) (size 0.98 0.98) (drill 0.62) (layers *.Cu *.Mask)) 261 | (pad S12 thru_hole circle (at -40.64 27.94) (size 0.98 0.98) (drill 0.62) (layers *.Cu *.Mask)) 262 | (pad S11 thru_hole circle (at -40.64 25.4) (size 0.98 0.98) (drill 0.62) (layers *.Cu *.Mask)) 263 | (pad S10 thru_hole circle (at -40.64 22.86) (size 0.98 0.98) (drill 0.62) (layers *.Cu *.Mask)) 264 | (pad S9 thru_hole circle (at -40.64 20.32) (size 0.98 0.98) (drill 0.62) (layers *.Cu *.Mask)) 265 | (pad S8 thru_hole circle (at -40.64 17.78) (size 0.98 0.98) (drill 0.62) (layers *.Cu *.Mask)) 266 | (pad S7 thru_hole circle (at -40.64 15.24) (size 0.98 0.98) (drill 0.62) (layers *.Cu *.Mask)) 267 | (pad S6 thru_hole circle (at -40.64 12.7) (size 0.98 0.98) (drill 0.62) (layers *.Cu *.Mask)) 268 | (pad S5 thru_hole circle (at -40.64 10.16) (size 0.98 0.98) (drill 0.62) (layers *.Cu *.Mask)) 269 | (pad S4 thru_hole circle (at -40.64 7.62) (size 0.98 0.98) (drill 0.62) (layers *.Cu *.Mask)) 270 | (pad S3 thru_hole circle (at -40.64 5.08) (size 0.98 0.98) (drill 0.62) (layers *.Cu *.Mask)) 271 | (pad S2 thru_hole circle (at -40.64 2.54) (size 0.98 0.98) (drill 0.62) (layers *.Cu *.Mask)) 272 | (pad S1 thru_hole circle (at -40.64 0) (size 0.98 0.98) (drill 0.62) (layers *.Cu *.Mask)) 273 | (pad R17 thru_hole circle (at -38.1 40.64) (size 0.98 0.98) (drill 0.62) (layers *.Cu *.Mask)) 274 | (pad R16 thru_hole circle (at -38.1 38.1) (size 0.98 0.98) (drill 0.62) (layers *.Cu *.Mask)) 275 | (pad R15 thru_hole circle (at -38.1 35.56) (size 0.98 0.98) (drill 0.62) (layers *.Cu *.Mask)) 276 | (pad R14 thru_hole circle (at -38.1 33.02) (size 0.98 0.98) (drill 0.62) (layers *.Cu *.Mask)) 277 | (pad R13 thru_hole circle (at -38.1 30.48) (size 0.98 0.98) (drill 0.62) (layers *.Cu *.Mask)) 278 | (pad R12 thru_hole circle (at -38.1 27.94) (size 0.98 0.98) (drill 0.62) (layers *.Cu *.Mask)) 279 | (pad R11 thru_hole circle (at -38.1 25.4) (size 0.98 0.98) (drill 0.62) (layers *.Cu *.Mask)) 280 | (pad R10 thru_hole circle (at -38.1 22.86) (size 0.98 0.98) (drill 0.62) (layers *.Cu *.Mask)) 281 | (pad R9 thru_hole circle (at -38.1 20.32) (size 0.98 0.98) (drill 0.62) (layers *.Cu *.Mask)) 282 | (pad R8 thru_hole circle (at -38.1 17.78) (size 0.98 0.98) (drill 0.62) (layers *.Cu *.Mask)) 283 | (pad R7 thru_hole circle (at -38.1 15.24) (size 0.98 0.98) (drill 0.62) (layers *.Cu *.Mask)) 284 | (pad R6 thru_hole circle (at -38.1 12.7) (size 0.98 0.98) (drill 0.62) (layers *.Cu *.Mask)) 285 | (pad R5 thru_hole circle (at -38.1 10.16) (size 0.98 0.98) (drill 0.62) (layers *.Cu *.Mask)) 286 | (pad R4 thru_hole circle (at -38.1 7.62) (size 0.98 0.98) (drill 0.62) (layers *.Cu *.Mask)) 287 | (pad R3 thru_hole circle (at -38.1 5.08) (size 0.98 0.98) (drill 0.62) (layers *.Cu *.Mask)) 288 | (pad R2 thru_hole circle (at -38.1 2.54) (size 0.98 0.98) (drill 0.62) (layers *.Cu *.Mask)) 289 | (pad R1 thru_hole circle (at -38.1 0) (size 0.98 0.98) (drill 0.62) (layers *.Cu *.Mask)) 290 | (pad Q17 thru_hole circle (at -35.56 40.64) (size 0.98 0.98) (drill 0.62) (layers *.Cu *.Mask)) 291 | (pad Q16 thru_hole circle (at -35.56 38.1) (size 0.98 0.98) (drill 0.62) (layers *.Cu *.Mask)) 292 | (pad Q15 thru_hole circle (at -35.56 35.56) (size 0.98 0.98) (drill 0.62) (layers *.Cu *.Mask)) 293 | (pad Q14 thru_hole circle (at -35.56 33.02) (size 0.98 0.98) (drill 0.62) (layers *.Cu *.Mask)) 294 | (pad Q13 thru_hole circle (at -35.56 30.48) (size 0.98 0.98) (drill 0.62) (layers *.Cu *.Mask)) 295 | (pad Q12 thru_hole circle (at -35.56 27.94) (size 0.98 0.98) (drill 0.62) (layers *.Cu *.Mask)) 296 | (pad Q11 thru_hole circle (at -35.56 25.4) (size 0.98 0.98) (drill 0.62) (layers *.Cu *.Mask)) 297 | (pad Q10 thru_hole circle (at -35.56 22.86) (size 0.98 0.98) (drill 0.62) (layers *.Cu *.Mask)) 298 | (pad Q9 thru_hole circle (at -35.56 20.32) (size 0.98 0.98) (drill 0.62) (layers *.Cu *.Mask)) 299 | (pad Q8 thru_hole circle (at -35.56 17.78) (size 0.98 0.98) (drill 0.62) (layers *.Cu *.Mask)) 300 | (pad Q7 thru_hole circle (at -35.56 15.24) (size 0.98 0.98) (drill 0.62) (layers *.Cu *.Mask)) 301 | (pad Q6 thru_hole circle (at -35.56 12.7) (size 0.98 0.98) (drill 0.62) (layers *.Cu *.Mask)) 302 | (pad Q5 thru_hole circle (at -35.56 10.16) (size 0.98 0.98) (drill 0.62) (layers *.Cu *.Mask)) 303 | (pad A12 thru_hole circle (at 0 27.94) (size 0.98 0.98) (drill 0.62) (layers *.Cu *.Mask)) 304 | (pad C9 thru_hole circle (at -5.08 20.32) (size 0.98 0.98) (drill 0.62) (layers *.Cu *.Mask)) 305 | (pad Q4 thru_hole circle (at -35.56 7.62) (size 0.98 0.98) (drill 0.62) (layers *.Cu *.Mask)) 306 | (pad Q3 thru_hole circle (at -35.56 5.08) (size 0.98 0.98) (drill 0.62) (layers *.Cu *.Mask)) 307 | (pad Q2 thru_hole circle (at -35.56 2.54) (size 0.98 0.98) (drill 0.62) (layers *.Cu *.Mask)) 308 | (pad Q1 thru_hole circle (at -35.56 0) (size 0.98 0.98) (drill 0.62) (layers *.Cu *.Mask)) 309 | (pad P17 thru_hole circle (at -33.02 40.64) (size 0.98 0.98) (drill 0.62) (layers *.Cu *.Mask)) 310 | (pad P16 thru_hole circle (at -33.02 38.1) (size 0.98 0.98) (drill 0.62) (layers *.Cu *.Mask)) 311 | (pad P15 thru_hole circle (at -33.02 35.56) (size 0.98 0.98) (drill 0.62) (layers *.Cu *.Mask)) 312 | (pad P3 thru_hole circle (at -33.02 5.08) (size 0.98 0.98) (drill 0.62) (layers *.Cu *.Mask)) 313 | (pad P2 thru_hole circle (at -33.02 2.54) (size 0.98 0.98) (drill 0.62) (layers *.Cu *.Mask)) 314 | (pad P1 thru_hole circle (at -33.02 0) (size 0.98 0.98) (drill 0.62) (layers *.Cu *.Mask)) 315 | (pad N17 thru_hole circle (at -30.48 40.64) (size 0.98 0.98) (drill 0.62) (layers *.Cu *.Mask)) 316 | (pad N16 thru_hole circle (at -30.48 38.1) (size 0.98 0.98) (drill 0.62) (layers *.Cu *.Mask)) 317 | (pad N15 thru_hole circle (at -30.48 35.56) (size 0.98 0.98) (drill 0.62) (layers *.Cu *.Mask)) 318 | (pad N3 thru_hole circle (at -30.48 5.08) (size 0.98 0.98) (drill 0.62) (layers *.Cu *.Mask)) 319 | (pad N2 thru_hole circle (at -30.48 2.54) (size 0.98 0.98) (drill 0.62) (layers *.Cu *.Mask)) 320 | (pad N1 thru_hole circle (at -30.48 0) (size 0.98 0.98) (drill 0.62) (layers *.Cu *.Mask)) 321 | (pad M17 thru_hole circle (at -27.94 40.64) (size 0.98 0.98) (drill 0.62) (layers *.Cu *.Mask)) 322 | (pad M16 thru_hole circle (at -27.94 38.1) (size 0.98 0.98) (drill 0.62) (layers *.Cu *.Mask)) 323 | (pad M15 thru_hole circle (at -27.94 35.56) (size 0.98 0.98) (drill 0.62) (layers *.Cu *.Mask)) 324 | (pad M3 thru_hole circle (at -27.94 5.08) (size 0.98 0.98) (drill 0.62) (layers *.Cu *.Mask)) 325 | (pad M2 thru_hole circle (at -27.94 2.54) (size 0.98 0.98) (drill 0.62) (layers *.Cu *.Mask)) 326 | (pad M1 thru_hole circle (at -27.94 0) (size 0.98 0.98) (drill 0.62) (layers *.Cu *.Mask)) 327 | (pad L17 thru_hole circle (at -25.4 40.64) (size 0.98 0.98) (drill 0.62) (layers *.Cu *.Mask)) 328 | (pad L16 thru_hole circle (at -25.4 38.1) (size 0.98 0.98) (drill 0.62) (layers *.Cu *.Mask)) 329 | (pad L15 thru_hole circle (at -25.4 35.56) (size 0.98 0.98) (drill 0.62) (layers *.Cu *.Mask)) 330 | (pad L3 thru_hole circle (at -25.4 5.08) (size 0.98 0.98) (drill 0.62) (layers *.Cu *.Mask)) 331 | (pad L2 thru_hole circle (at -25.4 2.54) (size 0.98 0.98) (drill 0.62) (layers *.Cu *.Mask)) 332 | (pad L1 thru_hole circle (at -25.4 0) (size 0.98 0.98) (drill 0.62) (layers *.Cu *.Mask)) 333 | (pad K17 thru_hole circle (at -22.86 40.64) (size 0.98 0.98) (drill 0.62) (layers *.Cu *.Mask)) 334 | (pad K16 thru_hole circle (at -22.86 38.1) (size 0.98 0.98) (drill 0.62) (layers *.Cu *.Mask)) 335 | (pad K15 thru_hole circle (at -22.86 35.56) (size 0.98 0.98) (drill 0.62) (layers *.Cu *.Mask)) 336 | (pad K3 thru_hole circle (at -22.86 5.08) (size 0.98 0.98) (drill 0.62) (layers *.Cu *.Mask)) 337 | (pad K2 thru_hole circle (at -22.86 2.54) (size 0.98 0.98) (drill 0.62) (layers *.Cu *.Mask)) 338 | (pad K1 thru_hole circle (at -22.86 0) (size 0.98 0.98) (drill 0.62) (layers *.Cu *.Mask)) 339 | (pad J17 thru_hole circle (at -20.32 40.64) (size 0.98 0.98) (drill 0.62) (layers *.Cu *.Mask)) 340 | (pad J16 thru_hole circle (at -20.32 38.1) (size 0.98 0.98) (drill 0.62) (layers *.Cu *.Mask)) 341 | (pad J15 thru_hole circle (at -20.32 35.56) (size 0.98 0.98) (drill 0.62) (layers *.Cu *.Mask)) 342 | (pad C13 thru_hole circle (at -5.08 30.48) (size 0.98 0.98) (drill 0.62) (layers *.Cu *.Mask)) 343 | (pad C12 thru_hole circle (at -5.08 27.94) (size 0.98 0.98) (drill 0.62) (layers *.Cu *.Mask)) 344 | (pad C3 thru_hole circle (at -5.08 5.08) (size 0.98 0.98) (drill 0.62) (layers *.Cu *.Mask)) 345 | (pad A13 thru_hole circle (at 0 30.48) (size 0.98 0.98) (drill 0.62) (layers *.Cu *.Mask)) 346 | (pad B6 thru_hole circle (at -2.54 12.7) (size 0.98 0.98) (drill 0.62) (layers *.Cu *.Mask)) 347 | (pad C11 thru_hole circle (at -5.08 25.4) (size 0.98 0.98) (drill 0.62) (layers *.Cu *.Mask)) 348 | (pad A15 thru_hole circle (at 0 35.56) (size 0.98 0.98) (drill 0.62) (layers *.Cu *.Mask)) 349 | (pad B5 thru_hole circle (at -2.54 10.16) (size 0.98 0.98) (drill 0.62) (layers *.Cu *.Mask)) 350 | (pad A11 thru_hole circle (at 0 25.4) (size 0.98 0.98) (drill 0.62) (layers *.Cu *.Mask)) 351 | (pad J3 thru_hole circle (at -20.32 5.08) (size 0.98 0.98) (drill 0.62) (layers *.Cu *.Mask)) 352 | (pad J2 thru_hole circle (at -20.32 2.54) (size 0.98 0.98) (drill 0.62) (layers *.Cu *.Mask)) 353 | (pad J1 thru_hole circle (at -20.32 0) (size 0.98 0.98) (drill 0.62) (layers *.Cu *.Mask)) 354 | (pad H17 thru_hole circle (at -17.78 40.64) (size 0.98 0.98) (drill 0.62) (layers *.Cu *.Mask)) 355 | (pad H16 thru_hole circle (at -17.78 38.1) (size 0.98 0.98) (drill 0.62) (layers *.Cu *.Mask)) 356 | (pad H15 thru_hole circle (at -17.78 35.56) (size 0.98 0.98) (drill 0.62) (layers *.Cu *.Mask)) 357 | (pad H3 thru_hole circle (at -17.78 5.08) (size 0.98 0.98) (drill 0.62) (layers *.Cu *.Mask)) 358 | (pad H2 thru_hole circle (at -17.78 2.54) (size 0.98 0.98) (drill 0.62) (layers *.Cu *.Mask)) 359 | (pad H1 thru_hole circle (at -17.78 0) (size 0.98 0.98) (drill 0.62) (layers *.Cu *.Mask)) 360 | (pad G17 thru_hole circle (at -15.24 40.64) (size 0.98 0.98) (drill 0.62) (layers *.Cu *.Mask)) 361 | (pad G16 thru_hole circle (at -15.24 38.1) (size 0.98 0.98) (drill 0.62) (layers *.Cu *.Mask)) 362 | (pad G15 thru_hole circle (at -15.24 35.56) (size 0.98 0.98) (drill 0.62) (layers *.Cu *.Mask)) 363 | (pad G3 thru_hole circle (at -15.24 5.08) (size 0.98 0.98) (drill 0.62) (layers *.Cu *.Mask)) 364 | (pad G2 thru_hole circle (at -15.24 2.54) (size 0.98 0.98) (drill 0.62) (layers *.Cu *.Mask)) 365 | (pad G1 thru_hole circle (at -15.24 0) (size 0.98 0.98) (drill 0.62) (layers *.Cu *.Mask)) 366 | (pad F17 thru_hole circle (at -12.7 40.64) (size 0.98 0.98) (drill 0.62) (layers *.Cu *.Mask)) 367 | (pad F16 thru_hole circle (at -12.7 38.1) (size 0.98 0.98) (drill 0.62) (layers *.Cu *.Mask)) 368 | (pad F15 thru_hole circle (at -12.7 35.56) (size 0.98 0.98) (drill 0.62) (layers *.Cu *.Mask)) 369 | (pad F3 thru_hole circle (at -12.7 5.08) (size 0.98 0.98) (drill 0.62) (layers *.Cu *.Mask)) 370 | (pad F2 thru_hole circle (at -12.7 2.54) (size 0.98 0.98) (drill 0.62) (layers *.Cu *.Mask)) 371 | (pad F1 thru_hole circle (at -12.7 0) (size 0.98 0.98) (drill 0.62) (layers *.Cu *.Mask)) 372 | (pad E17 thru_hole circle (at -10.16 40.64) (size 0.98 0.98) (drill 0.62) (layers *.Cu *.Mask)) 373 | (pad E16 thru_hole circle (at -10.16 38.1) (size 0.98 0.98) (drill 0.62) (layers *.Cu *.Mask)) 374 | (pad E15 thru_hole circle (at -10.16 35.56) (size 0.98 0.98) (drill 0.62) (layers *.Cu *.Mask)) 375 | (pad E3 thru_hole circle (at -10.16 5.08) (size 0.98 0.98) (drill 0.62) (layers *.Cu *.Mask)) 376 | (pad E2 thru_hole circle (at -10.16 2.54) (size 0.98 0.98) (drill 0.62) (layers *.Cu *.Mask)) 377 | (pad E1 thru_hole circle (at -10.16 0) (size 0.98 0.98) (drill 0.62) (layers *.Cu *.Mask)) 378 | (pad D17 thru_hole circle (at -7.62 40.64) (size 0.98 0.98) (drill 0.62) (layers *.Cu *.Mask)) 379 | (pad D16 thru_hole circle (at -7.62 38.1) (size 0.98 0.98) (drill 0.62) (layers *.Cu *.Mask)) 380 | (pad D15 thru_hole circle (at -7.62 35.56) (size 0.98 0.98) (drill 0.62) (layers *.Cu *.Mask)) 381 | (pad D3 thru_hole circle (at -7.62 5.08) (size 0.98 0.98) (drill 0.62) (layers *.Cu *.Mask)) 382 | (pad D2 thru_hole circle (at -7.62 2.54) (size 0.98 0.98) (drill 0.62) (layers *.Cu *.Mask)) 383 | (pad D1 thru_hole circle (at -7.62 0) (size 0.98 0.98) (drill 0.62) (layers *.Cu *.Mask)) 384 | (pad C17 thru_hole circle (at -5.08 40.64) (size 0.98 0.98) (drill 0.62) (layers *.Cu *.Mask)) 385 | (pad C16 thru_hole circle (at -5.08 38.1) (size 0.98 0.98) (drill 0.62) (layers *.Cu *.Mask)) 386 | (pad C15 thru_hole circle (at -5.08 35.56) (size 0.98 0.98) (drill 0.62) (layers *.Cu *.Mask)) 387 | (pad C14 thru_hole circle (at -5.08 33.02) (size 0.98 0.98) (drill 0.62) (layers *.Cu *.Mask)) 388 | (pad A10 thru_hole circle (at 0 22.86) (size 0.98 0.98) (drill 0.62) (layers *.Cu *.Mask)) 389 | (pad C10 thru_hole circle (at -5.08 22.86) (size 0.98 0.98) (drill 0.62) (layers *.Cu *.Mask)) 390 | (pad C1 thru_hole circle (at -5.08 0) (size 0.98 0.98) (drill 0.62) (layers *.Cu *.Mask)) 391 | (pad A17 thru_hole circle (at 0 40.64) (size 0.98 0.98) (drill 0.62) (layers *.Cu *.Mask)) 392 | (pad A9 thru_hole circle (at 0 20.32) (size 0.98 0.98) (drill 0.62) (layers *.Cu *.Mask)) 393 | (pad A5 thru_hole circle (at 0 10.16) (size 0.98 0.98) (drill 0.62) (layers *.Cu *.Mask)) 394 | (pad A4 thru_hole circle (at 0 7.62) (size 0.98 0.98) (drill 0.62) (layers *.Cu *.Mask)) 395 | (pad A7 thru_hole circle (at 0 15.24) (size 0.98 0.98) (drill 0.62) (layers *.Cu *.Mask)) 396 | (pad B9 thru_hole circle (at -2.54 20.32) (size 0.98 0.98) (drill 0.62) (layers *.Cu *.Mask)) 397 | (pad B4 thru_hole circle (at -2.54 7.62) (size 0.98 0.98) (drill 0.62) (layers *.Cu *.Mask)) 398 | (pad B15 thru_hole circle (at -2.54 35.56) (size 0.98 0.98) (drill 0.62) (layers *.Cu *.Mask)) 399 | (pad B16 thru_hole circle (at -2.54 38.1) (size 0.98 0.98) (drill 0.62) (layers *.Cu *.Mask)) 400 | (pad B11 thru_hole circle (at -2.54 25.4) (size 0.98 0.98) (drill 0.62) (layers *.Cu *.Mask)) 401 | (pad B10 thru_hole circle (at -2.54 22.86) (size 0.98 0.98) (drill 0.62) (layers *.Cu *.Mask)) 402 | ) 403 | -------------------------------------------------------------------------------- /kicad/486pga.pretty/VoltageRegulator.kicad_mod: -------------------------------------------------------------------------------- 1 | (module VoltageRegulator (layer F.Cu) (tedit 63A937AA) 2 | (fp_text reference "Mini Buck Converter" (at 7.874 -6.858) (layer F.SilkS) 3 | (effects (font (size 1 1) (thickness 0.15))) 4 | ) 5 | (fp_text value VoltageRegulator (at 8.89 -7.112) (layer F.Fab) 6 | (effects (font (size 1 1) (thickness 0.15))) 7 | ) 8 | (fp_line (start -1.016 -10.16) (end 16.256 -10.16) (layer F.SilkS) (width 0.15)) 9 | (fp_line (start 16.256 -10.16) (end 16.256 1.016) (layer F.SilkS) (width 0.15)) 10 | (fp_line (start 16.256 1.016) (end -1.016 1.016) (layer F.SilkS) (width 0.15)) 11 | (fp_line (start -1.016 1.016) (end -1.016 -10.16) (layer F.SilkS) (width 0.15)) 12 | (fp_line (start 3.048 -4.572) (end 12.192 -4.572) (layer F.SilkS) (width 0.15)) 13 | (fp_line (start 12.192 -4.572) (end 10.922 -5.334) (layer F.SilkS) (width 0.15)) 14 | (fp_line (start 12.192 -4.572) (end 10.922 -3.81) (layer F.SilkS) (width 0.15)) 15 | (fp_text user In+ (at 2.794 0) (layer F.SilkS) 16 | (effects (font (size 1 1) (thickness 0.15))) 17 | ) 18 | (fp_text user In- (at 2.794 -9.144) (layer F.SilkS) 19 | (effects (font (size 1 1) (thickness 0.15))) 20 | ) 21 | (fp_text user Out+ (at 11.938 0) (layer F.SilkS) 22 | (effects (font (size 1 1) (thickness 0.15))) 23 | ) 24 | (fp_text user Out- (at 11.938 -9.144) (layer F.SilkS) 25 | (effects (font (size 1 1) (thickness 0.15))) 26 | ) 27 | (pad Vin thru_hole rect (at 0 0) (size 1.65 1.65) (drill 0.962) (layers *.Cu *.Mask)) 28 | (pad GNDin thru_hole rect (at 0 -9.144) (size 1.65 1.65) (drill 0.962) (layers *.Cu *.Mask)) 29 | (pad Vout thru_hole rect (at 15.24 0) (size 1.65 1.65) (drill 0.962) (layers *.Cu *.Mask)) 30 | (pad GNDout thru_hole rect (at 15.24 -9.144) (size 1.65 1.65) (drill 0.962) (layers *.Cu *.Mask)) 31 | ) 32 | -------------------------------------------------------------------------------- /kicad/486pga.pretty/VoltageRegulator2.kicad_mod: -------------------------------------------------------------------------------- 1 | (module VoltageRegulator2 (layer F.Cu) (tedit 63A937ED) 2 | (fp_text reference "Mini Buck Converter" (at 9.398 -14.478) (layer F.SilkS) 3 | (effects (font (size 1 1) (thickness 0.15))) 4 | ) 5 | (fp_text value VoltageRegulator2 (at 9.144 -10.414) (layer F.Fab) 6 | (effects (font (size 1 1) (thickness 0.15))) 7 | ) 8 | (fp_line (start -2.032 -15.24) (end 20.574 -15.24) (layer F.SilkS) (width 0.15)) 9 | (fp_line (start 20.574 -15.24) (end 20.574 1.778) (layer F.SilkS) (width 0.15)) 10 | (fp_line (start 20.574 1.778) (end -2.032 1.778) (layer F.SilkS) (width 0.15)) 11 | (fp_line (start -2.032 1.778) (end -2.032 -15.24) (layer F.SilkS) (width 0.15)) 12 | (fp_line (start 4.572 -9.144) (end 13.716 -9.144) (layer F.SilkS) (width 0.15)) 13 | (fp_line (start 13.716 -9.144) (end 12.446 -9.906) (layer F.SilkS) (width 0.15)) 14 | (fp_line (start 13.716 -9.144) (end 12.446 -8.382) (layer F.SilkS) (width 0.15)) 15 | (fp_text user In+ (at 2.54 -1.27) (layer F.SilkS) 16 | (effects (font (size 1 1) (thickness 0.15))) 17 | ) 18 | (fp_text user In- (at 2.54 -11.938) (layer F.SilkS) 19 | (effects (font (size 1 1) (thickness 0.15))) 20 | ) 21 | (fp_text user Out+ (at 15.748 -1.524) (layer F.SilkS) 22 | (effects (font (size 1 1) (thickness 0.15))) 23 | ) 24 | (fp_text user Out- (at 15.748 -11.938) (layer F.SilkS) 25 | (effects (font (size 1 1) (thickness 0.15))) 26 | ) 27 | (pad Vin thru_hole rect (at 0 0) (size 1.65 1.65) (drill 0.962) (layers *.Cu *.Mask)) 28 | (pad GNDin thru_hole rect (at 0 -10.668) (size 1.65 1.65) (drill 0.962) (layers *.Cu *.Mask)) 29 | (pad Vout thru_hole rect (at 18.542 0) (size 1.65 1.65) (drill 0.962) (layers *.Cu *.Mask)) 30 | (pad GNDout thru_hole rect (at 18.542 -10.668) (size 1.65 1.65) (drill 0.962) (layers *.Cu *.Mask)) 31 | (pad Vin thru_hole rect (at 0 -2.54) (size 1.65 1.65) (drill 0.962) (layers *.Cu *.Mask)) 32 | (pad Vout thru_hole rect (at 18.542 -2.54) (size 1.65 1.65) (drill 0.962) (layers *.Cu *.Mask)) 33 | (pad GNDin thru_hole rect (at 0 -13.208) (size 1.65 1.65) (drill 0.962) (layers *.Cu *.Mask)) 34 | (pad GNDout thru_hole rect (at 18.542 -13.208) (size 1.65 1.65) (drill 0.962) (layers *.Cu *.Mask)) 35 | ) 36 | -------------------------------------------------------------------------------- /kicad/sym-lib-table: -------------------------------------------------------------------------------- 1 | (sym_lib_table 2 | (lib (name 486SocketBlaster)(type Legacy)(uri ${KIPRJMOD}/486SocketBlaster.lib)(options "")(descr "")) 3 | ) 4 | --------------------------------------------------------------------------------