├── .gitignore ├── LICENSE.txt ├── README.md ├── cern_ohl_v_1_2_howto.pdf ├── fp-lib-table ├── gerbers ├── serial-usb-adapter-rev-a.zip ├── serial-usb-adapter-rev-b.zip ├── serial-usb-adapter-rev-c.zip └── serial-usb-adapter-rev-d.zip ├── images ├── adapter.png ├── assembled.jpg ├── pcb-bottom.png ├── pcb-copper.png ├── pcb-render.png ├── pcb-top.png ├── schematic.png ├── windbg-connect.png └── windbg-runtime.png ├── libraries ├── Library.pretty │ ├── SS-52400-003.kicad_mod │ └── SS-52400-003 │ │ ├── License.txt │ │ └── SS-52400-003.step ├── serial-usb-adapter.dcm ├── serial-usb-adapter.kicad_sym └── serial-usb-adapter.lib ├── serial-usb-adapter.kicad_pcb ├── serial-usb-adapter.kicad_pro ├── serial-usb-adapter.kicad_sch └── sym-lib-table /.gitignore: -------------------------------------------------------------------------------- 1 | ############################################################ 2 | # For PCBs designed using KiCad: http://www.kicad-pcb.org/ # 3 | ############################################################ 4 | 5 | # Temporary files 6 | *.000 7 | *.bak 8 | *.bck 9 | *.kicad_pcb-bak 10 | *~ 11 | _autosave-* 12 | *.tmp 13 | *-rescue.lib 14 | *-cache.lib 15 | *-save.pro 16 | *-save.kicad_pcb 17 | 18 | # Netlist files (exported from Eeschema) 19 | *.net 20 | 21 | # Autorouter files (exported from Pcbnew) 22 | *.dsn 23 | *.ses 24 | 25 | # Exported BOM files 26 | *.xml 27 | *.csv -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- 1 | CERN Open Hardware Licence v1.2 2 | 3 | Preamble 4 | 5 | Through this CERN Open Hardware Licence ("CERN OHL") version 1.2, CERN 6 | wishes to provide a tool to foster collaboration and sharing among 7 | hardware designers. The CERN OHL is copyright CERN. Anyone is welcome 8 | to use the CERN OHL, in unmodified form only, for the distribution of 9 | their own Open Hardware designs. Any other right is reserved. Release 10 | of hardware designs under the CERN OHL does not constitute an 11 | endorsement of the licensor or its designs nor does it imply any 12 | involvement by CERN in the development of such designs. 13 | 14 | 1. Definitions 15 | 16 | In this Licence, the following terms have the following meanings: 17 | 18 | “Licence” means this CERN OHL. 19 | 20 | “Documentation” means schematic diagrams, designs, circuit or circuit 21 | board layouts, mechanical drawings, flow charts and descriptive text, 22 | and other explanatory material that is explicitly stated as being made 23 | available under the conditions of this Licence. The Documentation may 24 | be in any medium, including but not limited to computer files and 25 | representations on paper, film, or any other media. 26 | 27 | “Documentation Location” means a location where the Licensor has 28 | placed Documentation, and which he believes will be publicly 29 | accessible for at least three years from the first communication to 30 | the public or distribution of Documentation. 31 | 32 | “Product” means either an entire, or any part of a, device built using 33 | the Documentation or the modified Documentation. 34 | 35 | “Licensee” means any natural or legal person exercising rights under 36 | this Licence. 37 | 38 | “Licensor” means any natural or legal person that creates or modifies 39 | Documentation and subsequently communicates to the public and/ or 40 | distributes the resulting Documentation under the terms and conditions 41 | of this Licence. 42 | 43 | A Licensee may at the same time be a Licensor, and vice versa. 44 | 45 | Use of the masculine gender includes the feminine and neuter genders 46 | and is employed solely to facilitate reading. 47 | 48 | 2. Applicability 49 | 50 | 2.1. This Licence governs the use, copying, modification, 51 | communication to the public and distribution of the Documentation, and 52 | the manufacture and distribution of Products. By exercising any right 53 | granted under this Licence, the Licensee irrevocably accepts these 54 | terms and conditions. 55 | 56 | 2.2. This Licence is granted by the Licensor directly to the Licensee, 57 | and shall apply worldwide and without limitation in time. The Licensee 58 | may assign his licence rights or grant sub-licences. 59 | 60 | 2.3. This Licence does not extend to software, firmware, or code 61 | loaded into programmable devices which may be used in conjunction with 62 | the Documentation, the modified Documentation or with Products, unless 63 | such software, firmware, or code is explicitly expressed to be subject 64 | to this Licence. The use of such software, firmware, or code is 65 | otherwise subject to the applicable licence terms and conditions. 66 | 67 | 3. Copying, modification, communication to the public and distribution 68 | of the Documentation 69 | 70 | 3.1. The Licensee shall keep intact all copyright and trademarks 71 | notices, all notices referring to Documentation Location, and all 72 | notices that refer to this Licence and to the disclaimer of warranties 73 | that are included in the Documentation. He shall include a copy 74 | thereof in every copy of the Documentation or, as the case may be, 75 | modified Documentation, that he communicates to the public or 76 | distributes. 77 | 78 | 3.2. The Licensee may copy, communicate to the public and distribute 79 | verbatim copies of the Documentation, in any medium, subject to the 80 | requirements specified in section 3.1. 81 | 82 | 3.3. The Licensee may modify the Documentation or any portion thereof 83 | provided that upon modification of the Documentation, the Licensee 84 | shall make the modified Documentation available from a Documentation 85 | Location such that it can be easily located by an original Licensor 86 | once the Licensee communicates to the public or distributes the 87 | modified Documentation under section 3.4, and, where required by 88 | section 4.1, by a recipient of a Product. However, the Licensor shall 89 | not assert his rights under the foregoing proviso unless or until a 90 | Product is distributed. 91 | 92 | 3.4. The Licensee may communicate to the public and distribute the 93 | modified Documentation (thereby in addition to being a Licensee also 94 | becoming a Licensor), always provided that he shall: 95 | 96 | a) comply with section 3.1; 97 | 98 | b) cause the modified Documentation to carry prominent notices stating 99 | that the Licensee has modified the Documentation, with the date and 100 | description of the modifications; 101 | 102 | c) cause the modified Documentation to carry a new Documentation 103 | Location notice if the original Documentation provided for one; 104 | 105 | d) make available the modified Documentation at the same level of 106 | abstraction as that of the Documentation, in the preferred format for 107 | making modifications to it (e.g. the native format of the CAD tool as 108 | applicable), and in the event that format is proprietary, in a format 109 | viewable with a tool licensed under an OSI-approved license if the 110 | proprietary tool can create it; and 111 | 112 | e) license the modified Documentation under the terms and conditions 113 | of this Licence or, where applicable, a later version of this Licence 114 | as may be issued by CERN. 115 | 116 | 3.5. The Licence includes a non-exclusive licence to those patents or 117 | registered designs that are held by, under the control of, or 118 | sub-licensable by the Licensor, to the extent necessary to make use of 119 | the rights granted under this Licence. The scope of this section 3.5 120 | shall be strictly limited to the parts of the Documentation or 121 | modified Documentation created by the Licensor. 122 | 123 | 4. Manufacture and distribution of Products 124 | 125 | 4.1. The Licensee may manufacture or distribute Products always 126 | provided that, where such manufacture or distribution requires a 127 | licence under this Licence the Licensee provides to each recipient of 128 | such Products an easy means of accessing a copy of the Documentation 129 | or modified Documentation, as applicable, as set out in section 3. 130 | 131 | 4.2. The Licensee is invited to inform any Licensor who has indicated 132 | his wish to receive this information about the type, quantity and 133 | dates of production of Products the Licensee has (had) manufactured 134 | 135 | 5. Warranty and liability 136 | 137 | 5.1. DISCLAIMER – The Documentation and any modified Documentation are 138 | provided "as is" and any express or implied warranties, including, but 139 | not limited to, implied warranties of merchantability, of satisfactory 140 | quality, non-infringement of third party rights, and fitness for a 141 | particular purpose or use are disclaimed in respect of the 142 | Documentation, the modified Documentation or any Product. The Licensor 143 | makes no representation that the Documentation, modified 144 | Documentation, or any Product, does or will not infringe any patent, 145 | copyright, trade secret or other proprietary right. The entire risk as 146 | to the use, quality, and performance of a Product shall be with the 147 | Licensee and not the Licensor. This disclaimer of warranty is an 148 | essential part of this Licence and a condition for the grant of any 149 | rights granted under this Licence. The Licensee warrants that it does 150 | not act in a consumer capacity. 151 | 152 | 5.2. LIMITATION OF LIABILITY – The Licensor shall have no liability 153 | for direct, indirect, special, incidental, consequential, exemplary, 154 | punitive or other damages of any character including, without 155 | limitation, procurement of substitute goods or services, loss of use, 156 | data or profits, or business interruption, however caused and on any 157 | theory of contract, warranty, tort (including negligence), product 158 | liability or otherwise, arising in any way in relation to the 159 | Documentation, modified Documentation and/or the use, manufacture or 160 | distribution of a Product, even if advised of the possibility of such 161 | damages, and the Licensee shall hold the Licensor(s) free and harmless 162 | from any liability, costs, damages, fees and expenses, including 163 | claims by third parties, in relation to such use. 164 | 165 | 6. General 166 | 167 | 6.1. Except for the rights explicitly granted hereunder, this Licence 168 | does not imply or represent any transfer or assignment of intellectual 169 | property rights to the Licensee. 170 | 171 | 6.2. The Licensee shall not use or make reference to any of the names 172 | (including acronyms and abbreviations), images, or logos under which 173 | the Licensor is known, save in so far as required to comply with 174 | section 3. Any such permitted use or reference shall be factual and 175 | shall in no event suggest any kind of endorsement by the Licensor or 176 | its personnel of the modified Documentation or any Product, or any 177 | kind of implication by the Licensor or its personnel in the 178 | preparation of the modified Documentation or Product. 179 | 180 | 6.3. CERN may publish updated versions of this Licence which retain 181 | the same general provisions as this version, but differ in detail so 182 | far this is required and reasonable. New versions will be published 183 | with a unique version number. 184 | 185 | 6.4. This Licence shall terminate with immediate effect, upon written 186 | notice and without involvement of a court if the Licensee fails to 187 | comply with any of its terms and conditions, or if the Licensee 188 | initiates legal action against Licensor in relation to this 189 | Licence. Section 5 shall continue to apply. 190 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Original Xbox Serial USB Adapter 2 | 3 | This device allows for serial communication with an original Xbox and is primarily used for kernel debugging. 4 | 5 | For questions or support, contact xbox7887 in the [XboxDev on Discord](https://discord.gg/WxJPPyz). 6 | 7 | ![Xbox Serial USB Adapter Image, REV A](images/adapter.png?raw=true "Xbox Serial USB Adapter, REV A") 8 | 9 | ## Requirements 10 | 11 | ### Hardware 12 | 13 | Any original Xbox of any version (although versions 1.3-1.5 require LFRAME# reconnect and version 1.6 requires full LPC port rebuild, including LFRAME#). 14 | Debug and development kits will work without modification, however, retail boxes need to use a hacked kernel (X2 5035 or Cerbios for example) that initializes superio as well as have a 2x8 2.54mm pin header soldered to the LPC port. 15 | 16 | ### Software 17 | 18 | A Windows OS capable of running WinDbg; versions 4.0.0018.0 (XDK) or [6.12.0002.633](http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/setup/WinSDKDebuggingTools/dbg_x86.msi) have been tested successfully. 19 | 20 | Optionally, [KiCad 7.0](http://kicad-pcb.org/download/) if you need to work with the PCB project files. 21 | 22 | ### BIOS Compatibility 23 | 24 | - Cerbios - use on any board 25 | - X2 4979 BFM - use on any board 26 | - X2 4981 (256 KB) - use on 1.2+ boards 27 | - X2 4983 BFM - use on any board 28 | - X2 5035 (512 KB) - use on 1.0-1.1 boards 29 | 30 | ## Usage 31 | 32 | Connect a USB-C cable from your PC to the serial adapter, then the IDC cable ends into the serial adapter and Xbox LPC port pin headers respectively, ensuring the correct alignment and orientation as shown in the image above. **Incorrect orientation may result in damage to the adapter and/or your Xbox, you have been warned!** 33 | 34 | Within WinDbg press `CTRL+K` to bring up the connection dialog and enter `115200` for the baud rate along with the `COM#` port as detected by your computer in device manager. 35 | 36 | ![WinDbg Connection Image](images/windbg-connect.png?raw=true "WinDbg Connection") 37 | 38 | `CTRL+Break` can be used to pause execution, `F5` to continue, and `F10/F11` to step over or through instructions. 39 | `CTRL+ALT+D` will toggle verbose windbg protocol output for troubleshooting if needed. 40 | The adapter's blue RX LED indicates signals sent from the PC and the green TX LED from the Xbox. 41 | 42 | ![WinDbg Runtime Image](images/windbg-runtime.png?raw=true "WinDbg Runtime") 43 | 44 | ## Components 45 | 46 | Bold designators are the bare minimum required for basic functionality but stability may be questionable. The entire UART to USB circuit and/or LED output is optional and can be replaced with an external 3.3V UART to USB cable jumpered to J2 instead. 47 | 48 | | Count | Part/Value | Description | Designators | Notes | 49 | | - | - | - | - | - | 50 | | 1 | 2x8 2.54mm | Pin Header | **JP1** | | 51 | | 1 | Stewart SS-52400-003 | USB-C Connector | **J1** | | 52 | | 1 | 1x3 2.54mm | Pin Header | J2 | Optional UART breakout | 53 | | 1 | SG5032CAN | 14.318MHz 5032 Crystal Oscillator | **Y1** | | 54 | | 1 | LPC47M192 | SuperIO | **U1** | The LPC47M157 is also compatible | 55 | | 1 | FT231XS | UART to USB | **U2** | | 56 | | 2 | 27R | 0603 SMD Resistor | **R1**, **R3** | Filtering | 57 | | 2 | 10k | 0603 SMD Resistor | **R2**, **R4** | Configuration pull-ups/downs | 58 | | 1 | 470R | 0603 SMD Resistor | R5 | LED power dissipation | 59 | | 1 | 1.2k | 0603 SMD Resistor | R6 | LED power dissipation | 60 | | 2 | 5.1k | 0603 SMD Resistor | **R7**, **R8** | USB-C Configuration pull-downs | 61 | | 2 | 100R | 4x0603 SMD Resistor Network | **RN1**, **RN2** | Terminating resistors for longer LPC ribbons (10+ inches) | 62 | | 1 | 33 Ohm | 0603 Ferrite Bead | **FB1** | Filtering, can be substituted with a 0 ohm resistor or solder bridge | 63 | | 3 | 47pF | 0603 SMD Capacitor | C6, C7 | Filtering | 64 | | 6 | 10nF | 0603 SMD Capacitor | C3, **C8**, C9, **C10**, C12, C13 | Decoupling | 65 | | 2 | 100nF | 0603 SMD Capacitor | C2, C11 | Decoupling | 66 | | 1 | 4.7uF | 0603 SMD Capacitor | C1 | Bulk | 67 | | 1 | 10uF | 0603 SMD Capacitor | C5 | Bulk | 68 | | 1 | Green | 0603 SMD LED | D1 | | 69 | | 1 | Blue | 0603 SMD LED | D2 | | 70 | 71 | ### External Components 72 | 73 | | Count | Part/Value | Description | Designators | Notes | 74 | | - | - | - | - | - | 75 | | 1 | 2x8 2.54mm | Pin Header | N/A | Retail Xbox LPC Connector | 76 | | 1 | 16 Wire 2.54mm | Female to Female IDC Ribbon Cable | N/A | Keep length under 18 inches for best results | 77 | | 1 | USB-C Cable | Cable | N/A | | 78 | 79 | ### Component Retailers 80 | 81 | * [Mouser](https://www.mouser.com/) 82 | * [Digi-Key](https://www.digikey.com/) 83 | * [Arrow](https://www.arrow.com/) 84 | * [Utsource](https://www.utsource.net/) 85 | * [AliExpress](https://www.aliexpress.com/) 86 | * [JLCPCB](https://jlcpcb.com/) 87 | 88 | ## Reference 89 | 90 | ![Schematic Image](images/schematic.png?raw=true "Schematic Runtime") 91 | 92 | ![PCB Copper Image](images/pcb-copper.png?raw=true "PCB Copper Runtime") 93 | 94 | ![PCB Top Image](images/pcb-top.png?raw=true "PCB Top Runtime") 95 | 96 | ![PCB Bottom Image](images/pcb-bottom.png?raw=true "PCB Bottom Runtime") 97 | 98 | ![PCB Render](images/pcb-render.png?raw=true "PCB Render") 99 | 100 | ![Assembled PCBs](images/assembled.jpg?raw=true "Assembled PCBs") 101 | 102 | ## Copyright 103 | 104 | Copyright Mike Davis 2019. 105 | 106 | This documentation describes Open Hardware and is licensed under the 107 | CERN OHL v. 1.2 or later. 108 | 109 | You may redistribute and modify this documentation under the terms of the 110 | CERN OHL v.1.2 or later. (http://ohwr.org/cernohl). This documentation is distributed 111 | WITHOUT ANY EXPRESS OR IMPLIED WARRANTY, INCLUDING OF 112 | MERCHANTABILITY, SATISFACTORY QUALITY AND FITNESS FOR A 113 | PARTICULAR PURPOSE. Please see the CERN OHL v.1.2 or later for applicable 114 | conditions 115 | -------------------------------------------------------------------------------- /cern_ohl_v_1_2_howto.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxDev/serial-usb-adapter/15f80f4a6e20d0cd82eea6d46f2a3da6339f862b/cern_ohl_v_1_2_howto.pdf -------------------------------------------------------------------------------- /fp-lib-table: -------------------------------------------------------------------------------- 1 | (fp_lib_table 2 | (version 7) 3 | (lib (name "Library")(type "KiCad")(uri "${KIPRJMOD}/libraries/Library.pretty")(options "")(descr "")) 4 | ) 5 | -------------------------------------------------------------------------------- /gerbers/serial-usb-adapter-rev-a.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxDev/serial-usb-adapter/15f80f4a6e20d0cd82eea6d46f2a3da6339f862b/gerbers/serial-usb-adapter-rev-a.zip -------------------------------------------------------------------------------- /gerbers/serial-usb-adapter-rev-b.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxDev/serial-usb-adapter/15f80f4a6e20d0cd82eea6d46f2a3da6339f862b/gerbers/serial-usb-adapter-rev-b.zip -------------------------------------------------------------------------------- /gerbers/serial-usb-adapter-rev-c.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxDev/serial-usb-adapter/15f80f4a6e20d0cd82eea6d46f2a3da6339f862b/gerbers/serial-usb-adapter-rev-c.zip -------------------------------------------------------------------------------- /gerbers/serial-usb-adapter-rev-d.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxDev/serial-usb-adapter/15f80f4a6e20d0cd82eea6d46f2a3da6339f862b/gerbers/serial-usb-adapter-rev-d.zip -------------------------------------------------------------------------------- /images/adapter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxDev/serial-usb-adapter/15f80f4a6e20d0cd82eea6d46f2a3da6339f862b/images/adapter.png -------------------------------------------------------------------------------- /images/assembled.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxDev/serial-usb-adapter/15f80f4a6e20d0cd82eea6d46f2a3da6339f862b/images/assembled.jpg -------------------------------------------------------------------------------- /images/pcb-bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxDev/serial-usb-adapter/15f80f4a6e20d0cd82eea6d46f2a3da6339f862b/images/pcb-bottom.png -------------------------------------------------------------------------------- /images/pcb-copper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxDev/serial-usb-adapter/15f80f4a6e20d0cd82eea6d46f2a3da6339f862b/images/pcb-copper.png -------------------------------------------------------------------------------- /images/pcb-render.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxDev/serial-usb-adapter/15f80f4a6e20d0cd82eea6d46f2a3da6339f862b/images/pcb-render.png -------------------------------------------------------------------------------- /images/pcb-top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxDev/serial-usb-adapter/15f80f4a6e20d0cd82eea6d46f2a3da6339f862b/images/pcb-top.png -------------------------------------------------------------------------------- /images/schematic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxDev/serial-usb-adapter/15f80f4a6e20d0cd82eea6d46f2a3da6339f862b/images/schematic.png -------------------------------------------------------------------------------- /images/windbg-connect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxDev/serial-usb-adapter/15f80f4a6e20d0cd82eea6d46f2a3da6339f862b/images/windbg-connect.png -------------------------------------------------------------------------------- /images/windbg-runtime.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XboxDev/serial-usb-adapter/15f80f4a6e20d0cd82eea6d46f2a3da6339f862b/images/windbg-runtime.png -------------------------------------------------------------------------------- /libraries/Library.pretty/SS-52400-003.kicad_mod: -------------------------------------------------------------------------------- 1 | (footprint "SS-52400-003" (version 20221018) (generator pcbnew) 2 | (layer "F.Cu") 3 | (property "Sheetfile" "serial-usb-adapter.kicad_sch") 4 | (property "Sheetname" "") 5 | (attr through_hole) 6 | (fp_text reference "J1" (at -3.95 -7.7) (layer "F.SilkS") 7 | (effects (font (size 0.8 0.8) (thickness 0.12))) 8 | (tstamp 9a5c3bf7-12b9-43c1-b5e9-27c9f78a96fc) 9 | ) 10 | (fp_text value "USB-C" (at 0 6.05) (layer "F.Fab") 11 | (effects (font (size 1 1) (thickness 0.15))) 12 | (tstamp d44ade64-bf4d-4e97-8e4b-a718162a5678) 13 | ) 14 | (fp_text user "PCB EDGE" (at 5.3 3.3) (layer "F.Fab") 15 | (effects (font (size 0.24 0.24) (thickness 0.06))) 16 | (tstamp 21e6b84b-c154-48a0-af4d-03f041a26110) 17 | ) 18 | (fp_text user "${REFERENCE}" (at 0 0 -180) (layer "F.Fab") 19 | (effects (font (size 1 1) (thickness 0.1))) 20 | (tstamp 67d0337d-f8db-445d-b6fc-fe09e3b302f8) 21 | ) 22 | (fp_line (start -4.37 -6.8) (end -4.37 -6.1) 23 | (stroke (width 0.127) (type solid)) (layer "F.SilkS") (tstamp ee105dc8-0f59-4748-bb8c-7f1bd6a9b033)) 24 | (fp_line (start -4.37 1.37) (end -4.37 3.45) 25 | (stroke (width 0.127) (type solid)) (layer "F.SilkS") (tstamp e423e192-d014-465e-962e-8772e4af829b)) 26 | (fp_line (start -4.37 3.45) (end 4.37 3.45) 27 | (stroke (width 0.127) (type solid)) (layer "F.SilkS") (tstamp 2f4e40ce-91ae-454c-af67-e46596190b1f)) 28 | (fp_line (start -3.22 -6.8) (end -4.37 -6.8) 29 | (stroke (width 0.127) (type solid)) (layer "F.SilkS") (tstamp 7d63f127-21af-467d-9cba-12c183e86ff5)) 30 | (fp_line (start 3.22 -6.8) (end 4.37 -6.8) 31 | (stroke (width 0.127) (type solid)) (layer "F.SilkS") (tstamp 5ba6ddb0-974e-40d1-9e80-4d6a4d04d6ca)) 32 | (fp_line (start 4.37 -6.8) (end 4.37 -6.1) 33 | (stroke (width 0.127) (type solid)) (layer "F.SilkS") (tstamp 3c442427-c90d-48c4-80d1-45ef1308a845)) 34 | (fp_line (start 4.37 3.45) (end 4.37 1.37) 35 | (stroke (width 0.127) (type solid)) (layer "F.SilkS") (tstamp ffaeaf5e-0fa3-4ca3-8b45-14bdc8642d87)) 36 | (fp_line (start -5.045 -7.05) (end -5.045 4.65) 37 | (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 4716023a-112e-441e-a03e-a9d6fa463af4)) 38 | (fp_line (start -5.045 4.65) (end 5.045 4.65) 39 | (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 761efb20-7a4b-4b50-a5a1-576d93f2214c)) 40 | (fp_line (start -3.1 -7.98) (end -3.1 -7.05) 41 | (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 3d813582-7630-417e-8f1a-f05eda48c8ed)) 42 | (fp_line (start -3.1 -7.05) (end -5.045 -7.05) 43 | (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 22873153-c4f1-4b98-a387-d4943b3598c4)) 44 | (fp_line (start 3.1 -7.98) (end -3.1 -7.98) 45 | (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 361db689-3ad2-41e5-9531-f7d17b8ebf80)) 46 | (fp_line (start 3.1 -7.05) (end 3.1 -7.98) 47 | (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 2feb9a04-194a-41a7-9af6-548e0c9164e1)) 48 | (fp_line (start 5.045 -7.05) (end 3.1 -7.05) 49 | (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 7c5d3dd9-d193-412f-b710-bc710c3506e6)) 50 | (fp_line (start 5.045 4.65) (end 5.045 -7.05) 51 | (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 619e8d00-bfad-4892-a1f8-d2bd4f811911)) 52 | (fp_line (start -4.37 -6.8) (end 4.37 -6.8) 53 | (stroke (width 0.127) (type solid)) (layer "F.Fab") (tstamp 496c0161-910e-496a-8934-245699e40bb8)) 54 | (fp_line (start -4.37 3.45) (end -4.37 -6.8) 55 | (stroke (width 0.127) (type solid)) (layer "F.Fab") (tstamp 8160f276-e5b9-4bef-aa07-bf6729eb93e7)) 56 | (fp_line (start -4.37 3.45) (end 7.5 3.45) 57 | (stroke (width 0.127) (type solid)) (layer "F.Fab") (tstamp 98c97a5e-6b57-454c-8f09-fa0d7e939540)) 58 | (fp_line (start -4.37 4.4) (end -4.37 3.45) 59 | (stroke (width 0.127) (type solid)) (layer "F.Fab") (tstamp cb80d895-affa-4b20-bdb8-b6236e29870d)) 60 | (fp_line (start 4.37 -6.8) (end 4.37 4.4) 61 | (stroke (width 0.127) (type solid)) (layer "F.Fab") (tstamp 8476f60b-2b3a-4f62-bdc2-a9e3a75eb12e)) 62 | (fp_line (start 4.37 4.4) (end -4.37 4.4) 63 | (stroke (width 0.127) (type solid)) (layer "F.Fab") (tstamp 2683cdb0-53ff-46e7-b62c-a05c56e5e574)) 64 | (pad "A1" smd rect (at -2.75 -7.13) (size 0.3 1.2) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp b1446148-0000-483e-805e-67b45886e662)) 65 | (pad "A2" smd rect (at -2.25 -7.13) (size 0.3 1.2) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 86631851-04ca-4262-b210-61d2a57492e3)) 66 | (pad "A3" smd rect (at -1.75 -7.13) (size 0.3 1.2) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 0b94dfa6-720e-4df5-b085-f20c0a6bf1ac)) 67 | (pad "A4" smd rect (at -1.25 -7.13) (size 0.3 1.2) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp c6f503bd-6f1c-45d5-b44b-9d102052e08b)) 68 | (pad "A5" smd rect (at -0.75 -7.13) (size 0.3 1.2) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 555d73f6-fa46-4260-a9d2-cfe1deabd0fb)) 69 | (pad "A6" smd rect (at -0.25 -7.13) (size 0.3 1.2) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 02c7607b-71b0-473b-aec0-6cf9a7b0992e)) 70 | (pad "A7" smd rect (at 0.25 -7.13) (size 0.3 1.2) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 091b4679-8064-400d-8076-7ce3e7d46fa3)) 71 | (pad "A8" smd rect (at 0.75 -7.13) (size 0.3 1.2) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 0e0ead1e-0848-434c-8710-046672d52967)) 72 | (pad "A9" smd rect (at 1.25 -7.13) (size 0.3 1.2) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp ffb44b5b-2e73-4544-978b-67908d65eac4)) 73 | (pad "A10" smd rect (at 1.75 -7.13) (size 0.3 1.2) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 57bf977b-965d-4d37-9d8e-720d1dd5f1e7)) 74 | (pad "A11" smd rect (at 2.25 -7.13) (size 0.3 1.2) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 770f763d-adef-47e4-835b-6b0bd8f6e2a2)) 75 | (pad "A12" smd rect (at 2.75 -7.13) (size 0.3 1.2) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 209a4998-fc44-4276-a6bb-ff39deec441c)) 76 | (pad "B1" thru_hole circle (at 2.8 -5.88) (size 0.5 0.5) (drill 0.3) (layers "*.Cu" "*.Mask") (tstamp e8cccfb8-b714-4f85-b614-7b990756aab2)) 77 | (pad "B2" thru_hole circle (at 2.4 -5.17) (size 0.5 0.5) (drill 0.3) (layers "*.Cu" "*.Mask") (tstamp 52452f05-b7a3-4434-beca-74588bf73038)) 78 | (pad "B3" thru_hole circle (at 1.6 -5.17) (size 0.5 0.5) (drill 0.3) (layers "*.Cu" "*.Mask") (tstamp af85d14e-7d47-4408-af42-ea8b21a84644)) 79 | (pad "B4" thru_hole circle (at 1.2 -5.88) (size 0.5 0.5) (drill 0.3) (layers "*.Cu" "*.Mask") (tstamp 63c77af3-b5cd-4701-852b-9d30d7c24780)) 80 | (pad "B5" thru_hole circle (at 0.8 -5.17) (size 0.5 0.5) (drill 0.3) (layers "*.Cu" "*.Mask") (tstamp 5ab94afc-97be-47d9-b028-db58d2176602)) 81 | (pad "B6" thru_hole circle (at 0.4 -5.88) (size 0.5 0.5) (drill 0.3) (layers "*.Cu" "*.Mask") (tstamp 12b4c5f5-9e8c-4ffb-af45-c514ee9f19a1)) 82 | (pad "B7" thru_hole circle (at -0.4 -5.88) (size 0.5 0.5) (drill 0.3) (layers "*.Cu" "*.Mask") (tstamp af59c45d-74c2-4287-bfad-b9ad37dcd0b3)) 83 | (pad "B8" thru_hole circle (at -0.8 -5.17) (size 0.5 0.5) (drill 0.3) (layers "*.Cu" "*.Mask") (tstamp bc18abee-0b23-4f82-bb80-deda5f53f62c)) 84 | (pad "B9" thru_hole circle (at -1.2 -5.88) (size 0.5 0.5) (drill 0.3) (layers "*.Cu" "*.Mask") (tstamp ea62590a-31ab-40d2-8ca3-f061dab8f734)) 85 | (pad "B10" thru_hole circle (at -1.6 -5.17) (size 0.5 0.5) (drill 0.3) (layers "*.Cu" "*.Mask") (tstamp 1d45eebb-539f-4368-8dd3-0df9333f4ed1)) 86 | (pad "B11" thru_hole circle (at -2.4 -5.17) (size 0.5 0.5) (drill 0.3) (layers "*.Cu" "*.Mask") (tstamp e1ddc295-1efd-4426-8d1d-9f161a1de04a)) 87 | (pad "B12" thru_hole circle (at -2.8 -5.88) (size 0.5 0.5) (drill 0.3) (layers "*.Cu" "*.Mask") (tstamp adc8bd74-3800-4d1a-879b-b67daff94a20)) 88 | (pad "G1" thru_hole circle (at 2 -5.88) (size 0.5 0.5) (drill 0.3) (layers "*.Cu" "*.Mask") (tstamp dd47fe38-a44b-4aa3-aadb-67e4982b7e8f)) 89 | (pad "G2" thru_hole circle (at -2 -5.88) (size 0.5 0.5) (drill 0.3) (layers "*.Cu" "*.Mask") (tstamp 7936d92b-f087-40f0-98fd-3070ef53f741)) 90 | (pad "G3" smd rect (at 0 -2.55) (size 0.2 1) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp e225a094-40ec-4f6b-9d81-7591bf1e4de8)) 91 | (pad "G4" smd rect (at 0 0.55) (size 0.2 1) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 25ed96a2-ed76-4675-aade-fcf521c5802f)) 92 | (pad "S1" thru_hole oval (at -4.27 -4.73) (size 1.05 2.1) (drill oval 0.65 1.25) (layers "*.Cu" "*.Mask") (tstamp 571517a0-c3f5-49cc-9bfe-0e18902e5bc3)) 93 | (pad "S2" thru_hole oval (at 4.27 -4.73) (size 1.05 2.1) (drill oval 0.65 1.25) (layers "*.Cu" "*.Mask") (tstamp 22ab36d1-a1b3-4a28-b900-852eb15bd6a7)) 94 | (pad "S3" thru_hole oval (at -4.27 0) (size 1.05 2.1) (drill oval 0.65 1.25) (layers "*.Cu" "*.Mask") (tstamp c518b798-4f40-4be3-b387-bf97b7b78d2f)) 95 | (pad "S4" thru_hole oval (at 4.27 0) (size 1.05 2.1) (drill oval 0.65 1.25) (layers "*.Cu" "*.Mask") (tstamp cb190cf2-0366-42c0-bde8-1f8cb622ea9b)) 96 | (model "${KIPRJMOD}/libraries/models/SS-52400-003/SS-52400-003.step" 97 | (offset (xyz 0 1.5 0)) 98 | (scale (xyz 1 1 1)) 99 | (rotate (xyz -90 0 0)) 100 | ) 101 | ) 102 | -------------------------------------------------------------------------------- /libraries/Library.pretty/SS-52400-003/License.txt: -------------------------------------------------------------------------------- 1 | BY ACCESSING OR USING THESE SYMBOLS & FOOTPRINTS ("MODELS"), YOU ARE ACKNOWLEDGING THAT YOU HAVE READ, FULLY UNDERSTAND AND AGREE TO THESE TERMS AND CONDITIONS (the "Agreement"), WHICH CONSTITUTE A BINDING AGREEMENT BETWEEN YOU AND SNAPEDA, INC., ENTERED INTO ON THE DATE OF SUCH OCCURRENCE (the "Effective Date"). IF YOU ARE ACCESSING OR USING THESE FILES ON BEHALF OF AN ENTITY, YOU REPRESENT THAT YOU HAVE THE RIGHT, AUTHORITY, AND CAPACITY TO BIND SUCH ENTITY TO THIS AGREEMENT AND HEREBY DO SO. IF YOU DO NOT AGREE WITH ANY OF THE TERMS OR CONDITIONS OF THIS AGREEMENT, YOU MUST NOT USE ANY PART OF THESE MODELS. 2 | 3 | 1. Design License 4 | 5 | You and your sub-licensees are hereby licensed to design, manufacture, use and distribute, circuit board designs and circuit boards formed by combining Models provided by SnapEDA with other circuit elements of your choosing. You may then convey such combinations under licensing terms of your choice.  6 | 7 | Individual Models remain the intellectual property of SnapEDA, Inc. You shall not (and shall not permit or encourage any third party to) to do any of the following : 8 | 9 | (a) sell, assign, lease, lend, rent, issue, sublicense, make available, or otherwise distribute to any third party, or publicly perform, display or communicate, the Models (for example, by uploading Models to another website or software application);
 10 | (b) remove, alter, or conceal, any copyright, trademark, or other proprietary rights notice or legend displayed or contained in the individual Models. 11 | 12 | For further clarity, once integrated into a schematic design or PCB layout, Models may be modified freely for the purpose of designing a circuit board.  13 | 14 | 15 | 2. Limitation of Liability 16 | 17 | IN NO EVENT WILL SNAPEDA OR OUR SUBSIDIARIES, AGENTS, SUCCESSORS, THIRD PARTY PROVIDERS, AND/OR ANY OF THE FOREGOING ENTITIES' RESPECTIVE DIRECTORS, OFFICERS, EMPLOYEES, AGENTS, REPRESENTATIVES, CUSTOMERS, SUPPLIERS, OR LICENSORS BE RESPONSIBLE OR LIABLE UNDER, OR OTHERWISE IN CONNECTION WITH THIS AGREEMENT, FOR: 18 | 19 | (a) ANY CONSEQUENTIAL, INDIRECT, SPECIAL, INCIDENTAL, OR PUNITIVE DAMAGES; 20 | (b) ANY LOSS OF PROFITS, LOSS OF BUSINESS, LOSS OF REVENUE, OR LOSS OF ANTICIPATED SAVINGS; 21 | (c) ANY LOSS OF, OR DAMAGE TO, DATA, REPUTATION, OR GOODWILL; AND/OR 22 | (d) THE COST OF PROCURING ANY SUBSTITUTE GOODS OR SERVICES. 23 | 24 | THE COMBINED AGGREGATE LIABILITY OF SNAPEDA AND ALL SNAPEDA CONTENT AFFILIATES UNDER, OR OTHERWISE IN CONNECTION WITH, THIS AGREEMENT SHALL NOT EXCEED THE TOTAL AMOUNT OF FEES RECEIVED BY SNAPEDA FROM YOU IN THE PREVIOUS TWELVE (12) MONTHS. THE FOREGOING EXCLUSIONS AND LIMITATIONS SHALL APPLY: (a) EVEN IF SNAPEDA OR ANY SNAPEDA CONTENT AFFILIATE HAS BEEN ADVISED, OR SHOULD HAVE BEEN AWARE, OF THE POSSIBILITY OF LOSSES, DAMAGES, OR COSTS; (b) EVEN IF ANY REMEDY IN THIS AGREEMENT FAILS OF ITS ESSENTIAL PURPOSE; AND (c) REGARDLESS OF THE THEORY OR BASIS OF LIABILITY (INCLUDING WITHOUT LIMITATION BREACH OF CONTRACT, TORT, NEGLIGENCE, AND STRICT LIABILITY). -------------------------------------------------------------------------------- /libraries/serial-usb-adapter.dcm: -------------------------------------------------------------------------------- 1 | EESchema-DOCLIB Version 2.0 2 | # 3 | #End Doc Library 4 | -------------------------------------------------------------------------------- /libraries/serial-usb-adapter.kicad_sym: -------------------------------------------------------------------------------- 1 | (kicad_symbol_lib (version 20220914) (generator kicad_symbol_editor) 2 | (symbol "FT231XS" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) 3 | (property "Reference" "U" (at -12.7 13.97 0) 4 | (effects (font (size 1.27 1.27)) (justify left)) 5 | ) 6 | (property "Value" "FT231XS" (at -3.81 0 0) 7 | (effects (font (size 1.27 1.27)) (justify left)) 8 | ) 9 | (property "Footprint" "Package_SO:SSOP-20_3.9x8.7mm_P0.635mm" (at 0 16.51 0) 10 | (effects (font (size 1.27 1.27)) hide) 11 | ) 12 | (property "Datasheet" "" (at 0 0 0) 13 | (effects (font (size 1.27 1.27)) hide) 14 | ) 15 | (property "ki_fp_filters" "*SSOP*3.9x8.7mm*P0.635mm*" (at 0 0 0) 16 | (effects (font (size 1.27 1.27)) hide) 17 | ) 18 | (symbol "FT231XS_0_1" 19 | (rectangle (start -13.97 12.7) (end 13.97 -19.05) 20 | (stroke (width 0.254) (type solid)) 21 | (fill (type background)) 22 | ) 23 | ) 24 | (symbol "FT231XS_1_1" 25 | (pin bidirectional line (at 17.78 -10.16 180) (length 3.81) 26 | (name "TXLED#" (effects (font (size 1.27 1.27)))) 27 | (number "10" (effects (font (size 1.27 1.27)))) 28 | ) 29 | (pin bidirectional line (at -17.78 5.08 0) (length 3.81) 30 | (name "USBDP" (effects (font (size 1.27 1.27)))) 31 | (number "11" (effects (font (size 1.27 1.27)))) 32 | ) 33 | (pin bidirectional line (at -17.78 2.54 0) (length 3.81) 34 | (name "USBDM" (effects (font (size 1.27 1.27)))) 35 | (number "12" (effects (font (size 1.27 1.27)))) 36 | ) 37 | (pin power_out line (at -17.78 -10.16 0) (length 3.81) 38 | (name "3V3OUT" (effects (font (size 1.27 1.27)))) 39 | (number "13" (effects (font (size 1.27 1.27)))) 40 | ) 41 | (pin input line (at -17.78 -5.08 0) (length 3.81) 42 | (name "~{RESET}" (effects (font (size 1.27 1.27)))) 43 | (number "14" (effects (font (size 1.27 1.27)))) 44 | ) 45 | (pin power_in line (at -17.78 10.16 0) (length 3.81) 46 | (name "VCC" (effects (font (size 1.27 1.27)))) 47 | (number "15" (effects (font (size 1.27 1.27)))) 48 | ) 49 | (pin power_in line (at -2.54 -22.86 90) (length 3.81) 50 | (name "GND" (effects (font (size 1.27 1.27)))) 51 | (number "16" (effects (font (size 1.27 1.27)))) 52 | ) 53 | (pin bidirectional line (at 17.78 -7.62 180) (length 3.81) 54 | (name "RXLED#" (effects (font (size 1.27 1.27)))) 55 | (number "17" (effects (font (size 1.27 1.27)))) 56 | ) 57 | (pin output line (at 6.35 -22.86 90) (length 3.81) 58 | (name "TXD" (effects (font (size 1.27 1.27)))) 59 | (number "20" (effects (font (size 1.27 1.27)))) 60 | ) 61 | (pin power_in line (at -17.78 -7.62 0) (length 3.81) 62 | (name "VCCIO" (effects (font (size 1.27 1.27)))) 63 | (number "3" (effects (font (size 1.27 1.27)))) 64 | ) 65 | (pin input line (at 8.89 -22.86 90) (length 3.81) 66 | (name "RXD" (effects (font (size 1.27 1.27)))) 67 | (number "4" (effects (font (size 1.27 1.27)))) 68 | ) 69 | (pin power_in line (at -5.08 -22.86 90) (length 3.81) 70 | (name "GND" (effects (font (size 1.27 1.27)))) 71 | (number "6" (effects (font (size 1.27 1.27)))) 72 | ) 73 | ) 74 | ) 75 | (symbol "LPC" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) 76 | (property "Reference" "JP" (at 2.54 33.02 0) 77 | (effects (font (size 1.27 1.27))) 78 | ) 79 | (property "Value" "LPC" (at 2.54 -1.27 0) 80 | (effects (font (size 1.27 1.27))) 81 | ) 82 | (property "Footprint" "" (at 1.27 1.27 0) 83 | (effects (font (size 1.27 1.27)) hide) 84 | ) 85 | (property "Datasheet" "" (at 1.27 1.27 0) 86 | (effects (font (size 1.27 1.27)) hide) 87 | ) 88 | (symbol "LPC_0_0" 89 | (rectangle (start 0 0) (end 8.89 31.75) 90 | (stroke (width 0) (type solid)) 91 | (fill (type background)) 92 | ) 93 | ) 94 | (symbol "LPC_1_1" 95 | (pin output line (at 11.43 15.24 180) (length 2.54) 96 | (name "LCLK" (effects (font (size 1.27 1.27)))) 97 | (number "1" (effects (font (size 1.27 1.27)))) 98 | ) 99 | (pin bidirectional line (at 11.43 27.94 180) (length 2.54) 100 | (name "LAD1" (effects (font (size 1.27 1.27)))) 101 | (number "10" (effects (font (size 1.27 1.27)))) 102 | ) 103 | (pin bidirectional line (at 11.43 30.48 180) (length 2.54) 104 | (name "LAD0" (effects (font (size 1.27 1.27)))) 105 | (number "11" (effects (font (size 1.27 1.27)))) 106 | ) 107 | (pin power_out line (at 11.43 1.27 180) (length 2.54) 108 | (name "VCC" (effects (font (size 1.27 1.27)))) 109 | (number "15" (effects (font (size 1.27 1.27)))) 110 | ) 111 | (pin power_out line (at 11.43 7.62 180) (length 2.54) 112 | (name "VSS" (effects (font (size 1.27 1.27)))) 113 | (number "2" (effects (font (size 1.27 1.27)))) 114 | ) 115 | (pin output line (at 11.43 20.32 180) (length 2.54) 116 | (name "LFRAME" (effects (font (size 1.27 1.27)))) 117 | (number "3" (effects (font (size 1.27 1.27)))) 118 | ) 119 | (pin output line (at 11.43 17.78 180) (length 2.54) 120 | (name "RST" (effects (font (size 1.27 1.27)))) 121 | (number "5" (effects (font (size 1.27 1.27)))) 122 | ) 123 | (pin bidirectional line (at 11.43 22.86 180) (length 2.54) 124 | (name "LAD3" (effects (font (size 1.27 1.27)))) 125 | (number "7" (effects (font (size 1.27 1.27)))) 126 | ) 127 | (pin bidirectional line (at 11.43 25.4 180) (length 2.54) 128 | (name "LAD2" (effects (font (size 1.27 1.27)))) 129 | (number "8" (effects (font (size 1.27 1.27)))) 130 | ) 131 | ) 132 | ) 133 | (symbol "LPC47M192" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) 134 | (property "Reference" "U" (at 2.54 43.18 0) 135 | (effects (font (size 1.27 1.27))) 136 | ) 137 | (property "Value" "LPC47M192" (at 16.51 33.02 0) 138 | (effects (font (size 1.27 1.27))) 139 | ) 140 | (property "Footprint" "" (at 2.54 43.18 0) 141 | (effects (font (size 1.27 1.27)) hide) 142 | ) 143 | (property "Datasheet" "" (at 2.54 43.18 0) 144 | (effects (font (size 1.27 1.27)) hide) 145 | ) 146 | (symbol "LPC47M192_0_1" 147 | (rectangle (start 0 41.91) (end 33.02 0) 148 | (stroke (width 0) (type solid)) 149 | (fill (type background)) 150 | ) 151 | ) 152 | (symbol "LPC47M192_1_1" 153 | (pin power_in line (at 12.7 -2.54 90) (length 2.54) 154 | (name "VTR" (effects (font (size 1.27 1.27)))) 155 | (number "18" (effects (font (size 1.27 1.27)))) 156 | ) 157 | (pin input line (at -2.54 39.37 0) (length 2.54) 158 | (name "CLOCKI" (effects (font (size 1.27 1.27)))) 159 | (number "19" (effects (font (size 1.27 1.27)))) 160 | ) 161 | (pin bidirectional line (at -2.54 31.75 0) (length 2.54) 162 | (name "LAD0" (effects (font (size 1.27 1.27)))) 163 | (number "20" (effects (font (size 1.27 1.27)))) 164 | ) 165 | (pin bidirectional line (at -2.54 29.21 0) (length 2.54) 166 | (name "LAD1" (effects (font (size 1.27 1.27)))) 167 | (number "21" (effects (font (size 1.27 1.27)))) 168 | ) 169 | (pin bidirectional line (at -2.54 26.67 0) (length 2.54) 170 | (name "LAD2" (effects (font (size 1.27 1.27)))) 171 | (number "22" (effects (font (size 1.27 1.27)))) 172 | ) 173 | (pin bidirectional line (at -2.54 24.13 0) (length 2.54) 174 | (name "LAD3" (effects (font (size 1.27 1.27)))) 175 | (number "23" (effects (font (size 1.27 1.27)))) 176 | ) 177 | (pin input line (at -2.54 21.59 0) (length 2.54) 178 | (name "nLFRAME" (effects (font (size 1.27 1.27)))) 179 | (number "24" (effects (font (size 1.27 1.27)))) 180 | ) 181 | (pin input line (at -2.54 19.05 0) (length 2.54) 182 | (name "nPCI_RESET" (effects (font (size 1.27 1.27)))) 183 | (number "26" (effects (font (size 1.27 1.27)))) 184 | ) 185 | (pin input line (at -2.54 2.54 0) (length 2.54) 186 | (name "nLPCPD" (effects (font (size 1.27 1.27)))) 187 | (number "27" (effects (font (size 1.27 1.27)))) 188 | ) 189 | (pin input line (at -2.54 16.51 0) (length 2.54) 190 | (name "PCI_CLK" (effects (font (size 1.27 1.27)))) 191 | (number "29" (effects (font (size 1.27 1.27)))) 192 | ) 193 | (pin power_in line (at 35.56 11.43 180) (length 2.54) 194 | (name "VSS" (effects (font (size 1.27 1.27)))) 195 | (number "31" (effects (font (size 1.27 1.27)))) 196 | ) 197 | (pin bidirectional line (at 35.56 26.67 180) (length 2.54) 198 | (name "SYSOPT" (effects (font (size 1.27 1.27)))) 199 | (number "45" (effects (font (size 1.27 1.27)))) 200 | ) 201 | (pin power_in line (at 19.05 -2.54 90) (length 2.54) 202 | (name "VCC" (effects (font (size 1.27 1.27)))) 203 | (number "53" (effects (font (size 1.27 1.27)))) 204 | ) 205 | (pin input line (at 35.56 29.21 180) (length 2.54) 206 | (name "CLKI32" (effects (font (size 1.27 1.27)))) 207 | (number "6" (effects (font (size 1.27 1.27)))) 208 | ) 209 | (pin power_in line (at 35.56 13.97 180) (length 2.54) 210 | (name "VSS" (effects (font (size 1.27 1.27)))) 211 | (number "60" (effects (font (size 1.27 1.27)))) 212 | ) 213 | (pin power_in line (at 25.4 -2.54 90) (length 2.54) 214 | (name "VCC" (effects (font (size 1.27 1.27)))) 215 | (number "65" (effects (font (size 1.27 1.27)))) 216 | ) 217 | (pin power_in line (at 35.56 8.89 180) (length 2.54) 218 | (name "VSS" (effects (font (size 1.27 1.27)))) 219 | (number "7" (effects (font (size 1.27 1.27)))) 220 | ) 221 | (pin power_in line (at 35.56 16.51 180) (length 2.54) 222 | (name "VSS" (effects (font (size 1.27 1.27)))) 223 | (number "76" (effects (font (size 1.27 1.27)))) 224 | ) 225 | (pin input line (at 25.4 44.45 270) (length 2.54) 226 | (name "RXD1" (effects (font (size 1.27 1.27)))) 227 | (number "84" (effects (font (size 1.27 1.27)))) 228 | ) 229 | (pin output line (at 27.94 44.45 270) (length 2.54) 230 | (name "TXD1" (effects (font (size 1.27 1.27)))) 231 | (number "85" (effects (font (size 1.27 1.27)))) 232 | ) 233 | (pin power_in line (at 31.75 -2.54 90) (length 2.54) 234 | (name "VCC" (effects (font (size 1.27 1.27)))) 235 | (number "93" (effects (font (size 1.27 1.27)))) 236 | ) 237 | ) 238 | ) 239 | (symbol "SG5032CAN" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) 240 | (property "Reference" "Y" (at 1.27 10.16 0) 241 | (effects (font (size 1.27 1.27))) 242 | ) 243 | (property "Value" "SG5032CAN" (at 6.35 -1.27 0) 244 | (effects (font (size 1.27 1.27))) 245 | ) 246 | (property "Footprint" "" (at -10.16 10.16 0) 247 | (effects (font (size 1.27 1.27)) hide) 248 | ) 249 | (property "Datasheet" "" (at -10.16 10.16 0) 250 | (effects (font (size 1.27 1.27)) hide) 251 | ) 252 | (symbol "SG5032CAN_0_0" 253 | (rectangle (start 0 0) (end 11.43 8.89) 254 | (stroke (width 0) (type solid)) 255 | (fill (type background)) 256 | ) 257 | ) 258 | (symbol "SG5032CAN_1_1" 259 | (pin input line (at 13.97 2.54 180) (length 2.54) hide 260 | (name "OE" (effects (font (size 1.27 1.27)))) 261 | (number "1" (effects (font (size 1.27 1.27)))) 262 | ) 263 | (pin power_in line (at -2.54 2.54 0) (length 2.54) 264 | (name "GND" (effects (font (size 1.27 1.27)))) 265 | (number "2" (effects (font (size 1.27 1.27)))) 266 | ) 267 | (pin output line (at 13.97 6.35 180) (length 2.54) 268 | (name "OUT" (effects (font (size 1.27 1.27)))) 269 | (number "3" (effects (font (size 1.27 1.27)))) 270 | ) 271 | (pin power_in line (at -2.54 6.35 0) (length 2.54) 272 | (name "VCC" (effects (font (size 1.27 1.27)))) 273 | (number "4" (effects (font (size 1.27 1.27)))) 274 | ) 275 | ) 276 | ) 277 | (symbol "USB_C_Plug_USB2.0" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) 278 | (property "Reference" "J1" (at -7.62 22.86 0) 279 | (effects (font (size 1.27 1.27))) 280 | ) 281 | (property "Value" "USB-C SS-52400-003" (at 7.62 22.86 0) 282 | (effects (font (size 1.27 1.27))) 283 | ) 284 | (property "Footprint" "Library:SS-52400-003" (at 0 25.4 0) 285 | (effects (font (size 1.27 1.27)) hide) 286 | ) 287 | (property "Datasheet" "https://www.belfuse.com/resources/drawings/stewartconnector/dr-stw-ss-52400-003.pdf" (at 1.27 -13.97 0) 288 | (effects (font (size 1.27 1.27)) hide) 289 | ) 290 | (property "ki_keywords" "usb universal serial bus type-C USB2.0" (at 0 0 0) 291 | (effects (font (size 1.27 1.27)) hide) 292 | ) 293 | (property "ki_description" "USB 2.0-only Type-C Plug connector" (at 0 0 0) 294 | (effects (font (size 1.27 1.27)) hide) 295 | ) 296 | (property "ki_fp_filters" "USB*C*Plug*" (at 0 0 0) 297 | (effects (font (size 1.27 1.27)) hide) 298 | ) 299 | (symbol "USB_C_Plug_USB2.0_0_1" 300 | (rectangle (start -8.89 21.59) (end 6.35 -11.43) 301 | (stroke (width 0.254) (type default)) 302 | (fill (type background)) 303 | ) 304 | (circle (center -7.239 15.9512) (radius 0.635) 305 | (stroke (width 0.254) (type default)) 306 | (fill (type outline)) 307 | ) 308 | (arc (start -7.2374 20.5992) (mid -8.095 19.6103) (end -7.339 18.5418) 309 | (stroke (width 0.508) (type default)) 310 | (fill (type none)) 311 | ) 312 | (arc (start -7.0104 19.9136) (mid -7.3247 19.5707) (end -7.0104 19.2278) 313 | (stroke (width 0.254) (type default)) 314 | (fill (type outline)) 315 | ) 316 | (rectangle (start -6.985 19.9136) (end -3.4798 19.2278) 317 | (stroke (width 0.254) (type default)) 318 | (fill (type outline)) 319 | ) 320 | (circle (center -4.064 17.2212) (radius 0.381) 321 | (stroke (width 0.254) (type default)) 322 | (fill (type outline)) 323 | ) 324 | (arc (start -3.4544 19.2278) (mid -3.1491 19.5477) (end -3.4175 19.8991) 325 | (stroke (width 0.254) (type default)) 326 | (fill (type outline)) 327 | ) 328 | (arc (start -3.2766 18.542) (mid -2.3142 19.5476) (end -3.2258 20.5994) 329 | (stroke (width 0.508) (type default)) 330 | (fill (type none)) 331 | ) 332 | (rectangle (start -3.175 15.0622) (end -3.937 14.3002) 333 | (stroke (width 0.254) (type default)) 334 | (fill (type outline)) 335 | ) 336 | (polyline 337 | (pts 338 | (xy -5.334 15.9512) 339 | (xy -2.794 15.9512) 340 | ) 341 | (stroke (width 0.254) (type default)) 342 | (fill (type none)) 343 | ) 344 | (polyline 345 | (pts 346 | (xy -3.3274 18.542) 347 | (xy -7.3152 18.542) 348 | ) 349 | (stroke (width 0.508) (type default)) 350 | (fill (type none)) 351 | ) 352 | (polyline 353 | (pts 354 | (xy -3.2004 20.5994) 355 | (xy -7.2136 20.5994) 356 | ) 357 | (stroke (width 0.508) (type default)) 358 | (fill (type none)) 359 | ) 360 | (polyline 361 | (pts 362 | (xy -6.604 15.9512) 363 | (xy -5.969 15.9512) 364 | (xy -4.699 17.2212) 365 | (xy -4.064 17.2212) 366 | ) 367 | (stroke (width 0.254) (type default)) 368 | (fill (type none)) 369 | ) 370 | (polyline 371 | (pts 372 | (xy -5.969 15.9512) 373 | (xy -5.334 15.9512) 374 | (xy -4.699 14.6812) 375 | (xy -3.429 14.6812) 376 | ) 377 | (stroke (width 0.254) (type default)) 378 | (fill (type none)) 379 | ) 380 | (polyline 381 | (pts 382 | (xy -2.794 16.5862) 383 | (xy -2.794 15.3162) 384 | (xy -1.524 15.9512) 385 | (xy -2.794 16.5862) 386 | ) 387 | (stroke (width 0.254) (type default)) 388 | (fill (type outline)) 389 | ) 390 | ) 391 | (symbol "USB_C_Plug_USB2.0_1_1" 392 | (pin passive line (at -13.97 -1.27 0) (length 5.08) 393 | (name "GND" (effects (font (size 1.27 1.27)))) 394 | (number "A1" (effects (font (size 1.27 1.27)))) 395 | ) 396 | (pin passive line (at -13.97 -6.35 0) (length 5.08) 397 | (name "GND" (effects (font (size 1.27 1.27)))) 398 | (number "A12" (effects (font (size 1.27 1.27)))) 399 | ) 400 | (pin passive line (at 11.43 19.05 180) (length 5.08) 401 | (name "VBUS" (effects (font (size 1.27 1.27)))) 402 | (number "A4" (effects (font (size 1.27 1.27)))) 403 | ) 404 | (pin passive line (at 11.43 -6.35 180) (length 5.08) 405 | (name "CC1" (effects (font (size 1.27 1.27)))) 406 | (number "A5" (effects (font (size 1.27 1.27)))) 407 | ) 408 | (pin bidirectional line (at 11.43 6.35 180) (length 5.08) 409 | (name "D1+" (effects (font (size 1.27 1.27)))) 410 | (number "A6" (effects (font (size 1.27 1.27)))) 411 | ) 412 | (pin bidirectional line (at 11.43 1.27 180) (length 5.08) 413 | (name "D1-" (effects (font (size 1.27 1.27)))) 414 | (number "A7" (effects (font (size 1.27 1.27)))) 415 | ) 416 | (pin passive line (at 11.43 13.97 180) (length 5.08) 417 | (name "VBUS" (effects (font (size 1.27 1.27)))) 418 | (number "A9" (effects (font (size 1.27 1.27)))) 419 | ) 420 | (pin passive line (at -13.97 -3.81 0) (length 5.08) 421 | (name "GND" (effects (font (size 1.27 1.27)))) 422 | (number "B1" (effects (font (size 1.27 1.27)))) 423 | ) 424 | (pin passive line (at -13.97 -8.89 0) (length 5.08) 425 | (name "GND" (effects (font (size 1.27 1.27)))) 426 | (number "B12" (effects (font (size 1.27 1.27)))) 427 | ) 428 | (pin passive line (at 11.43 16.51 180) (length 5.08) 429 | (name "VBUS" (effects (font (size 1.27 1.27)))) 430 | (number "B4" (effects (font (size 1.27 1.27)))) 431 | ) 432 | (pin passive line (at 11.43 -8.89 180) (length 5.08) 433 | (name "CC2" (effects (font (size 1.27 1.27)))) 434 | (number "B5" (effects (font (size 1.27 1.27)))) 435 | ) 436 | (pin bidirectional line (at 11.43 3.81 180) (length 5.08) 437 | (name "D2+" (effects (font (size 1.27 1.27)))) 438 | (number "B6" (effects (font (size 1.27 1.27)))) 439 | ) 440 | (pin bidirectional line (at 11.43 -1.27 180) (length 5.08) 441 | (name "D2-" (effects (font (size 1.27 1.27)))) 442 | (number "B7" (effects (font (size 1.27 1.27)))) 443 | ) 444 | (pin passive line (at 11.43 11.43 180) (length 5.08) 445 | (name "VBUS" (effects (font (size 1.27 1.27)))) 446 | (number "B9" (effects (font (size 1.27 1.27)))) 447 | ) 448 | (pin passive line (at -13.97 10.16 0) (length 5.08) 449 | (name "SHIELD" (effects (font (size 1.27 1.27)))) 450 | (number "S1" (effects (font (size 1.27 1.27)))) 451 | ) 452 | (pin passive line (at -13.97 7.62 0) (length 5.08) 453 | (name "SHIELD" (effects (font (size 1.27 1.27)))) 454 | (number "S2" (effects (font (size 1.27 1.27)))) 455 | ) 456 | (pin passive line (at -13.97 5.08 0) (length 5.08) 457 | (name "SHIELD" (effects (font (size 1.27 1.27)))) 458 | (number "S3" (effects (font (size 1.27 1.27)))) 459 | ) 460 | (pin passive line (at -13.97 2.54 0) (length 5.08) 461 | (name "SHIELD" (effects (font (size 1.27 1.27)))) 462 | (number "S4" (effects (font (size 1.27 1.27)))) 463 | ) 464 | ) 465 | ) 466 | ) 467 | -------------------------------------------------------------------------------- /libraries/serial-usb-adapter.lib: -------------------------------------------------------------------------------- 1 | EESchema-LIBRARY Version 2.4 2 | #encoding utf-8 3 | # 4 | # FT231XS 5 | # 6 | DEF FT231XS U 0 40 Y Y 1 F N 7 | F0 "U" -500 550 50 H V L CNN 8 | F1 "FT231XS" -150 0 50 H V L CNN 9 | F2 "Package_SO:SSOP-20_3.9x8.7mm_P0.635mm" 0 650 50 H I C CNN 10 | F3 "" 0 0 50 H I C CNN 11 | $FPLIST 12 | *SSOP*3.9x8.7mm*P0.635mm* 13 | $ENDFPLIST 14 | DRAW 15 | S -550 500 550 -750 0 1 10 f 16 | X TXLED# 10 700 -400 150 L 50 50 1 1 B 17 | X USBDP 11 -700 200 150 R 50 50 1 1 B 18 | X USBDM 12 -700 100 150 R 50 50 1 1 B 19 | X 3V3OUT 13 -700 -400 150 R 50 50 1 1 w 20 | X ~RESET 14 -700 -200 150 R 50 50 1 1 I 21 | X VCC 15 -700 400 150 R 50 50 1 1 W 22 | X GND 16 -100 -900 150 U 50 50 1 1 W 23 | X RXLED# 17 700 -300 150 L 50 50 1 1 B 24 | X TXD 20 250 -900 150 U 50 50 1 1 O 25 | X VCCIO 3 -700 -300 150 R 50 50 1 1 W 26 | X RXD 4 350 -900 150 U 50 50 1 1 I 27 | X GND 6 -200 -900 150 U 50 50 1 1 W 28 | ENDDRAW 29 | ENDDEF 30 | # 31 | # LPC 32 | # 33 | DEF LPC JP 0 40 Y Y 1 F N 34 | F0 "JP" 100 1300 50 H V C CNN 35 | F1 "LPC" 100 -50 50 H V C CNN 36 | F2 "" 50 50 50 H I C CNN 37 | F3 "" 50 50 50 H I C CNN 38 | DRAW 39 | S 0 0 350 1250 0 0 0 f 40 | X LCLK 1 450 600 100 L 50 50 1 1 O 41 | X LAD1 10 450 1100 100 L 50 50 1 1 B 42 | X LAD0 11 450 1200 100 L 50 50 1 1 B 43 | X VCC 15 450 50 100 L 50 50 1 1 w 44 | X VSS 2 450 300 100 L 50 50 1 1 w 45 | X LFRAME 3 450 800 100 L 50 50 1 1 O 46 | X RST 5 450 700 100 L 50 50 1 1 O 47 | X LAD3 7 450 900 100 L 50 50 1 1 B 48 | X LAD2 8 450 1000 100 L 50 50 1 1 B 49 | ENDDRAW 50 | ENDDEF 51 | # 52 | # LPC47M192 53 | # 54 | DEF LPC47M192 U 0 40 Y Y 1 F N 55 | F0 "U" 100 1700 50 H V C CNN 56 | F1 "LPC47M192" 650 1300 50 H V C CNN 57 | F2 "" 100 1700 50 H I C CNN 58 | F3 "" 100 1700 50 H I C CNN 59 | DRAW 60 | S 0 1650 1300 0 0 1 0 f 61 | X VTR 18 500 -100 100 U 50 50 1 1 W 62 | X CLOCKI 19 -100 1550 100 R 50 50 1 1 I 63 | X LAD0 20 -100 1250 100 R 50 50 1 1 B 64 | X LAD1 21 -100 1150 100 R 50 50 1 1 B 65 | X LAD2 22 -100 1050 100 R 50 50 1 1 B 66 | X LAD3 23 -100 950 100 R 50 50 1 1 B 67 | X nLFRAME 24 -100 850 100 R 50 50 1 1 I 68 | X nPCI_RESET 26 -100 750 100 R 50 50 1 1 I 69 | X nLPCPD 27 -100 100 100 R 50 50 1 1 I 70 | X PCI_CLK 29 -100 650 100 R 50 50 1 1 I 71 | X VSS 31 1400 450 100 L 50 50 1 1 W 72 | X SYSOPT 45 1400 1050 100 L 50 50 1 1 B 73 | X VCC 53 750 -100 100 U 50 50 1 1 W 74 | X CLKI32 6 1400 1150 100 L 50 50 1 1 I 75 | X VSS 60 1400 550 100 L 50 50 1 1 W 76 | X VCC 65 1000 -100 100 U 50 50 1 1 W 77 | X VSS 7 1400 350 100 L 50 50 1 1 W 78 | X VSS 76 1400 650 100 L 50 50 1 1 W 79 | X RXD1 84 1000 1750 100 D 50 50 1 1 I 80 | X TXD1 85 1100 1750 100 D 50 50 1 1 O 81 | X VCC 93 1250 -100 100 U 50 50 1 1 W 82 | ENDDRAW 83 | ENDDEF 84 | # 85 | # SG5032CAN 86 | # 87 | DEF SG5032CAN Y 0 40 Y Y 1 F N 88 | F0 "Y" 50 400 50 H V C CNN 89 | F1 "SG5032CAN" 250 -50 50 H V C CNN 90 | F2 "" -400 400 50 H I C CNN 91 | F3 "" -400 400 50 H I C CNN 92 | DRAW 93 | S 0 0 450 350 0 0 0 f 94 | X OE 1 550 100 100 L 50 50 1 1 I N 95 | X GND 2 -100 100 100 R 50 50 1 1 W 96 | X OUT 3 550 250 100 L 50 50 1 1 O 97 | X VCC 4 -100 250 100 R 50 50 1 1 W 98 | ENDDRAW 99 | ENDDEF 100 | # 101 | #End Library 102 | -------------------------------------------------------------------------------- /serial-usb-adapter.kicad_pro: -------------------------------------------------------------------------------- 1 | { 2 | "board": { 3 | "3dviewports": [], 4 | "design_settings": { 5 | "defaults": { 6 | "board_outline_line_width": 0.15, 7 | "copper_line_width": 0.19999999999999998, 8 | "copper_text_italic": false, 9 | "copper_text_size_h": 1.5, 10 | "copper_text_size_v": 1.5, 11 | "copper_text_thickness": 0.3, 12 | "copper_text_upright": false, 13 | "courtyard_line_width": 0.049999999999999996, 14 | "dimension_precision": 4, 15 | "dimension_units": 3, 16 | "dimensions": { 17 | "arrow_length": 1270000, 18 | "extension_offset": 500000, 19 | "keep_text_aligned": true, 20 | "suppress_zeroes": false, 21 | "text_position": 0, 22 | "units_format": 1 23 | }, 24 | "fab_line_width": 0.09999999999999999, 25 | "fab_text_italic": false, 26 | "fab_text_size_h": 1.0, 27 | "fab_text_size_v": 1.0, 28 | "fab_text_thickness": 0.15, 29 | "fab_text_upright": false, 30 | "other_line_width": 0.09999999999999999, 31 | "other_text_italic": false, 32 | "other_text_size_h": 1.0, 33 | "other_text_size_v": 1.0, 34 | "other_text_thickness": 0.15, 35 | "other_text_upright": false, 36 | "pads": { 37 | "drill": 1.0, 38 | "height": 1.7, 39 | "width": 1.7 40 | }, 41 | "silk_line_width": 0.15, 42 | "silk_text_italic": false, 43 | "silk_text_size_h": 1.0, 44 | "silk_text_size_v": 1.0, 45 | "silk_text_thickness": 0.15, 46 | "silk_text_upright": false, 47 | "zones": { 48 | "45_degree_only": false, 49 | "min_clearance": 0.127 50 | } 51 | }, 52 | "diff_pair_dimensions": [ 53 | { 54 | "gap": 0.0, 55 | "via_gap": 0.0, 56 | "width": 0.0 57 | } 58 | ], 59 | "drc_exclusions": [], 60 | "meta": { 61 | "filename": "board_design_settings.json", 62 | "version": 2 63 | }, 64 | "rule_severities": { 65 | "annular_width": "error", 66 | "clearance": "error", 67 | "connection_width": "warning", 68 | "copper_edge_clearance": "error", 69 | "copper_sliver": "warning", 70 | "courtyards_overlap": "error", 71 | "diff_pair_gap_out_of_range": "error", 72 | "diff_pair_uncoupled_length_too_long": "error", 73 | "drill_out_of_range": "error", 74 | "duplicate_footprints": "warning", 75 | "extra_footprint": "warning", 76 | "footprint": "error", 77 | "footprint_type_mismatch": "error", 78 | "hole_clearance": "error", 79 | "hole_near_hole": "error", 80 | "invalid_outline": "error", 81 | "isolated_copper": "warning", 82 | "item_on_disabled_layer": "error", 83 | "items_not_allowed": "error", 84 | "length_out_of_range": "error", 85 | "lib_footprint_issues": "warning", 86 | "lib_footprint_mismatch": "warning", 87 | "malformed_courtyard": "error", 88 | "microvia_drill_out_of_range": "error", 89 | "missing_courtyard": "ignore", 90 | "missing_footprint": "warning", 91 | "net_conflict": "warning", 92 | "npth_inside_courtyard": "ignore", 93 | "padstack": "error", 94 | "pth_inside_courtyard": "ignore", 95 | "shorting_items": "error", 96 | "silk_edge_clearance": "warning", 97 | "silk_over_copper": "warning", 98 | "silk_overlap": "warning", 99 | "skew_out_of_range": "error", 100 | "solder_mask_bridge": "error", 101 | "starved_thermal": "error", 102 | "text_height": "warning", 103 | "text_thickness": "warning", 104 | "through_hole_pad_without_hole": "error", 105 | "too_many_vias": "error", 106 | "track_dangling": "warning", 107 | "track_width": "error", 108 | "tracks_crossing": "error", 109 | "unconnected_items": "error", 110 | "unresolved_variable": "error", 111 | "via_dangling": "warning", 112 | "zones_intersect": "error" 113 | }, 114 | "rules": { 115 | "allow_blind_buried_vias": false, 116 | "allow_microvias": false, 117 | "max_error": 0.005, 118 | "min_clearance": 0.0, 119 | "min_connection": 0.0, 120 | "min_copper_edge_clearance": 0.075, 121 | "min_hole_clearance": 0.25, 122 | "min_hole_to_hole": 0.5, 123 | "min_microvia_diameter": 0.19999999999999998, 124 | "min_microvia_drill": 0.09999999999999999, 125 | "min_resolved_spokes": 2, 126 | "min_silk_clearance": 0.0, 127 | "min_text_height": 0.7999999999999999, 128 | "min_text_thickness": 0.08, 129 | "min_through_hole_diameter": 0.19999999999999998, 130 | "min_track_width": 0.127, 131 | "min_via_annular_width": 0.13, 132 | "min_via_diameter": 0.39999999999999997, 133 | "solder_mask_to_copper_clearance": 0.0, 134 | "use_height_for_length_calcs": true 135 | }, 136 | "teardrop_options": [ 137 | { 138 | "td_allow_use_two_tracks": true, 139 | "td_curve_segcount": 5, 140 | "td_on_pad_in_zone": false, 141 | "td_onpadsmd": true, 142 | "td_onroundshapesonly": false, 143 | "td_ontrackend": false, 144 | "td_onviapad": true 145 | } 146 | ], 147 | "teardrop_parameters": [ 148 | { 149 | "td_curve_segcount": 0, 150 | "td_height_ratio": 1.0, 151 | "td_length_ratio": 0.5, 152 | "td_maxheight": 2.0, 153 | "td_maxlen": 1.0, 154 | "td_target_name": "td_round_shape", 155 | "td_width_to_size_filter_ratio": 0.9 156 | }, 157 | { 158 | "td_curve_segcount": 0, 159 | "td_height_ratio": 1.0, 160 | "td_length_ratio": 0.5, 161 | "td_maxheight": 2.0, 162 | "td_maxlen": 1.0, 163 | "td_target_name": "td_rect_shape", 164 | "td_width_to_size_filter_ratio": 0.9 165 | }, 166 | { 167 | "td_curve_segcount": 0, 168 | "td_height_ratio": 1.0, 169 | "td_length_ratio": 0.5, 170 | "td_maxheight": 2.0, 171 | "td_maxlen": 1.0, 172 | "td_target_name": "td_track_end", 173 | "td_width_to_size_filter_ratio": 0.9 174 | } 175 | ], 176 | "track_widths": [ 177 | 0.0, 178 | 0.15, 179 | 0.2, 180 | 0.3 181 | ], 182 | "via_dimensions": [ 183 | { 184 | "diameter": 0.0, 185 | "drill": 0.0 186 | } 187 | ], 188 | "zones_allow_external_fillets": false, 189 | "zones_use_no_outline": true 190 | }, 191 | "layer_presets": [ 192 | { 193 | "activeLayer": -2, 194 | "layers": [ 195 | 31, 196 | 32, 197 | 34, 198 | 36, 199 | 38, 200 | 44, 201 | 46 202 | ], 203 | "name": "back", 204 | "renderLayers": [ 205 | 125, 206 | 126, 207 | 127, 208 | 128, 209 | 129, 210 | 130, 211 | 133, 212 | 134, 213 | 135, 214 | 136, 215 | 137, 216 | 138, 217 | 139, 218 | 140, 219 | 141, 220 | 142, 221 | 143, 222 | 144, 223 | 145, 224 | 146, 225 | 147, 226 | 148, 227 | 149, 228 | 150, 229 | 151, 230 | 152, 231 | 153, 232 | 154, 233 | 155, 234 | 157, 235 | 158, 236 | 159, 237 | 160, 238 | 161 239 | ] 240 | } 241 | ], 242 | "viewports": [] 243 | }, 244 | "boards": [], 245 | "cvpcb": { 246 | "equivalence_files": [] 247 | }, 248 | "erc": { 249 | "erc_exclusions": [], 250 | "meta": { 251 | "version": 0 252 | }, 253 | "pin_map": [ 254 | [ 255 | 0, 256 | 0, 257 | 0, 258 | 0, 259 | 0, 260 | 0, 261 | 1, 262 | 0, 263 | 0, 264 | 0, 265 | 0, 266 | 2 267 | ], 268 | [ 269 | 0, 270 | 2, 271 | 0, 272 | 1, 273 | 0, 274 | 0, 275 | 1, 276 | 0, 277 | 2, 278 | 2, 279 | 2, 280 | 2 281 | ], 282 | [ 283 | 0, 284 | 0, 285 | 0, 286 | 0, 287 | 0, 288 | 0, 289 | 1, 290 | 0, 291 | 1, 292 | 0, 293 | 1, 294 | 2 295 | ], 296 | [ 297 | 0, 298 | 1, 299 | 0, 300 | 0, 301 | 0, 302 | 0, 303 | 1, 304 | 1, 305 | 2, 306 | 1, 307 | 1, 308 | 2 309 | ], 310 | [ 311 | 0, 312 | 0, 313 | 0, 314 | 0, 315 | 0, 316 | 0, 317 | 1, 318 | 0, 319 | 0, 320 | 0, 321 | 0, 322 | 2 323 | ], 324 | [ 325 | 0, 326 | 0, 327 | 0, 328 | 0, 329 | 0, 330 | 0, 331 | 0, 332 | 0, 333 | 0, 334 | 0, 335 | 0, 336 | 2 337 | ], 338 | [ 339 | 1, 340 | 1, 341 | 1, 342 | 1, 343 | 1, 344 | 0, 345 | 1, 346 | 1, 347 | 1, 348 | 1, 349 | 1, 350 | 2 351 | ], 352 | [ 353 | 0, 354 | 0, 355 | 0, 356 | 1, 357 | 0, 358 | 0, 359 | 1, 360 | 0, 361 | 0, 362 | 0, 363 | 0, 364 | 2 365 | ], 366 | [ 367 | 0, 368 | 2, 369 | 1, 370 | 2, 371 | 0, 372 | 0, 373 | 1, 374 | 0, 375 | 2, 376 | 2, 377 | 2, 378 | 2 379 | ], 380 | [ 381 | 0, 382 | 2, 383 | 0, 384 | 1, 385 | 0, 386 | 0, 387 | 1, 388 | 0, 389 | 2, 390 | 0, 391 | 0, 392 | 2 393 | ], 394 | [ 395 | 0, 396 | 2, 397 | 1, 398 | 1, 399 | 0, 400 | 0, 401 | 1, 402 | 0, 403 | 2, 404 | 0, 405 | 0, 406 | 2 407 | ], 408 | [ 409 | 2, 410 | 2, 411 | 2, 412 | 2, 413 | 2, 414 | 2, 415 | 2, 416 | 2, 417 | 2, 418 | 2, 419 | 2, 420 | 2 421 | ] 422 | ], 423 | "rule_severities": { 424 | "bus_definition_conflict": "error", 425 | "bus_entry_needed": "error", 426 | "bus_label_syntax": "error", 427 | "bus_to_bus_conflict": "error", 428 | "bus_to_net_conflict": "error", 429 | "different_unit_footprint": "error", 430 | "different_unit_net": "error", 431 | "duplicate_reference": "error", 432 | "duplicate_sheet_names": "error", 433 | "extra_units": "error", 434 | "global_label_dangling": "warning", 435 | "hier_label_mismatch": "error", 436 | "label_dangling": "error", 437 | "lib_symbol_issues": "warning", 438 | "multiple_net_names": "warning", 439 | "net_not_bus_member": "warning", 440 | "no_connect_connected": "warning", 441 | "no_connect_dangling": "warning", 442 | "pin_not_connected": "error", 443 | "pin_not_driven": "error", 444 | "pin_to_pin": "warning", 445 | "power_pin_not_driven": "error", 446 | "similar_labels": "warning", 447 | "unannotated": "error", 448 | "unit_value_mismatch": "error", 449 | "unresolved_variable": "error", 450 | "wire_dangling": "error" 451 | } 452 | }, 453 | "libraries": { 454 | "pinned_footprint_libs": [], 455 | "pinned_symbol_libs": [] 456 | }, 457 | "meta": { 458 | "filename": "serial-usb-adapter.kicad_pro", 459 | "version": 1 460 | }, 461 | "net_settings": { 462 | "classes": [ 463 | { 464 | "bus_width": 12, 465 | "clearance": 0.2, 466 | "diff_pair_gap": 0.25, 467 | "diff_pair_via_gap": 0.25, 468 | "diff_pair_width": 0.2, 469 | "line_style": 0, 470 | "microvia_diameter": 0.3, 471 | "microvia_drill": 0.1, 472 | "name": "Default", 473 | "pcb_color": "rgba(0, 0, 0, 0.000)", 474 | "schematic_color": "rgba(0, 0, 0, 0.000)", 475 | "track_width": 0.2, 476 | "via_diameter": 0.6, 477 | "via_drill": 0.3, 478 | "wire_width": 6 479 | }, 480 | { 481 | "bus_width": 12, 482 | "clearance": 0.3, 483 | "diff_pair_gap": 0.25, 484 | "diff_pair_via_gap": 0.25, 485 | "diff_pair_width": 0.2, 486 | "line_style": 0, 487 | "microvia_diameter": 0.3, 488 | "microvia_drill": 0.1, 489 | "name": "VCC", 490 | "pcb_color": "rgba(0, 0, 0, 0.000)", 491 | "schematic_color": "rgba(0, 0, 0, 0.000)", 492 | "track_width": 0.2, 493 | "via_diameter": 0.6, 494 | "via_drill": 0.3, 495 | "wire_width": 6 496 | } 497 | ], 498 | "meta": { 499 | "version": 3 500 | }, 501 | "net_colors": null, 502 | "netclass_assignments": null, 503 | "netclass_patterns": [] 504 | }, 505 | "pcbnew": { 506 | "last_paths": { 507 | "gencad": "", 508 | "idf": "", 509 | "netlist": "serial-usb-adapter.net", 510 | "specctra_dsn": "", 511 | "step": "serial-usb-adapter.step", 512 | "vrml": "" 513 | }, 514 | "page_layout_descr_file": "" 515 | }, 516 | "schematic": { 517 | "annotate_start_num": 0, 518 | "drawing": { 519 | "default_line_thickness": 6.0, 520 | "default_text_size": 50.0, 521 | "field_names": [], 522 | "intersheets_ref_own_page": false, 523 | "intersheets_ref_prefix": "", 524 | "intersheets_ref_short": false, 525 | "intersheets_ref_show": false, 526 | "intersheets_ref_suffix": "", 527 | "junction_size_choice": 3, 528 | "label_size_ratio": 0.25, 529 | "pin_symbol_size": 0.0, 530 | "text_offset_ratio": 0.08 531 | }, 532 | "legacy_lib_dir": "", 533 | "legacy_lib_list": [], 534 | "meta": { 535 | "version": 1 536 | }, 537 | "net_format_name": "", 538 | "ngspice": { 539 | "fix_include_paths": true, 540 | "fix_passive_vals": false, 541 | "meta": { 542 | "version": 0 543 | }, 544 | "model_mode": 0, 545 | "workbook_filename": "" 546 | }, 547 | "page_layout_descr_file": "", 548 | "plot_directory": "", 549 | "spice_adjust_passive_values": false, 550 | "spice_external_command": "spice \"%I\"", 551 | "subpart_first_id": 65, 552 | "subpart_id_separator": 0 553 | }, 554 | "sheets": [ 555 | [ 556 | "e63e39d7-6ac0-4ffd-8aa3-1841a4541b55", 557 | "" 558 | ] 559 | ], 560 | "text_variables": {} 561 | } 562 | -------------------------------------------------------------------------------- /serial-usb-adapter.kicad_sch: -------------------------------------------------------------------------------- 1 | (kicad_sch (version 20230121) (generator eeschema) 2 | 3 | (uuid e63e39d7-6ac0-4ffd-8aa3-1841a4541b55) 4 | 5 | (paper "A" portrait) 6 | 7 | (title_block 8 | (title "Original Xbox Serial USB Adapter") 9 | (date "2019-03-27") 10 | (rev "B") 11 | (company "XboxDev") 12 | (comment 2 "Copyright Mike Davis 2019") 13 | (comment 3 "Licensed under CERN OHL v.1.2 or later") 14 | (comment 4 "https://github.com/xboxdev/serial-usb-adapter") 15 | ) 16 | 17 | (lib_symbols 18 | (symbol "Connector:USB_C_Plug_USB2.0" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) 19 | (property "Reference" "J1" (at -7.62 22.86 0) 20 | (effects (font (size 1.27 1.27))) 21 | ) 22 | (property "Value" "USB-C" (at 0 22.86 0) 23 | (effects (font (size 1.27 1.27))) 24 | ) 25 | (property "Footprint" "Library:SS-52400-003" (at 0 25.4 0) 26 | (effects (font (size 1.27 1.27)) hide) 27 | ) 28 | (property "Datasheet" "https://www.belfuse.com/resources/drawings/stewartconnector/dr-stw-ss-52400-003.pdf" (at 1.27 -13.97 0) 29 | (effects (font (size 1.27 1.27)) hide) 30 | ) 31 | (property "ki_keywords" "usb universal serial bus type-C USB2.0" (at 0 0 0) 32 | (effects (font (size 1.27 1.27)) hide) 33 | ) 34 | (property "ki_description" "USB 2.0-only Type-C Plug connector" (at 0 0 0) 35 | (effects (font (size 1.27 1.27)) hide) 36 | ) 37 | (property "ki_fp_filters" "USB*C*Plug*" (at 0 0 0) 38 | (effects (font (size 1.27 1.27)) hide) 39 | ) 40 | (symbol "USB_C_Plug_USB2.0_0_1" 41 | (rectangle (start -8.89 21.59) (end 6.35 -11.43) 42 | (stroke (width 0.254) (type default)) 43 | (fill (type background)) 44 | ) 45 | (circle (center -7.239 15.9512) (radius 0.635) 46 | (stroke (width 0.254) (type default)) 47 | (fill (type outline)) 48 | ) 49 | (arc (start -7.2374 20.5992) (mid -8.095 19.6103) (end -7.339 18.5418) 50 | (stroke (width 0.508) (type default)) 51 | (fill (type none)) 52 | ) 53 | (arc (start -7.0104 19.9136) (mid -7.3247 19.5707) (end -7.0104 19.2278) 54 | (stroke (width 0.254) (type default)) 55 | (fill (type outline)) 56 | ) 57 | (rectangle (start -6.985 19.9136) (end -3.4798 19.2278) 58 | (stroke (width 0.254) (type default)) 59 | (fill (type outline)) 60 | ) 61 | (circle (center -4.064 17.2212) (radius 0.381) 62 | (stroke (width 0.254) (type default)) 63 | (fill (type outline)) 64 | ) 65 | (arc (start -3.4544 19.2278) (mid -3.1491 19.5477) (end -3.4175 19.8991) 66 | (stroke (width 0.254) (type default)) 67 | (fill (type outline)) 68 | ) 69 | (arc (start -3.2766 18.542) (mid -2.3142 19.5476) (end -3.2258 20.5994) 70 | (stroke (width 0.508) (type default)) 71 | (fill (type none)) 72 | ) 73 | (rectangle (start -3.175 15.0622) (end -3.937 14.3002) 74 | (stroke (width 0.254) (type default)) 75 | (fill (type outline)) 76 | ) 77 | (polyline 78 | (pts 79 | (xy -5.334 15.9512) 80 | (xy -2.794 15.9512) 81 | ) 82 | (stroke (width 0.254) (type default)) 83 | (fill (type none)) 84 | ) 85 | (polyline 86 | (pts 87 | (xy -3.3274 18.542) 88 | (xy -7.3152 18.542) 89 | ) 90 | (stroke (width 0.508) (type default)) 91 | (fill (type none)) 92 | ) 93 | (polyline 94 | (pts 95 | (xy -3.2004 20.5994) 96 | (xy -7.2136 20.5994) 97 | ) 98 | (stroke (width 0.508) (type default)) 99 | (fill (type none)) 100 | ) 101 | (polyline 102 | (pts 103 | (xy -6.604 15.9512) 104 | (xy -5.969 15.9512) 105 | (xy -4.699 17.2212) 106 | (xy -4.064 17.2212) 107 | ) 108 | (stroke (width 0.254) (type default)) 109 | (fill (type none)) 110 | ) 111 | (polyline 112 | (pts 113 | (xy -5.969 15.9512) 114 | (xy -5.334 15.9512) 115 | (xy -4.699 14.6812) 116 | (xy -3.429 14.6812) 117 | ) 118 | (stroke (width 0.254) (type default)) 119 | (fill (type none)) 120 | ) 121 | (polyline 122 | (pts 123 | (xy -2.794 16.5862) 124 | (xy -2.794 15.3162) 125 | (xy -1.524 15.9512) 126 | (xy -2.794 16.5862) 127 | ) 128 | (stroke (width 0.254) (type default)) 129 | (fill (type outline)) 130 | ) 131 | ) 132 | (symbol "USB_C_Plug_USB2.0_1_1" 133 | (pin passive line (at -13.97 -1.27 0) (length 5.08) 134 | (name "GND" (effects (font (size 1.27 1.27)))) 135 | (number "A1" (effects (font (size 1.27 1.27)))) 136 | ) 137 | (pin passive line (at -13.97 -6.35 0) (length 5.08) 138 | (name "GND" (effects (font (size 1.27 1.27)))) 139 | (number "A12" (effects (font (size 1.27 1.27)))) 140 | ) 141 | (pin passive line (at 11.43 19.05 180) (length 5.08) 142 | (name "VBUS" (effects (font (size 1.27 1.27)))) 143 | (number "A4" (effects (font (size 1.27 1.27)))) 144 | ) 145 | (pin passive line (at 11.43 -6.35 180) (length 5.08) 146 | (name "CC1" (effects (font (size 1.27 1.27)))) 147 | (number "A5" (effects (font (size 1.27 1.27)))) 148 | ) 149 | (pin bidirectional line (at 11.43 6.35 180) (length 5.08) 150 | (name "D1+" (effects (font (size 1.27 1.27)))) 151 | (number "A6" (effects (font (size 1.27 1.27)))) 152 | ) 153 | (pin bidirectional line (at 11.43 1.27 180) (length 5.08) 154 | (name "D1-" (effects (font (size 1.27 1.27)))) 155 | (number "A7" (effects (font (size 1.27 1.27)))) 156 | ) 157 | (pin passive line (at 11.43 13.97 180) (length 5.08) 158 | (name "VBUS" (effects (font (size 1.27 1.27)))) 159 | (number "A9" (effects (font (size 1.27 1.27)))) 160 | ) 161 | (pin passive line (at -13.97 -3.81 0) (length 5.08) 162 | (name "GND" (effects (font (size 1.27 1.27)))) 163 | (number "B1" (effects (font (size 1.27 1.27)))) 164 | ) 165 | (pin passive line (at -13.97 -8.89 0) (length 5.08) 166 | (name "GND" (effects (font (size 1.27 1.27)))) 167 | (number "B12" (effects (font (size 1.27 1.27)))) 168 | ) 169 | (pin passive line (at 11.43 16.51 180) (length 5.08) 170 | (name "VBUS" (effects (font (size 1.27 1.27)))) 171 | (number "B4" (effects (font (size 1.27 1.27)))) 172 | ) 173 | (pin passive line (at 11.43 -8.89 180) (length 5.08) 174 | (name "CC2" (effects (font (size 1.27 1.27)))) 175 | (number "B5" (effects (font (size 1.27 1.27)))) 176 | ) 177 | (pin bidirectional line (at 11.43 3.81 180) (length 5.08) 178 | (name "D2+" (effects (font (size 1.27 1.27)))) 179 | (number "B6" (effects (font (size 1.27 1.27)))) 180 | ) 181 | (pin bidirectional line (at 11.43 -1.27 180) (length 5.08) 182 | (name "D2-" (effects (font (size 1.27 1.27)))) 183 | (number "B7" (effects (font (size 1.27 1.27)))) 184 | ) 185 | (pin passive line (at 11.43 11.43 180) (length 5.08) 186 | (name "VBUS" (effects (font (size 1.27 1.27)))) 187 | (number "B9" (effects (font (size 1.27 1.27)))) 188 | ) 189 | (pin passive line (at -13.97 10.16 0) (length 5.08) 190 | (name "SHIELD" (effects (font (size 1.27 1.27)))) 191 | (number "S1" (effects (font (size 1.27 1.27)))) 192 | ) 193 | (pin passive line (at -13.97 7.62 0) (length 5.08) 194 | (name "SHIELD" (effects (font (size 1.27 1.27)))) 195 | (number "S2" (effects (font (size 1.27 1.27)))) 196 | ) 197 | (pin passive line (at -13.97 5.08 0) (length 5.08) 198 | (name "SHIELD" (effects (font (size 1.27 1.27)))) 199 | (number "S3" (effects (font (size 1.27 1.27)))) 200 | ) 201 | (pin passive line (at -13.97 2.54 0) (length 5.08) 202 | (name "SHIELD" (effects (font (size 1.27 1.27)))) 203 | (number "S4" (effects (font (size 1.27 1.27)))) 204 | ) 205 | ) 206 | ) 207 | (symbol "Connector_Generic:Conn_01x03" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes) 208 | (property "Reference" "J2" (at 2.032 -0.2032 0) 209 | (effects (font (size 1.27 1.27)) (justify left)) 210 | ) 211 | (property "Value" "UART Header" (at 2.032 -2.5146 0) 212 | (effects (font (size 1.27 1.27)) (justify left)) 213 | ) 214 | (property "Footprint" "Connector_PinHeader_2.54mm:PinHeader_1x04_P2.54mm_Vertical" (at 0 -2.54 0) 215 | (effects (font (size 1.27 1.27)) hide) 216 | ) 217 | (property "Datasheet" "~" (at 0 0 0) 218 | (effects (font (size 1.27 1.27)) hide) 219 | ) 220 | (property "ki_keywords" "connector" (at 0 0 0) 221 | (effects (font (size 1.27 1.27)) hide) 222 | ) 223 | (property "ki_description" "Generic connector, single row, 01x03, script generated (kicad-library-utils/schlib/autogen/connector/)" (at 0 0 0) 224 | (effects (font (size 1.27 1.27)) hide) 225 | ) 226 | (property "ki_fp_filters" "Connector*:*_1x??_*" (at 0 0 0) 227 | (effects (font (size 1.27 1.27)) hide) 228 | ) 229 | (symbol "Conn_01x03_1_1" 230 | (rectangle (start -1.27 -2.413) (end 0 -2.667) 231 | (stroke (width 0.1524) (type default)) 232 | (fill (type none)) 233 | ) 234 | (rectangle (start -1.27 0.127) (end 0 -0.127) 235 | (stroke (width 0.1524) (type default)) 236 | (fill (type none)) 237 | ) 238 | (rectangle (start -1.27 2.667) (end 0 2.413) 239 | (stroke (width 0.1524) (type default)) 240 | (fill (type none)) 241 | ) 242 | (rectangle (start -1.27 3.81) (end 1.27 -3.81) 243 | (stroke (width 0.254) (type default)) 244 | (fill (type background)) 245 | ) 246 | (pin bidirectional line (at -5.08 2.54 0) (length 3.81) 247 | (name "TX" (effects (font (size 1.27 1.27)))) 248 | (number "1" (effects (font (size 1.27 1.27)))) 249 | ) 250 | (pin bidirectional line (at -5.08 0 0) (length 3.81) 251 | (name "RX" (effects (font (size 1.27 1.27)))) 252 | (number "2" (effects (font (size 1.27 1.27)))) 253 | ) 254 | (pin passive line (at -5.08 -2.54 0) (length 3.81) 255 | (name "GND" (effects (font (size 1.27 1.27)))) 256 | (number "3" (effects (font (size 1.27 1.27)))) 257 | ) 258 | ) 259 | ) 260 | (symbol "Device:C_Small" (pin_numbers hide) (pin_names (offset 0.254) hide) (in_bom yes) (on_board yes) 261 | (property "Reference" "C" (at 0.254 1.778 0) 262 | (effects (font (size 1.27 1.27)) (justify left)) 263 | ) 264 | (property "Value" "C_Small" (at 0.254 -2.032 0) 265 | (effects (font (size 1.27 1.27)) (justify left)) 266 | ) 267 | (property "Footprint" "" (at 0 0 0) 268 | (effects (font (size 1.27 1.27)) hide) 269 | ) 270 | (property "Datasheet" "~" (at 0 0 0) 271 | (effects (font (size 1.27 1.27)) hide) 272 | ) 273 | (property "ki_keywords" "capacitor cap" (at 0 0 0) 274 | (effects (font (size 1.27 1.27)) hide) 275 | ) 276 | (property "ki_description" "Unpolarized capacitor, small symbol" (at 0 0 0) 277 | (effects (font (size 1.27 1.27)) hide) 278 | ) 279 | (property "ki_fp_filters" "C_*" (at 0 0 0) 280 | (effects (font (size 1.27 1.27)) hide) 281 | ) 282 | (symbol "C_Small_0_1" 283 | (polyline 284 | (pts 285 | (xy -1.524 -0.508) 286 | (xy 1.524 -0.508) 287 | ) 288 | (stroke (width 0.3302) (type default)) 289 | (fill (type none)) 290 | ) 291 | (polyline 292 | (pts 293 | (xy -1.524 0.508) 294 | (xy 1.524 0.508) 295 | ) 296 | (stroke (width 0.3048) (type default)) 297 | (fill (type none)) 298 | ) 299 | ) 300 | (symbol "C_Small_1_1" 301 | (pin passive line (at 0 2.54 270) (length 2.032) 302 | (name "~" (effects (font (size 1.27 1.27)))) 303 | (number "1" (effects (font (size 1.27 1.27)))) 304 | ) 305 | (pin passive line (at 0 -2.54 90) (length 2.032) 306 | (name "~" (effects (font (size 1.27 1.27)))) 307 | (number "2" (effects (font (size 1.27 1.27)))) 308 | ) 309 | ) 310 | ) 311 | (symbol "Device:FerriteBead_Small" (pin_numbers hide) (pin_names (offset 0)) (in_bom yes) (on_board yes) 312 | (property "Reference" "FB" (at 1.905 1.27 0) 313 | (effects (font (size 1.27 1.27)) (justify left)) 314 | ) 315 | (property "Value" "FerriteBead_Small" (at 1.905 -1.27 0) 316 | (effects (font (size 1.27 1.27)) (justify left)) 317 | ) 318 | (property "Footprint" "" (at -1.778 0 90) 319 | (effects (font (size 1.27 1.27)) hide) 320 | ) 321 | (property "Datasheet" "~" (at 0 0 0) 322 | (effects (font (size 1.27 1.27)) hide) 323 | ) 324 | (property "ki_keywords" "L ferrite bead inductor filter" (at 0 0 0) 325 | (effects (font (size 1.27 1.27)) hide) 326 | ) 327 | (property "ki_description" "Ferrite bead, small symbol" (at 0 0 0) 328 | (effects (font (size 1.27 1.27)) hide) 329 | ) 330 | (property "ki_fp_filters" "Inductor_* L_* *Ferrite*" (at 0 0 0) 331 | (effects (font (size 1.27 1.27)) hide) 332 | ) 333 | (symbol "FerriteBead_Small_0_1" 334 | (polyline 335 | (pts 336 | (xy 0 -1.27) 337 | (xy 0 -0.7874) 338 | ) 339 | (stroke (width 0) (type default)) 340 | (fill (type none)) 341 | ) 342 | (polyline 343 | (pts 344 | (xy 0 0.889) 345 | (xy 0 1.2954) 346 | ) 347 | (stroke (width 0) (type default)) 348 | (fill (type none)) 349 | ) 350 | (polyline 351 | (pts 352 | (xy -1.8288 0.2794) 353 | (xy -1.1176 1.4986) 354 | (xy 1.8288 -0.2032) 355 | (xy 1.1176 -1.4224) 356 | (xy -1.8288 0.2794) 357 | ) 358 | (stroke (width 0) (type default)) 359 | (fill (type none)) 360 | ) 361 | ) 362 | (symbol "FerriteBead_Small_1_1" 363 | (pin passive line (at 0 2.54 270) (length 1.27) 364 | (name "~" (effects (font (size 1.27 1.27)))) 365 | (number "1" (effects (font (size 1.27 1.27)))) 366 | ) 367 | (pin passive line (at 0 -2.54 90) (length 1.27) 368 | (name "~" (effects (font (size 1.27 1.27)))) 369 | (number "2" (effects (font (size 1.27 1.27)))) 370 | ) 371 | ) 372 | ) 373 | (symbol "Device:LED_Small" (pin_numbers hide) (pin_names (offset 0.254) hide) (in_bom yes) (on_board yes) 374 | (property "Reference" "D" (at -1.27 3.175 0) 375 | (effects (font (size 1.27 1.27)) (justify left)) 376 | ) 377 | (property "Value" "LED_Small" (at -4.445 -2.54 0) 378 | (effects (font (size 1.27 1.27)) (justify left)) 379 | ) 380 | (property "Footprint" "" (at 0 0 90) 381 | (effects (font (size 1.27 1.27)) hide) 382 | ) 383 | (property "Datasheet" "~" (at 0 0 90) 384 | (effects (font (size 1.27 1.27)) hide) 385 | ) 386 | (property "ki_keywords" "LED diode light-emitting-diode" (at 0 0 0) 387 | (effects (font (size 1.27 1.27)) hide) 388 | ) 389 | (property "ki_description" "Light emitting diode, small symbol" (at 0 0 0) 390 | (effects (font (size 1.27 1.27)) hide) 391 | ) 392 | (property "ki_fp_filters" "LED* LED_SMD:* LED_THT:*" (at 0 0 0) 393 | (effects (font (size 1.27 1.27)) hide) 394 | ) 395 | (symbol "LED_Small_0_1" 396 | (polyline 397 | (pts 398 | (xy -0.762 -1.016) 399 | (xy -0.762 1.016) 400 | ) 401 | (stroke (width 0.254) (type default)) 402 | (fill (type none)) 403 | ) 404 | (polyline 405 | (pts 406 | (xy 1.016 0) 407 | (xy -0.762 0) 408 | ) 409 | (stroke (width 0) (type default)) 410 | (fill (type none)) 411 | ) 412 | (polyline 413 | (pts 414 | (xy 0.762 -1.016) 415 | (xy -0.762 0) 416 | (xy 0.762 1.016) 417 | (xy 0.762 -1.016) 418 | ) 419 | (stroke (width 0.254) (type default)) 420 | (fill (type none)) 421 | ) 422 | (polyline 423 | (pts 424 | (xy 0 0.762) 425 | (xy -0.508 1.27) 426 | (xy -0.254 1.27) 427 | (xy -0.508 1.27) 428 | (xy -0.508 1.016) 429 | ) 430 | (stroke (width 0) (type default)) 431 | (fill (type none)) 432 | ) 433 | (polyline 434 | (pts 435 | (xy 0.508 1.27) 436 | (xy 0 1.778) 437 | (xy 0.254 1.778) 438 | (xy 0 1.778) 439 | (xy 0 1.524) 440 | ) 441 | (stroke (width 0) (type default)) 442 | (fill (type none)) 443 | ) 444 | ) 445 | (symbol "LED_Small_1_1" 446 | (pin passive line (at -2.54 0 0) (length 1.778) 447 | (name "K" (effects (font (size 1.27 1.27)))) 448 | (number "1" (effects (font (size 1.27 1.27)))) 449 | ) 450 | (pin passive line (at 2.54 0 180) (length 1.778) 451 | (name "A" (effects (font (size 1.27 1.27)))) 452 | (number "2" (effects (font (size 1.27 1.27)))) 453 | ) 454 | ) 455 | ) 456 | (symbol "Device:R_Pack04" (pin_names (offset 0) hide) (in_bom yes) (on_board yes) 457 | (property "Reference" "RN" (at -7.62 0 90) 458 | (effects (font (size 1.27 1.27))) 459 | ) 460 | (property "Value" "R_Pack04" (at 5.08 0 90) 461 | (effects (font (size 1.27 1.27))) 462 | ) 463 | (property "Footprint" "" (at 6.985 0 90) 464 | (effects (font (size 1.27 1.27)) hide) 465 | ) 466 | (property "Datasheet" "~" (at 0 0 0) 467 | (effects (font (size 1.27 1.27)) hide) 468 | ) 469 | (property "ki_keywords" "R network parallel topology isolated" (at 0 0 0) 470 | (effects (font (size 1.27 1.27)) hide) 471 | ) 472 | (property "ki_description" "4 resistor network, parallel topology" (at 0 0 0) 473 | (effects (font (size 1.27 1.27)) hide) 474 | ) 475 | (property "ki_fp_filters" "DIP* SOIC* R*Array*Concave* R*Array*Convex*" (at 0 0 0) 476 | (effects (font (size 1.27 1.27)) hide) 477 | ) 478 | (symbol "R_Pack04_0_1" 479 | (rectangle (start -6.35 -2.413) (end 3.81 2.413) 480 | (stroke (width 0.254) (type default)) 481 | (fill (type background)) 482 | ) 483 | (rectangle (start -5.715 1.905) (end -4.445 -1.905) 484 | (stroke (width 0.254) (type default)) 485 | (fill (type none)) 486 | ) 487 | (rectangle (start -3.175 1.905) (end -1.905 -1.905) 488 | (stroke (width 0.254) (type default)) 489 | (fill (type none)) 490 | ) 491 | (rectangle (start -0.635 1.905) (end 0.635 -1.905) 492 | (stroke (width 0.254) (type default)) 493 | (fill (type none)) 494 | ) 495 | (polyline 496 | (pts 497 | (xy -5.08 -2.54) 498 | (xy -5.08 -1.905) 499 | ) 500 | (stroke (width 0) (type default)) 501 | (fill (type none)) 502 | ) 503 | (polyline 504 | (pts 505 | (xy -5.08 1.905) 506 | (xy -5.08 2.54) 507 | ) 508 | (stroke (width 0) (type default)) 509 | (fill (type none)) 510 | ) 511 | (polyline 512 | (pts 513 | (xy -2.54 -2.54) 514 | (xy -2.54 -1.905) 515 | ) 516 | (stroke (width 0) (type default)) 517 | (fill (type none)) 518 | ) 519 | (polyline 520 | (pts 521 | (xy -2.54 1.905) 522 | (xy -2.54 2.54) 523 | ) 524 | (stroke (width 0) (type default)) 525 | (fill (type none)) 526 | ) 527 | (polyline 528 | (pts 529 | (xy 0 -2.54) 530 | (xy 0 -1.905) 531 | ) 532 | (stroke (width 0) (type default)) 533 | (fill (type none)) 534 | ) 535 | (polyline 536 | (pts 537 | (xy 0 1.905) 538 | (xy 0 2.54) 539 | ) 540 | (stroke (width 0) (type default)) 541 | (fill (type none)) 542 | ) 543 | (polyline 544 | (pts 545 | (xy 2.54 -2.54) 546 | (xy 2.54 -1.905) 547 | ) 548 | (stroke (width 0) (type default)) 549 | (fill (type none)) 550 | ) 551 | (polyline 552 | (pts 553 | (xy 2.54 1.905) 554 | (xy 2.54 2.54) 555 | ) 556 | (stroke (width 0) (type default)) 557 | (fill (type none)) 558 | ) 559 | (rectangle (start 1.905 1.905) (end 3.175 -1.905) 560 | (stroke (width 0.254) (type default)) 561 | (fill (type none)) 562 | ) 563 | ) 564 | (symbol "R_Pack04_1_1" 565 | (pin passive line (at -5.08 -5.08 90) (length 2.54) 566 | (name "R1.1" (effects (font (size 1.27 1.27)))) 567 | (number "1" (effects (font (size 1.27 1.27)))) 568 | ) 569 | (pin passive line (at -2.54 -5.08 90) (length 2.54) 570 | (name "R2.1" (effects (font (size 1.27 1.27)))) 571 | (number "2" (effects (font (size 1.27 1.27)))) 572 | ) 573 | (pin passive line (at 0 -5.08 90) (length 2.54) 574 | (name "R3.1" (effects (font (size 1.27 1.27)))) 575 | (number "3" (effects (font (size 1.27 1.27)))) 576 | ) 577 | (pin passive line (at 2.54 -5.08 90) (length 2.54) 578 | (name "R4.1" (effects (font (size 1.27 1.27)))) 579 | (number "4" (effects (font (size 1.27 1.27)))) 580 | ) 581 | (pin passive line (at 2.54 5.08 270) (length 2.54) 582 | (name "R4.2" (effects (font (size 1.27 1.27)))) 583 | (number "5" (effects (font (size 1.27 1.27)))) 584 | ) 585 | (pin passive line (at 0 5.08 270) (length 2.54) 586 | (name "R3.2" (effects (font (size 1.27 1.27)))) 587 | (number "6" (effects (font (size 1.27 1.27)))) 588 | ) 589 | (pin passive line (at -2.54 5.08 270) (length 2.54) 590 | (name "R2.2" (effects (font (size 1.27 1.27)))) 591 | (number "7" (effects (font (size 1.27 1.27)))) 592 | ) 593 | (pin passive line (at -5.08 5.08 270) (length 2.54) 594 | (name "R1.2" (effects (font (size 1.27 1.27)))) 595 | (number "8" (effects (font (size 1.27 1.27)))) 596 | ) 597 | ) 598 | ) 599 | (symbol "Device:R_Small" (pin_numbers hide) (pin_names (offset 0.254) hide) (in_bom yes) (on_board yes) 600 | (property "Reference" "R" (at 0.762 0.508 0) 601 | (effects (font (size 1.27 1.27)) (justify left)) 602 | ) 603 | (property "Value" "R_Small" (at 0.762 -1.016 0) 604 | (effects (font (size 1.27 1.27)) (justify left)) 605 | ) 606 | (property "Footprint" "" (at 0 0 0) 607 | (effects (font (size 1.27 1.27)) hide) 608 | ) 609 | (property "Datasheet" "~" (at 0 0 0) 610 | (effects (font (size 1.27 1.27)) hide) 611 | ) 612 | (property "ki_keywords" "R resistor" (at 0 0 0) 613 | (effects (font (size 1.27 1.27)) hide) 614 | ) 615 | (property "ki_description" "Resistor, small symbol" (at 0 0 0) 616 | (effects (font (size 1.27 1.27)) hide) 617 | ) 618 | (property "ki_fp_filters" "R_*" (at 0 0 0) 619 | (effects (font (size 1.27 1.27)) hide) 620 | ) 621 | (symbol "R_Small_0_1" 622 | (rectangle (start -0.762 1.778) (end 0.762 -1.778) 623 | (stroke (width 0.2032) (type default)) 624 | (fill (type none)) 625 | ) 626 | ) 627 | (symbol "R_Small_1_1" 628 | (pin passive line (at 0 2.54 270) (length 0.762) 629 | (name "~" (effects (font (size 1.27 1.27)))) 630 | (number "1" (effects (font (size 1.27 1.27)))) 631 | ) 632 | (pin passive line (at 0 -2.54 90) (length 0.762) 633 | (name "~" (effects (font (size 1.27 1.27)))) 634 | (number "2" (effects (font (size 1.27 1.27)))) 635 | ) 636 | ) 637 | ) 638 | (symbol "power:+3V3" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes) 639 | (property "Reference" "#PWR" (at 0 -3.81 0) 640 | (effects (font (size 1.27 1.27)) hide) 641 | ) 642 | (property "Value" "+3V3" (at 0 3.556 0) 643 | (effects (font (size 1.27 1.27))) 644 | ) 645 | (property "Footprint" "" (at 0 0 0) 646 | (effects (font (size 1.27 1.27)) hide) 647 | ) 648 | (property "Datasheet" "" (at 0 0 0) 649 | (effects (font (size 1.27 1.27)) hide) 650 | ) 651 | (property "ki_keywords" "power-flag" (at 0 0 0) 652 | (effects (font (size 1.27 1.27)) hide) 653 | ) 654 | (property "ki_description" "Power symbol creates a global label with name \"+3V3\"" (at 0 0 0) 655 | (effects (font (size 1.27 1.27)) hide) 656 | ) 657 | (symbol "+3V3_0_1" 658 | (polyline 659 | (pts 660 | (xy -0.762 1.27) 661 | (xy 0 2.54) 662 | ) 663 | (stroke (width 0) (type default)) 664 | (fill (type none)) 665 | ) 666 | (polyline 667 | (pts 668 | (xy 0 0) 669 | (xy 0 2.54) 670 | ) 671 | (stroke (width 0) (type default)) 672 | (fill (type none)) 673 | ) 674 | (polyline 675 | (pts 676 | (xy 0 2.54) 677 | (xy 0.762 1.27) 678 | ) 679 | (stroke (width 0) (type default)) 680 | (fill (type none)) 681 | ) 682 | ) 683 | (symbol "+3V3_1_1" 684 | (pin power_in line (at 0 0 90) (length 0) hide 685 | (name "+3V3" (effects (font (size 1.27 1.27)))) 686 | (number "1" (effects (font (size 1.27 1.27)))) 687 | ) 688 | ) 689 | ) 690 | (symbol "power:VBUS" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes) 691 | (property "Reference" "#PWR" (at 0 -3.81 0) 692 | (effects (font (size 1.27 1.27)) hide) 693 | ) 694 | (property "Value" "VBUS" (at 0 3.81 0) 695 | (effects (font (size 1.27 1.27))) 696 | ) 697 | (property "Footprint" "" (at 0 0 0) 698 | (effects (font (size 1.27 1.27)) hide) 699 | ) 700 | (property "Datasheet" "" (at 0 0 0) 701 | (effects (font (size 1.27 1.27)) hide) 702 | ) 703 | (property "ki_keywords" "power-flag" (at 0 0 0) 704 | (effects (font (size 1.27 1.27)) hide) 705 | ) 706 | (property "ki_description" "Power symbol creates a global label with name \"VBUS\"" (at 0 0 0) 707 | (effects (font (size 1.27 1.27)) hide) 708 | ) 709 | (symbol "VBUS_0_1" 710 | (polyline 711 | (pts 712 | (xy -0.762 1.27) 713 | (xy 0 2.54) 714 | ) 715 | (stroke (width 0) (type default)) 716 | (fill (type none)) 717 | ) 718 | (polyline 719 | (pts 720 | (xy 0 0) 721 | (xy 0 2.54) 722 | ) 723 | (stroke (width 0) (type default)) 724 | (fill (type none)) 725 | ) 726 | (polyline 727 | (pts 728 | (xy 0 2.54) 729 | (xy 0.762 1.27) 730 | ) 731 | (stroke (width 0) (type default)) 732 | (fill (type none)) 733 | ) 734 | ) 735 | (symbol "VBUS_1_1" 736 | (pin power_in line (at 0 0 90) (length 0) hide 737 | (name "VBUS" (effects (font (size 1.27 1.27)))) 738 | (number "1" (effects (font (size 1.27 1.27)))) 739 | ) 740 | ) 741 | ) 742 | (symbol "power:VCC" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes) 743 | (property "Reference" "#PWR" (at 0 -3.81 0) 744 | (effects (font (size 1.27 1.27)) hide) 745 | ) 746 | (property "Value" "VCC" (at 0 3.81 0) 747 | (effects (font (size 1.27 1.27))) 748 | ) 749 | (property "Footprint" "" (at 0 0 0) 750 | (effects (font (size 1.27 1.27)) hide) 751 | ) 752 | (property "Datasheet" "" (at 0 0 0) 753 | (effects (font (size 1.27 1.27)) hide) 754 | ) 755 | (property "ki_keywords" "power-flag" (at 0 0 0) 756 | (effects (font (size 1.27 1.27)) hide) 757 | ) 758 | (property "ki_description" "Power symbol creates a global label with name \"VCC\"" (at 0 0 0) 759 | (effects (font (size 1.27 1.27)) hide) 760 | ) 761 | (symbol "VCC_0_1" 762 | (polyline 763 | (pts 764 | (xy -0.762 1.27) 765 | (xy 0 2.54) 766 | ) 767 | (stroke (width 0) (type default)) 768 | (fill (type none)) 769 | ) 770 | (polyline 771 | (pts 772 | (xy 0 0) 773 | (xy 0 2.54) 774 | ) 775 | (stroke (width 0) (type default)) 776 | (fill (type none)) 777 | ) 778 | (polyline 779 | (pts 780 | (xy 0 2.54) 781 | (xy 0.762 1.27) 782 | ) 783 | (stroke (width 0) (type default)) 784 | (fill (type none)) 785 | ) 786 | ) 787 | (symbol "VCC_1_1" 788 | (pin power_in line (at 0 0 90) (length 0) hide 789 | (name "VCC" (effects (font (size 1.27 1.27)))) 790 | (number "1" (effects (font (size 1.27 1.27)))) 791 | ) 792 | ) 793 | ) 794 | (symbol "power:VSS" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes) 795 | (property "Reference" "#PWR" (at 0 -3.81 0) 796 | (effects (font (size 1.27 1.27)) hide) 797 | ) 798 | (property "Value" "VSS" (at 0 3.81 0) 799 | (effects (font (size 1.27 1.27))) 800 | ) 801 | (property "Footprint" "" (at 0 0 0) 802 | (effects (font (size 1.27 1.27)) hide) 803 | ) 804 | (property "Datasheet" "" (at 0 0 0) 805 | (effects (font (size 1.27 1.27)) hide) 806 | ) 807 | (property "ki_keywords" "power-flag" (at 0 0 0) 808 | (effects (font (size 1.27 1.27)) hide) 809 | ) 810 | (property "ki_description" "Power symbol creates a global label with name \"VSS\"" (at 0 0 0) 811 | (effects (font (size 1.27 1.27)) hide) 812 | ) 813 | (symbol "VSS_0_1" 814 | (polyline 815 | (pts 816 | (xy 0 0) 817 | (xy 0 2.54) 818 | ) 819 | (stroke (width 0) (type default)) 820 | (fill (type none)) 821 | ) 822 | (polyline 823 | (pts 824 | (xy 0.762 1.27) 825 | (xy -0.762 1.27) 826 | (xy 0 2.54) 827 | (xy 0.762 1.27) 828 | ) 829 | (stroke (width 0) (type default)) 830 | (fill (type outline)) 831 | ) 832 | ) 833 | (symbol "VSS_1_1" 834 | (pin power_in line (at 0 0 90) (length 0) hide 835 | (name "VSS" (effects (font (size 1.27 1.27)))) 836 | (number "1" (effects (font (size 1.27 1.27)))) 837 | ) 838 | ) 839 | ) 840 | (symbol "serial-usb-adapter:FT231XS" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) 841 | (property "Reference" "U2" (at -13.97 13.97 0) 842 | (effects (font (size 1.27 1.27)) (justify left)) 843 | ) 844 | (property "Value" "FT231XS" (at -7.62 13.97 0) 845 | (effects (font (size 1.27 1.27)) (justify left)) 846 | ) 847 | (property "Footprint" "Package_SO:SSOP-20_3.9x8.7mm_P0.635mm" (at 0 25.4 0) 848 | (effects (font (size 1.27 1.27)) hide) 849 | ) 850 | (property "Datasheet" "http://www.ftdichip.com/Products/ICs/FT231X.html" (at 0 0 0) 851 | (effects (font (size 1.27 1.27)) hide) 852 | ) 853 | (property "LCSC" "C132160" (at 0 0 0) 854 | (effects (font (size 1.27 1.27)) hide) 855 | ) 856 | (property "ki_fp_filters" "*SSOP*3.9x8.7mm*P0.635mm*" (at 0 0 0) 857 | (effects (font (size 1.27 1.27)) hide) 858 | ) 859 | (symbol "FT231XS_0_1" 860 | (rectangle (start -13.97 12.7) (end 13.97 -19.05) 861 | (stroke (width 0.254) (type default)) 862 | (fill (type background)) 863 | ) 864 | ) 865 | (symbol "FT231XS_1_1" 866 | (pin bidirectional line (at 17.78 -10.16 180) (length 3.81) 867 | (name "TXLED#" (effects (font (size 1.27 1.27)))) 868 | (number "10" (effects (font (size 1.27 1.27)))) 869 | ) 870 | (pin bidirectional line (at -17.78 5.08 0) (length 3.81) 871 | (name "USBDP" (effects (font (size 1.27 1.27)))) 872 | (number "11" (effects (font (size 1.27 1.27)))) 873 | ) 874 | (pin bidirectional line (at -17.78 2.54 0) (length 3.81) 875 | (name "USBDM" (effects (font (size 1.27 1.27)))) 876 | (number "12" (effects (font (size 1.27 1.27)))) 877 | ) 878 | (pin power_out line (at -17.78 -10.16 0) (length 3.81) 879 | (name "3V3OUT" (effects (font (size 1.27 1.27)))) 880 | (number "13" (effects (font (size 1.27 1.27)))) 881 | ) 882 | (pin input line (at -17.78 -5.08 0) (length 3.81) 883 | (name "~{RESET}" (effects (font (size 1.27 1.27)))) 884 | (number "14" (effects (font (size 1.27 1.27)))) 885 | ) 886 | (pin power_in line (at -17.78 10.16 0) (length 3.81) 887 | (name "VCC" (effects (font (size 1.27 1.27)))) 888 | (number "15" (effects (font (size 1.27 1.27)))) 889 | ) 890 | (pin power_in line (at -2.54 -22.86 90) (length 3.81) 891 | (name "GND" (effects (font (size 1.27 1.27)))) 892 | (number "16" (effects (font (size 1.27 1.27)))) 893 | ) 894 | (pin bidirectional line (at 17.78 -7.62 180) (length 3.81) 895 | (name "RXLED#" (effects (font (size 1.27 1.27)))) 896 | (number "17" (effects (font (size 1.27 1.27)))) 897 | ) 898 | (pin output line (at 6.35 -22.86 90) (length 3.81) 899 | (name "TXD" (effects (font (size 1.27 1.27)))) 900 | (number "20" (effects (font (size 1.27 1.27)))) 901 | ) 902 | (pin power_in line (at -17.78 -7.62 0) (length 3.81) 903 | (name "VCCIO" (effects (font (size 1.27 1.27)))) 904 | (number "3" (effects (font (size 1.27 1.27)))) 905 | ) 906 | (pin input line (at 8.89 -22.86 90) (length 3.81) 907 | (name "RXD" (effects (font (size 1.27 1.27)))) 908 | (number "4" (effects (font (size 1.27 1.27)))) 909 | ) 910 | (pin power_in line (at -5.08 -22.86 90) (length 3.81) 911 | (name "GND" (effects (font (size 1.27 1.27)))) 912 | (number "6" (effects (font (size 1.27 1.27)))) 913 | ) 914 | ) 915 | ) 916 | (symbol "serial-usb-adapter:LPC" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) 917 | (property "Reference" "JP1" (at 0 33.02 0) 918 | (effects (font (size 1.27 1.27)) (justify left)) 919 | ) 920 | (property "Value" "LPC" (at 0 -1.27 0) 921 | (effects (font (size 1.27 1.27)) (justify left)) 922 | ) 923 | (property "Footprint" "Connector_PinHeader_2.54mm:PinHeader_2x08_P2.54mm_Vertical" (at 0 -5.08 0) 924 | (effects (font (size 1.27 1.27)) hide) 925 | ) 926 | (property "Datasheet" "" (at 1.27 1.27 0) 927 | (effects (font (size 1.27 1.27)) hide) 928 | ) 929 | (symbol "LPC_0_0" 930 | (rectangle (start 0 31.75) (end 8.89 -2.54) 931 | (stroke (width 0) (type default)) 932 | (fill (type background)) 933 | ) 934 | ) 935 | (symbol "LPC_1_1" 936 | (pin output line (at 11.43 15.24 180) (length 2.54) 937 | (name "LCLK" (effects (font (size 1.27 1.27)))) 938 | (number "1" (effects (font (size 1.27 1.27)))) 939 | ) 940 | (pin bidirectional line (at 11.43 27.94 180) (length 2.54) 941 | (name "LAD1" (effects (font (size 1.27 1.27)))) 942 | (number "10" (effects (font (size 1.27 1.27)))) 943 | ) 944 | (pin bidirectional line (at 11.43 30.48 180) (length 2.54) 945 | (name "LAD0" (effects (font (size 1.27 1.27)))) 946 | (number "11" (effects (font (size 1.27 1.27)))) 947 | ) 948 | (pin power_out line (at 11.43 5.08 180) (length 2.54) 949 | (name "VCC" (effects (font (size 1.27 1.27)))) 950 | (number "15" (effects (font (size 1.27 1.27)))) 951 | ) 952 | (pin power_out line (at 11.43 -1.27 180) (length 2.54) 953 | (name "VSS" (effects (font (size 1.27 1.27)))) 954 | (number "2" (effects (font (size 1.27 1.27)))) 955 | ) 956 | (pin output line (at 11.43 20.32 180) (length 2.54) 957 | (name "LFRAME" (effects (font (size 1.27 1.27)))) 958 | (number "3" (effects (font (size 1.27 1.27)))) 959 | ) 960 | (pin output line (at 11.43 17.78 180) (length 2.54) 961 | (name "RST" (effects (font (size 1.27 1.27)))) 962 | (number "5" (effects (font (size 1.27 1.27)))) 963 | ) 964 | (pin bidirectional line (at 11.43 22.86 180) (length 2.54) 965 | (name "LAD3" (effects (font (size 1.27 1.27)))) 966 | (number "7" (effects (font (size 1.27 1.27)))) 967 | ) 968 | (pin bidirectional line (at 11.43 25.4 180) (length 2.54) 969 | (name "LAD2" (effects (font (size 1.27 1.27)))) 970 | (number "8" (effects (font (size 1.27 1.27)))) 971 | ) 972 | (pin power_out line (at 11.43 7.62 180) (length 2.54) 973 | (name "VCC" (effects (font (size 1.27 1.27)))) 974 | (number "9" (effects (font (size 1.27 1.27)))) 975 | ) 976 | ) 977 | ) 978 | (symbol "serial-usb-adapter:LPC47M192" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) 979 | (property "Reference" "U1" (at 2.54 52.07 0) 980 | (effects (font (size 1.27 1.27))) 981 | ) 982 | (property "Value" "LPC47M192" (at 13.97 52.07 0) 983 | (effects (font (size 1.27 1.27))) 984 | ) 985 | (property "Footprint" "Package_QFP:LQFP-128_14x20mm_P0.5mm" (at 2.54 52.07 0) 986 | (effects (font (size 1.27 1.27)) hide) 987 | ) 988 | (property "Datasheet" "" (at 2.54 50.8 0) 989 | (effects (font (size 1.27 1.27)) hide) 990 | ) 991 | (symbol "LPC47M192_0_1" 992 | (rectangle (start 0 50.8) (end 33.02 0) 993 | (stroke (width 0) (type default)) 994 | (fill (type background)) 995 | ) 996 | ) 997 | (symbol "LPC47M192_1_1" 998 | (pin power_in line (at 12.7 -2.54 90) (length 2.54) 999 | (name "VTR" (effects (font (size 1.27 1.27)))) 1000 | (number "18" (effects (font (size 1.27 1.27)))) 1001 | ) 1002 | (pin input line (at -2.54 48.26 0) (length 2.54) 1003 | (name "CLOCKI" (effects (font (size 1.27 1.27)))) 1004 | (number "19" (effects (font (size 1.27 1.27)))) 1005 | ) 1006 | (pin bidirectional line (at -2.54 29.21 0) (length 2.54) 1007 | (name "LAD0" (effects (font (size 1.27 1.27)))) 1008 | (number "20" (effects (font (size 1.27 1.27)))) 1009 | ) 1010 | (pin bidirectional line (at -2.54 26.67 0) (length 2.54) 1011 | (name "LAD1" (effects (font (size 1.27 1.27)))) 1012 | (number "21" (effects (font (size 1.27 1.27)))) 1013 | ) 1014 | (pin bidirectional line (at -2.54 24.13 0) (length 2.54) 1015 | (name "LAD2" (effects (font (size 1.27 1.27)))) 1016 | (number "22" (effects (font (size 1.27 1.27)))) 1017 | ) 1018 | (pin bidirectional line (at -2.54 21.59 0) (length 2.54) 1019 | (name "LAD3" (effects (font (size 1.27 1.27)))) 1020 | (number "23" (effects (font (size 1.27 1.27)))) 1021 | ) 1022 | (pin input line (at -2.54 19.05 0) (length 2.54) 1023 | (name "nLFRAME" (effects (font (size 1.27 1.27)))) 1024 | (number "24" (effects (font (size 1.27 1.27)))) 1025 | ) 1026 | (pin input line (at -2.54 16.51 0) (length 2.54) 1027 | (name "nPCI_RESET" (effects (font (size 1.27 1.27)))) 1028 | (number "26" (effects (font (size 1.27 1.27)))) 1029 | ) 1030 | (pin input line (at -2.54 2.54 0) (length 2.54) 1031 | (name "nLPCPD" (effects (font (size 1.27 1.27)))) 1032 | (number "27" (effects (font (size 1.27 1.27)))) 1033 | ) 1034 | (pin input line (at -2.54 13.97 0) (length 2.54) 1035 | (name "PCI_CLK" (effects (font (size 1.27 1.27)))) 1036 | (number "29" (effects (font (size 1.27 1.27)))) 1037 | ) 1038 | (pin power_in line (at 35.56 11.43 180) (length 2.54) 1039 | (name "VSS" (effects (font (size 1.27 1.27)))) 1040 | (number "31" (effects (font (size 1.27 1.27)))) 1041 | ) 1042 | (pin bidirectional line (at 35.56 26.67 180) (length 2.54) 1043 | (name "SYSOPT" (effects (font (size 1.27 1.27)))) 1044 | (number "45" (effects (font (size 1.27 1.27)))) 1045 | ) 1046 | (pin power_in line (at 19.05 -2.54 90) (length 2.54) 1047 | (name "VCC" (effects (font (size 1.27 1.27)))) 1048 | (number "53" (effects (font (size 1.27 1.27)))) 1049 | ) 1050 | (pin input line (at 35.56 29.21 180) (length 2.54) 1051 | (name "CLKI32" (effects (font (size 1.27 1.27)))) 1052 | (number "6" (effects (font (size 1.27 1.27)))) 1053 | ) 1054 | (pin power_in line (at 35.56 13.97 180) (length 2.54) 1055 | (name "VSS" (effects (font (size 1.27 1.27)))) 1056 | (number "60" (effects (font (size 1.27 1.27)))) 1057 | ) 1058 | (pin power_in line (at 25.4 -2.54 90) (length 2.54) 1059 | (name "VCC" (effects (font (size 1.27 1.27)))) 1060 | (number "65" (effects (font (size 1.27 1.27)))) 1061 | ) 1062 | (pin power_in line (at 35.56 8.89 180) (length 2.54) 1063 | (name "VSS" (effects (font (size 1.27 1.27)))) 1064 | (number "7" (effects (font (size 1.27 1.27)))) 1065 | ) 1066 | (pin power_in line (at 35.56 16.51 180) (length 2.54) 1067 | (name "VSS" (effects (font (size 1.27 1.27)))) 1068 | (number "76" (effects (font (size 1.27 1.27)))) 1069 | ) 1070 | (pin input line (at 25.4 53.34 270) (length 2.54) 1071 | (name "RXD1" (effects (font (size 1.27 1.27)))) 1072 | (number "84" (effects (font (size 1.27 1.27)))) 1073 | ) 1074 | (pin output line (at 27.94 53.34 270) (length 2.54) 1075 | (name "TXD1" (effects (font (size 1.27 1.27)))) 1076 | (number "85" (effects (font (size 1.27 1.27)))) 1077 | ) 1078 | (pin power_in line (at 31.75 -2.54 90) (length 2.54) 1079 | (name "VCC" (effects (font (size 1.27 1.27)))) 1080 | (number "93" (effects (font (size 1.27 1.27)))) 1081 | ) 1082 | ) 1083 | ) 1084 | (symbol "serial-usb-adapter:SG5032CAN" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) 1085 | (property "Reference" "Y" (at 1.27 10.16 0) 1086 | (effects (font (size 1.27 1.27))) 1087 | ) 1088 | (property "Value" "SG5032CAN" (at 6.35 -1.27 0) 1089 | (effects (font (size 1.27 1.27))) 1090 | ) 1091 | (property "Footprint" "" (at -10.16 10.16 0) 1092 | (effects (font (size 1.27 1.27)) hide) 1093 | ) 1094 | (property "Datasheet" "" (at -10.16 10.16 0) 1095 | (effects (font (size 1.27 1.27)) hide) 1096 | ) 1097 | (symbol "SG5032CAN_0_0" 1098 | (rectangle (start 0 0) (end 11.43 8.89) 1099 | (stroke (width 0) (type default)) 1100 | (fill (type background)) 1101 | ) 1102 | ) 1103 | (symbol "SG5032CAN_1_1" 1104 | (pin input line (at 13.97 2.54 180) (length 2.54) hide 1105 | (name "OE" (effects (font (size 1.27 1.27)))) 1106 | (number "1" (effects (font (size 1.27 1.27)))) 1107 | ) 1108 | (pin power_in line (at -2.54 2.54 0) (length 2.54) 1109 | (name "GND" (effects (font (size 1.27 1.27)))) 1110 | (number "2" (effects (font (size 1.27 1.27)))) 1111 | ) 1112 | (pin output line (at 13.97 6.35 180) (length 2.54) 1113 | (name "OUT" (effects (font (size 1.27 1.27)))) 1114 | (number "3" (effects (font (size 1.27 1.27)))) 1115 | ) 1116 | (pin power_in line (at -2.54 6.35 0) (length 2.54) 1117 | (name "VCC" (effects (font (size 1.27 1.27)))) 1118 | (number "4" (effects (font (size 1.27 1.27)))) 1119 | ) 1120 | ) 1121 | ) 1122 | ) 1123 | 1124 | (junction (at 77.47 187.96) (diameter 0) (color 0 0 0 0) 1125 | (uuid 017b6798-766d-4e89-be22-35bb605afcfa) 1126 | ) 1127 | (junction (at 55.88 82.55) (diameter 0) (color 0 0 0 0) 1128 | (uuid 0ded72ca-9405-45e1-9c15-899f34fd6301) 1129 | ) 1130 | (junction (at 149.86 168.91) (diameter 0) (color 0 0 0 0) 1131 | (uuid 0e5c2c1d-e75b-41fa-90ff-5205f5f7b9ba) 1132 | ) 1133 | (junction (at 106.68 83.82) (diameter 0) (color 0 0 0 0) 1134 | (uuid 0f89a6ce-528c-494d-833e-9fffc724a7fe) 1135 | ) 1136 | (junction (at 91.44 66.04) (diameter 0) (color 0 0 0 0) 1137 | (uuid 146ead4c-8a89-4789-93b6-1cd42ac690d6) 1138 | ) 1139 | (junction (at 55.88 91.44) (diameter 0) (color 0 0 0 0) 1140 | (uuid 187db563-17e9-4e55-ace4-7867d793828b) 1141 | ) 1142 | (junction (at 133.35 199.39) (diameter 0) (color 0 0 0 0) 1143 | (uuid 18abdd20-1d13-41f3-b873-a15074a5f6d4) 1144 | ) 1145 | (junction (at 91.44 123.19) (diameter 0) (color 0 0 0 0) 1146 | (uuid 39e96558-b9e1-48ad-ae69-520e026079e0) 1147 | ) 1148 | (junction (at 157.48 68.58) (diameter 0) (color 0 0 0 0) 1149 | (uuid 3ec9ff22-e385-4553-a6ac-c91d3a160bb7) 1150 | ) 1151 | (junction (at 149.86 173.99) (diameter 0) (color 0 0 0 0) 1152 | (uuid 432e80d3-2f41-4361-837b-4e4d621c8ab7) 1153 | ) 1154 | (junction (at 81.28 66.04) (diameter 0) (color 0 0 0 0) 1155 | (uuid 46fce0cd-185b-4e54-a121-265c4178a2cf) 1156 | ) 1157 | (junction (at 139.7 190.5) (diameter 0) (color 0 0 0 0) 1158 | (uuid 4f364e43-22b8-421e-9509-c76015cd2f61) 1159 | ) 1160 | (junction (at 81.28 83.82) (diameter 0) (color 0 0 0 0) 1161 | (uuid 57df3abd-b34e-43f5-9577-273ec0c3c754) 1162 | ) 1163 | (junction (at 139.7 199.39) (diameter 0) (color 0 0 0 0) 1164 | (uuid 59a342d8-67c1-4da8-87ee-45ccde778b3a) 1165 | ) 1166 | (junction (at 55.88 77.47) (diameter 0) (color 0 0 0 0) 1167 | (uuid 5a73aaf5-729a-43ac-bee7-9c82c381ae25) 1168 | ) 1169 | (junction (at 142.24 116.84) (diameter 0) (color 0 0 0 0) 1170 | (uuid 613e90ac-9622-43ea-bb62-f6cd89ff3a4f) 1171 | ) 1172 | (junction (at 146.05 199.39) (diameter 0) (color 0 0 0 0) 1173 | (uuid 63942cf5-78f5-4f5e-8d39-01c05f77e2f5) 1174 | ) 1175 | (junction (at 68.58 104.14) (diameter 0) (color 0 0 0 0) 1176 | (uuid 6764d692-56b7-430a-af79-5ac364a7792c) 1177 | ) 1178 | (junction (at 81.28 104.14) (diameter 0) (color 0 0 0 0) 1179 | (uuid 68473143-b05b-4f48-9464-700abc670b2f) 1180 | ) 1181 | (junction (at 139.7 114.3) (diameter 0) (color 0 0 0 0) 1182 | (uuid 69a2e2bb-8464-42a5-a687-b415d6886d35) 1183 | ) 1184 | (junction (at 106.68 123.19) (diameter 0) (color 0 0 0 0) 1185 | (uuid 6c7a5c38-61b5-4459-9892-af90e2307108) 1186 | ) 1187 | (junction (at 92.71 185.42) (diameter 0) (color 0 0 0 0) 1188 | (uuid 7447a6e7-8205-46ba-afca-d0fa8f90c95a) 1189 | ) 1190 | (junction (at 115.57 83.82) (diameter 0) (color 0 0 0 0) 1191 | (uuid 79658474-8a89-4017-b506-845d5ebc3af3) 1192 | ) 1193 | (junction (at 109.22 66.04) (diameter 0) (color 0 0 0 0) 1194 | (uuid 7fff0673-c9ad-4bca-8fc0-53ab173e1cdd) 1195 | ) 1196 | (junction (at 115.57 86.36) (diameter 0) (color 0 0 0 0) 1197 | (uuid 80c1db2e-d71e-4021-bb80-314f45d213f5) 1198 | ) 1199 | (junction (at 81.28 71.12) (diameter 0) (color 0 0 0 0) 1200 | (uuid 8420df63-9f4a-4ab1-a9cd-12b62844622c) 1201 | ) 1202 | (junction (at 146.05 190.5) (diameter 0) (color 0 0 0 0) 1203 | (uuid 9671ac05-0cb3-45c8-bada-a29a24bd76cb) 1204 | ) 1205 | (junction (at 99.06 123.19) (diameter 0) (color 0 0 0 0) 1206 | (uuid 98e42ea0-5172-4e51-8efa-eb2737d7afac) 1207 | ) 1208 | (junction (at 156.21 156.21) (diameter 0) (color 0 0 0 0) 1209 | (uuid 9b3c9f55-fb94-42fe-ada5-f275d0bf87e0) 1210 | ) 1211 | (junction (at 81.28 81.28) (diameter 0) (color 0 0 0 0) 1212 | (uuid 9e3c64c0-8ccf-4c4b-be76-c1b21aa0437a) 1213 | ) 1214 | (junction (at 121.92 123.19) (diameter 0) (color 0 0 0 0) 1215 | (uuid a69f6ec2-1f89-48d1-a8ad-2b65f2a2ec42) 1216 | ) 1217 | (junction (at 156.21 176.53) (diameter 0) (color 0 0 0 0) 1218 | (uuid aa47304b-ea22-4330-abf9-1cb5019d68bb) 1219 | ) 1220 | (junction (at 127 190.5) (diameter 0) (color 0 0 0 0) 1221 | (uuid abd821ac-ff79-44be-ad02-dc85c196e8a3) 1222 | ) 1223 | (junction (at 83.82 123.19) (diameter 0) (color 0 0 0 0) 1224 | (uuid b7b40de3-969c-44d8-9f41-9c82a1e04bac) 1225 | ) 1226 | (junction (at 69.85 179.07) (diameter 0) (color 0 0 0 0) 1227 | (uuid b954ad63-ca22-4d38-9377-764a8e5bf11c) 1228 | ) 1229 | (junction (at 149.86 176.53) (diameter 0) (color 0 0 0 0) 1230 | (uuid bedc89dd-4902-4072-8f1d-5a4b7b7021c7) 1231 | ) 1232 | (junction (at 78.74 140.97) (diameter 0) (color 0 0 0 0) 1233 | (uuid c72252c7-070d-4a34-9f35-b799e5a6648e) 1234 | ) 1235 | (junction (at 77.47 179.07) (diameter 0) (color 0 0 0 0) 1236 | (uuid c7339a82-277b-4056-8a58-a8f006b030a9) 1237 | ) 1238 | (junction (at 55.88 80.01) (diameter 0) (color 0 0 0 0) 1239 | (uuid c822c469-349b-4709-8cbe-6f5ce1f07edf) 1240 | ) 1241 | (junction (at 55.88 93.98) (diameter 0) (color 0 0 0 0) 1242 | (uuid cff1e692-9b5c-43c7-acca-a11cfee0109f) 1243 | ) 1244 | (junction (at 133.35 190.5) (diameter 0) (color 0 0 0 0) 1245 | (uuid d0cc0212-29ea-428a-8151-14d8abf478c0) 1246 | ) 1247 | (junction (at 99.06 81.28) (diameter 0) (color 0 0 0 0) 1248 | (uuid d240698f-ac21-47a3-af8e-534489907e11) 1249 | ) 1250 | (junction (at 78.74 137.16) (diameter 0) (color 0 0 0 0) 1251 | (uuid dda66fe2-e4a3-40e3-87df-da1f7b0b796d) 1252 | ) 1253 | (junction (at 55.88 86.36) (diameter 0) (color 0 0 0 0) 1254 | (uuid e4aa02e8-c93c-43e7-aa1b-1320db006a22) 1255 | ) 1256 | (junction (at 83.82 114.3) (diameter 0) (color 0 0 0 0) 1257 | (uuid e7149bfe-56e8-4f71-876e-207517885b7e) 1258 | ) 1259 | (junction (at 128.27 123.19) (diameter 0) (color 0 0 0 0) 1260 | (uuid ea7d93d5-dfe3-4e2e-b5f2-89ee91ee0ef6) 1261 | ) 1262 | (junction (at 81.28 68.58) (diameter 0) (color 0 0 0 0) 1263 | (uuid eda941c4-c7ae-4a7c-8a46-efd67357cf70) 1264 | ) 1265 | (junction (at 149.86 171.45) (diameter 0) (color 0 0 0 0) 1266 | (uuid f8fb26de-67b3-419a-87e3-509c0c47f64d) 1267 | ) 1268 | (junction (at 55.88 88.9) (diameter 0) (color 0 0 0 0) 1269 | (uuid fcf8330b-5f99-4b1f-9b4b-828df59fbd92) 1270 | ) 1271 | (junction (at 115.57 123.19) (diameter 0) (color 0 0 0 0) 1272 | (uuid feb19396-0c6d-47d8-85f4-7c73d584f275) 1273 | ) 1274 | 1275 | (wire (pts (xy 55.88 86.36) (xy 55.88 88.9)) 1276 | (stroke (width 0) (type default)) 1277 | (uuid 00573cb8-df6a-41b2-9f3e-d7c9401afbd7) 1278 | ) 1279 | (wire (pts (xy 127 199.39) (xy 133.35 199.39)) 1280 | (stroke (width 0) (type default)) 1281 | (uuid 0088d107-13d8-496c-8da6-7bbeb9d096b0) 1282 | ) 1283 | (wire (pts (xy 106.68 73.66) (xy 106.68 83.82)) 1284 | (stroke (width 0) (type default)) 1285 | (uuid 05e0d0a0-9ebc-42f7-86dd-2e513030148e) 1286 | ) 1287 | (wire (pts (xy 115.57 86.36) (xy 115.57 109.22)) 1288 | (stroke (width 0) (type default)) 1289 | (uuid 0946302c-1d26-4d49-8b55-c7f6e18178bd) 1290 | ) 1291 | (wire (pts (xy 146.05 196.85) (xy 146.05 199.39)) 1292 | (stroke (width 0) (type default)) 1293 | (uuid 0969dd46-0084-43e8-9805-c528ff705e93) 1294 | ) 1295 | (wire (pts (xy 81.28 68.58) (xy 81.28 66.04)) 1296 | (stroke (width 0) (type default)) 1297 | (uuid 0a210db1-3b77-46bb-847d-5e984587875c) 1298 | ) 1299 | (wire (pts (xy 76.2 123.19) (xy 83.82 123.19)) 1300 | (stroke (width 0) (type default)) 1301 | (uuid 0b21a65d-d20b-411e-920a-75c343ac5136) 1302 | ) 1303 | (wire (pts (xy 128.27 99.06) (xy 128.27 123.19)) 1304 | (stroke (width 0) (type default)) 1305 | (uuid 0d5fc2fe-65a3-43bb-b35e-c84ca51c14d5) 1306 | ) 1307 | (wire (pts (xy 101.6 66.04) (xy 109.22 66.04)) 1308 | (stroke (width 0) (type default)) 1309 | (uuid 0f54db53-a272-4955-88fb-d7ab00657bb0) 1310 | ) 1311 | (wire (pts (xy 156.21 114.3) (xy 139.7 114.3)) 1312 | (stroke (width 0) (type default)) 1313 | (uuid 0ff508fd-18da-4ab7-9844-3c8a28c2587e) 1314 | ) 1315 | (wire (pts (xy 149.86 156.21) (xy 156.21 156.21)) 1316 | (stroke (width 0) (type default)) 1317 | (uuid 10135d8b-5c38-48a1-b986-588a22dede9b) 1318 | ) 1319 | (wire (pts (xy 157.48 67.31) (xy 157.48 68.58)) 1320 | (stroke (width 0) (type default)) 1321 | (uuid 114eb928-7e38-4bde-a336-4b03c2dd2365) 1322 | ) 1323 | (wire (pts (xy 71.12 140.97) (xy 78.74 140.97)) 1324 | (stroke (width 0) (type default)) 1325 | (uuid 12011adf-e29a-4ab6-8469-a56efead1b0f) 1326 | ) 1327 | (wire (pts (xy 139.7 199.39) (xy 146.05 199.39)) 1328 | (stroke (width 0) (type default)) 1329 | (uuid 128e34ce-eee7-477d-b905-a493e98db783) 1330 | ) 1331 | (wire (pts (xy 156.21 116.84) (xy 142.24 116.84)) 1332 | (stroke (width 0) (type default)) 1333 | (uuid 13c0ff76-ed71-4cd9-abb0-92c376825d5d) 1334 | ) 1335 | (wire (pts (xy 133.35 196.85) (xy 133.35 199.39)) 1336 | (stroke (width 0) (type default)) 1337 | (uuid 17f669c3-cd84-4524-bc06-53e4800f6a0d) 1338 | ) 1339 | (wire (pts (xy 83.82 120.65) (xy 83.82 123.19)) 1340 | (stroke (width 0) (type default)) 1341 | (uuid 1a4abd2e-01fe-4101-abe2-fb73c09e5537) 1342 | ) 1343 | (wire (pts (xy 81.28 81.28) (xy 99.06 81.28)) 1344 | (stroke (width 0) (type default)) 1345 | (uuid 1cf607fe-a4c5-4d04-b320-0a7861fb1e70) 1346 | ) 1347 | (wire (pts (xy 127 190.5) (xy 127 191.77)) 1348 | (stroke (width 0) (type default)) 1349 | (uuid 1ddaa219-96ab-42bf-bec9-72ed316cdc27) 1350 | ) 1351 | (wire (pts (xy 139.7 114.3) (xy 139.7 132.08)) 1352 | (stroke (width 0) (type default)) 1353 | (uuid 1e6a84c7-4dd4-4d73-b959-14d46b31f606) 1354 | ) 1355 | (wire (pts (xy 142.24 99.06) (xy 142.24 116.84)) 1356 | (stroke (width 0) (type default)) 1357 | (uuid 1f3003e6-dce5-420f-906b-3f1e92b67249) 1358 | ) 1359 | (wire (pts (xy 156.21 73.66) (xy 156.21 77.47)) 1360 | (stroke (width 0) (type default)) 1361 | (uuid 20aaf2e2-cd0a-4cdf-a8ef-9ffd396d1b2c) 1362 | ) 1363 | (wire (pts (xy 139.7 190.5) (xy 139.7 191.77)) 1364 | (stroke (width 0) (type default)) 1365 | (uuid 20b0d81c-2970-4ffd-b544-71a94678a317) 1366 | ) 1367 | (wire (pts (xy 139.7 196.85) (xy 139.7 199.39)) 1368 | (stroke (width 0) (type default)) 1369 | (uuid 221ab4ec-cb69-4d98-a1c8-436c68422dea) 1370 | ) 1371 | (wire (pts (xy 55.88 91.44) (xy 55.88 93.98)) 1372 | (stroke (width 0) (type default)) 1373 | (uuid 225855dd-bab5-40f1-ae57-79c06f5a49f6) 1374 | ) 1375 | (wire (pts (xy 68.58 104.14) (xy 68.58 106.68)) 1376 | (stroke (width 0) (type default)) 1377 | (uuid 26927aae-191b-45ca-ab38-c8de7ffc854b) 1378 | ) 1379 | (wire (pts (xy 139.7 190.5) (xy 146.05 190.5)) 1380 | (stroke (width 0) (type default)) 1381 | (uuid 29256b3d-9450-4c0a-a4d4-911f04b9c140) 1382 | ) 1383 | (wire (pts (xy 115.57 123.19) (xy 121.92 123.19)) 1384 | (stroke (width 0) (type default)) 1385 | (uuid 2d6db888-4e40-41c8-b701-07170fc894bc) 1386 | ) 1387 | (wire (pts (xy 55.88 82.55) (xy 55.88 86.36)) 1388 | (stroke (width 0) (type default)) 1389 | (uuid 2ddcef68-8b2e-4330-8a4f-dbba6d52f11d) 1390 | ) 1391 | (wire (pts (xy 156.21 119.38) (xy 156.21 156.21)) 1392 | (stroke (width 0) (type default)) 1393 | (uuid 2eaeb799-9bab-485e-ae2a-50b79a5104b4) 1394 | ) 1395 | (wire (pts (xy 157.48 68.58) (xy 158.75 68.58)) 1396 | (stroke (width 0) (type default)) 1397 | (uuid 30999beb-a697-4427-87eb-804dc1f57005) 1398 | ) 1399 | (wire (pts (xy 107.95 73.66) (xy 106.68 73.66)) 1400 | (stroke (width 0) (type default)) 1401 | (uuid 33b02efe-a9ad-41ae-9be8-41392bb7d2bf) 1402 | ) 1403 | (wire (pts (xy 146.05 190.5) (xy 146.05 191.77)) 1404 | (stroke (width 0) (type default)) 1405 | (uuid 3539f196-7cff-48ce-a5a9-860bd68841f1) 1406 | ) 1407 | (wire (pts (xy 95.25 163.83) (xy 111.76 163.83)) 1408 | (stroke (width 0) (type default)) 1409 | (uuid 3b869222-e2bb-4045-9eba-51e63b511015) 1410 | ) 1411 | (wire (pts (xy 83.82 123.19) (xy 91.44 123.19)) 1412 | (stroke (width 0) (type default)) 1413 | (uuid 3c7642a6-c20c-4e1b-8340-25f193085781) 1414 | ) 1415 | (wire (pts (xy 76.2 114.3) (xy 76.2 115.57)) 1416 | (stroke (width 0) (type default)) 1417 | (uuid 3cd1bda0-18db-417d-b581-a0c50623df68) 1418 | ) 1419 | (wire (pts (xy 69.85 168.91) (xy 85.09 168.91)) 1420 | (stroke (width 0) (type default)) 1421 | (uuid 3d2a5591-9af9-4abb-b67e-7230fea92b60) 1422 | ) 1423 | (wire (pts (xy 111.76 83.82) (xy 115.57 83.82)) 1424 | (stroke (width 0) (type default)) 1425 | (uuid 3fc68ea1-0eb8-4c2f-9fe0-d6fddbc906ee) 1426 | ) 1427 | (wire (pts (xy 69.85 156.21) (xy 85.09 156.21)) 1428 | (stroke (width 0) (type default)) 1429 | (uuid 40b58ca7-d157-4636-8806-fd2395c2171f) 1430 | ) 1431 | (wire (pts (xy 158.75 82.55) (xy 158.75 86.36)) 1432 | (stroke (width 0) (type default)) 1433 | (uuid 420f0d7a-b145-40be-b709-01fa32555567) 1434 | ) 1435 | (wire (pts (xy 113.03 73.66) (xy 115.57 73.66)) 1436 | (stroke (width 0) (type default)) 1437 | (uuid 44d8279a-9cd1-4db6-856f-0363131605fc) 1438 | ) 1439 | (wire (pts (xy 81.28 91.44) (xy 83.82 91.44)) 1440 | (stroke (width 0) (type default)) 1441 | (uuid 45cb1d08-3975-48dd-8853-c40bf8947bfe) 1442 | ) 1443 | (wire (pts (xy 81.28 102.87) (xy 81.28 104.14)) 1444 | (stroke (width 0) (type default)) 1445 | (uuid 47d08957-446d-432c-9ef8-a5ae22c65c57) 1446 | ) 1447 | (wire (pts (xy 127 190.5) (xy 133.35 190.5)) 1448 | (stroke (width 0) (type default)) 1449 | (uuid 483f60da-14d7-4f88-8d01-3f9f30784c70) 1450 | ) 1451 | (wire (pts (xy 78.74 140.97) (xy 82.55 140.97)) 1452 | (stroke (width 0) (type default)) 1453 | (uuid 48bd60ce-5af0-4222-9fe3-69ac84b8fa80) 1454 | ) 1455 | (wire (pts (xy 68.58 104.14) (xy 55.88 104.14)) 1456 | (stroke (width 0) (type default)) 1457 | (uuid 4c6b20aa-9d03-4139-b458-1b5ae3dc90c1) 1458 | ) 1459 | (wire (pts (xy 146.05 187.96) (xy 146.05 190.5)) 1460 | (stroke (width 0) (type default)) 1461 | (uuid 508da560-b6b2-485a-8d9e-cf32725edc7d) 1462 | ) 1463 | (wire (pts (xy 92.71 185.42) (xy 100.33 185.42)) 1464 | (stroke (width 0) (type default)) 1465 | (uuid 53c85970-3e21-4fae-a84f-721cfc0513b5) 1466 | ) 1467 | (wire (pts (xy 69.85 158.75) (xy 85.09 158.75)) 1468 | (stroke (width 0) (type default)) 1469 | (uuid 543fca92-cf70-4c64-81ea-b9f683528082) 1470 | ) 1471 | (wire (pts (xy 109.22 66.04) (xy 115.57 66.04)) 1472 | (stroke (width 0) (type default)) 1473 | (uuid 55b455a5-4614-4269-8589-f5d58c969e2c) 1474 | ) 1475 | (wire (pts (xy 81.28 73.66) (xy 81.28 71.12)) 1476 | (stroke (width 0) (type default)) 1477 | (uuid 569f9995-897d-4090-b70f-fe9b8fcd5d49) 1478 | ) 1479 | (wire (pts (xy 81.28 78.74) (xy 81.28 81.28)) 1480 | (stroke (width 0) (type default)) 1481 | (uuid 5926b242-f31e-4a50-9b1d-c8fd417db2c6) 1482 | ) 1483 | (wire (pts (xy 76.2 137.16) (xy 78.74 137.16)) 1484 | (stroke (width 0) (type default)) 1485 | (uuid 5a2ea204-212a-40bb-b977-d2598d816a68) 1486 | ) 1487 | (wire (pts (xy 91.44 92.71) (xy 91.44 123.19)) 1488 | (stroke (width 0) (type default)) 1489 | (uuid 5a2fb836-f891-40dd-829a-bfd754f7a49b) 1490 | ) 1491 | (wire (pts (xy 106.68 83.82) (xy 106.68 102.87)) 1492 | (stroke (width 0) (type default)) 1493 | (uuid 5dc5adf5-bcd9-487b-890f-60174ee21723) 1494 | ) 1495 | (wire (pts (xy 149.86 176.53) (xy 156.21 176.53)) 1496 | (stroke (width 0) (type default)) 1497 | (uuid 602ae4ef-70f5-404b-ad24-10595cdc4faf) 1498 | ) 1499 | (wire (pts (xy 81.28 93.98) (xy 81.28 97.79)) 1500 | (stroke (width 0) (type default)) 1501 | (uuid 6107ca13-a310-4a7c-b5a8-da45e5ae3bca) 1502 | ) 1503 | (wire (pts (xy 105.41 185.42) (xy 111.76 182.88)) 1504 | (stroke (width 0) (type default)) 1505 | (uuid 61fe293f-6808-4b7f-9340-9aaac7054a97) 1506 | ) 1507 | (wire (pts (xy 156.21 176.53) (xy 156.21 156.21)) 1508 | (stroke (width 0) (type default)) 1509 | (uuid 63381b99-16d9-41d6-a56d-c8a31864e31b) 1510 | ) 1511 | (wire (pts (xy 151.13 83.82) (xy 156.21 83.82)) 1512 | (stroke (width 0) (type default)) 1513 | (uuid 64655111-80ee-48a5-870b-0693f685ae29) 1514 | ) 1515 | (wire (pts (xy 55.88 80.01) (xy 55.88 82.55)) 1516 | (stroke (width 0) (type default)) 1517 | (uuid 6619695d-8f77-4025-9671-c0453f6d2384) 1518 | ) 1519 | (wire (pts (xy 76.2 120.65) (xy 76.2 123.19)) 1520 | (stroke (width 0) (type default)) 1521 | (uuid 6b470b43-7215-452d-8970-22edebc6e188) 1522 | ) 1523 | (wire (pts (xy 69.85 171.45) (xy 85.09 171.45)) 1524 | (stroke (width 0) (type default)) 1525 | (uuid 6c6c064d-78f2-4912-afc2-db2a5ada7426) 1526 | ) 1527 | (wire (pts (xy 76.2 114.3) (xy 83.82 114.3)) 1528 | (stroke (width 0) (type default)) 1529 | (uuid 70e15522-1572-4451-9c0d-6d36ac70d8c6) 1530 | ) 1531 | (wire (pts (xy 55.88 93.98) (xy 55.88 104.14)) 1532 | (stroke (width 0) (type default)) 1533 | (uuid 70e788e7-82d3-4f6c-ac30-33a85df16ef5) 1534 | ) 1535 | (wire (pts (xy 133.35 199.39) (xy 139.7 199.39)) 1536 | (stroke (width 0) (type default)) 1537 | (uuid 712d6a7d-2b62-464f-b745-fd2a6b0187f6) 1538 | ) 1539 | (wire (pts (xy 149.86 165.862) (xy 149.86 168.91)) 1540 | (stroke (width 0) (type default)) 1541 | (uuid 71c31975-2c45-4d18-a25a-18e07a55d11e) 1542 | ) 1543 | (wire (pts (xy 69.85 166.37) (xy 85.09 166.37)) 1544 | (stroke (width 0) (type default)) 1545 | (uuid 720b2d5c-959f-43b9-9337-6196fe6a465b) 1546 | ) 1547 | (wire (pts (xy 95.25 158.75) (xy 111.76 158.75)) 1548 | (stroke (width 0) (type default)) 1549 | (uuid 764e34d6-fc3c-44a6-a86d-437e75f09158) 1550 | ) 1551 | (wire (pts (xy 99.06 71.12) (xy 99.06 81.28)) 1552 | (stroke (width 0) (type default)) 1553 | (uuid 768f25ed-48ec-4e83-899a-1f5615a82ae1) 1554 | ) 1555 | (wire (pts (xy 127 187.96) (xy 127 190.5)) 1556 | (stroke (width 0) (type default)) 1557 | (uuid 784739b2-b664-4659-816b-727b3728a25a) 1558 | ) 1559 | (wire (pts (xy 78.74 140.97) (xy 78.74 143.51)) 1560 | (stroke (width 0) (type default)) 1561 | (uuid 7954b21a-0ccd-4046-840e-3d8a8c473f72) 1562 | ) 1563 | (wire (pts (xy 146.05 199.39) (xy 156.21 199.39)) 1564 | (stroke (width 0) (type default)) 1565 | (uuid 842e430f-0c35-45f3-a0b5-95ae7b7ae388) 1566 | ) 1567 | (wire (pts (xy 115.57 83.82) (xy 115.57 86.36)) 1568 | (stroke (width 0) (type default)) 1569 | (uuid 84354976-bac0-4fcd-aa5c-251cda82c9f2) 1570 | ) 1571 | (wire (pts (xy 77.47 177.8) (xy 77.47 179.07)) 1572 | (stroke (width 0) (type default)) 1573 | (uuid 847b4eaa-dce3-4e79-ae35-01d20b86fd9d) 1574 | ) 1575 | (wire (pts (xy 82.55 185.42) (xy 85.09 185.42)) 1576 | (stroke (width 0) (type default)) 1577 | (uuid 86604d9a-87e2-4b14-8d12-f909a5b9cb6f) 1578 | ) 1579 | (wire (pts (xy 149.86 179.07) (xy 149.86 176.53)) 1580 | (stroke (width 0) (type default)) 1581 | (uuid 8856644e-deae-4e33-a66c-084d6ec352fb) 1582 | ) 1583 | (wire (pts (xy 83.82 91.44) (xy 83.82 97.79)) 1584 | (stroke (width 0) (type default)) 1585 | (uuid 88acc5eb-a328-4dd6-9e10-86792afe37a8) 1586 | ) 1587 | (wire (pts (xy 149.86 171.45) (xy 149.86 173.99)) 1588 | (stroke (width 0) (type default)) 1589 | (uuid 8c11c305-2826-437a-b767-19837e2a3244) 1590 | ) 1591 | (wire (pts (xy 99.06 100.33) (xy 99.06 123.19)) 1592 | (stroke (width 0) (type default)) 1593 | (uuid 90c9c229-8ebd-414e-bdf9-7be65f9ef12e) 1594 | ) 1595 | (wire (pts (xy 90.17 185.42) (xy 92.71 185.42)) 1596 | (stroke (width 0) (type default)) 1597 | (uuid 936bd5cc-0bae-4033-9b1e-d77594f9519a) 1598 | ) 1599 | (wire (pts (xy 78.74 137.16) (xy 82.55 137.16)) 1600 | (stroke (width 0) (type default)) 1601 | (uuid 9504a2c6-0787-4203-9073-b43d0b024979) 1602 | ) 1603 | (wire (pts (xy 109.22 64.77) (xy 109.22 66.04)) 1604 | (stroke (width 0) (type default)) 1605 | (uuid 9537f763-415a-4cd0-8ce3-6a10ca1f4f1e) 1606 | ) 1607 | (wire (pts (xy 106.68 107.95) (xy 106.68 123.19)) 1608 | (stroke (width 0) (type default)) 1609 | (uuid 95f423fd-4eec-4b5e-833e-751f47dfdf16) 1610 | ) 1611 | (wire (pts (xy 82.55 185.42) (xy 82.55 187.96)) 1612 | (stroke (width 0) (type default)) 1613 | (uuid 96e1c35b-8a3b-4231-a87b-cfcb4123971f) 1614 | ) 1615 | (wire (pts (xy 69.85 163.83) (xy 85.09 163.83)) 1616 | (stroke (width 0) (type default)) 1617 | (uuid 99b51b9f-6532-4c15-84ab-cb196e5c01ba) 1618 | ) 1619 | (wire (pts (xy 115.57 81.28) (xy 115.57 83.82)) 1620 | (stroke (width 0) (type default)) 1621 | (uuid 99c2e93b-7023-429c-a67c-b3c137539832) 1622 | ) 1623 | (wire (pts (xy 95.25 161.29) (xy 111.76 161.29)) 1624 | (stroke (width 0) (type default)) 1625 | (uuid 99f24dc1-0f5d-4964-8da4-0a34817bfe31) 1626 | ) 1627 | (wire (pts (xy 69.85 161.29) (xy 85.09 161.29)) 1628 | (stroke (width 0) (type default)) 1629 | (uuid 9b5cbe65-0b19-4634-81ef-fadee3805f87) 1630 | ) 1631 | (wire (pts (xy 55.88 88.9) (xy 55.88 91.44)) 1632 | (stroke (width 0) (type default)) 1633 | (uuid 9cd6037f-9c71-4e1e-b092-83d006097d79) 1634 | ) 1635 | (wire (pts (xy 133.35 187.96) (xy 133.35 190.5)) 1636 | (stroke (width 0) (type default)) 1637 | (uuid 9dfb43dc-ead6-4d67-8869-c3e57d4fba55) 1638 | ) 1639 | (wire (pts (xy 156.21 68.58) (xy 157.48 68.58)) 1640 | (stroke (width 0) (type default)) 1641 | (uuid 9f429402-cac8-41aa-bda9-49edbdbb6fff) 1642 | ) 1643 | (wire (pts (xy 77.47 179.07) (xy 92.71 179.07)) 1644 | (stroke (width 0) (type default)) 1645 | (uuid a2ab172a-a78c-403c-af42-c653f3c37e3b) 1646 | ) 1647 | (wire (pts (xy 83.82 113.03) (xy 83.82 114.3)) 1648 | (stroke (width 0) (type default)) 1649 | (uuid a4fb8704-3623-4969-9045-1b582fb7d13d) 1650 | ) 1651 | (wire (pts (xy 83.82 104.14) (xy 81.28 104.14)) 1652 | (stroke (width 0) (type default)) 1653 | (uuid a56188f0-b293-4f9d-a6c3-1d2074085547) 1654 | ) 1655 | (wire (pts (xy 156.21 176.53) (xy 156.21 199.39)) 1656 | (stroke (width 0) (type default)) 1657 | (uuid a5a6b1e2-ed9c-4043-b192-a3b6151282a0) 1658 | ) 1659 | (wire (pts (xy 133.35 190.5) (xy 133.35 191.77)) 1660 | (stroke (width 0) (type default)) 1661 | (uuid a7223983-0d8b-4f5c-acc8-2c2bf2fec6f9) 1662 | ) 1663 | (wire (pts (xy 139.7 99.06) (xy 139.7 114.3)) 1664 | (stroke (width 0) (type default)) 1665 | (uuid a7848a54-4121-470d-867c-bcb5878014d5) 1666 | ) 1667 | (wire (pts (xy 107.95 71.12) (xy 99.06 71.12)) 1668 | (stroke (width 0) (type default)) 1669 | (uuid a9edd9eb-cede-45f9-8975-de4ba8f534b4) 1670 | ) 1671 | (wire (pts (xy 81.28 104.14) (xy 68.58 104.14)) 1672 | (stroke (width 0) (type default)) 1673 | (uuid abf73fae-177c-451c-9e8a-06afbe538a26) 1674 | ) 1675 | (wire (pts (xy 71.12 137.16) (xy 71.12 140.97)) 1676 | (stroke (width 0) (type default)) 1677 | (uuid ac4e2fda-5f0e-4cdd-8e0e-cfdda3c513bd) 1678 | ) 1679 | (wire (pts (xy 91.44 66.04) (xy 91.44 87.63)) 1680 | (stroke (width 0) (type default)) 1681 | (uuid b1d320be-9e13-49f2-b17e-b3e56dd4329f) 1682 | ) 1683 | (wire (pts (xy 81.28 66.04) (xy 91.44 66.04)) 1684 | (stroke (width 0) (type default)) 1685 | (uuid b38bda3d-3687-4dcc-b2b0-19ec20a54104) 1686 | ) 1687 | (wire (pts (xy 91.44 66.04) (xy 96.52 66.04)) 1688 | (stroke (width 0) (type default)) 1689 | (uuid b55ae2fa-4972-4da1-8cca-d3bbd42f0a87) 1690 | ) 1691 | (wire (pts (xy 130.81 99.06) (xy 130.81 123.19)) 1692 | (stroke (width 0) (type default)) 1693 | (uuid b6814406-7d3c-4442-8644-19bed41c3952) 1694 | ) 1695 | (wire (pts (xy 95.25 171.45) (xy 111.76 171.45)) 1696 | (stroke (width 0) (type default)) 1697 | (uuid b6a0c6e3-a8c2-478f-b712-eb8844a70385) 1698 | ) 1699 | (wire (pts (xy 92.71 179.07) (xy 92.71 185.42)) 1700 | (stroke (width 0) (type default)) 1701 | (uuid b88717bd-086f-46cd-9d3f-0396009d0996) 1702 | ) 1703 | (wire (pts (xy 83.82 114.3) (xy 83.82 115.57)) 1704 | (stroke (width 0) (type default)) 1705 | (uuid b909cd18-943d-46b8-8252-7e2d6f58fd5d) 1706 | ) 1707 | (wire (pts (xy 92.71 185.42) (xy 92.71 190.5)) 1708 | (stroke (width 0) (type default)) 1709 | (uuid ba86aec7-2670-4161-b190-294d0ccf130a) 1710 | ) 1711 | (wire (pts (xy 91.44 123.19) (xy 99.06 123.19)) 1712 | (stroke (width 0) (type default)) 1713 | (uuid bec96853-97c3-4b2d-8332-1d1a8d8db958) 1714 | ) 1715 | (wire (pts (xy 99.06 81.28) (xy 99.06 95.25)) 1716 | (stroke (width 0) (type default)) 1717 | (uuid bf606010-eceb-47b5-9bbb-31d1288eea15) 1718 | ) 1719 | (wire (pts (xy 130.81 123.19) (xy 128.27 123.19)) 1720 | (stroke (width 0) (type default)) 1721 | (uuid c002bf30-9908-4494-8dd7-f4bb87444924) 1722 | ) 1723 | (wire (pts (xy 127 196.85) (xy 127 199.39)) 1724 | (stroke (width 0) (type default)) 1725 | (uuid c201e1b2-fc01-4110-bdaa-a33290468c83) 1726 | ) 1727 | (wire (pts (xy 77.47 190.5) (xy 77.47 187.96)) 1728 | (stroke (width 0) (type default)) 1729 | (uuid c404dbff-db52-414b-8d84-ba7e97f8ba35) 1730 | ) 1731 | (wire (pts (xy 158.75 73.66) (xy 158.75 77.47)) 1732 | (stroke (width 0) (type default)) 1733 | (uuid c6d6324b-022f-43c4-87b5-6c0588df4c31) 1734 | ) 1735 | (wire (pts (xy 99.06 123.19) (xy 106.68 123.19)) 1736 | (stroke (width 0) (type default)) 1737 | (uuid cbdcaa78-3bbc-413f-91bf-2709119373ce) 1738 | ) 1739 | (wire (pts (xy 69.85 179.07) (xy 69.85 181.61)) 1740 | (stroke (width 0) (type default)) 1741 | (uuid cfc83ad5-e7fc-48a7-b8d0-a1a2e69ba205) 1742 | ) 1743 | (wire (pts (xy 81.28 83.82) (xy 81.28 86.36)) 1744 | (stroke (width 0) (type default)) 1745 | (uuid d1b0d277-f835-4786-9064-e1f50222578b) 1746 | ) 1747 | (wire (pts (xy 121.92 123.19) (xy 128.27 123.19)) 1748 | (stroke (width 0) (type default)) 1749 | (uuid d2e8166b-371c-449f-96fc-ec301e5ba227) 1750 | ) 1751 | (wire (pts (xy 81.28 83.82) (xy 106.68 83.82)) 1752 | (stroke (width 0) (type default)) 1753 | (uuid d3007941-72a7-4234-aba6-960494ac7baf) 1754 | ) 1755 | (wire (pts (xy 106.68 123.19) (xy 115.57 123.19)) 1756 | (stroke (width 0) (type default)) 1757 | (uuid d4a1d3c4-b315-4bec-9220-d12a9eab51e0) 1758 | ) 1759 | (wire (pts (xy 95.25 168.91) (xy 111.76 168.91)) 1760 | (stroke (width 0) (type default)) 1761 | (uuid d4ec6eb6-07b0-48a0-8962-bd8c31d34064) 1762 | ) 1763 | (wire (pts (xy 77.47 187.96) (xy 82.55 187.96)) 1764 | (stroke (width 0) (type default)) 1765 | (uuid d572e3f0-6d00-4f64-9450-3b871aab93ea) 1766 | ) 1767 | (wire (pts (xy 149.86 168.91) (xy 149.86 171.45)) 1768 | (stroke (width 0) (type default)) 1769 | (uuid da2af2ca-ba7e-40bc-b56b-8080c0e3c5c2) 1770 | ) 1771 | (wire (pts (xy 95.25 166.37) (xy 111.76 166.37)) 1772 | (stroke (width 0) (type default)) 1773 | (uuid db04ce9b-413f-414c-a099-34e219db3ff2) 1774 | ) 1775 | (wire (pts (xy 149.86 173.99) (xy 149.86 176.53)) 1776 | (stroke (width 0) (type default)) 1777 | (uuid dda28299-c325-4829-b95d-9df0f3578a19) 1778 | ) 1779 | (wire (pts (xy 55.88 74.93) (xy 55.88 77.47)) 1780 | (stroke (width 0) (type default)) 1781 | (uuid ddc9f51f-8746-4cae-91c5-695c1e48ddde) 1782 | ) 1783 | (wire (pts (xy 139.7 187.96) (xy 139.7 190.5)) 1784 | (stroke (width 0) (type default)) 1785 | (uuid de6aa833-08e0-4562-8b66-69f2c1589d28) 1786 | ) 1787 | (wire (pts (xy 115.57 114.3) (xy 115.57 123.19)) 1788 | (stroke (width 0) (type default)) 1789 | (uuid dfa52dd9-5532-49e7-a2bf-3d369b7aa07b) 1790 | ) 1791 | (wire (pts (xy 158.75 86.36) (xy 151.13 86.36)) 1792 | (stroke (width 0) (type default)) 1793 | (uuid e377113b-ca06-429b-ba52-131b42542656) 1794 | ) 1795 | (wire (pts (xy 95.25 156.21) (xy 111.76 156.21)) 1796 | (stroke (width 0) (type default)) 1797 | (uuid e3ed5d84-a12d-4bae-a6aa-5c7bc9166ccc) 1798 | ) 1799 | (wire (pts (xy 99.06 137.16) (xy 111.76 137.16)) 1800 | (stroke (width 0) (type default)) 1801 | (uuid e7ce18d2-0d9a-4a04-bd99-d255e6177d5a) 1802 | ) 1803 | (wire (pts (xy 55.88 77.47) (xy 55.88 80.01)) 1804 | (stroke (width 0) (type default)) 1805 | (uuid e8e7dd92-2b27-4794-9e71-6dbaad917f15) 1806 | ) 1807 | (wire (pts (xy 78.74 133.35) (xy 78.74 137.16)) 1808 | (stroke (width 0) (type default)) 1809 | (uuid e97c6d9d-213a-4925-8d2c-0923352186da) 1810 | ) 1811 | (wire (pts (xy 81.28 71.12) (xy 81.28 68.58)) 1812 | (stroke (width 0) (type default)) 1813 | (uuid eb7eaefe-66fa-430d-af96-4cd0f141b860) 1814 | ) 1815 | (wire (pts (xy 83.82 104.14) (xy 83.82 102.87)) 1816 | (stroke (width 0) (type default)) 1817 | (uuid ec0c4e05-92f0-455f-b955-770e5d80ecaa) 1818 | ) 1819 | (wire (pts (xy 127 190.5) (xy 92.71 190.5)) 1820 | (stroke (width 0) (type default)) 1821 | (uuid ec9c7517-5a68-4cc9-ad79-258100e3ec8c) 1822 | ) 1823 | (wire (pts (xy 149.86 158.75) (xy 149.86 160.782)) 1824 | (stroke (width 0) (type default)) 1825 | (uuid ec9e24d8-d1c5-40e2-9812-dc315d05f470) 1826 | ) 1827 | (wire (pts (xy 115.57 71.12) (xy 113.03 71.12)) 1828 | (stroke (width 0) (type default)) 1829 | (uuid ef8fe2ac-6a7f-4682-9418-b801a1b10a3b) 1830 | ) 1831 | (wire (pts (xy 77.47 187.96) (xy 69.85 187.96)) 1832 | (stroke (width 0) (type default)) 1833 | (uuid f1e7e968-e3cd-490c-8689-ca1bb678fdbe) 1834 | ) 1835 | (wire (pts (xy 69.85 179.07) (xy 77.47 179.07)) 1836 | (stroke (width 0) (type default)) 1837 | (uuid f3dc849c-2bf8-41df-9677-4321fe9fea1a) 1838 | ) 1839 | (wire (pts (xy 121.92 124.46) (xy 121.92 123.19)) 1840 | (stroke (width 0) (type default)) 1841 | (uuid f937130c-637e-411c-b0ad-e0b07498f34b) 1842 | ) 1843 | (wire (pts (xy 133.35 190.5) (xy 139.7 190.5)) 1844 | (stroke (width 0) (type default)) 1845 | (uuid fb03d859-dcc9-4533-b352-64830e0e5423) 1846 | ) 1847 | (wire (pts (xy 142.24 116.84) (xy 142.24 132.08)) 1848 | (stroke (width 0) (type default)) 1849 | (uuid fb2e6fae-206f-4a2b-aee7-d61dcbb3d9af) 1850 | ) 1851 | (wire (pts (xy 156.21 82.55) (xy 156.21 83.82)) 1852 | (stroke (width 0) (type default)) 1853 | (uuid ff9a858e-5371-4592-bad3-d7510d89c950) 1854 | ) 1855 | 1856 | (symbol (lib_id "serial-usb-adapter:FT231XS") (at 133.35 76.2 0) (unit 1) 1857 | (in_bom yes) (on_board yes) (dnp no) 1858 | (uuid 00000000-0000-0000-0000-00005c75cd69) 1859 | (property "Reference" "U2" (at 119.38 62.23 0) 1860 | (effects (font (size 1.27 1.27)) (justify left)) 1861 | ) 1862 | (property "Value" "FT231XS" (at 125.73 62.23 0) 1863 | (effects (font (size 1.27 1.27)) (justify left)) 1864 | ) 1865 | (property "Footprint" "Package_SO:SSOP-20_3.9x8.7mm_P0.635mm" (at 133.35 50.8 0) 1866 | (effects (font (size 1.27 1.27)) hide) 1867 | ) 1868 | (property "Datasheet" "http://www.ftdichip.com/Products/ICs/FT231X.html" (at 133.35 76.2 0) 1869 | (effects (font (size 1.27 1.27)) hide) 1870 | ) 1871 | (property "LCSC" "C132160" (at 133.35 76.2 0) 1872 | (effects (font (size 1.27 1.27)) hide) 1873 | ) 1874 | (pin "10" (uuid ca56648d-9a5e-4020-a2f9-a3edab653ddc)) 1875 | (pin "11" (uuid ddae86b8-e22e-460a-9f2f-9edf15831b23)) 1876 | (pin "12" (uuid 7f037386-e55f-40c4-849b-e7371e13df1f)) 1877 | (pin "13" (uuid e5f95019-f6bc-43b9-b6a4-502787558394)) 1878 | (pin "14" (uuid 1d1e4444-5e71-4faf-9f9f-e3149a5e0780)) 1879 | (pin "15" (uuid 1cf67096-dd8b-4357-81e7-3710b3937811)) 1880 | (pin "16" (uuid d3dc218f-55fb-48ab-a1de-f11b92b61c45)) 1881 | (pin "17" (uuid 5745380f-df3a-4e4f-b05c-c33bd05584ba)) 1882 | (pin "20" (uuid 3ef54abf-2b98-466e-8ba3-73c2571431fc)) 1883 | (pin "3" (uuid 641ae2ce-a09d-45ba-983b-dfc2461583c2)) 1884 | (pin "4" (uuid d5b15833-5312-41fc-bdab-40361afd4a90)) 1885 | (pin "6" (uuid f31e01d6-3f62-4d9e-85ad-7d0297e7d88d)) 1886 | (instances 1887 | (project "serial-usb-adapter" 1888 | (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" 1889 | (reference "U2") (unit 1) 1890 | ) 1891 | ) 1892 | ) 1893 | ) 1894 | 1895 | (symbol (lib_id "serial-usb-adapter:LPC") (at 58.42 186.69 0) (unit 1) 1896 | (in_bom yes) (on_board yes) (dnp no) 1897 | (uuid 00000000-0000-0000-0000-00005c75ce1b) 1898 | (property "Reference" "JP1" (at 58.42 153.67 0) 1899 | (effects (font (size 1.27 1.27)) (justify left)) 1900 | ) 1901 | (property "Value" "LPC" (at 63.5 153.67 0) 1902 | (effects (font (size 1.27 1.27)) (justify left)) 1903 | ) 1904 | (property "Footprint" "Connector_PinHeader_2.54mm:PinHeader_2x08_P2.54mm_Vertical" (at 58.42 191.77 0) 1905 | (effects (font (size 1.27 1.27)) hide) 1906 | ) 1907 | (property "Datasheet" "" (at 59.69 185.42 0) 1908 | (effects (font (size 1.27 1.27)) hide) 1909 | ) 1910 | (pin "1" (uuid fca5d173-5dea-41d1-8b8b-6b8873151d5c)) 1911 | (pin "10" (uuid 0e7fd0e8-3197-4cfc-9259-ba123a68becd)) 1912 | (pin "11" (uuid dbb8e926-8bd5-43eb-8b3e-de59f44ef5cf)) 1913 | (pin "15" (uuid 38f2397b-dea0-4726-a4bd-2ea916e95575)) 1914 | (pin "2" (uuid 5ac3b4ac-c1f2-49dd-a705-0aeaa9bf311a)) 1915 | (pin "3" (uuid ca5a467b-0e68-4768-9f42-38cf25e17e48)) 1916 | (pin "5" (uuid b6d20c07-ed5e-46ef-98e4-7c6dfc7a8244)) 1917 | (pin "7" (uuid c62edcbe-8af6-4363-acd7-02c639df14d6)) 1918 | (pin "8" (uuid 944110f6-40bc-4984-bb64-2c3701229a5b)) 1919 | (pin "9" (uuid ce36af01-c2d4-4943-9173-a9b5e1071a8c)) 1920 | (instances 1921 | (project "serial-usb-adapter" 1922 | (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" 1923 | (reference "JP1") (unit 1) 1924 | ) 1925 | ) 1926 | ) 1927 | ) 1928 | 1929 | (symbol (lib_id "serial-usb-adapter:LPC47M192") (at 114.3 185.42 0) (unit 1) 1930 | (in_bom yes) (on_board yes) (dnp no) 1931 | (uuid 00000000-0000-0000-0000-00005c75ceca) 1932 | (property "Reference" "U1" (at 116.84 133.35 0) 1933 | (effects (font (size 1.27 1.27))) 1934 | ) 1935 | (property "Value" "LPC47M192" (at 128.27 133.35 0) 1936 | (effects (font (size 1.27 1.27))) 1937 | ) 1938 | (property "Footprint" "Package_QFP:LQFP-128_14x20mm_P0.5mm" (at 116.84 133.35 0) 1939 | (effects (font (size 1.27 1.27)) hide) 1940 | ) 1941 | (property "Datasheet" "" (at 116.84 134.62 0) 1942 | (effects (font (size 1.27 1.27)) hide) 1943 | ) 1944 | (pin "18" (uuid c9152c95-cac6-4244-96da-82369b38a31c)) 1945 | (pin "19" (uuid e6cb8d02-b1ec-4a9e-a5b8-f5511d1889b3)) 1946 | (pin "20" (uuid 5140f639-947d-40cc-8d35-ffaaf5124e2c)) 1947 | (pin "21" (uuid e802fcc1-a93b-4358-97d9-6813c9ced7e6)) 1948 | (pin "22" (uuid 3631ade2-4004-4dd4-81cd-fc77c1073262)) 1949 | (pin "23" (uuid 8ebf6fcc-4ea7-4e54-85c1-8337fb6c858c)) 1950 | (pin "24" (uuid 97c489d0-3b02-429c-8289-2a097f894910)) 1951 | (pin "26" (uuid 3cba7b9d-4529-4496-b0a9-6fc9fde867fb)) 1952 | (pin "27" (uuid 1939c712-ba0d-4759-91f7-3d90fc2a8909)) 1953 | (pin "29" (uuid 3f59a12a-5565-40bb-b32d-0f1bd9a2fc63)) 1954 | (pin "31" (uuid 926b73ce-02f0-4006-b284-be7930f66b1f)) 1955 | (pin "45" (uuid a18eae94-d10b-46dd-88f1-4f566d2310fd)) 1956 | (pin "53" (uuid 1a4aec1d-74ff-406b-a3df-ac59dc4fda73)) 1957 | (pin "6" (uuid d7e05ec2-2c52-46e7-9d4e-edceb0e1aa4d)) 1958 | (pin "60" (uuid 96bec06e-f0d1-498e-9832-60d5d07f0ea5)) 1959 | (pin "65" (uuid 6f52e2e0-5e8f-4c4f-9e63-be720a649f99)) 1960 | (pin "7" (uuid 87061d62-033d-4825-949c-ab2e8048d5a3)) 1961 | (pin "76" (uuid 079271e5-087a-432f-92dc-ddbfc810c5c7)) 1962 | (pin "84" (uuid a0205d9b-aa57-4bc8-be5a-60d89d972589)) 1963 | (pin "85" (uuid cae86dd7-194f-4fca-b156-cde116bc74d1)) 1964 | (pin "93" (uuid 022ba2a3-f05b-4310-ba82-325f509a7877)) 1965 | (instances 1966 | (project "serial-usb-adapter" 1967 | (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" 1968 | (reference "U1") (unit 1) 1969 | ) 1970 | ) 1971 | ) 1972 | ) 1973 | 1974 | (symbol (lib_id "serial-usb-adapter:SG5032CAN") (at 85.09 143.51 0) (unit 1) 1975 | (in_bom yes) (on_board yes) (dnp no) 1976 | (uuid 00000000-0000-0000-0000-00005c75cfa0) 1977 | (property "Reference" "Y1" (at 90.678 131.572 0) 1978 | (effects (font (size 1.27 1.27))) 1979 | ) 1980 | (property "Value" "SG5032CAN 14.318MHz" (at 93.98 133.35 0) 1981 | (effects (font (size 1.27 1.27))) 1982 | ) 1983 | (property "Footprint" "Oscillator:Oscillator_SMD_TXC_7C-4Pin_5.0x3.2mm_HandSoldering" (at 74.93 133.35 0) 1984 | (effects (font (size 1.27 1.27)) hide) 1985 | ) 1986 | (property "Datasheet" "https://ecsxtal.com/store/pdf/ECS-5032MV.pdf" (at 74.93 133.35 0) 1987 | (effects (font (size 1.27 1.27)) hide) 1988 | ) 1989 | (property "LCSC" "" (at 85.09 143.51 0) 1990 | (effects (font (size 1.27 1.27)) hide) 1991 | ) 1992 | (pin "1" (uuid 73d01d0a-b756-4166-978d-e440d228bbd9)) 1993 | (pin "2" (uuid 3cc41de8-a020-40d2-a299-a94795e9eed6)) 1994 | (pin "3" (uuid c28f154a-4904-4dcc-8517-bca9e66088af)) 1995 | (pin "4" (uuid 1dea0fc0-4f42-491f-9959-2b5fca8108e3)) 1996 | (instances 1997 | (project "serial-usb-adapter" 1998 | (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" 1999 | (reference "Y1") (unit 1) 2000 | ) 2001 | ) 2002 | ) 2003 | ) 2004 | 2005 | (symbol (lib_id "Device:R_Small") (at 156.21 71.12 0) (unit 1) 2006 | (in_bom yes) (on_board yes) (dnp no) 2007 | (uuid 00000000-0000-0000-0000-00005c761658) 2008 | (property "Reference" "R5" (at 152.4 71.12 0) 2009 | (effects (font (size 1.27 1.27)) (justify left)) 2010 | ) 2011 | (property "Value" "470R" (at 149.86 73.66 0) 2012 | (effects (font (size 1.27 1.27)) (justify left)) 2013 | ) 2014 | (property "Footprint" "Resistor_SMD:R_0603_1608Metric" (at 156.21 71.12 0) 2015 | (effects (font (size 1.27 1.27)) hide) 2016 | ) 2017 | (property "Datasheet" "~" (at 156.21 71.12 0) 2018 | (effects (font (size 1.27 1.27)) hide) 2019 | ) 2020 | (property "LCSC" "C23179" (at 156.21 71.12 0) 2021 | (effects (font (size 1.27 1.27)) hide) 2022 | ) 2023 | (pin "1" (uuid 456474da-5aaf-4b09-acee-1108f6386431)) 2024 | (pin "2" (uuid 050d1058-ce3b-46cc-8889-802d92d15992)) 2025 | (instances 2026 | (project "serial-usb-adapter" 2027 | (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" 2028 | (reference "R5") (unit 1) 2029 | ) 2030 | ) 2031 | ) 2032 | ) 2033 | 2034 | (symbol (lib_id "Device:R_Small") (at 158.75 71.12 0) (unit 1) 2035 | (in_bom yes) (on_board yes) (dnp no) 2036 | (uuid 00000000-0000-0000-0000-00005c762478) 2037 | (property "Reference" "R6" (at 160.02 71.12 0) 2038 | (effects (font (size 1.27 1.27)) (justify left)) 2039 | ) 2040 | (property "Value" "1.2k" (at 160.02 73.66 0) 2041 | (effects (font (size 1.27 1.27)) (justify left)) 2042 | ) 2043 | (property "Footprint" "Resistor_SMD:R_0603_1608Metric" (at 158.75 71.12 0) 2044 | (effects (font (size 1.27 1.27)) hide) 2045 | ) 2046 | (property "Datasheet" "~" (at 158.75 71.12 0) 2047 | (effects (font (size 1.27 1.27)) hide) 2048 | ) 2049 | (property "LCSC" "C22765" (at 158.75 71.12 0) 2050 | (effects (font (size 1.27 1.27)) hide) 2051 | ) 2052 | (pin "1" (uuid c736a98f-075c-42f4-960c-cf1081cace2e)) 2053 | (pin "2" (uuid 99551809-baee-422b-9b12-f3cb2c141416)) 2054 | (instances 2055 | (project "serial-usb-adapter" 2056 | (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" 2057 | (reference "R6") (unit 1) 2058 | ) 2059 | ) 2060 | ) 2061 | ) 2062 | 2063 | (symbol (lib_id "Device:R_Small") (at 149.86 163.322 0) (unit 1) 2064 | (in_bom yes) (on_board yes) (dnp no) 2065 | (uuid 00000000-0000-0000-0000-00005c7625b8) 2066 | (property "Reference" "R4" (at 151.3586 162.1536 0) 2067 | (effects (font (size 1.27 1.27)) (justify left)) 2068 | ) 2069 | (property "Value" "10k" (at 151.3586 164.465 0) 2070 | (effects (font (size 1.27 1.27)) (justify left)) 2071 | ) 2072 | (property "Footprint" "Resistor_SMD:R_0603_1608Metric" (at 149.86 163.322 0) 2073 | (effects (font (size 1.27 1.27)) hide) 2074 | ) 2075 | (property "Datasheet" "~" (at 149.86 163.322 0) 2076 | (effects (font (size 1.27 1.27)) hide) 2077 | ) 2078 | (property "LCSC" "C25804" (at 149.86 163.322 0) 2079 | (effects (font (size 1.27 1.27)) hide) 2080 | ) 2081 | (pin "1" (uuid bb1eb7c3-84e0-4de4-8205-2524d9538b51)) 2082 | (pin "2" (uuid de1e1f6a-a738-49cd-a09b-fff05a9afeaa)) 2083 | (instances 2084 | (project "serial-usb-adapter" 2085 | (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" 2086 | (reference "R4") (unit 1) 2087 | ) 2088 | ) 2089 | ) 2090 | ) 2091 | 2092 | (symbol (lib_id "Device:R_Small") (at 102.87 185.42 270) (unit 1) 2093 | (in_bom yes) (on_board yes) (dnp no) 2094 | (uuid 00000000-0000-0000-0000-00005c762dd9) 2095 | (property "Reference" "R2" (at 101.6 187.96 90) 2096 | (effects (font (size 1.27 1.27))) 2097 | ) 2098 | (property "Value" "10k" (at 105.41 187.96 90) 2099 | (effects (font (size 1.27 1.27))) 2100 | ) 2101 | (property "Footprint" "Resistor_SMD:R_0603_1608Metric" (at 102.87 185.42 0) 2102 | (effects (font (size 1.27 1.27)) hide) 2103 | ) 2104 | (property "Datasheet" "~" (at 102.87 185.42 0) 2105 | (effects (font (size 1.27 1.27)) hide) 2106 | ) 2107 | (property "LCSC" "C25804" (at 102.87 185.42 0) 2108 | (effects (font (size 1.27 1.27)) hide) 2109 | ) 2110 | (pin "1" (uuid 710bee64-3287-47d6-b51e-1f2f4a21b5d6)) 2111 | (pin "2" (uuid ffd097c0-46c4-4d1b-9cef-ca0bcbbd5a62)) 2112 | (instances 2113 | (project "serial-usb-adapter" 2114 | (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" 2115 | (reference "R2") (unit 1) 2116 | ) 2117 | ) 2118 | ) 2119 | ) 2120 | 2121 | (symbol (lib_id "Device:C_Small") (at 83.82 118.11 0) (unit 1) 2122 | (in_bom yes) (on_board yes) (dnp no) 2123 | (uuid 00000000-0000-0000-0000-00005c7633d5) 2124 | (property "Reference" "C2" (at 83.82 115.57 0) 2125 | (effects (font (size 1.27 1.27)) (justify left top)) 2126 | ) 2127 | (property "Value" "100nF" (at 83.82 120.65 0) 2128 | (effects (font (size 1.27 1.27)) (justify left bottom)) 2129 | ) 2130 | (property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (at 83.82 118.11 0) 2131 | (effects (font (size 1.27 1.27)) hide) 2132 | ) 2133 | (property "Datasheet" "~" (at 83.82 118.11 0) 2134 | (effects (font (size 1.27 1.27)) hide) 2135 | ) 2136 | (property "LCSC" "C14663" (at 83.82 118.11 0) 2137 | (effects (font (size 1.27 1.27)) hide) 2138 | ) 2139 | (pin "1" (uuid 5b7648c8-bfc3-4e6f-a124-bb9ab992dcd3)) 2140 | (pin "2" (uuid 065f4e5e-6a63-4d78-b2c5-cfc02e75af73)) 2141 | (instances 2142 | (project "serial-usb-adapter" 2143 | (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" 2144 | (reference "C2") (unit 1) 2145 | ) 2146 | ) 2147 | ) 2148 | ) 2149 | 2150 | (symbol (lib_id "Device:C_Small") (at 127 194.31 0) (unit 1) 2151 | (in_bom yes) (on_board yes) (dnp no) 2152 | (uuid 00000000-0000-0000-0000-00005c76525b) 2153 | (property "Reference" "C8" (at 127 191.77 0) 2154 | (effects (font (size 1.27 1.27)) (justify left top)) 2155 | ) 2156 | (property "Value" "10nF" (at 127 196.85 0) 2157 | (effects (font (size 1.27 1.27)) (justify left bottom)) 2158 | ) 2159 | (property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (at 127 194.31 0) 2160 | (effects (font (size 1.27 1.27)) hide) 2161 | ) 2162 | (property "Datasheet" "~" (at 127 194.31 0) 2163 | (effects (font (size 1.27 1.27)) hide) 2164 | ) 2165 | (property "LCSC" "C57112" (at 127 194.31 0) 2166 | (effects (font (size 1.27 1.27)) hide) 2167 | ) 2168 | (pin "1" (uuid 98b3786a-98a7-42fa-8fca-10ea6a919f82)) 2169 | (pin "2" (uuid eea9c16b-de68-44b0-b808-ba442bb209a7)) 2170 | (instances 2171 | (project "serial-usb-adapter" 2172 | (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" 2173 | (reference "C8") (unit 1) 2174 | ) 2175 | ) 2176 | ) 2177 | ) 2178 | 2179 | (symbol (lib_id "Device:C_Small") (at 133.35 194.31 0) (unit 1) 2180 | (in_bom yes) (on_board yes) (dnp no) 2181 | (uuid 00000000-0000-0000-0000-00005c7658b6) 2182 | (property "Reference" "C9" (at 133.35 191.77 0) 2183 | (effects (font (size 1.27 1.27)) (justify left top)) 2184 | ) 2185 | (property "Value" "10nF" (at 133.35 196.85 0) 2186 | (effects (font (size 1.27 1.27)) (justify left bottom)) 2187 | ) 2188 | (property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (at 133.35 194.31 0) 2189 | (effects (font (size 1.27 1.27)) hide) 2190 | ) 2191 | (property "Datasheet" "~" (at 133.35 194.31 0) 2192 | (effects (font (size 1.27 1.27)) hide) 2193 | ) 2194 | (property "LCSC" "C57112" (at 133.35 194.31 0) 2195 | (effects (font (size 1.27 1.27)) hide) 2196 | ) 2197 | (pin "1" (uuid 9d690fea-02a7-469e-b42c-7ede0fdf0a89)) 2198 | (pin "2" (uuid 45bbf99b-0cb7-4538-a920-f47408db897d)) 2199 | (instances 2200 | (project "serial-usb-adapter" 2201 | (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" 2202 | (reference "C9") (unit 1) 2203 | ) 2204 | ) 2205 | ) 2206 | ) 2207 | 2208 | (symbol (lib_id "Device:C_Small") (at 139.7 194.31 0) (unit 1) 2209 | (in_bom yes) (on_board yes) (dnp no) 2210 | (uuid 00000000-0000-0000-0000-00005c765907) 2211 | (property "Reference" "C10" (at 139.7 191.77 0) 2212 | (effects (font (size 1.27 1.27)) (justify left top)) 2213 | ) 2214 | (property "Value" "10nF" (at 139.7 196.85 0) 2215 | (effects (font (size 1.27 1.27)) (justify left bottom)) 2216 | ) 2217 | (property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (at 139.7 194.31 0) 2218 | (effects (font (size 1.27 1.27)) hide) 2219 | ) 2220 | (property "Datasheet" "~" (at 139.7 194.31 0) 2221 | (effects (font (size 1.27 1.27)) hide) 2222 | ) 2223 | (property "LCSC" "C57112" (at 139.7 194.31 0) 2224 | (effects (font (size 1.27 1.27)) hide) 2225 | ) 2226 | (pin "1" (uuid 0ebe6ea4-4879-4915-9195-46bb05a5a836)) 2227 | (pin "2" (uuid 918a8ac9-e9f0-4497-949c-ea8d1ca69b93)) 2228 | (instances 2229 | (project "serial-usb-adapter" 2230 | (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" 2231 | (reference "C10") (unit 1) 2232 | ) 2233 | ) 2234 | ) 2235 | ) 2236 | 2237 | (symbol (lib_id "Device:C_Small") (at 146.05 194.31 0) (unit 1) 2238 | (in_bom yes) (on_board yes) (dnp no) 2239 | (uuid 00000000-0000-0000-0000-00005c765953) 2240 | (property "Reference" "C12" (at 146.05 191.77 0) 2241 | (effects (font (size 1.27 1.27)) (justify left top)) 2242 | ) 2243 | (property "Value" "10nF" (at 146.05 196.85 0) 2244 | (effects (font (size 1.27 1.27)) (justify left bottom)) 2245 | ) 2246 | (property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (at 146.05 194.31 0) 2247 | (effects (font (size 1.27 1.27)) hide) 2248 | ) 2249 | (property "Datasheet" "~" (at 146.05 194.31 0) 2250 | (effects (font (size 1.27 1.27)) hide) 2251 | ) 2252 | (property "LCSC" "C57112" (at 146.05 194.31 0) 2253 | (effects (font (size 1.27 1.27)) hide) 2254 | ) 2255 | (pin "1" (uuid 8173adc5-10d4-4340-b22f-a6cc738f205b)) 2256 | (pin "2" (uuid 12a21792-c037-49de-9ed9-5b7185085144)) 2257 | (instances 2258 | (project "serial-usb-adapter" 2259 | (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" 2260 | (reference "C12") (unit 1) 2261 | ) 2262 | ) 2263 | ) 2264 | ) 2265 | 2266 | (symbol (lib_id "power:VSS") (at 68.58 106.68 180) (unit 1) 2267 | (in_bom yes) (on_board yes) (dnp no) 2268 | (uuid 00000000-0000-0000-0000-00005c7692b7) 2269 | (property "Reference" "#PWR0101" (at 68.58 102.87 0) 2270 | (effects (font (size 1.27 1.27)) hide) 2271 | ) 2272 | (property "Value" "VSS" (at 68.1482 111.0742 0) 2273 | (effects (font (size 1.27 1.27))) 2274 | ) 2275 | (property "Footprint" "" (at 68.58 106.68 0) 2276 | (effects (font (size 1.27 1.27)) hide) 2277 | ) 2278 | (property "Datasheet" "" (at 68.58 106.68 0) 2279 | (effects (font (size 1.27 1.27)) hide) 2280 | ) 2281 | (pin "1" (uuid 06a23b65-c458-4081-aaa1-40d0a658a2d4)) 2282 | (instances 2283 | (project "serial-usb-adapter" 2284 | (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" 2285 | (reference "#PWR0101") (unit 1) 2286 | ) 2287 | ) 2288 | ) 2289 | ) 2290 | 2291 | (symbol (lib_id "power:VSS") (at 77.47 190.5 180) (unit 1) 2292 | (in_bom yes) (on_board yes) (dnp no) 2293 | (uuid 00000000-0000-0000-0000-00005c769390) 2294 | (property "Reference" "#PWR0102" (at 77.47 186.69 0) 2295 | (effects (font (size 1.27 1.27)) hide) 2296 | ) 2297 | (property "Value" "VSS" (at 77.47 194.31 0) 2298 | (effects (font (size 1.27 1.27))) 2299 | ) 2300 | (property "Footprint" "" (at 77.47 190.5 0) 2301 | (effects (font (size 1.27 1.27)) hide) 2302 | ) 2303 | (property "Datasheet" "" (at 77.47 190.5 0) 2304 | (effects (font (size 1.27 1.27)) hide) 2305 | ) 2306 | (pin "1" (uuid b4a2aab1-606f-463b-976e-fef45e82c056)) 2307 | (instances 2308 | (project "serial-usb-adapter" 2309 | (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" 2310 | (reference "#PWR0102") (unit 1) 2311 | ) 2312 | ) 2313 | ) 2314 | ) 2315 | 2316 | (symbol (lib_id "power:VCC") (at 77.47 177.8 0) (unit 1) 2317 | (in_bom yes) (on_board yes) (dnp no) 2318 | (uuid 00000000-0000-0000-0000-00005c7693f2) 2319 | (property "Reference" "#PWR0103" (at 77.47 181.61 0) 2320 | (effects (font (size 1.27 1.27)) hide) 2321 | ) 2322 | (property "Value" "VCC" (at 77.47 173.99 0) 2323 | (effects (font (size 1.27 1.27))) 2324 | ) 2325 | (property "Footprint" "" (at 77.47 177.8 0) 2326 | (effects (font (size 1.27 1.27)) hide) 2327 | ) 2328 | (property "Datasheet" "" (at 77.47 177.8 0) 2329 | (effects (font (size 1.27 1.27)) hide) 2330 | ) 2331 | (pin "1" (uuid 05476a34-406c-4cf7-8c5a-ca4b4a31342e)) 2332 | (instances 2333 | (project "serial-usb-adapter" 2334 | (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" 2335 | (reference "#PWR0103") (unit 1) 2336 | ) 2337 | ) 2338 | ) 2339 | ) 2340 | 2341 | (symbol (lib_id "power:VSS") (at 149.86 179.07 180) (unit 1) 2342 | (in_bom yes) (on_board yes) (dnp no) 2343 | (uuid 00000000-0000-0000-0000-00005c76b809) 2344 | (property "Reference" "#PWR0104" (at 149.86 175.26 0) 2345 | (effects (font (size 1.27 1.27)) hide) 2346 | ) 2347 | (property "Value" "VSS" (at 149.86 182.88 0) 2348 | (effects (font (size 1.27 1.27))) 2349 | ) 2350 | (property "Footprint" "" (at 149.86 179.07 0) 2351 | (effects (font (size 1.27 1.27)) hide) 2352 | ) 2353 | (property "Datasheet" "" (at 149.86 179.07 0) 2354 | (effects (font (size 1.27 1.27)) hide) 2355 | ) 2356 | (pin "1" (uuid 61136d68-584c-4f14-8ccb-d3d2587b4a1d)) 2357 | (instances 2358 | (project "serial-usb-adapter" 2359 | (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" 2360 | (reference "#PWR0104") (unit 1) 2361 | ) 2362 | ) 2363 | ) 2364 | ) 2365 | 2366 | (symbol (lib_id "Device:LED_Small") (at 158.75 80.01 90) (unit 1) 2367 | (in_bom yes) (on_board yes) (dnp no) 2368 | (uuid 00000000-0000-0000-0000-00005c772873) 2369 | (property "Reference" "D1" (at 160.02 77.47 0) 2370 | (effects (font (size 1.27 1.27))) 2371 | ) 2372 | (property "Value" "Green" (at 162.56 78.74 0) 2373 | (effects (font (size 1.27 1.27))) 2374 | ) 2375 | (property "Footprint" "LED_SMD:LED_0603_1608Metric" (at 158.75 80.01 90) 2376 | (effects (font (size 1.27 1.27)) hide) 2377 | ) 2378 | (property "Datasheet" "~" (at 158.75 80.01 90) 2379 | (effects (font (size 1.27 1.27)) hide) 2380 | ) 2381 | (property "LCSC" "C72043" (at 158.75 80.01 0) 2382 | (effects (font (size 1.27 1.27)) hide) 2383 | ) 2384 | (pin "1" (uuid b1e990a6-4322-4afc-bef0-63d380f3873d)) 2385 | (pin "2" (uuid f9a5e896-62c8-438a-bf18-ef7e54ca6cce)) 2386 | (instances 2387 | (project "serial-usb-adapter" 2388 | (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" 2389 | (reference "D1") (unit 1) 2390 | ) 2391 | ) 2392 | ) 2393 | ) 2394 | 2395 | (symbol (lib_id "Device:LED_Small") (at 156.21 80.01 90) (unit 1) 2396 | (in_bom yes) (on_board yes) (dnp no) 2397 | (uuid 00000000-0000-0000-0000-00005c773b79) 2398 | (property "Reference" "D2" (at 154.94 77.47 0) 2399 | (effects (font (size 1.27 1.27))) 2400 | ) 2401 | (property "Value" "Blue" (at 152.4 78.74 0) 2402 | (effects (font (size 1.27 1.27))) 2403 | ) 2404 | (property "Footprint" "LED_SMD:LED_0603_1608Metric" (at 156.21 80.01 90) 2405 | (effects (font (size 1.27 1.27)) hide) 2406 | ) 2407 | (property "Datasheet" "~" (at 156.21 80.01 90) 2408 | (effects (font (size 1.27 1.27)) hide) 2409 | ) 2410 | (property "LCSC" "C72041" (at 156.21 80.01 0) 2411 | (effects (font (size 1.27 1.27)) hide) 2412 | ) 2413 | (pin "1" (uuid 1ac14b12-0c6c-4a24-a970-ccecfa26286d)) 2414 | (pin "2" (uuid 4b382227-3c73-4156-bb43-8edd11d010cf)) 2415 | (instances 2416 | (project "serial-usb-adapter" 2417 | (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" 2418 | (reference "D2") (unit 1) 2419 | ) 2420 | ) 2421 | ) 2422 | ) 2423 | 2424 | (symbol (lib_id "Device:R_Small") (at 110.49 71.12 270) (unit 1) 2425 | (in_bom yes) (on_board yes) (dnp no) 2426 | (uuid 00000000-0000-0000-0000-00005c7cb88e) 2427 | (property "Reference" "R1" (at 109.22 68.58 90) 2428 | (effects (font (size 1.27 1.27)) (justify left)) 2429 | ) 2430 | (property "Value" "27R" (at 113.03 68.58 90) 2431 | (effects (font (size 1.27 1.27)) (justify left)) 2432 | ) 2433 | (property "Footprint" "Resistor_SMD:R_0603_1608Metric" (at 110.49 71.12 0) 2434 | (effects (font (size 1.27 1.27)) hide) 2435 | ) 2436 | (property "Datasheet" "~" (at 110.49 71.12 0) 2437 | (effects (font (size 1.27 1.27)) hide) 2438 | ) 2439 | (property "LCSC" "C25190" (at 110.49 71.12 0) 2440 | (effects (font (size 1.27 1.27)) hide) 2441 | ) 2442 | (pin "1" (uuid 0a3db64e-19cc-4ff5-9149-bec68c092063)) 2443 | (pin "2" (uuid 346f7eb8-a971-43e3-a10e-baff9ae4f8c8)) 2444 | (instances 2445 | (project "serial-usb-adapter" 2446 | (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" 2447 | (reference "R1") (unit 1) 2448 | ) 2449 | ) 2450 | ) 2451 | ) 2452 | 2453 | (symbol (lib_id "Device:R_Small") (at 110.49 73.66 90) (unit 1) 2454 | (in_bom yes) (on_board yes) (dnp no) 2455 | (uuid 00000000-0000-0000-0000-00005c7cbaf8) 2456 | (property "Reference" "R3" (at 111.76 76.2 90) 2457 | (effects (font (size 1.27 1.27)) (justify left)) 2458 | ) 2459 | (property "Value" "27R" (at 116.84 76.2 90) 2460 | (effects (font (size 1.27 1.27)) (justify left)) 2461 | ) 2462 | (property "Footprint" "Resistor_SMD:R_0603_1608Metric" (at 110.49 73.66 0) 2463 | (effects (font (size 1.27 1.27)) hide) 2464 | ) 2465 | (property "Datasheet" "~" (at 110.49 73.66 0) 2466 | (effects (font (size 1.27 1.27)) hide) 2467 | ) 2468 | (property "LCSC" "C25190" (at 110.49 73.66 0) 2469 | (effects (font (size 1.27 1.27)) hide) 2470 | ) 2471 | (pin "1" (uuid 102d6327-049a-4aed-a319-037033e25cd1)) 2472 | (pin "2" (uuid 0b0480af-4ec4-4017-b918-5d4bc30647e2)) 2473 | (instances 2474 | (project "serial-usb-adapter" 2475 | (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" 2476 | (reference "R3") (unit 1) 2477 | ) 2478 | ) 2479 | ) 2480 | ) 2481 | 2482 | (symbol (lib_id "Connector_Generic:Conn_01x03") (at 161.29 116.84 0) (unit 1) 2483 | (in_bom yes) (on_board yes) (dnp no) 2484 | (uuid 00000000-0000-0000-0000-00005c7d12dc) 2485 | (property "Reference" "J2" (at 163.322 117.0432 0) 2486 | (effects (font (size 1.27 1.27)) (justify left)) 2487 | ) 2488 | (property "Value" "UART Header" (at 163.322 119.3546 0) 2489 | (effects (font (size 1.27 1.27)) (justify left)) 2490 | ) 2491 | (property "Footprint" "Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical" (at 161.29 119.38 0) 2492 | (effects (font (size 1.27 1.27)) hide) 2493 | ) 2494 | (property "Datasheet" "~" (at 161.29 116.84 0) 2495 | (effects (font (size 1.27 1.27)) hide) 2496 | ) 2497 | (pin "1" (uuid a2d62633-bf44-4c12-a707-471eac3bf6c6)) 2498 | (pin "2" (uuid 3f5b4c76-6eff-4c8c-8156-87ca92bc8661)) 2499 | (pin "3" (uuid 7e18a3ae-0e9b-4141-840f-fbacb2fa5990)) 2500 | (instances 2501 | (project "serial-usb-adapter" 2502 | (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" 2503 | (reference "J2") (unit 1) 2504 | ) 2505 | ) 2506 | ) 2507 | ) 2508 | 2509 | (symbol (lib_id "power:VSS") (at 121.92 124.46 180) (unit 1) 2510 | (in_bom yes) (on_board yes) (dnp no) 2511 | (uuid 00000000-0000-0000-0000-00005c7e1429) 2512 | (property "Reference" "#PWR0111" (at 121.92 120.65 0) 2513 | (effects (font (size 1.27 1.27)) hide) 2514 | ) 2515 | (property "Value" "VSS" (at 121.92 128.27 0) 2516 | (effects (font (size 1.27 1.27))) 2517 | ) 2518 | (property "Footprint" "" (at 121.92 124.46 0) 2519 | (effects (font (size 1.27 1.27)) hide) 2520 | ) 2521 | (property "Datasheet" "" (at 121.92 124.46 0) 2522 | (effects (font (size 1.27 1.27)) hide) 2523 | ) 2524 | (pin "1" (uuid 0afd3463-ee45-4d7f-af95-b7d000d4f4a3)) 2525 | (instances 2526 | (project "serial-usb-adapter" 2527 | (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" 2528 | (reference "#PWR0111") (unit 1) 2529 | ) 2530 | ) 2531 | ) 2532 | ) 2533 | 2534 | (symbol (lib_id "Device:FerriteBead_Small") (at 99.06 66.04 90) (unit 1) 2535 | (in_bom yes) (on_board yes) (dnp no) 2536 | (uuid 00000000-0000-0000-0000-00005c80731f) 2537 | (property "Reference" "FB1" (at 99.06 59.69 90) 2538 | (effects (font (size 1.27 1.27))) 2539 | ) 2540 | (property "Value" "33ohm" (at 100.33 62.23 90) 2541 | (effects (font (size 1.27 1.27))) 2542 | ) 2543 | (property "Footprint" "Inductor_SMD:L_0603_1608Metric" (at 99.06 67.818 90) 2544 | (effects (font (size 1.27 1.27)) hide) 2545 | ) 2546 | (property "Datasheet" "~" (at 99.06 66.04 0) 2547 | (effects (font (size 1.27 1.27)) hide) 2548 | ) 2549 | (property "LCSC" "C88984" (at 99.06 66.04 0) 2550 | (effects (font (size 1.27 1.27)) hide) 2551 | ) 2552 | (pin "1" (uuid c27c2724-fc4c-4cdb-948c-32ac7f58bb39)) 2553 | (pin "2" (uuid 875ad65f-98ec-43d6-81c5-856c254f80d0)) 2554 | (instances 2555 | (project "serial-usb-adapter" 2556 | (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" 2557 | (reference "FB1") (unit 1) 2558 | ) 2559 | ) 2560 | ) 2561 | ) 2562 | 2563 | (symbol (lib_id "Device:C_Small") (at 76.2 118.11 0) (unit 1) 2564 | (in_bom yes) (on_board yes) (dnp no) 2565 | (uuid 00000000-0000-0000-0000-00005c80f006) 2566 | (property "Reference" "C1" (at 76.2 116.84 0) 2567 | (effects (font (size 1.27 1.27)) (justify left bottom)) 2568 | ) 2569 | (property "Value" "4u7" (at 76.2 120.65 0) 2570 | (effects (font (size 1.27 1.27)) (justify left bottom)) 2571 | ) 2572 | (property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (at 76.2 118.11 0) 2573 | (effects (font (size 1.27 1.27)) hide) 2574 | ) 2575 | (property "Datasheet" "~" (at 76.2 118.11 0) 2576 | (effects (font (size 1.27 1.27)) hide) 2577 | ) 2578 | (property "LCSC" "C19666" (at 76.2 118.11 0) 2579 | (effects (font (size 1.27 1.27)) hide) 2580 | ) 2581 | (pin "1" (uuid 1c67f40e-8432-492b-9528-3750592b0063)) 2582 | (pin "2" (uuid ede34512-5b87-4679-b58d-0ec885d72617)) 2583 | (instances 2584 | (project "serial-usb-adapter" 2585 | (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" 2586 | (reference "C1") (unit 1) 2587 | ) 2588 | ) 2589 | ) 2590 | ) 2591 | 2592 | (symbol (lib_id "power:VBUS") (at 109.22 64.77 0) (unit 1) 2593 | (in_bom yes) (on_board yes) (dnp no) 2594 | (uuid 00000000-0000-0000-0000-00005c81cb6e) 2595 | (property "Reference" "#PWR0105" (at 109.22 68.58 0) 2596 | (effects (font (size 1.27 1.27)) hide) 2597 | ) 2598 | (property "Value" "VBUS" (at 109.601 60.3758 0) 2599 | (effects (font (size 1.27 1.27))) 2600 | ) 2601 | (property "Footprint" "" (at 109.22 64.77 0) 2602 | (effects (font (size 1.27 1.27)) hide) 2603 | ) 2604 | (property "Datasheet" "" (at 109.22 64.77 0) 2605 | (effects (font (size 1.27 1.27)) hide) 2606 | ) 2607 | (pin "1" (uuid 8dc5d2b8-9f84-4732-a7ba-3deadc49c12e)) 2608 | (instances 2609 | (project "serial-usb-adapter" 2610 | (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" 2611 | (reference "#PWR0105") (unit 1) 2612 | ) 2613 | ) 2614 | ) 2615 | ) 2616 | 2617 | (symbol (lib_id "power:VBUS") (at 83.82 113.03 0) (unit 1) 2618 | (in_bom yes) (on_board yes) (dnp no) 2619 | (uuid 00000000-0000-0000-0000-00005c824e00) 2620 | (property "Reference" "#PWR0106" (at 83.82 116.84 0) 2621 | (effects (font (size 1.27 1.27)) hide) 2622 | ) 2623 | (property "Value" "VBUS" (at 83.82 109.22 0) 2624 | (effects (font (size 1.27 1.27))) 2625 | ) 2626 | (property "Footprint" "" (at 83.82 113.03 0) 2627 | (effects (font (size 1.27 1.27)) hide) 2628 | ) 2629 | (property "Datasheet" "" (at 83.82 113.03 0) 2630 | (effects (font (size 1.27 1.27)) hide) 2631 | ) 2632 | (pin "1" (uuid 2de3f1e9-51dc-4d95-8111-9ecb627842c9)) 2633 | (instances 2634 | (project "serial-usb-adapter" 2635 | (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" 2636 | (reference "#PWR0106") (unit 1) 2637 | ) 2638 | ) 2639 | ) 2640 | ) 2641 | 2642 | (symbol (lib_id "Device:C_Small") (at 91.44 90.17 0) (unit 1) 2643 | (in_bom yes) (on_board yes) (dnp no) 2644 | (uuid 00000000-0000-0000-0000-00005c83aa1c) 2645 | (property "Reference" "C3" (at 91.44 87.63 0) 2646 | (effects (font (size 1.27 1.27)) (justify left top)) 2647 | ) 2648 | (property "Value" "10nF" (at 91.44 92.71 0) 2649 | (effects (font (size 1.27 1.27)) (justify left bottom)) 2650 | ) 2651 | (property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (at 91.44 90.17 0) 2652 | (effects (font (size 1.27 1.27)) hide) 2653 | ) 2654 | (property "Datasheet" "~" (at 91.44 90.17 0) 2655 | (effects (font (size 1.27 1.27)) hide) 2656 | ) 2657 | (property "LCSC" "C57112" (at 91.44 90.17 0) 2658 | (effects (font (size 1.27 1.27)) hide) 2659 | ) 2660 | (pin "1" (uuid 78c4ae0c-b39c-4df0-9f0c-0ec5166c394e)) 2661 | (pin "2" (uuid 4b20753a-8037-4c20-bae2-c1c40069e96d)) 2662 | (instances 2663 | (project "serial-usb-adapter" 2664 | (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" 2665 | (reference "C3") (unit 1) 2666 | ) 2667 | ) 2668 | ) 2669 | ) 2670 | 2671 | (symbol (lib_id "Device:C_Small") (at 99.06 97.79 0) (unit 1) 2672 | (in_bom yes) (on_board yes) (dnp no) 2673 | (uuid 00000000-0000-0000-0000-00005c83fb3a) 2674 | (property "Reference" "C6" (at 99.06 95.25 0) 2675 | (effects (font (size 1.27 1.27)) (justify left top)) 2676 | ) 2677 | (property "Value" "47pF" (at 99.06 100.33 0) 2678 | (effects (font (size 1.27 1.27)) (justify left bottom)) 2679 | ) 2680 | (property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (at 99.06 97.79 0) 2681 | (effects (font (size 1.27 1.27)) hide) 2682 | ) 2683 | (property "Datasheet" "~" (at 99.06 97.79 0) 2684 | (effects (font (size 1.27 1.27)) hide) 2685 | ) 2686 | (property "LCSC" "C1671" (at 99.06 97.79 0) 2687 | (effects (font (size 1.27 1.27)) hide) 2688 | ) 2689 | (pin "1" (uuid f7946f0e-379d-4b15-af3d-e0f2dda426b2)) 2690 | (pin "2" (uuid 243807f8-b87c-494b-b945-dbd0b8aef2db)) 2691 | (instances 2692 | (project "serial-usb-adapter" 2693 | (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" 2694 | (reference "C6") (unit 1) 2695 | ) 2696 | ) 2697 | ) 2698 | ) 2699 | 2700 | (symbol (lib_id "Device:C_Small") (at 106.68 105.41 0) (unit 1) 2701 | (in_bom yes) (on_board yes) (dnp no) 2702 | (uuid 00000000-0000-0000-0000-00005c8423e6) 2703 | (property "Reference" "C7" (at 106.68 102.87 0) 2704 | (effects (font (size 1.27 1.27)) (justify left top)) 2705 | ) 2706 | (property "Value" "47pF" (at 106.68 107.95 0) 2707 | (effects (font (size 1.27 1.27)) (justify left bottom)) 2708 | ) 2709 | (property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (at 106.68 105.41 0) 2710 | (effects (font (size 1.27 1.27)) hide) 2711 | ) 2712 | (property "Datasheet" "~" (at 106.68 105.41 0) 2713 | (effects (font (size 1.27 1.27)) hide) 2714 | ) 2715 | (property "LCSC" "C1671" (at 106.68 105.41 0) 2716 | (effects (font (size 1.27 1.27)) hide) 2717 | ) 2718 | (pin "1" (uuid 5f85fd86-d89e-43da-8d31-5a60ebc63189)) 2719 | (pin "2" (uuid 41d97cb0-9fb1-4e66-ac81-e0676bd5dd46)) 2720 | (instances 2721 | (project "serial-usb-adapter" 2722 | (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" 2723 | (reference "C7") (unit 1) 2724 | ) 2725 | ) 2726 | ) 2727 | ) 2728 | 2729 | (symbol (lib_id "Device:C_Small") (at 115.57 111.76 0) (unit 1) 2730 | (in_bom yes) (on_board yes) (dnp no) 2731 | (uuid 00000000-0000-0000-0000-00005c86bb83) 2732 | (property "Reference" "C11" (at 115.57 109.22 0) 2733 | (effects (font (size 1.27 1.27)) (justify left top)) 2734 | ) 2735 | (property "Value" "100nF" (at 116.84 113.792 0) 2736 | (effects (font (size 1.27 1.27)) (justify left)) 2737 | ) 2738 | (property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (at 115.57 111.76 0) 2739 | (effects (font (size 1.27 1.27)) hide) 2740 | ) 2741 | (property "Datasheet" "~" (at 115.57 111.76 0) 2742 | (effects (font (size 1.27 1.27)) hide) 2743 | ) 2744 | (property "LCSC" "C14663" (at 115.57 111.76 0) 2745 | (effects (font (size 1.27 1.27)) hide) 2746 | ) 2747 | (pin "1" (uuid a906993e-2b9d-4617-b81b-412a353ef28c)) 2748 | (pin "2" (uuid 4a9b1558-5932-4e22-a7ff-aac8cef7d6e2)) 2749 | (instances 2750 | (project "serial-usb-adapter" 2751 | (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" 2752 | (reference "C11") (unit 1) 2753 | ) 2754 | ) 2755 | ) 2756 | ) 2757 | 2758 | (symbol (lib_id "Device:C_Small") (at 87.63 185.42 90) (unit 1) 2759 | (in_bom yes) (on_board yes) (dnp no) 2760 | (uuid 00000000-0000-0000-0000-00005c8b03e8) 2761 | (property "Reference" "C5" (at 85.09 185.42 0) 2762 | (effects (font (size 1.27 1.27)) (justify left top)) 2763 | ) 2764 | (property "Value" "10uF" (at 90.17 185.42 0) 2765 | (effects (font (size 1.27 1.27)) (justify left bottom)) 2766 | ) 2767 | (property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (at 87.63 185.42 0) 2768 | (effects (font (size 1.27 1.27)) hide) 2769 | ) 2770 | (property "Datasheet" "~" (at 87.63 185.42 0) 2771 | (effects (font (size 1.27 1.27)) hide) 2772 | ) 2773 | (property "LCSC" "C19702" (at 87.63 185.42 0) 2774 | (effects (font (size 1.27 1.27)) hide) 2775 | ) 2776 | (pin "1" (uuid c1e20eff-7892-41b7-9e5c-841eac63832f)) 2777 | (pin "2" (uuid 8bcc010e-950d-4f9b-a3fc-7e8354f84175)) 2778 | (instances 2779 | (project "serial-usb-adapter" 2780 | (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" 2781 | (reference "C5") (unit 1) 2782 | ) 2783 | ) 2784 | ) 2785 | ) 2786 | 2787 | (symbol (lib_id "power:+3V3") (at 111.76 83.82 0) (unit 1) 2788 | (in_bom yes) (on_board yes) (dnp no) 2789 | (uuid 00000000-0000-0000-0000-00005c8c609f) 2790 | (property "Reference" "#PWR0107" (at 111.76 87.63 0) 2791 | (effects (font (size 1.27 1.27)) hide) 2792 | ) 2793 | (property "Value" "+3V3" (at 111.76 80.01 0) 2794 | (effects (font (size 1.27 1.27))) 2795 | ) 2796 | (property "Footprint" "" (at 111.76 83.82 0) 2797 | (effects (font (size 1.27 1.27)) hide) 2798 | ) 2799 | (property "Datasheet" "" (at 111.76 83.82 0) 2800 | (effects (font (size 1.27 1.27)) hide) 2801 | ) 2802 | (pin "1" (uuid 6fdb7a63-6401-4aa3-9d84-47716369823a)) 2803 | (instances 2804 | (project "serial-usb-adapter" 2805 | (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" 2806 | (reference "#PWR0107") (unit 1) 2807 | ) 2808 | ) 2809 | ) 2810 | ) 2811 | 2812 | (symbol (lib_id "power:+3V3") (at 157.48 67.31 0) (unit 1) 2813 | (in_bom yes) (on_board yes) (dnp no) 2814 | (uuid 00000000-0000-0000-0000-00005c8de488) 2815 | (property "Reference" "#PWR0108" (at 157.48 71.12 0) 2816 | (effects (font (size 1.27 1.27)) hide) 2817 | ) 2818 | (property "Value" "+3V3" (at 157.861 62.9158 0) 2819 | (effects (font (size 1.27 1.27))) 2820 | ) 2821 | (property "Footprint" "" (at 157.48 67.31 0) 2822 | (effects (font (size 1.27 1.27)) hide) 2823 | ) 2824 | (property "Datasheet" "" (at 157.48 67.31 0) 2825 | (effects (font (size 1.27 1.27)) hide) 2826 | ) 2827 | (pin "1" (uuid 5c8b3981-3a33-42f2-87da-6e0e6ac36dbc)) 2828 | (instances 2829 | (project "serial-usb-adapter" 2830 | (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" 2831 | (reference "#PWR0108") (unit 1) 2832 | ) 2833 | ) 2834 | ) 2835 | ) 2836 | 2837 | (symbol (lib_id "Device:C_Small") (at 73.66 137.16 90) (unit 1) 2838 | (in_bom yes) (on_board yes) (dnp no) 2839 | (uuid 00000000-0000-0000-0000-00005c8df315) 2840 | (property "Reference" "C13" (at 74.93 134.62 90) 2841 | (effects (font (size 1.27 1.27)) (justify left)) 2842 | ) 2843 | (property "Value" "10nF" (at 76.2 139.7 90) 2844 | (effects (font (size 1.27 1.27)) (justify left)) 2845 | ) 2846 | (property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (at 73.66 137.16 0) 2847 | (effects (font (size 1.27 1.27)) hide) 2848 | ) 2849 | (property "Datasheet" "~" (at 73.66 137.16 0) 2850 | (effects (font (size 1.27 1.27)) hide) 2851 | ) 2852 | (property "LCSC" "C57112" (at 73.66 137.16 0) 2853 | (effects (font (size 1.27 1.27)) hide) 2854 | ) 2855 | (pin "1" (uuid 11233920-aece-49e3-97f7-31b2ef93937f)) 2856 | (pin "2" (uuid 87492a96-bc5f-46dc-bc4f-a5f42d2088ea)) 2857 | (instances 2858 | (project "serial-usb-adapter" 2859 | (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" 2860 | (reference "C13") (unit 1) 2861 | ) 2862 | ) 2863 | ) 2864 | ) 2865 | 2866 | (symbol (lib_id "power:VSS") (at 78.74 143.51 180) (unit 1) 2867 | (in_bom yes) (on_board yes) (dnp no) 2868 | (uuid 00000000-0000-0000-0000-00005c8e4641) 2869 | (property "Reference" "#PWR0109" (at 78.74 139.7 0) 2870 | (effects (font (size 1.27 1.27)) hide) 2871 | ) 2872 | (property "Value" "VSS" (at 78.74 147.32 0) 2873 | (effects (font (size 1.27 1.27))) 2874 | ) 2875 | (property "Footprint" "" (at 78.74 143.51 0) 2876 | (effects (font (size 1.27 1.27)) hide) 2877 | ) 2878 | (property "Datasheet" "" (at 78.74 143.51 0) 2879 | (effects (font (size 1.27 1.27)) hide) 2880 | ) 2881 | (pin "1" (uuid 31680ce0-53a7-4d64-9e2c-f986b9ead8b4)) 2882 | (instances 2883 | (project "serial-usb-adapter" 2884 | (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" 2885 | (reference "#PWR0109") (unit 1) 2886 | ) 2887 | ) 2888 | ) 2889 | ) 2890 | 2891 | (symbol (lib_id "power:VCC") (at 78.74 133.35 0) (unit 1) 2892 | (in_bom yes) (on_board yes) (dnp no) 2893 | (uuid 00000000-0000-0000-0000-00005c8e4892) 2894 | (property "Reference" "#PWR0110" (at 78.74 137.16 0) 2895 | (effects (font (size 1.27 1.27)) hide) 2896 | ) 2897 | (property "Value" "VCC" (at 78.74 129.54 0) 2898 | (effects (font (size 1.27 1.27))) 2899 | ) 2900 | (property "Footprint" "" (at 78.74 133.35 0) 2901 | (effects (font (size 1.27 1.27)) hide) 2902 | ) 2903 | (property "Datasheet" "" (at 78.74 133.35 0) 2904 | (effects (font (size 1.27 1.27)) hide) 2905 | ) 2906 | (pin "1" (uuid 280f6694-8b9f-432d-8e1a-068b3244b8dc)) 2907 | (instances 2908 | (project "serial-usb-adapter" 2909 | (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" 2910 | (reference "#PWR0110") (unit 1) 2911 | ) 2912 | ) 2913 | ) 2914 | ) 2915 | 2916 | (symbol (lib_id "Device:R_Pack04") (at 90.17 171.45 90) (mirror x) (unit 1) 2917 | (in_bom yes) (on_board yes) (dnp no) 2918 | (uuid 1a1934fd-e679-4e1e-931c-2326244ec1f9) 2919 | (property "Reference" "RN2" (at 90.17 176.53 90) 2920 | (effects (font (size 1.27 1.27))) 2921 | ) 2922 | (property "Value" "100R" (at 95.25 176.53 90) 2923 | (effects (font (size 1.27 1.27))) 2924 | ) 2925 | (property "Footprint" "Resistor_SMD:R_Array_Convex_4x0603" (at 90.17 178.435 90) 2926 | (effects (font (size 1.27 1.27)) hide) 2927 | ) 2928 | (property "Datasheet" "~" (at 90.17 171.45 0) 2929 | (effects (font (size 1.27 1.27)) hide) 2930 | ) 2931 | (property "LCSC" "C79203" (at 90.17 171.45 0) 2932 | (effects (font (size 1.27 1.27)) hide) 2933 | ) 2934 | (pin "1" (uuid 4f12adc0-c1ca-4f93-80a3-00b9eb26a432)) 2935 | (pin "2" (uuid 320768cb-aa41-4ad5-ab1e-c419a969cb24)) 2936 | (pin "3" (uuid 49894d43-0b21-4aa1-b791-c8d994b73332)) 2937 | (pin "4" (uuid e7dbed8d-60cd-4242-86d0-cf2009149165)) 2938 | (pin "5" (uuid dab59ddc-0bc4-4964-8b02-3d756c660229)) 2939 | (pin "6" (uuid b0dc067e-efc7-465b-90f1-79e35d85e91e)) 2940 | (pin "7" (uuid 959f04f2-9d03-4dc9-ad7b-1b51275565c7)) 2941 | (pin "8" (uuid 2fe498c2-8f40-4679-bdbd-49c57e0c9d84)) 2942 | (instances 2943 | (project "serial-usb-adapter" 2944 | (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" 2945 | (reference "RN2") (unit 1) 2946 | ) 2947 | ) 2948 | ) 2949 | ) 2950 | 2951 | (symbol (lib_id "Device:R_Small") (at 83.82 100.33 180) (unit 1) 2952 | (in_bom yes) (on_board yes) (dnp no) 2953 | (uuid 3e3a2ec4-8f92-4aab-901d-ca7ff7d5fb96) 2954 | (property "Reference" "R8" (at 87.63 99.06 0) 2955 | (effects (font (size 1.27 1.27)) (justify left)) 2956 | ) 2957 | (property "Value" "5.1k" (at 89.154 101.346 0) 2958 | (effects (font (size 1.27 1.27)) (justify left)) 2959 | ) 2960 | (property "Footprint" "Resistor_SMD:R_0603_1608Metric" (at 83.82 100.33 0) 2961 | (effects (font (size 1.27 1.27)) hide) 2962 | ) 2963 | (property "Datasheet" "~" (at 83.82 100.33 0) 2964 | (effects (font (size 1.27 1.27)) hide) 2965 | ) 2966 | (property "LCSC" "C25804" (at 83.82 100.33 0) 2967 | (effects (font (size 1.27 1.27)) hide) 2968 | ) 2969 | (pin "1" (uuid f184a7e3-d129-4aae-bc70-4f53d585e400)) 2970 | (pin "2" (uuid 225afb75-5f92-4bbb-a6b1-5ac29533d21f)) 2971 | (instances 2972 | (project "serial-usb-adapter" 2973 | (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" 2974 | (reference "R8") (unit 1) 2975 | ) 2976 | ) 2977 | ) 2978 | ) 2979 | 2980 | (symbol (lib_id "Device:R_Pack04") (at 90.17 161.29 90) (mirror x) (unit 1) 2981 | (in_bom yes) (on_board yes) (dnp no) 2982 | (uuid a777a355-aae0-498e-865a-3072972763a8) 2983 | (property "Reference" "RN1" (at 90.17 153.67 90) 2984 | (effects (font (size 1.27 1.27))) 2985 | ) 2986 | (property "Value" "100R" (at 95.25 153.67 90) 2987 | (effects (font (size 1.27 1.27))) 2988 | ) 2989 | (property "Footprint" "Resistor_SMD:R_Array_Convex_4x0603" (at 90.17 168.275 90) 2990 | (effects (font (size 1.27 1.27)) hide) 2991 | ) 2992 | (property "Datasheet" "~" (at 90.17 161.29 0) 2993 | (effects (font (size 1.27 1.27)) hide) 2994 | ) 2995 | (property "LCSC" "C79203" (at 90.17 161.29 0) 2996 | (effects (font (size 1.27 1.27)) hide) 2997 | ) 2998 | (pin "1" (uuid 70bf38df-5caf-46b1-af1f-bdc36cec58ed)) 2999 | (pin "2" (uuid cc30f76c-5f2c-4654-8f42-b4befd889a15)) 3000 | (pin "3" (uuid fae7f784-a1e1-4fe4-b3e1-b0a016a6a9b5)) 3001 | (pin "4" (uuid 13f5f77c-ab4c-46e5-b46d-cd66ba484f37)) 3002 | (pin "5" (uuid 7b3ed685-641a-41fd-976b-640fbfcd1775)) 3003 | (pin "6" (uuid 00731a36-f691-477d-9f8d-983d104fe0a1)) 3004 | (pin "7" (uuid 80bdb602-00a4-44f5-b7e4-49e1bbfdcb24)) 3005 | (pin "8" (uuid 46a92e41-31ce-4db3-8ec7-33f6aa8e0bcc)) 3006 | (instances 3007 | (project "serial-usb-adapter" 3008 | (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" 3009 | (reference "RN1") (unit 1) 3010 | ) 3011 | ) 3012 | ) 3013 | ) 3014 | 3015 | (symbol (lib_id "Device:R_Small") (at 81.28 100.33 0) (unit 1) 3016 | (in_bom yes) (on_board yes) (dnp no) 3017 | (uuid dd8318b9-2eae-43d0-9225-f3cba6e787a4) 3018 | (property "Reference" "R7" (at 77.47 99.06 0) 3019 | (effects (font (size 1.27 1.27)) (justify left)) 3020 | ) 3021 | (property "Value" "5.1k" (at 76.2 101.346 0) 3022 | (effects (font (size 1.27 1.27)) (justify left)) 3023 | ) 3024 | (property "Footprint" "Resistor_SMD:R_0603_1608Metric" (at 81.28 100.33 0) 3025 | (effects (font (size 1.27 1.27)) hide) 3026 | ) 3027 | (property "Datasheet" "~" (at 81.28 100.33 0) 3028 | (effects (font (size 1.27 1.27)) hide) 3029 | ) 3030 | (property "LCSC" "C25804" (at 81.28 100.33 0) 3031 | (effects (font (size 1.27 1.27)) hide) 3032 | ) 3033 | (pin "1" (uuid ceea8987-bdc7-4e7e-9691-7b92de619d3c)) 3034 | (pin "2" (uuid 264cae76-1e01-468e-9451-bb2c998e757d)) 3035 | (instances 3036 | (project "serial-usb-adapter" 3037 | (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" 3038 | (reference "R7") (unit 1) 3039 | ) 3040 | ) 3041 | ) 3042 | ) 3043 | 3044 | (symbol (lib_id "Connector:USB_C_Plug_USB2.0") (at 69.85 85.09 0) (unit 1) 3045 | (in_bom yes) (on_board yes) (dnp no) 3046 | (uuid e0c3362d-bac0-468d-a6d3-53e4fe63d71e) 3047 | (property "Reference" "J1" (at 62.23 62.23 0) 3048 | (effects (font (size 1.27 1.27))) 3049 | ) 3050 | (property "Value" "USB-C SS-52400-003" (at 77.47 62.23 0) 3051 | (effects (font (size 1.27 1.27))) 3052 | ) 3053 | (property "Footprint" "Library:SS-52400-003" (at 69.85 59.69 0) 3054 | (effects (font (size 1.27 1.27)) hide) 3055 | ) 3056 | (property "Datasheet" "https://www.belfuse.com/resources/drawings/stewartconnector/dr-stw-ss-52400-003.pdf" (at 71.12 99.06 0) 3057 | (effects (font (size 1.27 1.27)) hide) 3058 | ) 3059 | (pin "A1" (uuid f422a489-9075-4b4b-87d8-35e605da7859)) 3060 | (pin "A12" (uuid fb474424-ae01-442a-a1b0-76b2aa3f4140)) 3061 | (pin "A4" (uuid 2b280778-6f7f-41ad-84fb-2df473e7c56b)) 3062 | (pin "A5" (uuid cdb4defb-8537-41c7-83b4-5b2f06e1954a)) 3063 | (pin "A6" (uuid c7d98705-6cf2-40d7-8410-8b04788d325c)) 3064 | (pin "A7" (uuid df1bc806-6e1a-4d8c-b4f3-d6ba0ac27ca1)) 3065 | (pin "A9" (uuid b4a0c2dc-db29-4579-a5c1-4c8e9568c8de)) 3066 | (pin "B1" (uuid a5329f9d-f3ff-4b78-9262-cfb40967ae22)) 3067 | (pin "B12" (uuid f694e585-a8b3-4681-844e-634fe76c8234)) 3068 | (pin "B4" (uuid f62f88df-772f-4271-ae8c-15f03fa1000b)) 3069 | (pin "B5" (uuid 0af527ef-397f-42ba-8476-a23518e2bf8b)) 3070 | (pin "B6" (uuid 59e73816-667e-432f-8bc6-3351b7962afa)) 3071 | (pin "B7" (uuid 382b295c-d28b-4ccc-9044-f379852a45e1)) 3072 | (pin "B9" (uuid a2fd2e88-6f21-4c50-8192-e6f689139015)) 3073 | (pin "S1" (uuid 2ee44f98-6326-44e2-8922-1012466d92ac)) 3074 | (pin "S2" (uuid 51318f84-e0c3-4ea3-a964-75641c0e1ef6)) 3075 | (pin "S3" (uuid 7970f2e3-d8c3-4f73-ae4a-34e1bcf7763e)) 3076 | (pin "S4" (uuid 6d72ea0c-87f2-4a47-9896-cc6708baa886)) 3077 | (instances 3078 | (project "serial-usb-adapter" 3079 | (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" 3080 | (reference "J1") (unit 1) 3081 | ) 3082 | ) 3083 | ) 3084 | ) 3085 | 3086 | (sheet_instances 3087 | (path "/" (page "1")) 3088 | ) 3089 | ) 3090 | -------------------------------------------------------------------------------- /sym-lib-table: -------------------------------------------------------------------------------- 1 | (sym_lib_table 2 | (version 7) 3 | (lib (name "serial-usb-adapter")(type "KiCad")(uri "${KIPRJMOD}/libraries/serial-usb-adapter.kicad_sym")(options "")(descr "")) 4 | ) 5 | --------------------------------------------------------------------------------