├── .gitignore ├── .gitmodules ├── LICENSE ├── README.md ├── tinyFINITY.kicad_pcb ├── tinyFINITY.pro └── tinyFINITY.sch /.gitignore: -------------------------------------------------------------------------------- 1 | # For PCBs designed using KiCad: http://www.kicad-pcb.org/ 2 | 3 | # Temporary files 4 | *.000 5 | *.bak 6 | *.bck 7 | *.kicad_pcb-bak 8 | *~ 9 | _autosave-* 10 | *.tmp 11 | 12 | # Netlist files (exported from Eeschema) 13 | *.net 14 | 15 | # Autorouter files (exported from Pcbnew) 16 | *.dsn 17 | *.ses 18 | 19 | # Exported BOM files 20 | *.xml 21 | *.csv 22 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- 1 | [submodule "kicad_misc"] 2 | path = kicad_misc 3 | url = https://github.com/fishpepper/kicad_misc.git 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 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 | # tinyFINITY 2 | 3 | This is a reference implementation for hardware for my custom OSD firmware. 4 | 5 | See 6 | 7 | https://github.com/fishpepper/tinyOSD 8 | 9 | or my blog post 10 | 11 | https://fishpepper.de/2019/03/11/tinyosd-tinyfinity-a-tiny-opensource-video-tx-with-full-graphic-osd 12 | 13 | for more details. 14 | 15 | This work is published under the CERN open hardware license v1.2. 16 | Feel free to use the design - but make sure to give proper credit 17 | and release all modifications under the same license! 18 | See LICENSE for details! 19 | 20 | THIS COMES WITH NO WARRANTY! BUILD, FLY, AND USE AT YOUR OWN RISK! 21 | 22 | 23 | # Build your own 24 | 25 | Make sure to init the git submodule for the libraries in the 26 | kicad_misc directory by calling git submodule init && git submodule update. 27 | You will have to use a recent kicad version, i used the commit #efdfaeb 28 | when i designed this circuit board. Older versions will probably not work. 29 | 30 | 31 | -------------------------------------------------------------------------------- /tinyFINITY.pro: -------------------------------------------------------------------------------- 1 | update=Fri 19 May 2017 04:06:49 PM CEST 2 | version=1 3 | last_client=kicad 4 | [pcbnew] 5 | version=1 6 | LastNetListRead= 7 | UseCmpFile=1 8 | PadDrill=0.600000000000 9 | PadDrillOvalY=0.600000000000 10 | PadSizeH=1.500000000000 11 | PadSizeV=1.500000000000 12 | PcbTextSizeV=1.500000000000 13 | PcbTextSizeH=1.500000000000 14 | PcbTextThickness=0.300000000000 15 | ModuleTextSizeV=1.000000000000 16 | ModuleTextSizeH=1.000000000000 17 | ModuleTextSizeThickness=0.150000000000 18 | SolderMaskClearance=0.000000000000 19 | SolderMaskMinWidth=0.000000000000 20 | DrawSegmentWidth=0.200000000000 21 | BoardOutlineThickness=0.100000000000 22 | ModuleOutlineThickness=0.150000000000 23 | [cvpcb] 24 | version=1 25 | NetIExt=net 26 | [general] 27 | version=1 28 | [eeschema] 29 | version=1 30 | LibDir= 31 | [eeschema/libraries] 32 | LibName1=power 33 | LibName2=device 34 | LibName3=transistors 35 | LibName4=conn 36 | LibName5=linear 37 | LibName6=regul 38 | LibName7=74xx 39 | LibName8=cmos4000 40 | LibName9=adc-dac 41 | LibName10=memory 42 | LibName11=xilinx 43 | LibName12=microcontrollers 44 | LibName13=dsp 45 | LibName14=microchip 46 | LibName15=analog_switches 47 | LibName16=motorola 48 | LibName17=texas 49 | LibName18=intel 50 | LibName19=audio 51 | LibName20=interface 52 | LibName21=digital-audio 53 | LibName22=philips 54 | LibName23=display 55 | LibName24=cypress 56 | LibName25=siliconi 57 | LibName26=opto 58 | LibName27=atmel 59 | LibName28=contrib 60 | LibName29=valves 61 | LibName30=kicad_misc/custom 62 | -------------------------------------------------------------------------------- /tinyFINITY.sch: -------------------------------------------------------------------------------- 1 | EESchema Schematic File Version 2 2 | LIBS:power 3 | LIBS:device 4 | LIBS:transistors 5 | LIBS:conn 6 | LIBS:linear 7 | LIBS:regul 8 | LIBS:74xx 9 | LIBS:cmos4000 10 | LIBS:adc-dac 11 | LIBS:memory 12 | LIBS:xilinx 13 | LIBS:microcontrollers 14 | LIBS:dsp 15 | LIBS:microchip 16 | LIBS:analog_switches 17 | LIBS:motorola 18 | LIBS:texas 19 | LIBS:intel 20 | LIBS:audio 21 | LIBS:interface 22 | LIBS:digital-audio 23 | LIBS:philips 24 | LIBS:display 25 | LIBS:cypress 26 | LIBS:siliconi 27 | LIBS:opto 28 | LIBS:atmel 29 | LIBS:contrib 30 | LIBS:valves 31 | LIBS:custom 32 | LIBS:tinyFINITY-cache 33 | EELAYER 26 0 34 | EELAYER END 35 | $Descr A3 11693 16535 portrait 36 | encoding utf-8 37 | Sheet 1 1 38 | Title "" 39 | Date "" 40 | Rev "" 41 | Comp "" 42 | Comment1 "" 43 | Comment2 "" 44 | Comment3 "" 45 | Comment4 "" 46 | $EndDescr 47 | $Comp 48 | L C C15 49 | U 1 1 591EFE49 50 | P 6875 1725 51 | F 0 "C15" H 6990 1771 50 0000 L CNN 52 | F 1 "'10pF" H 6990 1680 50 0000 L CNN 53 | F 2 "custom:C_0402_CUSTOM" H 6913 1575 50 0001 C CNN 54 | F 3 "" H 6875 1725 50 0000 C CNN 55 | 1 6875 1725 56 | 0 1 1 0 57 | $EndComp 58 | $Comp 59 | L R R6 60 | U 1 1 591EFEDB 61 | P 6525 925 62 | F 0 "R6" H 6595 971 50 0000 L CNN 63 | F 1 "10R" H 6595 880 50 0000 L CNN 64 | F 2 "custom:R_0402_CUSTOM" V 6455 925 50 0001 C CNN 65 | F 3 "" H 6525 925 50 0000 C CNN 66 | 1 6525 925 67 | 0 -1 -1 0 68 | $EndComp 69 | $Comp 70 | L L L3 71 | U 1 1 591F019A 72 | P 7200 2025 73 | F 0 "L3" H 7253 2071 50 0000 L CNN 74 | F 1 "'1nH" H 7253 1980 50 0000 L CNN 75 | F 2 "custom:L_0402_CUSTOM" H 7200 2025 50 0001 C CNN 76 | F 3 "" H 7200 2025 50 0000 C CNN 77 | F 4 "81-LQG15HS1N0S02D" H 7200 2025 60 0001 C CNN "mouser" 78 | 1 7200 2025 79 | 1 0 0 -1 80 | $EndComp 81 | $Comp 82 | L C C8 83 | U 1 1 591F04AB 84 | P 5900 1725 85 | F 0 "C8" H 6015 1771 50 0000 L CNN 86 | F 1 "'3.3pF" H 6015 1680 50 0000 L CNN 87 | F 2 "custom:C_0402_CUSTOM" H 5938 1575 50 0001 C CNN 88 | F 3 "" H 5900 1725 50 0000 C CNN 89 | 1 5900 1725 90 | 0 1 1 0 91 | $EndComp 92 | $Comp 93 | L L L2 94 | U 1 1 591F0618 95 | P 6375 1725 96 | F 0 "L2" H 6428 1771 50 0000 L CNN 97 | F 1 "'1.2nH" H 6428 1680 50 0000 L CNN 98 | F 2 "custom:L_0402_CUSTOM" H 6375 1725 50 0001 C CNN 99 | F 3 "" H 6375 1725 50 0000 C CNN 100 | 1 6375 1725 101 | 0 1 1 0 102 | $EndComp 103 | $Comp 104 | L GND #PWR01 105 | U 1 1 591F0A44 106 | P 7200 2250 107 | F 0 "#PWR01" H 7200 2000 50 0001 C CNN 108 | F 1 "GND" H 7205 2077 50 0000 C CNN 109 | F 2 "" H 7200 2250 50 0000 C CNN 110 | F 3 "" H 7200 2250 50 0000 C CNN 111 | 1 7200 2250 112 | 1 0 0 -1 113 | $EndComp 114 | $Comp 115 | L RF_Filter Y1 116 | U 1 1 591F0FCB 117 | P 7775 1725 118 | F 0 "Y1" H 7950 1850 60 0000 L CNN 119 | F 1 "LF2012-A5R5AA" H 7925 1575 60 0000 L CNN 120 | F 2 "custom:LPF20125" H 7775 1475 60 0001 C CNN 121 | F 3 "http://www.acxc.com.tw/product/lf/lf2012/LF2012-A5R5FAA_S-R00-N366_3.pdf" H 7775 1475 60 0001 C CNN 122 | F 4 "609-5515LP15A730E" H 7775 1725 60 0001 C CNN "mouser" 123 | 1 7775 1725 124 | 1 0 0 -1 125 | $EndComp 126 | $Comp 127 | L L L1 128 | U 1 1 591F13CF 129 | P 5775 925 130 | F 0 "L1" H 5828 971 50 0000 L CNN 131 | F 1 "'1.2nH" H 5828 880 50 0000 L CNN 132 | F 2 "custom:L_0402_CUSTOM" H 5775 925 50 0001 C CNN 133 | F 3 "" H 5775 925 50 0000 C CNN 134 | F 4 "81-LQG15HS1N2S02D" H 5775 925 60 0001 C CNN "mouser" 135 | 1 5775 925 136 | 0 -1 -1 0 137 | $EndComp 138 | $Comp 139 | L C C9 140 | U 1 1 591F1547 141 | P 6175 1200 142 | F 0 "C9" H 6290 1246 50 0000 L CNN 143 | F 1 "'10pF" H 6290 1155 50 0000 L CNN 144 | F 2 "custom:C_0402_CUSTOM" H 6213 1050 50 0001 C CNN 145 | F 3 "" H 6175 1200 50 0000 C CNN 146 | 1 6175 1200 147 | -1 0 0 1 148 | $EndComp 149 | $Comp 150 | L C C14 151 | U 1 1 591F1741 152 | P 6825 1200 153 | F 0 "C14" H 6940 1246 50 0000 L CNN 154 | F 1 "'10pF" H 6940 1155 50 0000 L CNN 155 | F 2 "custom:C_0402_CUSTOM" H 6863 1050 50 0001 C CNN 156 | F 3 "" H 6825 1200 50 0000 C CNN 157 | F 4 "80-CBR04C100F5G" H 6825 1200 60 0001 C CNN "mouser" 158 | 1 6825 1200 159 | -1 0 0 1 160 | $EndComp 161 | $Comp 162 | L GND #PWR02 163 | U 1 1 591F17FE 164 | P 6175 1400 165 | F 0 "#PWR02" H 6175 1150 50 0001 C CNN 166 | F 1 "GND" H 6180 1227 50 0000 C CNN 167 | F 2 "" H 6175 1400 50 0000 C CNN 168 | F 3 "" H 6175 1400 50 0000 C CNN 169 | 1 6175 1400 170 | 1 0 0 -1 171 | $EndComp 172 | $Comp 173 | L GND #PWR03 174 | U 1 1 591F18A7 175 | P 6825 1400 176 | F 0 "#PWR03" H 6825 1150 50 0001 C CNN 177 | F 1 "GND" H 6830 1227 50 0000 C CNN 178 | F 2 "" H 6825 1400 50 0000 C CNN 179 | F 3 "" H 6825 1400 50 0000 C CNN 180 | 1 6825 1400 181 | 1 0 0 -1 182 | $EndComp 183 | Text GLabel 7075 925 2 60 Input ~ 0 184 | 3V3 185 | $Comp 186 | L GND #PWR04 187 | U 1 1 591F1F5A 188 | P 7775 2225 189 | F 0 "#PWR04" H 7775 1975 50 0001 C CNN 190 | F 1 "GND" H 7780 2052 50 0000 C CNN 191 | F 2 "" H 7775 2225 50 0000 C CNN 192 | F 3 "" H 7775 2225 50 0000 C CNN 193 | 1 7775 2225 194 | 1 0 0 -1 195 | $EndComp 196 | $Comp 197 | L GND #PWR05 198 | U 1 1 591F1FC8 199 | P 7775 1250 200 | F 0 "#PWR05" H 7775 1000 50 0001 C CNN 201 | F 1 "GND" H 7780 1077 50 0000 C CNN 202 | F 2 "" H 7775 1250 50 0000 C CNN 203 | F 3 "" H 7775 1250 50 0000 C CNN 204 | 1 7775 1250 205 | -1 0 0 1 206 | $EndComp 207 | $Comp 208 | L GND #PWR06 209 | U 1 1 591F239B 210 | P 5750 2275 211 | F 0 "#PWR06" H 5750 2025 50 0001 C CNN 212 | F 1 "GND" H 5755 2102 50 0000 C CNN 213 | F 2 "" H 5750 2275 50 0000 C CNN 214 | F 3 "" H 5750 2275 50 0000 C CNN 215 | 1 5750 2275 216 | -1 0 0 1 217 | $EndComp 218 | $Comp 219 | L GND #PWR07 220 | U 1 1 591F2469 221 | P 5250 2275 222 | F 0 "#PWR07" H 5250 2025 50 0001 C CNN 223 | F 1 "GND" H 5255 2102 50 0000 C CNN 224 | F 2 "" H 5250 2275 50 0000 C CNN 225 | F 3 "" H 5250 2275 50 0000 C CNN 226 | 1 5250 2275 227 | -1 0 0 1 228 | $EndComp 229 | $Comp 230 | L C C13 231 | U 1 1 591F2536 232 | P 6750 2525 233 | F 0 "C13" H 6865 2571 50 0000 L CNN 234 | F 1 "4.7uF" H 6865 2480 50 0000 L CNN 235 | F 2 "custom:C_0402_CUSTOM" H 6788 2375 50 0001 C CNN 236 | F 3 "" H 6750 2525 50 0000 C CNN 237 | 1 6750 2525 238 | 1 0 0 -1 239 | $EndComp 240 | $Comp 241 | L GND #PWR08 242 | U 1 1 591F2743 243 | P 6950 2800 244 | F 0 "#PWR08" H 6950 2550 50 0001 C CNN 245 | F 1 "GND" H 6955 2627 50 0000 C CNN 246 | F 2 "" H 6950 2800 50 0000 C CNN 247 | F 3 "" H 6950 2800 50 0000 C CNN 248 | 1 6950 2800 249 | 1 0 0 -1 250 | $EndComp 251 | Text GLabel 6800 2275 2 60 Input ~ 0 252 | 3V3 253 | $Comp 254 | L R R1 255 | U 1 1 591F290D 256 | P 5050 1875 257 | F 0 "R1" H 5120 1921 50 0000 L CNN 258 | F 1 "51R" H 5120 1830 50 0000 L CNN 259 | F 2 "custom:R_0402_CUSTOM" V 4980 1875 50 0001 C CNN 260 | F 3 "" H 5050 1875 50 0000 C CNN 261 | 1 5050 1875 262 | -1 0 0 1 263 | $EndComp 264 | $Comp 265 | L C C4 266 | U 1 1 591F2B80 267 | P 4825 2125 268 | F 0 "C4" H 4940 2171 50 0000 L CNN 269 | F 1 "1nF" H 4940 2080 50 0000 L CNN 270 | F 2 "custom:C_0402_CUSTOM" H 4863 1975 50 0001 C CNN 271 | F 3 "" H 4825 2125 50 0000 C CNN 272 | 1 4825 2125 273 | 0 1 1 0 274 | $EndComp 275 | $Comp 276 | L GND #PWR09 277 | U 1 1 591F2C66 278 | P 4600 2300 279 | F 0 "#PWR09" H 4600 2050 50 0001 C CNN 280 | F 1 "GND" H 4605 2127 50 0000 C CNN 281 | F 2 "" H 4600 2300 50 0000 C CNN 282 | F 3 "" H 4600 2300 50 0000 C CNN 283 | 1 4600 2300 284 | 1 0 0 -1 285 | $EndComp 286 | $Comp 287 | L C C3 288 | U 1 1 591F2F52 289 | P 4600 1850 290 | F 0 "C3" H 4715 1896 50 0000 L CNN 291 | F 1 "1uF" H 4715 1805 50 0000 L CNN 292 | F 2 "custom:C_0402_CUSTOM" H 4638 1700 50 0001 C CNN 293 | F 3 "" H 4600 1850 50 0000 C CNN 294 | 1 4600 1850 295 | -1 0 0 1 296 | $EndComp 297 | $Comp 298 | L C C2 299 | U 1 1 591F3115 300 | P 3125 1250 301 | F 0 "C2" H 3240 1296 50 0000 L CNN 302 | F 1 "4.7uF" H 3240 1205 50 0000 L CNN 303 | F 2 "custom:C_0402_CUSTOM" H 3163 1100 50 0001 C CNN 304 | F 3 "" H 3125 1250 50 0000 C CNN 305 | F 4 "2426952" H 3125 1250 60 0001 C CNN "farnell" 306 | 1 3125 1250 307 | -1 0 0 1 308 | $EndComp 309 | $Comp 310 | L GND #PWR010 311 | U 1 1 591F317A 312 | P 3125 1775 313 | F 0 "#PWR010" H 3125 1525 50 0001 C CNN 314 | F 1 "GND" H 3130 1602 50 0000 C CNN 315 | F 2 "" H 3125 1775 50 0000 C CNN 316 | F 3 "" H 3125 1775 50 0000 C CNN 317 | 1 3125 1775 318 | 1 0 0 -1 319 | $EndComp 320 | $Comp 321 | L AP131-33 U1 322 | U 1 1 591F3361 323 | P 2250 1050 324 | F 0 "U1" H 2250 1417 50 0000 C CNN 325 | F 1 "MIC5205" H 2250 1326 50 0000 C CNN 326 | F 2 "custom:SOT-23-5" H 2250 650 50 0001 C CNN 327 | F 3 "" H 2250 1050 50 0000 C CNN 328 | F 4 "2510222" H 2250 1050 60 0001 C CNN "farnell" 329 | 1 2250 1050 330 | 1 0 0 -1 331 | $EndComp 332 | $Comp 333 | L C C1 334 | U 1 1 591F3626 335 | P 2750 1250 336 | F 0 "C1" H 2865 1296 50 0000 L CNN 337 | F 1 "470pF" H 2865 1205 50 0000 L CNN 338 | F 2 "custom:C_0402_CUSTOM" H 2788 1100 50 0001 C CNN 339 | F 3 "" H 2750 1250 50 0000 C CNN 340 | 1 2750 1250 341 | -1 0 0 1 342 | $EndComp 343 | $Comp 344 | L GND #PWR011 345 | U 1 1 591F382E 346 | P 2750 1775 347 | F 0 "#PWR011" H 2750 1525 50 0001 C CNN 348 | F 1 "GND" H 2755 1602 50 0000 C CNN 349 | F 2 "" H 2750 1775 50 0000 C CNN 350 | F 3 "" H 2750 1775 50 0000 C CNN 351 | 1 2750 1775 352 | 1 0 0 -1 353 | $EndComp 354 | $Comp 355 | L GND #PWR012 356 | U 1 1 591F386C 357 | P 2250 1775 358 | F 0 "#PWR012" H 2250 1525 50 0001 C CNN 359 | F 1 "GND" H 2255 1602 50 0000 C CNN 360 | F 2 "" H 2250 1775 50 0000 C CNN 361 | F 3 "" H 2250 1775 50 0000 C CNN 362 | 1 2250 1775 363 | 1 0 0 -1 364 | $EndComp 365 | Text GLabel 6725 12900 0 60 Input ~ 0 366 | VIN 367 | Text GLabel 3500 950 2 60 Input ~ 0 368 | 3V3 369 | Text GLabel 4300 1600 0 60 Input ~ 0 370 | 3V3 371 | $Comp 372 | L R R10 373 | U 1 1 591F41BD 374 | P 7775 3275 375 | F 0 "R10" H 7845 3321 50 0000 L CNN 376 | F 1 "100K" H 7845 3230 50 0000 L CNN 377 | F 2 "custom:R_0402_CUSTOM" V 7705 3275 50 0001 C CNN 378 | F 3 "" H 7775 3275 50 0000 C CNN 379 | 1 7775 3275 380 | 0 1 1 0 381 | $EndComp 382 | $Comp 383 | L R R12 384 | U 1 1 591F45E8 385 | P 8200 3675 386 | F 0 "R12" H 8270 3721 50 0000 L CNN 387 | F 1 "47K" H 8270 3630 50 0000 L CNN 388 | F 2 "custom:R_0402_CUSTOM" V 8130 3675 50 0001 C CNN 389 | F 3 "" H 8200 3675 50 0000 C CNN 390 | 1 8200 3675 391 | -1 0 0 1 392 | $EndComp 393 | $Comp 394 | L C C23 395 | U 1 1 591F46ED 396 | P 8425 3675 397 | F 0 "C23" H 8540 3721 50 0000 L CNN 398 | F 1 "1uF" H 8540 3630 50 0000 L CNN 399 | F 2 "custom:C_0402_CUSTOM" H 8463 3525 50 0001 C CNN 400 | F 3 "" H 8425 3675 50 0000 C CNN 401 | 1 8425 3675 402 | 1 0 0 -1 403 | $EndComp 404 | $Comp 405 | L C C19 406 | U 1 1 591F47F5 407 | P 7500 3600 408 | F 0 "C19" H 7615 3646 50 0000 L CNN 409 | F 1 "470nF" H 7615 3555 50 0000 L CNN 410 | F 2 "custom:C_0402_CUSTOM" H 7538 3450 50 0001 C CNN 411 | F 3 "" H 7500 3600 50 0000 C CNN 412 | 1 7500 3600 413 | 1 0 0 -1 414 | $EndComp 415 | $Comp 416 | L GND #PWR013 417 | U 1 1 591F4CB1 418 | P 7500 3800 419 | F 0 "#PWR013" H 7500 3550 50 0001 C CNN 420 | F 1 "GND" H 7505 3627 50 0000 C CNN 421 | F 2 "" H 7500 3800 50 0000 C CNN 422 | F 3 "" H 7500 3800 50 0000 C CNN 423 | 1 7500 3800 424 | 1 0 0 -1 425 | $EndComp 426 | $Comp 427 | L C C22 428 | U 1 1 591F4E33 429 | P 8200 4050 430 | F 0 "C22" H 8315 4096 50 0000 L CNN 431 | F 1 "4.7uF" H 8315 4005 50 0000 L CNN 432 | F 2 "custom:C_0402_CUSTOM" H 8238 3900 50 0001 C CNN 433 | F 3 "" H 8200 4050 50 0000 C CNN 434 | F 4 "2426952" H 8200 4050 60 0001 C CNN "farnell" 435 | 1 8200 4050 436 | 1 0 0 -1 437 | $EndComp 438 | $Comp 439 | L GND #PWR014 440 | U 1 1 591F5208 441 | P 8300 4375 442 | F 0 "#PWR014" H 8300 4125 50 0001 C CNN 443 | F 1 "GND" H 8305 4202 50 0000 C CNN 444 | F 2 "" H 8300 4375 50 0000 C CNN 445 | F 3 "" H 8300 4375 50 0000 C CNN 446 | 1 8300 4375 447 | 1 0 0 -1 448 | $EndComp 449 | $Comp 450 | L SMD_CRYSTAL_4PIN X1 451 | U 1 1 591F52FE 452 | P 7625 4525 453 | F 0 "X1" H 7625 4918 60 0000 C CNN 454 | F 1 "8MHZ 20pF 30ppm" H 7625 4812 60 0000 C CNN 455 | F 2 "custom:crystal_5032" H 7625 4706 60 0000 C CNN 456 | F 3 "" H 7625 4525 60 0000 C CNN 457 | 1 7625 4525 458 | 1 0 0 -1 459 | $EndComp 460 | $Comp 461 | L C C18 462 | U 1 1 591F57E6 463 | P 7150 4750 464 | F 0 "C18" H 7265 4796 50 0000 L CNN 465 | F 1 "33pF" H 7265 4705 50 0000 L CNN 466 | F 2 "custom:C_0402_CUSTOM" H 7188 4600 50 0001 C CNN 467 | F 3 "" H 7150 4750 50 0000 C CNN 468 | 1 7150 4750 469 | 1 0 0 -1 470 | $EndComp 471 | $Comp 472 | L C C20 473 | U 1 1 591F5919 474 | P 8075 4750 475 | F 0 "C20" H 8190 4796 50 0000 L CNN 476 | F 1 "33pF" H 8190 4705 50 0000 L CNN 477 | F 2 "custom:C_0402_CUSTOM" H 8113 4600 50 0001 C CNN 478 | F 3 "" H 8075 4750 50 0000 C CNN 479 | 1 8075 4750 480 | 1 0 0 -1 481 | $EndComp 482 | $Comp 483 | L GND #PWR015 484 | U 1 1 591F59AC 485 | P 7625 5100 486 | F 0 "#PWR015" H 7625 4850 50 0001 C CNN 487 | F 1 "GND" H 7630 4927 50 0000 C CNN 488 | F 2 "" H 7625 5100 50 0000 C CNN 489 | F 3 "" H 7625 5100 50 0000 C CNN 490 | 1 7625 5100 491 | 1 0 0 -1 492 | $EndComp 493 | $Comp 494 | L C C16 495 | U 1 1 591F6558 496 | P 7025 3925 497 | F 0 "C16" H 7140 3971 50 0000 L CNN 498 | F 1 "470nF" H 7140 3880 50 0000 L CNN 499 | F 2 "custom:C_0402_CUSTOM" H 7063 3775 50 0001 C CNN 500 | F 3 "" H 7025 3925 50 0000 C CNN 501 | 1 7025 3925 502 | -1 0 0 1 503 | $EndComp 504 | $Comp 505 | L GND #PWR016 506 | U 1 1 591F6964 507 | P 7025 4150 508 | F 0 "#PWR016" H 7025 3900 50 0001 C CNN 509 | F 1 "GND" H 7030 3977 50 0000 C CNN 510 | F 2 "" H 7025 4150 50 0000 C CNN 511 | F 3 "" H 7025 4150 50 0000 C CNN 512 | 1 7025 4150 513 | 1 0 0 -1 514 | $EndComp 515 | $Comp 516 | L C C12 517 | U 1 1 591F6D86 518 | P 6675 4650 519 | F 0 "C12" H 6790 4696 50 0000 L CNN 520 | F 1 "470nF" H 6790 4605 50 0000 L CNN 521 | F 2 "custom:C_0402_CUSTOM" H 6713 4500 50 0001 C CNN 522 | F 3 "" H 6675 4650 50 0000 C CNN 523 | 1 6675 4650 524 | 1 0 0 -1 525 | $EndComp 526 | $Comp 527 | L GND #PWR017 528 | U 1 1 591F6E9B 529 | P 6675 4875 530 | F 0 "#PWR017" H 6675 4625 50 0001 C CNN 531 | F 1 "GND" H 6680 4702 50 0000 C CNN 532 | F 2 "" H 6675 4875 50 0000 C CNN 533 | F 3 "" H 6675 4875 50 0000 C CNN 534 | 1 6675 4875 535 | 1 0 0 -1 536 | $EndComp 537 | Text GLabel 6825 4425 2 60 Input ~ 0 538 | 3V3 539 | $Comp 540 | L C C17 541 | U 1 1 591F790D 542 | P 7125 5475 543 | F 0 "C17" H 7240 5521 50 0000 L CNN 544 | F 1 "2.2uF" H 7240 5430 50 0000 L CNN 545 | F 2 "custom:C_0402_CUSTOM" H 7163 5325 50 0001 C CNN 546 | F 3 "" H 7125 5475 50 0000 C CNN 547 | 1 7125 5475 548 | 0 1 1 0 549 | $EndComp 550 | $Comp 551 | L R R8 552 | U 1 1 591F7A1A 553 | P 7500 5475 554 | F 0 "R8" H 7570 5521 50 0000 L CNN 555 | F 1 "20K" H 7570 5430 50 0000 L CNN 556 | F 2 "custom:R_0402_CUSTOM" V 7430 5475 50 0001 C CNN 557 | F 3 "" H 7500 5475 50 0000 C CNN 558 | 1 7500 5475 559 | 0 1 1 0 560 | $EndComp 561 | $Comp 562 | L R R11 563 | U 1 1 591F7B2A 564 | P 8175 5475 565 | F 0 "R11" H 8245 5521 50 0000 L CNN 566 | F 1 "15K" H 8245 5430 50 0000 L CNN 567 | F 2 "custom:R_0402_CUSTOM" V 8105 5475 50 0001 C CNN 568 | F 3 "" H 8175 5475 50 0000 C CNN 569 | 1 8175 5475 570 | 0 1 1 0 571 | $EndComp 572 | $Comp 573 | L R R13 574 | U 1 1 591F7C07 575 | P 8625 5475 576 | F 0 "R13" H 8695 5521 50 0000 L CNN 577 | F 1 "5.1K" H 8695 5430 50 0000 L CNN 578 | F 2 "custom:R_0402_CUSTOM" V 8555 5475 50 0001 C CNN 579 | F 3 "" H 8625 5475 50 0000 C CNN 580 | 1 8625 5475 581 | 0 1 1 0 582 | $EndComp 583 | $Comp 584 | L C C21 585 | U 1 1 591F7CD9 586 | P 8175 5800 587 | F 0 "C21" H 8290 5846 50 0000 L CNN 588 | F 1 "3.3nF" H 8290 5755 50 0000 L CNN 589 | F 2 "custom:C_0402_CUSTOM" H 8213 5650 50 0001 C CNN 590 | F 3 "" H 8175 5800 50 0000 C CNN 591 | 1 8175 5800 592 | 0 1 1 0 593 | $EndComp 594 | $Comp 595 | L R R9 596 | U 1 1 591F7E18 597 | P 7750 5800 598 | F 0 "R9" H 7820 5846 50 0000 L CNN 599 | F 1 "510R" H 7820 5755 50 0000 L CNN 600 | F 2 "custom:R_0402_CUSTOM" V 7680 5800 50 0001 C CNN 601 | F 3 "" H 7750 5800 50 0000 C CNN 602 | 1 7750 5800 603 | -1 0 0 1 604 | $EndComp 605 | $Comp 606 | L GND #PWR018 607 | U 1 1 591F8AC3 608 | P 7750 6025 609 | F 0 "#PWR018" H 7750 5775 50 0001 C CNN 610 | F 1 "GND" H 7755 5852 50 0000 C CNN 611 | F 2 "" H 7750 6025 50 0000 C CNN 612 | F 3 "" H 7750 6025 50 0000 C CNN 613 | 1 7750 6025 614 | 1 0 0 -1 615 | $EndComp 616 | Text GLabel 9150 5475 2 60 Input ~ 0 617 | AUDIO 618 | $Comp 619 | L R R7 620 | U 1 1 591F93E5 621 | P 6575 5725 622 | F 0 "R7" H 6645 5771 50 0000 L CNN 623 | F 1 "51K" H 6645 5680 50 0000 L CNN 624 | F 2 "custom:R_0402_CUSTOM" V 6505 5725 50 0001 C CNN 625 | F 3 "" H 6575 5725 50 0000 C CNN 626 | 1 6575 5725 627 | -1 0 0 1 628 | $EndComp 629 | $Comp 630 | L R R4 631 | U 1 1 591F9510 632 | P 6175 5725 633 | F 0 "R4" H 6245 5771 50 0000 L CNN 634 | F 1 "100K" H 6245 5680 50 0000 L CNN 635 | F 2 "custom:R_0402_CUSTOM" V 6105 5725 50 0001 C CNN 636 | F 3 "" H 6175 5725 50 0000 C CNN 637 | 1 6175 5725 638 | -1 0 0 1 639 | $EndComp 640 | $Comp 641 | L R R5 642 | U 1 1 591F96B7 643 | P 6175 6200 644 | F 0 "R5" H 6245 6246 50 0000 L CNN 645 | F 1 "750R" H 6245 6155 50 0000 L CNN 646 | F 2 "custom:R_0402_CUSTOM" V 6105 6200 50 0001 C CNN 647 | F 3 "" H 6175 6200 50 0000 C CNN 648 | 1 6175 6200 649 | -1 0 0 1 650 | $EndComp 651 | $Comp 652 | L C C10 653 | U 1 1 591F97B3 654 | P 6175 6625 655 | F 0 "C10" H 6290 6671 50 0000 L CNN 656 | F 1 "10uF" H 6290 6580 50 0000 L CNN 657 | F 2 "custom:C_0402_CUSTOM" H 6213 6475 50 0001 C CNN 658 | F 3 "" H 6175 6625 50 0000 C CNN 659 | 1 6175 6625 660 | -1 0 0 1 661 | $EndComp 662 | $Comp 663 | L C C11 664 | U 1 1 591F990C 665 | P 6575 6325 666 | F 0 "C11" H 6690 6371 50 0000 L CNN 667 | F 1 "1uF" H 6690 6280 50 0000 L CNN 668 | F 2 "custom:C_0402_CUSTOM" H 6613 6175 50 0001 C CNN 669 | F 3 "" H 6575 6325 50 0000 C CNN 670 | 1 6575 6325 671 | 1 0 0 -1 672 | $EndComp 673 | $Comp 674 | L GND #PWR019 675 | U 1 1 591FA92D 676 | P 6175 6975 677 | F 0 "#PWR019" H 6175 6725 50 0001 C CNN 678 | F 1 "GND" H 6180 6802 50 0000 C CNN 679 | F 2 "" H 6175 6975 50 0000 C CNN 680 | F 3 "" H 6175 6975 50 0000 C CNN 681 | 1 6175 6975 682 | 1 0 0 -1 683 | $EndComp 684 | $Comp 685 | L GND #PWR020 686 | U 1 1 591FAA66 687 | P 6575 6975 688 | F 0 "#PWR020" H 6575 6725 50 0001 C CNN 689 | F 1 "GND" H 6580 6802 50 0000 C CNN 690 | F 2 "" H 6575 6975 50 0000 C CNN 691 | F 3 "" H 6575 6975 50 0000 C CNN 692 | 1 6575 6975 693 | 1 0 0 -1 694 | $EndComp 695 | NoConn ~ 5550 4475 696 | NoConn ~ 5250 4475 697 | NoConn ~ 5350 4475 698 | NoConn ~ 5450 4475 699 | $Comp 700 | L GND #PWR021 701 | U 1 1 591F8B34 702 | P 8900 6025 703 | F 0 "#PWR021" H 8900 5775 50 0001 C CNN 704 | F 1 "GND" H 8905 5852 50 0000 C CNN 705 | F 2 "" H 8900 6025 50 0000 C CNN 706 | F 3 "" H 8900 6025 50 0000 C CNN 707 | 1 8900 6025 708 | 1 0 0 -1 709 | $EndComp 710 | $Comp 711 | L C C24 712 | U 1 1 591F8916 713 | P 8900 5750 714 | F 0 "C24" H 9015 5796 50 0000 L CNN 715 | F 1 "10pF" H 9015 5705 50 0000 L CNN 716 | F 2 "custom:C_0402_CUSTOM" H 8938 5600 50 0001 C CNN 717 | F 3 "" H 8900 5750 50 0000 C CNN 718 | 1 8900 5750 719 | 1 0 0 -1 720 | $EndComp 721 | $Comp 722 | L R R3 723 | U 1 1 591FBC91 724 | P 5850 4875 725 | F 0 "R3" H 5920 4921 50 0000 L CNN 726 | F 1 "3K3" H 5920 4830 50 0000 L CNN 727 | F 2 "custom:R_0402_CUSTOM" V 5780 4875 50 0001 C CNN 728 | F 3 "" H 5850 4875 50 0000 C CNN 729 | 1 5850 4875 730 | 1 0 0 -1 731 | $EndComp 732 | $Comp 733 | L C C7 734 | U 1 1 591FBE3A 735 | P 5650 5250 736 | F 0 "C7" H 5765 5296 50 0000 L CNN 737 | F 1 "1uF" H 5765 5205 50 0000 L CNN 738 | F 2 "custom:C_0402_CUSTOM" H 5688 5100 50 0001 C CNN 739 | F 3 "" H 5650 5250 50 0000 C CNN 740 | 1 5650 5250 741 | 1 0 0 -1 742 | $EndComp 743 | $Comp 744 | L GND #PWR022 745 | U 1 1 591FC00D 746 | P 5650 6975 747 | F 0 "#PWR022" H 5650 6725 50 0001 C CNN 748 | F 1 "GND" H 5655 6802 50 0000 C CNN 749 | F 2 "" H 5650 6975 50 0000 C CNN 750 | F 3 "" H 5650 6975 50 0000 C CNN 751 | 1 5650 6975 752 | 1 0 0 -1 753 | $EndComp 754 | Text GLabel 6125 4675 2 60 Input ~ 0 755 | 3V3 756 | $Comp 757 | L RTC6705 U2 758 | U 1 1 591EFC09 759 | P 5500 2575 760 | F 0 "U2" H 5475 1850 60 0000 L CNN 761 | F 1 "RTC6705" H 5350 1725 60 0000 L CNN 762 | F 2 "custom:QFN40_6x6_RTC" H 6200 2625 60 0001 C CNN 763 | F 3 "" H 6200 2625 60 0000 C CNN 764 | 1 5500 2575 765 | 1 0 0 -1 766 | $EndComp 767 | $Comp 768 | L C C5 769 | U 1 1 591FD31E 770 | P 5200 4950 771 | F 0 "C5" H 5315 4996 50 0000 L CNN 772 | F 1 "20pF" H 5315 4905 50 0000 L CNN 773 | F 2 "custom:C_0402_CUSTOM" H 5238 4800 50 0001 C CNN 774 | F 3 "" H 5200 4950 50 0000 C CNN 775 | 1 5200 4950 776 | -1 0 0 1 777 | $EndComp 778 | $Comp 779 | L C C6 780 | U 1 1 591FD4F2 781 | P 5200 5900 782 | F 0 "C6" H 5315 5946 50 0000 L CNN 783 | F 1 "6.2pF" H 5315 5855 50 0000 L CNN 784 | F 2 "custom:C_0402_CUSTOM" H 5238 5750 50 0001 C CNN 785 | F 3 "" H 5200 5900 50 0000 C CNN 786 | 1 5200 5900 787 | -1 0 0 1 788 | $EndComp 789 | $Comp 790 | L R R2 791 | U 1 1 591FD800 792 | P 5200 5375 793 | F 0 "R2" H 5270 5421 50 0000 L CNN 794 | F 1 "15K" H 5270 5330 50 0000 L CNN 795 | F 2 "custom:R_0402_CUSTOM" V 5130 5375 50 0001 C CNN 796 | F 3 "" H 5200 5375 50 0000 C CNN 797 | 1 5200 5375 798 | -1 0 0 1 799 | $EndComp 800 | $Comp 801 | L GND #PWR023 802 | U 1 1 591FDF87 803 | P 5200 6975 804 | F 0 "#PWR023" H 5200 6725 50 0001 C CNN 805 | F 1 "GND" H 5205 6802 50 0000 C CNN 806 | F 2 "" H 5200 6975 50 0000 C CNN 807 | F 3 "" H 5200 6975 50 0000 C CNN 808 | 1 5200 6975 809 | 1 0 0 -1 810 | $EndComp 811 | $Comp 812 | L R R29 813 | U 1 1 59243E2B 814 | P 4000 3925 815 | F 0 "R29" H 4070 3971 50 0000 L CNN 816 | F 1 "510K" H 4070 3880 50 0000 L CNN 817 | F 2 "custom:R_0402_CUSTOM" V 3930 3925 50 0001 C CNN 818 | F 3 "" H 4000 3925 50 0000 C CNN 819 | 1 4000 3925 820 | -1 0 0 1 821 | $EndComp 822 | $Comp 823 | L R R30 824 | U 1 1 59244316 825 | P 4000 4625 826 | F 0 "R30" H 4070 4671 50 0000 L CNN 827 | F 1 "560K" H 4070 4580 50 0000 L CNN 828 | F 2 "custom:R_0402_CUSTOM" V 3930 4625 50 0001 C CNN 829 | F 3 "" H 4000 4625 50 0000 C CNN 830 | 1 4000 4625 831 | -1 0 0 1 832 | $EndComp 833 | $Comp 834 | L GND #PWR024 835 | U 1 1 592444F0 836 | P 4000 4875 837 | F 0 "#PWR024" H 4000 4625 50 0001 C CNN 838 | F 1 "GND" H 4005 4702 50 0000 C CNN 839 | F 2 "" H 4000 4875 50 0000 C CNN 840 | F 3 "" H 4000 4875 50 0000 C CNN 841 | 1 4000 4875 842 | 1 0 0 -1 843 | $EndComp 844 | $Comp 845 | L C C34 846 | U 1 1 59244585 847 | P 3600 3900 848 | F 0 "C34" H 3715 3946 50 0000 L CNN 849 | F 1 "1uF" H 3715 3855 50 0000 L CNN 850 | F 2 "custom:C_0402_CUSTOM" H 3638 3750 50 0001 C CNN 851 | F 3 "" H 3600 3900 50 0000 C CNN 852 | 1 3600 3900 853 | -1 0 0 1 854 | $EndComp 855 | $Comp 856 | L GND #PWR025 857 | U 1 1 592446DE 858 | P 3600 4125 859 | F 0 "#PWR025" H 3600 3875 50 0001 C CNN 860 | F 1 "GND" H 3605 3952 50 0000 C CNN 861 | F 2 "" H 3600 4125 50 0000 C CNN 862 | F 3 "" H 3600 4125 50 0000 C CNN 863 | 1 3600 4125 864 | 1 0 0 -1 865 | $EndComp 866 | Text GLabel 3275 3675 0 60 Input ~ 0 867 | 3V3 868 | $Comp 869 | L R R26 870 | U 1 1 59245C83 871 | P 3325 4400 872 | F 0 "R26" H 3395 4446 50 0000 L CNN 873 | F 1 "3K3" H 3395 4355 50 0000 L CNN 874 | F 2 "custom:R_0402_CUSTOM" V 3255 4400 50 0001 C CNN 875 | F 3 "" H 3325 4400 50 0000 C CNN 876 | 1 3325 4400 877 | 0 1 1 0 878 | $EndComp 879 | $Comp 880 | L C C33 881 | U 1 1 5924609B 882 | P 2875 4400 883 | F 0 "C33" H 2990 4446 50 0000 L CNN 884 | F 1 "4.7uF" H 2990 4355 50 0000 L CNN 885 | F 2 "custom:C_0402_CUSTOM" H 2913 4250 50 0001 C CNN 886 | F 3 "" H 2875 4400 50 0000 C CNN 887 | 1 2875 4400 888 | 0 1 1 0 889 | $EndComp 890 | $Comp 891 | L C C32 892 | U 1 1 592463E1 893 | P 2400 4400 894 | F 0 "C32" H 2515 4446 50 0000 L CNN 895 | F 1 "56pF" H 2515 4355 50 0000 L CNN 896 | F 2 "custom:C_0402_CUSTOM" H 2438 4250 50 0001 C CNN 897 | F 3 "" H 2400 4400 50 0000 C CNN 898 | 1 2400 4400 899 | 0 -1 -1 0 900 | $EndComp 901 | $Comp 902 | L L L5 903 | U 1 1 59247645 904 | P 1950 4400 905 | F 0 "L5" H 2003 4446 50 0000 L CNN 906 | F 1 "820nH" H 2003 4355 50 0000 L CNN 907 | F 2 "custom:L_0402_CUSTOM" H 1950 4400 50 0001 C CNN 908 | F 3 "" H 1950 4400 50 0000 C CNN 909 | 1 1950 4400 910 | 0 1 1 0 911 | $EndComp 912 | $Comp 913 | L L L4 914 | U 1 1 59247AF3 915 | P 1400 4400 916 | F 0 "L4" H 1453 4446 50 0000 L CNN 917 | F 1 "820nH" H 1453 4355 50 0000 L CNN 918 | F 2 "custom:L_0402_CUSTOM" H 1400 4400 50 0001 C CNN 919 | F 3 "" H 1400 4400 50 0000 C CNN 920 | 1 1400 4400 921 | 0 1 1 0 922 | $EndComp 923 | $Comp 924 | L C C31 925 | U 1 1 59247BE9 926 | P 1925 4000 927 | F 0 "C31" H 2040 4046 50 0000 L CNN 928 | F 1 "680pF" H 2040 3955 50 0000 L CNN 929 | F 2 "custom:C_0402_CUSTOM" H 1963 3850 50 0001 C CNN 930 | F 3 "" H 1925 4000 50 0000 C CNN 931 | 1 1925 4000 932 | 0 1 1 0 933 | $EndComp 934 | $Comp 935 | L C C30 936 | U 1 1 59247E8D 937 | P 1925 3525 938 | F 0 "C30" H 2040 3571 50 0000 L CNN 939 | F 1 "47pF" H 2040 3480 50 0000 L CNN 940 | F 2 "custom:C_0402_CUSTOM" H 1963 3375 50 0001 C CNN 941 | F 3 "" H 1925 3525 50 0000 C CNN 942 | 1 1925 3525 943 | 0 1 1 0 944 | $EndComp 945 | $Comp 946 | L C C26 947 | U 1 1 5924800C 948 | P 1400 3525 949 | F 0 "C26" H 1515 3571 50 0000 L CNN 950 | F 1 "100pF" H 1515 3480 50 0000 L CNN 951 | F 2 "custom:C_0402_CUSTOM" H 1438 3375 50 0001 C CNN 952 | F 3 "" H 1400 3525 50 0000 C CNN 953 | 1 1400 3525 954 | 0 1 1 0 955 | $EndComp 956 | $Comp 957 | L C C27 958 | U 1 1 592488BB 959 | P 1425 4000 960 | F 0 "C27" H 1540 4046 50 0000 L CNN 961 | F 1 "820pF" H 1540 3955 50 0000 L CNN 962 | F 2 "custom:C_0402_CUSTOM" H 1463 3850 50 0001 C CNN 963 | F 3 "" H 1425 4000 50 0000 C CNN 964 | 1 1425 4000 965 | 0 1 1 0 966 | $EndComp 967 | $Comp 968 | L C C29 969 | U 1 1 59249B66 970 | P 1675 4850 971 | F 0 "C29" H 1790 4896 50 0000 L CNN 972 | F 1 "820pF" H 1790 4805 50 0000 L CNN 973 | F 2 "custom:C_0402_CUSTOM" H 1713 4700 50 0001 C CNN 974 | F 3 "" H 1675 4850 50 0000 C CNN 975 | 1 1675 4850 976 | -1 0 0 1 977 | $EndComp 978 | $Comp 979 | L C C25 980 | U 1 1 59249CA4 981 | P 1200 4850 982 | F 0 "C25" H 1315 4896 50 0000 L CNN 983 | F 1 "10pF" H 1315 4805 50 0000 L CNN 984 | F 2 "custom:C_0402_CUSTOM" H 1238 4700 50 0001 C CNN 985 | F 3 "" H 1200 4850 50 0000 C CNN 986 | 1 1200 4850 987 | -1 0 0 1 988 | $EndComp 989 | $Comp 990 | L GND #PWR026 991 | U 1 1 5924A4FC 992 | P 1675 5075 993 | F 0 "#PWR026" H 1675 4825 50 0001 C CNN 994 | F 1 "GND" H 1680 4902 50 0000 C CNN 995 | F 2 "" H 1675 5075 50 0000 C CNN 996 | F 3 "" H 1675 5075 50 0000 C CNN 997 | 1 1675 5075 998 | 1 0 0 -1 999 | $EndComp 1000 | $Comp 1001 | L GND #PWR027 1002 | U 1 1 5924A5B5 1003 | P 1200 5075 1004 | F 0 "#PWR027" H 1200 4825 50 0001 C CNN 1005 | F 1 "GND" H 1205 4902 50 0000 C CNN 1006 | F 2 "" H 1200 5075 50 0000 C CNN 1007 | F 3 "" H 1200 5075 50 0000 C CNN 1008 | 1 1200 5075 1009 | 1 0 0 -1 1010 | $EndComp 1011 | $Comp 1012 | L R R14 1013 | U 1 1 5924A710 1014 | P 2200 4825 1015 | F 0 "R14" H 2270 4871 50 0000 L CNN 1016 | F 1 "82R" H 2270 4780 50 0000 L CNN 1017 | F 2 "custom:R_0402_CUSTOM" V 2130 4825 50 0001 C CNN 1018 | F 3 "" H 2200 4825 50 0000 C CNN 1019 | 1 2200 4825 1020 | -1 0 0 1 1021 | $EndComp 1022 | $Comp 1023 | L GND #PWR028 1024 | U 1 1 5924AA11 1025 | P 2200 5075 1026 | F 0 "#PWR028" H 2200 4825 50 0001 C CNN 1027 | F 1 "GND" H 2205 4902 50 0000 C CNN 1028 | F 2 "" H 2200 5075 50 0000 C CNN 1029 | F 3 "" H 2200 5075 50 0000 C CNN 1030 | 1 2200 5075 1031 | 1 0 0 -1 1032 | $EndComp 1033 | $Comp 1034 | L R R18 1035 | U 1 1 5924AEC9 1036 | P 2625 4825 1037 | F 0 "R18" H 2695 4871 50 0000 L CNN 1038 | F 1 "200R" H 2695 4780 50 0000 L CNN 1039 | F 2 "custom:R_0402_CUSTOM" V 2555 4825 50 0001 C CNN 1040 | F 3 "" H 2625 4825 50 0000 C CNN 1041 | 1 2625 4825 1042 | -1 0 0 1 1043 | $EndComp 1044 | $Comp 1045 | L GND #PWR029 1046 | U 1 1 5924B1A8 1047 | P 2625 5075 1048 | F 0 "#PWR029" H 2625 4825 50 0001 C CNN 1049 | F 1 "GND" H 2630 4902 50 0000 C CNN 1050 | F 2 "" H 2625 5075 50 0000 C CNN 1051 | F 3 "" H 2625 5075 50 0000 C CNN 1052 | 1 2625 5075 1053 | 1 0 0 -1 1054 | $EndComp 1055 | $Comp 1056 | L R R17 1057 | U 1 1 5924B96D 1058 | P 2400 3525 1059 | F 0 "R17" H 2470 3571 50 0000 L CNN 1060 | F 1 "1.2K" H 2470 3480 50 0000 L CNN 1061 | F 2 "custom:R_0402_CUSTOM" V 2330 3525 50 0001 C CNN 1062 | F 3 "" H 2400 3525 50 0000 C CNN 1063 | 1 2400 3525 1064 | 0 1 1 0 1065 | $EndComp 1066 | Text GLabel 900 4400 0 60 Input ~ 0 1067 | VIDEO_OUT 1068 | $Comp 1069 | L R R32 1070 | U 1 1 5924C5CE 1071 | P 4275 2775 1072 | F 0 "R32" H 4345 2821 50 0000 L CNN 1073 | F 1 "1K" H 4345 2730 50 0000 L CNN 1074 | F 2 "custom:R_0402_CUSTOM" V 4205 2775 50 0001 C CNN 1075 | F 3 "" H 4275 2775 50 0000 C CNN 1076 | 1 4275 2775 1077 | -1 0 0 1 1078 | $EndComp 1079 | Text GLabel 3125 2450 0 60 Input ~ 0 1080 | 3V3 1081 | NoConn ~ 4450 3175 1082 | NoConn ~ 4450 3275 1083 | Text GLabel 3275 3375 0 60 Input ~ 0 1084 | SPI_MOSI 1085 | Text GLabel 3275 3475 0 60 Input ~ 0 1086 | SPI_CS 1087 | Text GLabel 3275 3575 0 60 Input ~ 0 1088 | SPI_SCK 1089 | $Comp 1090 | L RESONATOR X2 1091 | U 1 1 59246809 1092 | P 1400 10075 1093 | F 0 "X2" H 1250 9875 60 0000 C CNN 1094 | F 1 "8MHz" H 1225 9950 60 0000 C CNN 1095 | F 2 "custom:CSTCE_G_A" H 1400 10075 60 0001 C CNN 1096 | F 3 "" H 1400 10075 60 0000 C CNN 1097 | F 4 "2443269" H 1400 10075 60 0001 C CNN "Farnell" 1098 | 1 1400 10075 1099 | 0 1 1 0 1100 | $EndComp 1101 | $Comp 1102 | L GND #PWR030 1103 | U 1 1 59246869 1104 | P 5550 11450 1105 | F 0 "#PWR030" H 5550 11200 50 0001 C CNN 1106 | F 1 "GND" H 5555 11277 50 0000 C CNN 1107 | F 2 "" H 5550 11450 50 0001 C CNN 1108 | F 3 "" H 5550 11450 50 0001 C CNN 1109 | 1 5550 11450 1110 | 1 0 0 -1 1111 | $EndComp 1112 | $Comp 1113 | L C C36 1114 | U 1 1 5924687E 1115 | P 6175 8225 1116 | F 0 "C36" H 6290 8271 50 0000 L CNN 1117 | F 1 "100nF" H 6290 8180 50 0000 L CNN 1118 | F 2 "custom:C_0402_CUSTOM" H 6213 8075 50 0001 C CNN 1119 | F 3 "" H 6175 8225 50 0001 C CNN 1120 | 1 6175 8225 1121 | 1 0 0 1 1122 | $EndComp 1123 | Text GLabel 1400 5800 0 60 Input ~ 0 1124 | UART_TX 1125 | Text GLabel 1400 5950 0 60 Input ~ 0 1126 | UART_RX 1127 | Text GLabel 1400 6250 0 60 Input ~ 0 1128 | SWDATA 1129 | Text GLabel 1400 6400 0 60 Input ~ 0 1130 | SWCLK 1131 | Text GLabel 1400 6550 0 60 Input ~ 0 1132 | VIDEO_IN 1133 | Text GLabel 1400 6700 0 60 Input ~ 0 1134 | VIN 1135 | Text GLabel 1400 6850 0 60 Input ~ 0 1136 | GND 1137 | $Comp 1138 | L TP TP8 1139 | U 1 1 5924689A 1140 | P 1900 6850 1141 | F 0 "TP8" H 1900 6700 60 0001 C CNN 1142 | F 1 "GND" H 1999 6850 60 0000 L CNN 1143 | F 2 "custom:TP_1.5x1.0" H 1900 6850 60 0001 C CNN 1144 | F 3 "" H 1900 6850 60 0000 C CNN 1145 | 1 1900 6850 1146 | 1 0 0 -1 1147 | $EndComp 1148 | $Comp 1149 | L TP TP7 1150 | U 1 1 592468A0 1151 | P 1900 6700 1152 | F 0 "TP7" H 1900 6550 60 0001 C CNN 1153 | F 1 "VCC" H 1999 6700 60 0000 L CNN 1154 | F 2 "custom:TP_1.5x1.0" H 1900 6700 60 0001 C CNN 1155 | F 3 "" H 1900 6700 60 0000 C CNN 1156 | 1 1900 6700 1157 | 1 0 0 -1 1158 | $EndComp 1159 | $Comp 1160 | L TP TP6 1161 | U 1 1 592468A6 1162 | P 1900 6550 1163 | F 0 "TP6" H 1900 6400 60 0001 C CNN 1164 | F 1 "VIDEO" H 1999 6550 60 0000 L CNN 1165 | F 2 "custom:TP_1.5x1.0" H 1900 6550 60 0001 C CNN 1166 | F 3 "" H 1900 6550 60 0000 C CNN 1167 | 1 1900 6550 1168 | 1 0 0 -1 1169 | $EndComp 1170 | $Comp 1171 | L TP TP5 1172 | U 1 1 592468AC 1173 | P 1900 6400 1174 | F 0 "TP5" H 1900 6250 60 0001 C CNN 1175 | F 1 "SWCLK" H 1999 6400 60 0000 L CNN 1176 | F 2 "custom:TP_smd_0.5x0.3" H 1900 6400 60 0001 C CNN 1177 | F 3 "" H 1900 6400 60 0000 C CNN 1178 | 1 1900 6400 1179 | 1 0 0 -1 1180 | $EndComp 1181 | $Comp 1182 | L TP TP4 1183 | U 1 1 592468B2 1184 | P 1900 6250 1185 | F 0 "TP4" H 1900 6100 60 0001 C CNN 1186 | F 1 "SWDATA" H 1999 6250 60 0000 L CNN 1187 | F 2 "custom:TP_smd_0.5x0.3" H 1900 6250 60 0001 C CNN 1188 | F 3 "" H 1900 6250 60 0000 C CNN 1189 | 1 1900 6250 1190 | 1 0 0 -1 1191 | $EndComp 1192 | $Comp 1193 | L TP TP2 1194 | U 1 1 592468B8 1195 | P 1900 5950 1196 | F 0 "TP2" H 1900 5800 60 0001 C CNN 1197 | F 1 "UART_RX" H 1999 5950 60 0000 L CNN 1198 | F 2 "custom:TP_1.5x1.0" H 1900 5950 60 0001 C CNN 1199 | F 3 "" H 1900 5950 60 0000 C CNN 1200 | 1 1900 5950 1201 | 1 0 0 -1 1202 | $EndComp 1203 | $Comp 1204 | L TP TP1 1205 | U 1 1 592468BE 1206 | P 1900 5800 1207 | F 0 "TP1" H 1900 5650 60 0001 C CNN 1208 | F 1 "UART_TX" H 1999 5800 60 0000 L CNN 1209 | F 2 "custom:TP_1.5x1.0" H 1900 5800 60 0001 C CNN 1210 | F 3 "" H 1900 5800 60 0000 C CNN 1211 | 1 1900 5800 1212 | 1 0 0 -1 1213 | $EndComp 1214 | $Comp 1215 | L GND #PWR031 1216 | U 1 1 59249D07 1217 | P 6625 8575 1218 | F 0 "#PWR031" H 6625 8325 50 0001 C CNN 1219 | F 1 "GND" H 6630 8402 50 0000 C CNN 1220 | F 2 "" H 6625 8575 50 0000 C CNN 1221 | F 3 "" H 6625 8575 50 0000 C CNN 1222 | 1 6625 8575 1223 | -1 0 0 -1 1224 | $EndComp 1225 | Text GLabel 7875 7950 2 60 Input ~ 0 1226 | 3V3 1227 | $Comp 1228 | L C C38 1229 | U 1 1 5924BFEE 1230 | P 6625 8225 1231 | F 0 "C38" H 6740 8271 50 0000 L CNN 1232 | F 1 "10nF" H 6740 8180 50 0000 L CNN 1233 | F 2 "custom:C_0402_CUSTOM" H 6663 8075 50 0001 C CNN 1234 | F 3 "" H 6625 8225 50 0001 C CNN 1235 | F 4 "2627340" H 6625 8225 60 0001 C CNN "Farnell" 1236 | 1 6625 8225 1237 | 1 0 0 1 1238 | $EndComp 1239 | $Comp 1240 | L C C39 1241 | U 1 1 5924CDEE 1242 | P 7050 8225 1243 | F 0 "C39" H 7165 8271 50 0000 L CNN 1244 | F 1 "1uF" H 7165 8180 50 0000 L CNN 1245 | F 2 "custom:C_0402_CUSTOM" H 7088 8075 50 0001 C CNN 1246 | F 3 "" H 7050 8225 50 0000 C CNN 1247 | 1 7050 8225 1248 | 1 0 0 1 1249 | $EndComp 1250 | $Comp 1251 | L TP TP3 1252 | U 1 1 592549B6 1253 | P 1900 6100 1254 | F 0 "TP3" H 1900 5950 60 0001 C CNN 1255 | F 1 "SWRESET" H 1999 6100 60 0000 L CNN 1256 | F 2 "custom:TP_smd_0.5x0.3" H 1900 6100 60 0001 C CNN 1257 | F 3 "" H 1900 6100 60 0000 C CNN 1258 | 1 1900 6100 1259 | 1 0 0 -1 1260 | $EndComp 1261 | Text GLabel 1400 6100 0 60 Input ~ 0 1262 | SWRESET 1263 | Text GLabel 2300 14450 0 60 Input ~ 0 1264 | VIDEO_OVERLAY_BLACK 1265 | $Comp 1266 | L C C35 1267 | U 1 1 59258F33 1268 | P 4000 14925 1269 | F 0 "C35" H 4115 14971 50 0000 L CNN 1270 | F 1 "100nF" H 4115 14880 50 0000 L CNN 1271 | F 2 "custom:C_0402_CUSTOM" H 4038 14775 50 0001 C CNN 1272 | F 3 "" H 4000 14925 50 0001 C CNN 1273 | F 4 "2627340" H 4000 14925 60 0001 C CNN "Farnell" 1274 | 1 4000 14925 1275 | 0 1 1 0 1276 | $EndComp 1277 | $Comp 1278 | L C C28 1279 | U 1 1 59267725 1280 | P 1675 1350 1281 | F 0 "C28" H 1790 1396 50 0000 L CNN 1282 | F 1 "1uF / 25V" H 1790 1305 50 0000 L CNN 1283 | F 2 "custom:C_0603_CUSTOM" H 1713 1200 50 0001 C CNN 1284 | F 3 "" H 1675 1350 50 0001 C CNN 1285 | F 4 "2346884" H 1675 1350 60 0001 C CNN "Farnell" 1286 | 1 1675 1350 1287 | 1 0 0 -1 1288 | $EndComp 1289 | Text GLabel 10100 10100 2 60 Input ~ 0 1290 | VIDEO_IN 1291 | $Comp 1292 | L R R23 1293 | U 1 1 593084E7 1294 | P 9800 10000 1295 | F 0 "R23" H 9870 10046 50 0000 L CNN 1296 | F 1 "10K" H 9870 9955 50 0000 L CNN 1297 | F 2 "custom:R_0402_CUSTOM" V 9730 10000 50 0001 C CNN 1298 | F 3 "" H 9800 10000 50 0001 C CNN 1299 | F 4 "9331271" H 9800 10000 60 0001 C CNN "Farnell" 1300 | 1 9800 10000 1301 | 0 -1 -1 0 1302 | $EndComp 1303 | Text GLabel 9875 10500 2 60 Input ~ 0 1304 | VIDEO_OVERLAY_WHITE 1305 | Text GLabel 1600 10700 0 60 Input ~ 0 1306 | VIDEO_OVERLAY_BLACK 1307 | Text GLabel 9875 10800 2 60 Input ~ 0 1308 | LED 1309 | Text GLabel 9575 9700 2 60 Input ~ 0 1310 | UART_RX 1311 | Text GLabel 9875 11050 2 60 Input ~ 0 1312 | SWCLK 1313 | Text GLabel 9875 10700 2 60 Input ~ 0 1314 | SWDATA 1315 | $Comp 1316 | L R R22 1317 | U 1 1 59312A24 1318 | P 6100 13725 1319 | F 0 "R22" H 6170 13771 50 0000 L CNN 1320 | F 1 "1k37" H 6170 13680 50 0000 L CNN 1321 | F 2 "custom:R_0402_CUSTOM" V 6030 13725 50 0001 C CNN 1322 | F 3 "" H 6100 13725 50 0001 C CNN 1323 | F 4 "2072620" H 6100 13725 60 0001 C CNN "Farnell" 1324 | 1 6100 13725 1325 | 1 0 0 1 1326 | $EndComp 1327 | $Comp 1328 | L R R24 1329 | U 1 1 59312A2B 1330 | P 6000 14025 1331 | F 0 "R24" H 6070 14071 50 0000 L CNN 1332 | F 1 "681" H 6070 13980 50 0000 L CNN 1333 | F 2 "custom:R_0402_CUSTOM" V 5930 14025 50 0001 C CNN 1334 | F 3 "" H 6000 14025 50 0001 C CNN 1335 | F 4 "2073206" H 6000 14025 60 0001 C CNN "Farnell" 1336 | 1 6000 14025 1337 | 1 0 0 1 1338 | $EndComp 1339 | $Comp 1340 | L R R33 1341 | U 1 1 59312A32 1342 | P 5900 14325 1343 | F 0 "R33" H 5970 14371 50 0000 L CNN 1344 | F 1 "348" H 5970 14280 50 0000 L CNN 1345 | F 2 "custom:R_0402_CUSTOM" V 5830 14325 50 0001 C CNN 1346 | F 3 "" H 5900 14325 50 0001 C CNN 1347 | F 4 "2072948" H 5900 14325 60 0001 C CNN "Farnell" 1348 | 1 5900 14325 1349 | 1 0 0 1 1350 | $EndComp 1351 | $Comp 1352 | L R R34 1353 | U 1 1 59312A39 1354 | P 5800 14675 1355 | F 0 "R34" H 5870 14721 50 0000 L CNN 1356 | F 1 "169" H 5870 14630 50 0000 L CNN 1357 | F 2 "custom:R_0402_CUSTOM" V 5730 14675 50 0001 C CNN 1358 | F 3 "" H 5800 14675 50 0001 C CNN 1359 | F 4 "1170709" H 5800 14675 60 0001 C CNN "Farnell" 1360 | 1 5800 14675 1361 | 1 0 0 1 1362 | $EndComp 1363 | Text GLabel 5525 15150 0 60 Input ~ 0 1364 | V_BLACK 1365 | Text Notes 9225 8825 0 60 ~ 0 1366 | Requiv = voltage div 3.3->1.5V = 90Ohm\nRequiv = 8R / 15 -> R = 168Ohm 1367 | $Comp 1368 | L R R16 1369 | U 1 1 593180CA 1370 | P 1475 12675 1371 | F 0 "R16" H 1545 12721 50 0000 L CNN 1372 | F 1 "4R" H 1545 12630 50 0000 L CNN 1373 | F 2 "custom:R_0402_CUSTOM" V 1405 12675 50 0001 C CNN 1374 | F 3 "" H 1475 12675 50 0001 C CNN 1375 | F 4 "9331271" H 1475 12675 60 0001 C CNN "Farnell" 1376 | 1 1475 12675 1377 | 1 0 0 -1 1378 | $EndComp 1379 | $Comp 1380 | L R R19 1381 | U 1 1 593180D1 1382 | P 1725 12925 1383 | F 0 "R19" H 1795 12971 50 0000 L CNN 1384 | F 1 "2R" H 1795 12880 50 0000 L CNN 1385 | F 2 "custom:R_0402_CUSTOM" V 1655 12925 50 0001 C CNN 1386 | F 3 "" H 1725 12925 50 0001 C CNN 1387 | F 4 "9331271" H 1725 12925 60 0001 C CNN "Farnell" 1388 | 1 1725 12925 1389 | 1 0 0 -1 1390 | $EndComp 1391 | $Comp 1392 | L R R21 1393 | U 1 1 593180D8 1394 | P 1925 12650 1395 | F 0 "R21" H 1995 12696 50 0000 L CNN 1396 | F 1 "R" H 1995 12605 50 0000 L CNN 1397 | F 2 "custom:R_0402_CUSTOM" V 1855 12650 50 0001 C CNN 1398 | F 3 "" H 1925 12650 50 0001 C CNN 1399 | F 4 "9331271" H 1925 12650 60 0001 C CNN "Farnell" 1400 | 1 1925 12650 1401 | 1 0 0 -1 1402 | $EndComp 1403 | Text GLabel 2075 13200 2 60 Input ~ 0 1404 | V_WHITE 1405 | $Comp 1406 | L STM32F301K8Ux U4 1407 | U 1 1 592FE59A 1408 | P 5600 10200 1409 | F 0 "U4" H 5600 11578 50 0000 C CNN 1410 | F 1 "STM32F301K8Ux" H 5600 11487 50 0000 C CNN 1411 | F 2 "custom:UFQFPN32" H 9400 11275 50 0001 R TNN 1412 | F 3 "" H 5600 10200 50 0001 C CNN 1413 | F 4 "2424414" H 5600 10200 60 0001 C CNN "farnell" 1414 | 1 5600 10200 1415 | 1 0 0 -1 1416 | $EndComp 1417 | Text GLabel 10100 9900 2 60 Input ~ 0 1418 | SPI_MOSI 1419 | Text GLabel 9575 9500 2 60 Input ~ 0 1420 | SPI_SCK 1421 | Text GLabel 9575 9400 2 60 Input ~ 0 1422 | SPI_CS 1423 | $Comp 1424 | L R R25 1425 | U 1 1 59322760 1426 | P 9700 7850 1427 | F 0 "R25" H 9770 7896 50 0000 L CNN 1428 | F 1 "47R" H 9770 7805 50 0000 L CNN 1429 | F 2 "custom:R_0402_CUSTOM" V 9630 7850 50 0001 C CNN 1430 | F 3 "" H 9700 7850 50 0001 C CNN 1431 | F 4 "9331271" H 9700 7850 60 0001 C CNN "Farnell" 1432 | 1 9700 7850 1433 | 0 -1 -1 0 1434 | $EndComp 1435 | $Comp 1436 | L LED D1 1437 | U 1 1 59322767 1438 | P 10100 7875 1439 | F 0 "D1" H 10091 8091 50 0000 C CNN 1440 | F 1 "LED" H 10091 8000 50 0000 C CNN 1441 | F 2 "custom:L_0402_CUSTOM" H 10100 7875 50 0001 C CNN 1442 | F 3 "" H 10100 7875 50 0001 C CNN 1443 | F 4 "1908052" H 10100 7875 60 0001 C CNN "Farnell" 1444 | 1 10100 7875 1445 | -1 0 0 1 1446 | $EndComp 1447 | $Comp 1448 | L GND #PWR032 1449 | U 1 1 5932276D 1450 | P 10375 7875 1451 | F 0 "#PWR032" H 10375 7625 50 0001 C CNN 1452 | F 1 "GND" H 10380 7702 50 0000 C CNN 1453 | F 2 "" H 10375 7875 50 0001 C CNN 1454 | F 3 "" H 10375 7875 50 0001 C CNN 1455 | 1 10375 7875 1456 | 1 0 0 -1 1457 | $EndComp 1458 | $Comp 1459 | L GND #PWR033 1460 | U 1 1 59324EAD 1461 | P 1125 9650 1462 | F 0 "#PWR033" H 1125 9400 50 0001 C CNN 1463 | F 1 "GND" H 1130 9477 50 0000 C CNN 1464 | F 2 "" H 1125 9650 50 0001 C CNN 1465 | F 3 "" H 1125 9650 50 0001 C CNN 1466 | 1 1125 9650 1467 | 1 0 0 -1 1468 | $EndComp 1469 | $Comp 1470 | L R R20 1471 | U 1 1 59324EB4 1472 | P 1425 9600 1473 | F 0 "R20" H 1495 9646 50 0000 L CNN 1474 | F 1 "10k" H 1495 9555 50 0000 L CNN 1475 | F 2 "custom:R_0402_CUSTOM" V 1355 9600 50 0001 C CNN 1476 | F 3 "" H 1425 9600 50 0001 C CNN 1477 | F 4 "1358069" H 1425 9600 60 0001 C CNN "Farnell" 1478 | 1 1425 9600 1479 | 0 1 1 0 1480 | $EndComp 1481 | Text GLabel 1375 9400 0 60 Input ~ 0 1482 | SWRESET 1483 | $Comp 1484 | L GND #PWR034 1485 | U 1 1 5932BE66 1486 | P 1150 10100 1487 | F 0 "#PWR034" H 1150 9850 50 0001 C CNN 1488 | F 1 "GND" H 1155 9927 50 0000 C CNN 1489 | F 2 "" H 1150 10100 50 0001 C CNN 1490 | F 3 "" H 1150 10100 50 0001 C CNN 1491 | 1 1150 10100 1492 | 1 0 0 -1 1493 | $EndComp 1494 | $Comp 1495 | L C C37 1496 | U 1 1 5932F7A2 1497 | P 5850 8225 1498 | F 0 "C37" H 5965 8271 50 0000 L CNN 1499 | F 1 "100nF" H 5965 8180 50 0000 L CNN 1500 | F 2 "custom:C_0402_CUSTOM" H 5888 8075 50 0001 C CNN 1501 | F 3 "" H 5850 8225 50 0001 C CNN 1502 | 1 5850 8225 1503 | 1 0 0 1 1504 | $EndComp 1505 | $Comp 1506 | L R R15 1507 | U 1 1 593180C3 1508 | P 1250 12950 1509 | F 0 "R15" H 1320 12996 50 0000 L CNN 1510 | F 1 "8R" H 1320 12905 50 0000 L CNN 1511 | F 2 "custom:R_0402_CUSTOM" V 1180 12950 50 0001 C CNN 1512 | F 3 "" H 1250 12950 50 0001 C CNN 1513 | F 4 "9331271" H 1250 12950 60 0001 C CNN "Farnell" 1514 | 1 1250 12950 1515 | 1 0 0 -1 1516 | $EndComp 1517 | $Comp 1518 | L 4xSPDT U3 1519 | U 1 1 5934382B 1520 | P 3950 13950 1521 | F 0 "U3" H 3975 15087 60 0000 C CNN 1522 | F 1 "ts3a44159" H 3975 14981 60 0000 C CNN 1523 | F 2 "custom:UQFN16" H 3900 14500 60 0001 C CNN 1524 | F 3 "http://www.ti.com/lit/ds/symlink/ts3a44159.pdf" H 3900 14500 60 0001 C CNN 1525 | F 4 "2496546" H 3950 13950 60 0001 C CNN "farnell" 1526 | 1 3950 13950 1527 | 1 0 0 -1 1528 | $EndComp 1529 | Text GLabel 3000 13500 0 60 Input ~ 0 1530 | VIDEO_IN 1531 | Text GLabel 4800 14300 2 60 Input ~ 0 1532 | V_BLACK 1533 | Text GLabel 3000 13200 0 60 Input ~ 0 1534 | V_WHITE 1535 | Text GLabel 2750 14250 0 60 Input ~ 0 1536 | VIDEO_OUT 1537 | $Comp 1538 | L R R35 1539 | U 1 1 59348610 1540 | P 5300 13500 1541 | F 0 "R35" H 5370 13546 50 0000 L CNN 1542 | F 1 "75R" H 5370 13455 50 0000 L CNN 1543 | F 2 "custom:R_0402_CUSTOM" V 5230 13500 50 0001 C CNN 1544 | F 3 "" H 5300 13500 50 0001 C CNN 1545 | F 4 "9331271" H 5300 13500 60 0001 C CNN "Farnell" 1546 | 1 5300 13500 1547 | 1 0 0 -1 1548 | $EndComp 1549 | Text GLabel 2750 13700 0 60 Input ~ 0 1550 | VIDEO_OVERLAY_WHITE 1551 | $Comp 1552 | L GND #PWR035 1553 | U 1 1 59349ECB 1554 | P 5300 13725 1555 | F 0 "#PWR035" H 5300 13475 50 0001 C CNN 1556 | F 1 "GND" H 5305 13552 50 0000 C CNN 1557 | F 2 "" H 5300 13725 50 0001 C CNN 1558 | F 3 "" H 5300 13725 50 0001 C CNN 1559 | 1 5300 13725 1560 | 1 0 0 -1 1561 | $EndComp 1562 | $Comp 1563 | L R R36 1564 | U 1 1 5934A9D7 1565 | P 5300 14275 1566 | F 0 "R36" H 5370 14321 50 0000 L CNN 1567 | F 1 "75R" H 5370 14230 50 0000 L CNN 1568 | F 2 "custom:R_0402_CUSTOM" V 5230 14275 50 0001 C CNN 1569 | F 3 "" H 5300 14275 50 0001 C CNN 1570 | F 4 "9331271" H 5300 14275 60 0001 C CNN "Farnell" 1571 | 1 5300 14275 1572 | 1 0 0 -1 1573 | $EndComp 1574 | $Comp 1575 | L GND #PWR036 1576 | U 1 1 5934AB41 1577 | P 5300 14525 1578 | F 0 "#PWR036" H 5300 14275 50 0001 C CNN 1579 | F 1 "GND" H 5305 14352 50 0000 C CNN 1580 | F 2 "" H 5300 14525 50 0001 C CNN 1581 | F 3 "" H 5300 14525 50 0001 C CNN 1582 | 1 5300 14525 1583 | 1 0 0 -1 1584 | $EndComp 1585 | $Comp 1586 | L GND #PWR037 1587 | U 1 1 5934B38F 1588 | P 3300 15075 1589 | F 0 "#PWR037" H 3300 14825 50 0001 C CNN 1590 | F 1 "GND" H 3305 14902 50 0000 C CNN 1591 | F 2 "" H 3300 15075 50 0001 C CNN 1592 | F 3 "" H 3300 15075 50 0001 C CNN 1593 | 1 3300 15075 1594 | 1 0 0 -1 1595 | $EndComp 1596 | Text GLabel 4825 14650 2 60 Input ~ 0 1597 | 3V3 1598 | NoConn ~ 4550 13100 1599 | Text GLabel 1250 12375 1 60 Input ~ 0 1600 | V_WHITE_0 1601 | Text GLabel 1475 12375 1 60 Input ~ 0 1602 | V_WHITE_1 1603 | Text GLabel 1725 12375 1 60 Input ~ 0 1604 | V_WHITE_2 1605 | Text GLabel 1925 12375 1 60 Input ~ 0 1606 | V_WHITE_3 1607 | Text GLabel 10100 10200 2 60 Input ~ 0 1608 | V_WHITE_0 1609 | Text GLabel 10100 10300 2 60 Input ~ 0 1610 | V_WHITE_1 1611 | Text GLabel 10100 10400 2 60 Input ~ 0 1612 | V_WHITE_2 1613 | Text GLabel 10100 10600 2 60 Input ~ 0 1614 | V_WHITE_3 1615 | Text GLabel 6100 13500 1 60 Input ~ 0 1616 | V_BLACK_0 1617 | Text GLabel 6000 13500 1 60 Input ~ 0 1618 | V_BLACK_1 1619 | Text GLabel 5900 13500 1 60 Input ~ 0 1620 | V_BLACK_2 1621 | Text GLabel 5800 13500 1 60 Input ~ 0 1622 | V_BLACK_3 1623 | Text GLabel 1600 10500 0 60 Input ~ 0 1624 | V_BLACK_0 1625 | Text GLabel 1600 10600 0 60 Input ~ 0 1626 | V_BLACK_1 1627 | Text GLabel 1600 10800 0 60 Input ~ 0 1628 | V_BLACK_2 1629 | Text GLabel 1600 10900 0 60 Input ~ 0 1630 | V_BLACK_3 1631 | $Comp 1632 | L GND #PWR038 1633 | U 1 1 59323ED0 1634 | P 4750 4525 1635 | F 0 "#PWR038" H 4750 4275 50 0001 C CNN 1636 | F 1 "GND" H 4755 4352 50 0000 C CNN 1637 | F 2 "" H 4750 4525 50 0000 C CNN 1638 | F 3 "" H 4750 4525 50 0000 C CNN 1639 | 1 4750 4525 1640 | 1 0 0 -1 1641 | $EndComp 1642 | $Comp 1643 | L TP TP9 1644 | U 1 1 59336EAE 1645 | P 1900 5650 1646 | F 0 "TP9" H 1900 5500 60 0001 C CNN 1647 | F 1 "AUDIO_IN" H 1999 5650 60 0000 L CNN 1648 | F 2 "custom:TP_1.5x1.0" H 1900 5650 60 0001 C CNN 1649 | F 3 "" H 1900 5650 60 0000 C CNN 1650 | 1 1900 5650 1651 | 1 0 0 -1 1652 | $EndComp 1653 | Text GLabel 1400 5650 0 60 Input ~ 0 1654 | AUDIO 1655 | $Comp 1656 | L TP TP10 1657 | U 1 1 5933989F 1658 | P 1900 7025 1659 | F 0 "TP10" H 1900 6875 60 0001 C CNN 1660 | F 1 "GND" H 1999 7025 60 0000 L CNN 1661 | F 2 "custom:TP_1.5x1.0" H 1900 7025 60 0001 C CNN 1662 | F 3 "" H 1900 7025 60 0000 C CNN 1663 | 1 1900 7025 1664 | 1 0 0 -1 1665 | $EndComp 1666 | Text GLabel 9075 7850 0 60 Input ~ 0 1667 | LED 1668 | Text GLabel 9575 9600 2 60 Input ~ 0 1669 | UART_TX 1670 | Wire Wire Line 1671 | 5550 925 5550 2375 1672 | Wire Wire Line 1673 | 5550 1725 5750 1725 1674 | Wire Wire Line 1675 | 5650 1725 5650 2375 1676 | Connection ~ 5650 1725 1677 | Wire Wire Line 1678 | 6050 1725 6225 1725 1679 | Wire Wire Line 1680 | 7025 1725 7375 1725 1681 | Wire Wire Line 1682 | 7200 1875 7200 1725 1683 | Connection ~ 7200 1725 1684 | Wire Wire Line 1685 | 6525 1725 6725 1725 1686 | Wire Wire Line 1687 | 7200 2175 7200 2250 1688 | Wire Wire Line 1689 | 5925 925 6375 925 1690 | Wire Wire Line 1691 | 6175 1050 6175 925 1692 | Connection ~ 6175 925 1693 | Wire Wire Line 1694 | 6675 925 7075 925 1695 | Wire Wire Line 1696 | 6825 1050 6825 925 1697 | Connection ~ 6825 925 1698 | Wire Wire Line 1699 | 6825 1350 6825 1400 1700 | Wire Wire Line 1701 | 6175 1400 6175 1350 1702 | Wire Wire Line 1703 | 5550 925 5625 925 1704 | Connection ~ 5550 1725 1705 | Wire Wire Line 1706 | 7675 2025 7675 2100 1707 | Wire Wire Line 1708 | 7675 2100 7875 2100 1709 | Wire Wire Line 1710 | 7875 2100 7875 2025 1711 | Wire Wire Line 1712 | 7775 2225 7775 2100 1713 | Connection ~ 7775 2100 1714 | Wire Wire Line 1715 | 7675 1425 7675 1325 1716 | Wire Wire Line 1717 | 7675 1325 7875 1325 1718 | Wire Wire Line 1719 | 7875 1325 7875 1425 1720 | Connection ~ 7775 1325 1721 | Wire Wire Line 1722 | 7775 1325 7775 1250 1723 | Wire Wire Line 1724 | 8175 1725 8750 1725 1725 | Wire Wire Line 1726 | 5750 2375 5750 2275 1727 | Wire Wire Line 1728 | 5850 2375 5850 2275 1729 | Wire Wire Line 1730 | 5850 2275 6800 2275 1731 | Wire Wire Line 1732 | 5950 2375 5950 2275 1733 | Connection ~ 5950 2275 1734 | Wire Wire Line 1735 | 5250 2375 5250 2275 1736 | Wire Wire Line 1737 | 6550 2975 6625 2975 1738 | Wire Wire Line 1739 | 6625 2975 6625 2275 1740 | Connection ~ 6625 2275 1741 | Wire Wire Line 1742 | 6750 2375 6750 2275 1743 | Connection ~ 6750 2275 1744 | Wire Wire Line 1745 | 6750 2675 6750 3175 1746 | Wire Wire Line 1747 | 6750 3175 6550 3175 1748 | Wire Wire Line 1749 | 6750 2750 6950 2750 1750 | Wire Wire Line 1751 | 6950 2750 6950 2800 1752 | Connection ~ 6750 2750 1753 | Wire Wire Line 1754 | 6550 3075 8200 3075 1755 | Wire Wire Line 1756 | 5150 1600 5150 2375 1757 | Wire Wire Line 1758 | 5050 1600 5050 1725 1759 | Wire Wire Line 1760 | 5050 2025 5050 2375 1761 | Wire Wire Line 1762 | 4975 2125 5050 2125 1763 | Connection ~ 5050 2125 1764 | Wire Wire Line 1765 | 4675 2125 4600 2125 1766 | Wire Wire Line 1767 | 4600 2000 4600 2300 1768 | Connection ~ 4600 2125 1769 | Wire Wire Line 1770 | 4600 1700 4600 1600 1771 | Connection ~ 5050 1600 1772 | Wire Wire Line 1773 | 3125 1775 3125 1400 1774 | Wire Wire Line 1775 | 3125 950 3125 1100 1776 | Connection ~ 4600 1600 1777 | Wire Wire Line 1778 | 2550 950 3500 950 1779 | Connection ~ 3125 950 1780 | Wire Wire Line 1781 | 2550 1050 2750 1050 1782 | Wire Wire Line 1783 | 2750 1050 2750 1100 1784 | Wire Wire Line 1785 | 2250 1350 2250 1775 1786 | Wire Wire Line 1787 | 2750 1400 2750 1775 1788 | Wire Wire Line 1789 | 1950 1050 1825 1050 1790 | Wire Wire Line 1791 | 1825 1050 1825 950 1792 | Wire Wire Line 1793 | 1550 950 1950 950 1794 | Connection ~ 1825 950 1795 | Wire Wire Line 1796 | 4300 1600 5150 1600 1797 | Wire Wire Line 1798 | 6550 3275 7625 3275 1799 | Wire Wire Line 1800 | 7925 3275 8425 3275 1801 | Wire Wire Line 1802 | 8200 3075 8200 3525 1803 | Wire Wire Line 1804 | 8425 3275 8425 3525 1805 | Connection ~ 8200 3275 1806 | Wire Wire Line 1807 | 7500 3375 7500 3450 1808 | Wire Wire Line 1809 | 6550 3375 7500 3375 1810 | Wire Wire Line 1811 | 7500 3800 7500 3750 1812 | Wire Wire Line 1813 | 8200 3825 8200 3900 1814 | Wire Wire Line 1815 | 8425 4300 8425 3825 1816 | Wire Wire Line 1817 | 8200 4300 8425 4300 1818 | Wire Wire Line 1819 | 8200 4300 8200 4200 1820 | Wire Wire Line 1821 | 8300 4300 8300 4375 1822 | Connection ~ 8300 4300 1823 | Wire Wire Line 1824 | 6550 3475 7300 3475 1825 | Wire Wire Line 1826 | 7300 3475 7300 4025 1827 | Wire Wire Line 1828 | 7300 4025 8075 4025 1829 | Wire Wire Line 1830 | 8075 4025 8075 4600 1831 | Wire Wire Line 1832 | 8075 4525 7925 4525 1833 | Wire Wire Line 1834 | 7325 4525 7150 4525 1835 | Wire Wire Line 1836 | 7150 3575 7150 4600 1837 | Wire Wire Line 1838 | 6550 3575 7150 3575 1839 | Wire Wire Line 1840 | 8075 5050 8075 4900 1841 | Wire Wire Line 1842 | 7150 5050 8075 5050 1843 | Wire Wire Line 1844 | 7150 5050 7150 4900 1845 | Connection ~ 7150 4525 1846 | Connection ~ 8075 4525 1847 | Wire Wire Line 1848 | 7575 4975 7575 5050 1849 | Connection ~ 7575 5050 1850 | Wire Wire Line 1851 | 7675 4975 7675 5050 1852 | Connection ~ 7675 5050 1853 | Wire Wire Line 1854 | 7625 5050 7625 5100 1855 | Connection ~ 7625 5050 1856 | Wire Wire Line 1857 | 6550 3675 7025 3675 1858 | Wire Wire Line 1859 | 7025 3675 7025 3775 1860 | Wire Wire Line 1861 | 7025 4150 7025 4075 1862 | Wire Wire Line 1863 | 6550 3775 6675 3775 1864 | Wire Wire Line 1865 | 6675 3775 6675 4500 1866 | Wire Wire Line 1867 | 6675 4425 6825 4425 1868 | Connection ~ 6675 4425 1869 | Wire Wire Line 1870 | 6675 4875 6675 4800 1871 | Wire Wire Line 1872 | 6550 3875 6575 3875 1873 | Wire Wire Line 1874 | 6575 3875 6575 5575 1875 | Wire Wire Line 1876 | 6575 5475 6975 5475 1877 | Wire Wire Line 1878 | 7750 5650 7750 5475 1879 | Wire Wire Line 1880 | 7650 5475 8025 5475 1881 | Connection ~ 7750 5475 1882 | Wire Wire Line 1883 | 7950 5475 7950 5800 1884 | Wire Wire Line 1885 | 7950 5800 8025 5800 1886 | Connection ~ 7950 5475 1887 | Wire Wire Line 1888 | 8325 5800 8400 5800 1889 | Wire Wire Line 1890 | 8400 5800 8400 5475 1891 | Wire Wire Line 1892 | 8325 5475 8475 5475 1893 | Connection ~ 8400 5475 1894 | Wire Wire Line 1895 | 7750 6025 7750 5950 1896 | Wire Wire Line 1897 | 8775 5475 9150 5475 1898 | Wire Wire Line 1899 | 8900 5600 8900 5475 1900 | Connection ~ 8900 5475 1901 | Wire Wire Line 1902 | 7275 5475 7350 5475 1903 | Connection ~ 6575 5475 1904 | Wire Wire Line 1905 | 5950 4550 6475 4550 1906 | Wire Wire Line 1907 | 5950 4550 5950 4475 1908 | Wire Wire Line 1909 | 6175 5875 6175 6050 1910 | Wire Wire Line 1911 | 6175 5975 6575 5975 1912 | Wire Wire Line 1913 | 6575 5875 6575 6175 1914 | Connection ~ 6175 5975 1915 | Connection ~ 6575 5975 1916 | Wire Wire Line 1917 | 6175 6350 6175 6475 1918 | Wire Wire Line 1919 | 6175 6775 6175 6975 1920 | Wire Wire Line 1921 | 6575 6475 6575 6975 1922 | Wire Wire Line 1923 | 8900 5900 8900 6025 1924 | Wire Wire Line 1925 | 5850 4725 5850 4675 1926 | Wire Wire Line 1927 | 5850 4675 6125 4675 1928 | Wire Wire Line 1929 | 5650 5025 5850 5025 1930 | Wire Wire Line 1931 | 5650 4475 5650 5100 1932 | Connection ~ 5650 5025 1933 | Wire Wire Line 1934 | 5650 5400 5650 6975 1935 | Wire Wire Line 1936 | 6175 5525 6475 5525 1937 | Wire Wire Line 1938 | 6475 5525 6475 4550 1939 | Wire Wire Line 1940 | 6175 5575 6175 5525 1941 | Wire Wire Line 1942 | 5850 4475 5850 4600 1943 | Wire Wire Line 1944 | 5850 4600 5200 4600 1945 | Wire Wire Line 1946 | 5200 4600 5200 4800 1947 | Wire Wire Line 1948 | 5200 5100 5200 5225 1949 | Wire Wire Line 1950 | 5200 5525 5200 5750 1951 | Wire Wire Line 1952 | 5200 6050 5200 6975 1953 | Wire Wire Line 1954 | 5200 5650 4850 5650 1955 | Wire Wire Line 1956 | 4850 5650 4850 4650 1957 | Wire Wire Line 1958 | 4850 4650 5050 4650 1959 | Wire Wire Line 1960 | 5050 4650 5050 4475 1961 | Connection ~ 5200 5650 1962 | Wire Wire Line 1963 | 3275 3675 4450 3675 1964 | Wire Wire Line 1965 | 3600 4125 3600 4050 1966 | Wire Wire Line 1967 | 3600 3750 3600 3675 1968 | Connection ~ 3600 3675 1969 | Wire Wire Line 1970 | 4450 3875 4200 3875 1971 | Wire Wire Line 1972 | 4200 3875 4200 4400 1973 | Wire Wire Line 1974 | 4200 4400 3475 4400 1975 | Wire Wire Line 1976 | 4000 4075 4000 4475 1977 | Connection ~ 4000 4400 1978 | Wire Wire Line 1979 | 4000 3775 4000 3675 1980 | Connection ~ 4000 3675 1981 | Wire Wire Line 1982 | 4000 4875 4000 4775 1983 | Wire Wire Line 1984 | 2100 4400 2250 4400 1985 | Wire Wire Line 1986 | 2150 3525 2150 4400 1987 | Wire Wire Line 1988 | 2150 3525 2075 3525 1989 | Wire Wire Line 1990 | 2075 4000 2150 4000 1991 | Connection ~ 2150 4000 1992 | Wire Wire Line 1993 | 1550 4400 1800 4400 1994 | Wire Wire Line 1995 | 1725 3525 1725 4400 1996 | Wire Wire Line 1997 | 1725 4000 1775 4000 1998 | Wire Wire Line 1999 | 1775 3525 1725 3525 2000 | Connection ~ 1725 4000 2001 | Wire Wire Line 2002 | 1550 3525 1625 3525 2003 | Wire Wire Line 2004 | 1625 3525 1625 4400 2005 | Wire Wire Line 2006 | 1575 4000 1625 4000 2007 | Connection ~ 1625 4000 2008 | Wire Wire Line 2009 | 900 4400 1250 4400 2010 | Wire Wire Line 2011 | 1200 3525 1200 4700 2012 | Wire Wire Line 2013 | 1200 3525 1250 3525 2014 | Connection ~ 1625 4400 2015 | Connection ~ 1725 4400 2016 | Wire Wire Line 2017 | 1675 4400 1675 4700 2018 | Connection ~ 1675 4400 2019 | Wire Wire Line 2020 | 1275 4000 1200 4000 2021 | Connection ~ 1200 4000 2022 | Connection ~ 1200 4400 2023 | Wire Wire Line 2024 | 1200 5000 1200 5075 2025 | Wire Wire Line 2026 | 1675 5000 1675 5075 2027 | Wire Wire Line 2028 | 2200 4975 2200 5075 2029 | Wire Wire Line 2030 | 2200 3525 2200 4675 2031 | Connection ~ 2150 4400 2032 | Connection ~ 2200 4400 2033 | Wire Wire Line 2034 | 2625 4975 2625 5075 2035 | Wire Wire Line 2036 | 2625 3525 2625 4675 2037 | Wire Wire Line 2038 | 2550 4400 2725 4400 2039 | Connection ~ 2625 4400 2040 | Wire Wire Line 2041 | 3025 4400 3175 4400 2042 | Wire Wire Line 2043 | 2200 3525 2250 3525 2044 | Wire Wire Line 2045 | 2550 3525 2625 3525 2046 | Wire Wire Line 2047 | 3125 2450 4275 2450 2048 | Wire Wire Line 2049 | 4275 2450 4275 2625 2050 | Wire Wire Line 2051 | 4275 2925 4275 2975 2052 | Wire Wire Line 2053 | 4275 2975 4450 2975 2054 | Wire Wire Line 2055 | 3275 3375 4450 3375 2056 | Wire Wire Line 2057 | 3275 3475 4450 3475 2058 | Wire Wire Line 2059 | 3275 3575 4450 3575 2060 | Wire Wire Line 2061 | 5700 11350 5700 11300 2062 | Wire Wire Line 2063 | 5400 11350 5700 11350 2064 | Wire Wire Line 2065 | 5400 11350 5400 11300 2066 | Wire Wire Line 2067 | 5500 11300 5500 11350 2068 | Connection ~ 5500 11350 2069 | Wire Wire Line 2070 | 5500 11350 5600 11350 2071 | Wire Wire Line 2072 | 5600 11350 5600 11300 2073 | Connection ~ 5600 11350 2074 | Wire Wire Line 2075 | 5550 11350 5550 11450 2076 | Connection ~ 5550 11350 2077 | Wire Wire Line 2078 | 1400 5800 1600 5800 2079 | Wire Wire Line 2080 | 1400 5950 1600 5950 2081 | Wire Wire Line 2082 | 1400 6250 1600 6250 2083 | Wire Wire Line 2084 | 1400 6400 1600 6400 2085 | Wire Wire Line 2086 | 1400 6550 1600 6550 2087 | Wire Wire Line 2088 | 1400 6700 1600 6700 2089 | Wire Wire Line 2090 | 1400 6850 1600 6850 2091 | Wire Wire Line 2092 | 5500 7950 7875 7950 2093 | Wire Wire Line 2094 | 6625 8375 6625 8575 2095 | Wire Wire Line 2096 | 5850 8450 7050 8450 2097 | Wire Wire Line 2098 | 6175 8450 6175 8375 2099 | Wire Wire Line 2100 | 7050 8450 7050 8375 2101 | Connection ~ 6175 8450 2102 | Connection ~ 6625 8450 2103 | Wire Wire Line 2104 | 7050 8075 7050 7950 2105 | Connection ~ 7050 7950 2106 | Wire Wire Line 2107 | 6625 8075 6625 7950 2108 | Connection ~ 6625 7950 2109 | Wire Wire Line 2110 | 6175 8075 6175 7950 2111 | Connection ~ 6175 7950 2112 | Wire Wire Line 2113 | 1400 6100 1600 6100 2114 | Wire Wire Line 2115 | 4450 3775 4200 3775 2116 | Wire Wire Line 2117 | 4200 3775 4200 3675 2118 | Connection ~ 4200 3675 2119 | Wire Wire Line 2120 | 1675 1500 1675 1650 2121 | Wire Wire Line 2122 | 1675 1650 2250 1650 2123 | Connection ~ 2250 1650 2124 | Wire Wire Line 2125 | 1675 1200 1675 950 2126 | Connection ~ 1675 950 2127 | Wire Wire Line 2128 | 9500 10500 9875 10500 2129 | Wire Wire Line 2130 | 9500 10100 10100 10100 2131 | Wire Wire Line 2132 | 9950 10000 10000 10000 2133 | Wire Wire Line 2134 | 10000 10000 10000 10100 2135 | Connection ~ 10000 10100 2136 | Wire Wire Line 2137 | 9500 10000 9650 10000 2138 | Wire Wire Line 2139 | 9500 10800 9875 10800 2140 | Wire Wire Line 2141 | 9875 10900 9500 10900 2142 | Wire Wire Line 2143 | 9500 10700 9875 10700 2144 | Wire Wire Line 2145 | 5800 13500 5800 14525 2146 | Wire Wire Line 2147 | 5900 14175 5900 13500 2148 | Wire Wire Line 2149 | 6000 13875 6000 13500 2150 | Wire Wire Line 2151 | 6200 14925 5800 14925 2152 | Wire Wire Line 2153 | 5800 14925 5800 14825 2154 | Wire Wire Line 2155 | 6200 13875 6100 13875 2156 | Wire Wire Line 2157 | 6200 13875 6200 15050 2158 | Wire Wire Line 2159 | 6000 14175 6000 14200 2160 | Wire Wire Line 2161 | 6000 14200 6200 14200 2162 | Connection ~ 6200 14200 2163 | Wire Wire Line 2164 | 5900 14475 5900 14525 2165 | Wire Wire Line 2166 | 5900 14525 6200 14525 2167 | Connection ~ 6200 14525 2168 | Connection ~ 6200 14925 2169 | Wire Wire Line 2170 | 9500 9400 9575 9400 2171 | Wire Wire Line 2172 | 1600 10700 1700 10700 2173 | Wire Wire Line 2174 | 9850 7850 9950 7875 2175 | Wire Wire Line 2176 | 10250 7875 10375 7875 2177 | Wire Wire Line 2178 | 9075 7850 9550 7850 2179 | Wire Wire Line 2180 | 1125 9600 1275 9600 2181 | Wire Wire Line 2182 | 1125 9600 1125 9650 2183 | Wire Wire Line 2184 | 1575 9600 1700 9600 2185 | Wire Wire Line 2186 | 1700 9400 1375 9400 2187 | Wire Wire Line 2188 | 9500 10200 10100 10200 2189 | Wire Wire Line 2190 | 10100 10300 9500 10300 2191 | Wire Wire Line 2192 | 9500 10400 10100 10400 2193 | Wire Wire Line 2194 | 1150 10100 1150 10075 2195 | Wire Wire Line 2196 | 1150 10075 1250 10075 2197 | Wire Wire Line 2198 | 1400 10175 1400 10200 2199 | Wire Wire Line 2200 | 1400 10200 1700 10200 2201 | Wire Wire Line 2202 | 1700 10100 1625 10100 2203 | Wire Wire Line 2204 | 1625 10100 1625 9950 2205 | Wire Wire Line 2206 | 1625 9950 1400 9950 2207 | Wire Wire Line 2208 | 1400 9950 1400 9975 2209 | Wire Wire Line 2210 | 5500 9000 5500 7950 2211 | Wire Wire Line 2212 | 5700 9000 5700 7950 2213 | Connection ~ 5700 7950 2214 | Wire Wire Line 2215 | 5600 7950 5600 9000 2216 | Connection ~ 5600 7950 2217 | Wire Wire Line 2218 | 5850 8450 5850 8375 2219 | Wire Wire Line 2220 | 5850 8075 5850 7950 2221 | Connection ~ 5850 7950 2222 | Wire Wire Line 2223 | 1725 12775 1725 12375 2224 | Wire Wire Line 2225 | 1250 12375 1250 12800 2226 | Wire Wire Line 2227 | 1250 13100 1250 13200 2228 | Wire Wire Line 2229 | 1250 13200 2075 13200 2230 | Wire Wire Line 2231 | 1925 13200 1925 12800 2232 | Wire Wire Line 2233 | 1725 13075 1725 13200 2234 | Connection ~ 1725 13200 2235 | Wire Wire Line 2236 | 1475 12825 1475 13200 2237 | Connection ~ 1475 13200 2238 | Connection ~ 1925 13200 2239 | Wire Wire Line 2240 | 6200 15050 6125 15050 2241 | Wire Wire Line 2242 | 4850 12750 3125 12750 2243 | Wire Wire Line 2244 | 3125 12750 3125 13950 2245 | Wire Wire Line 2246 | 3125 13950 3400 13950 2247 | Wire Wire Line 2248 | 4550 14150 5025 14150 2249 | Wire Wire Line 2250 | 2750 14250 3400 14250 2251 | Wire Wire Line 2252 | 4550 14000 5300 14000 2253 | Wire Wire Line 2254 | 5300 14000 5300 14125 2255 | Wire Wire Line 2256 | 4550 14300 4800 14300 2257 | Wire Wire Line 2258 | 2300 14450 3400 14450 2259 | Wire Wire Line 2260 | 5300 13250 5300 13350 2261 | Wire Wire Line 2262 | 2750 13700 3400 13700 2263 | Wire Wire Line 2264 | 5300 13725 5300 13650 2265 | Wire Wire Line 2266 | 5300 14525 5300 14425 2267 | Wire Wire Line 2268 | 3850 14925 3300 14925 2269 | Wire Wire Line 2270 | 3300 14650 3300 15075 2271 | Wire Wire Line 2272 | 3300 14650 3400 14650 2273 | Connection ~ 3300 14925 2274 | Wire Wire Line 2275 | 4150 14925 4775 14925 2276 | Wire Wire Line 2277 | 4775 14925 4775 14650 2278 | Wire Wire Line 2279 | 4550 14650 4825 14650 2280 | Connection ~ 4775 14650 2281 | Wire Wire Line 2282 | 4850 13400 4550 13400 2283 | Wire Wire Line 2284 | 4550 13250 4850 13250 2285 | Connection ~ 4850 13250 2286 | Wire Wire Line 2287 | 4850 12750 4850 13400 2288 | Wire Wire Line 2289 | 4550 13550 5125 13550 2290 | Wire Wire Line 2291 | 5125 13550 5125 13250 2292 | Wire Wire Line 2293 | 5125 13250 5300 13250 2294 | Wire Wire Line 2295 | 3000 13200 3400 13200 2296 | Wire Wire Line 2297 | 3400 13500 3000 13500 2298 | Wire Wire Line 2299 | 1925 12375 1925 12500 2300 | Wire Wire Line 2301 | 1475 12375 1475 12525 2302 | Wire Wire Line 2303 | 1600 10400 1700 10400 2304 | Wire Wire Line 2305 | 1700 10500 1600 10500 2306 | Wire Wire Line 2307 | 1600 10600 1700 10600 2308 | Wire Wire Line 2309 | 9800 10800 9800 11050 2310 | Wire Wire Line 2311 | 9800 11050 9875 11050 2312 | Connection ~ 9800 10800 2313 | Wire Wire Line 2314 | 10100 10600 9500 10600 2315 | Wire Wire Line 2316 | 6100 13575 6100 13500 2317 | Wire Wire Line 2318 | 9500 9500 9575 9500 2319 | Wire Wire Line 2320 | 9500 9600 9575 9600 2321 | Wire Wire Line 2322 | 4750 4475 4750 4525 2323 | Wire Wire Line 2324 | 1600 10800 1700 10800 2325 | Wire Wire Line 2326 | 1600 10900 1700 10900 2327 | Wire Wire Line 2328 | 1400 5650 1600 5650 2329 | Wire Wire Line 2330 | 1600 7025 1525 7025 2331 | Wire Wire Line 2332 | 1525 6850 1525 7200 2333 | Connection ~ 1525 6850 2334 | Wire Wire Line 2335 | 9500 9900 10100 9900 2336 | Wire Wire Line 2337 | 9500 9700 9575 9700 2338 | Wire Wire Line 2339 | 5525 15150 6125 15150 2340 | Wire Wire Line 2341 | 6125 15150 6125 15050 2342 | Wire Wire Line 2343 | 4550 13850 4650 13850 2344 | Wire Wire Line 2345 | 5025 14150 5025 13850 2346 | Wire Wire Line 2347 | 5025 13850 4950 13850 2348 | $Comp 2349 | L R R27 2350 | U 1 1 59346F8F 2351 | P 4800 13850 2352 | F 0 "R27" H 4870 13896 50 0000 L CNN 2353 | F 1 "0R" H 4870 13805 50 0000 L CNN 2354 | F 2 "custom:R_0402_CUSTOM" V 4730 13850 50 0001 C CNN 2355 | F 3 "" H 4800 13850 50 0001 C CNN 2356 | F 4 "9331271" H 4800 13850 60 0001 C CNN "Farnell" 2357 | 1 4800 13850 2358 | 0 -1 1 0 2359 | $EndComp 2360 | $Comp 2361 | L C C42 2362 | U 1 1 5931C944 2363 | P 11075 10050 2364 | F 0 "C42" H 11190 10096 50 0000 L CNN 2365 | F 1 "10nF" H 11190 10005 50 0000 L CNN 2366 | F 2 "custom:C_0402_CUSTOM" H 11113 9900 50 0001 C CNN 2367 | F 3 "" H 11075 10050 50 0001 C CNN 2368 | F 4 "2627340" H 11075 10050 60 0001 C CNN "Farnell" 2369 | 1 11075 10050 2370 | -1 0 0 -1 2371 | $EndComp 2372 | $Comp 2373 | L GND #PWR039 2374 | U 1 1 5931CE81 2375 | P 11075 10300 2376 | F 0 "#PWR039" H 11075 10050 50 0001 C CNN 2377 | F 1 "GND" H 11080 10127 50 0000 C CNN 2378 | F 2 "" H 11075 10300 50 0000 C CNN 2379 | F 3 "" H 11075 10300 50 0000 C CNN 2380 | 1 11075 10300 2381 | -1 0 0 -1 2382 | $EndComp 2383 | Wire Wire Line 2384 | 9575 10000 9575 9800 2385 | Wire Wire Line 2386 | 9575 9800 11075 9800 2387 | Wire Wire Line 2388 | 11075 9800 11075 9900 2389 | Connection ~ 9575 10000 2390 | Wire Wire Line 2391 | 11075 10300 11075 10200 2392 | $Comp 2393 | L C C41 2394 | U 1 1 5931E43E 2395 | P 10625 9525 2396 | F 0 "C41" H 10740 9571 50 0000 L CNN 2397 | F 1 "100nF" H 10740 9480 50 0000 L CNN 2398 | F 2 "custom:C_0402_CUSTOM" H 10663 9375 50 0001 C CNN 2399 | F 3 "" H 10625 9525 50 0001 C CNN 2400 | 1 10625 9525 2401 | 0 -1 1 0 2402 | $EndComp 2403 | $Comp 2404 | L GND #PWR040 2405 | U 1 1 5931E8E0 2406 | P 10825 9575 2407 | F 0 "#PWR040" H 10825 9325 50 0001 C CNN 2408 | F 1 "GND" H 10830 9402 50 0000 C CNN 2409 | F 2 "" H 10825 9575 50 0000 C CNN 2410 | F 3 "" H 10825 9575 50 0000 C CNN 2411 | 1 10825 9575 2412 | -1 0 0 -1 2413 | $EndComp 2414 | Wire Wire Line 2415 | 9500 9800 9500 9750 2416 | Wire Wire Line 2417 | 9500 9750 10450 9750 2418 | Wire Wire Line 2419 | 10450 9750 10450 9525 2420 | Wire Wire Line 2421 | 10450 9525 10475 9525 2422 | Wire Wire Line 2423 | 10775 9525 10825 9525 2424 | Wire Wire Line 2425 | 10825 9525 10825 9575 2426 | $Comp 2427 | L TPS62153A-Q1 U5 2428 | U 1 1 59A03515 2429 | P 8675 13200 2430 | F 0 "U5" H 8675 13825 60 0000 C CNN 2431 | F 1 "TPS62153A-Q1" H 8700 12550 60 0000 C CNN 2432 | F 2 "custom:VQFN16" H 8475 13400 60 0001 C CNN 2433 | F 3 "" H 8475 13400 60 0001 C CNN 2434 | F 4 "2492471" H 8675 13200 60 0001 C CNN "Farnell" 2435 | 1 8675 13200 2436 | 1 0 0 -1 2437 | $EndComp 2438 | $Comp 2439 | L C C43 2440 | U 1 1 59A037C9 2441 | P 7175 13175 2442 | F 0 "C43" H 7290 13221 50 0000 L CNN 2443 | F 1 "10u 25V" H 7290 13130 50 0000 L CNN 2444 | F 2 "custom:C_0805_CUSTOM" H 7213 13025 50 0001 C CNN 2445 | F 3 "" H 7175 13175 50 0001 C CNN 2446 | F 4 "2320833" H 7175 13175 60 0001 C CNN "Farnell" 2447 | 1 7175 13175 2448 | -1 0 0 1 2449 | $EndComp 2450 | $Comp 2451 | L C C44 2452 | U 1 1 59A03B09 2453 | P 7825 13175 2454 | F 0 "C44" H 7940 13221 50 0000 L CNN 2455 | F 1 "680pF 50V" H 7940 13130 50 0000 L CNN 2456 | F 2 "custom:C_0402_CUSTOM" H 7863 13025 50 0001 C CNN 2457 | F 3 "" H 7825 13175 50 0001 C CNN 2458 | F 4 "2627340" H 7825 13175 60 0001 C CNN "Farnell" 2459 | 1 7825 13175 2460 | -1 0 0 1 2461 | $EndComp 2462 | $Comp 2463 | L C C45 2464 | U 1 1 59A03C7C 2465 | P 10100 13150 2466 | F 0 "C45" H 10215 13196 50 0000 L CNN 2467 | F 1 "22uF" H 10215 13105 50 0000 L CNN 2468 | F 2 "custom:C_0603_CUSTOM" H 10138 13000 50 0001 C CNN 2469 | F 3 "" H 10100 13150 50 0001 C CNN 2470 | F 4 "2525091" H 10100 13150 60 0001 C CNN "Farnell" 2471 | 1 10100 13150 2472 | -1 0 0 1 2473 | $EndComp 2474 | Wire Wire Line 2475 | 8175 13250 8000 13250 2476 | Wire Wire Line 2477 | 8000 13250 8000 12950 2478 | Wire Wire Line 2479 | 8000 12950 7825 12950 2480 | Wire Wire Line 2481 | 7825 12950 7825 13025 2482 | Wire Wire Line 2483 | 8175 13350 8100 13350 2484 | Wire Wire Line 2485 | 8100 13350 8100 13800 2486 | Wire Wire Line 2487 | 6725 13450 8175 13450 2488 | Connection ~ 8100 13450 2489 | Wire Wire Line 2490 | 7175 13325 7175 13450 2491 | Connection ~ 7175 13450 2492 | Wire Wire Line 2493 | 7825 13325 7825 13450 2494 | Connection ~ 7825 13450 2495 | Wire Wire Line 2496 | 8100 13100 8175 13100 2497 | Wire Wire Line 2498 | 8100 12800 8100 13100 2499 | Wire Wire Line 2500 | 6725 12900 8175 12900 2501 | Connection ~ 8100 12900 2502 | Wire Wire Line 2503 | 7175 13025 7175 12900 2504 | Connection ~ 7175 12900 2505 | Wire Wire Line 2506 | 8100 13000 8175 13000 2507 | Connection ~ 8100 13000 2508 | $Comp 2509 | L L L8 2510 | U 1 1 59A062A3 2511 | P 9500 12700 2512 | F 0 "L8" H 9553 12746 50 0000 L CNN 2513 | F 1 "2.2uH" H 9553 12655 50 0000 L CNN 2514 | F 2 "custom:L_SPM3012T" H 9500 12700 50 0001 C CNN 2515 | F 3 "" H 9500 12700 50 0000 C CNN 2516 | F 4 "2563995" H 9500 12700 60 0001 C CNN "Farnell" 2517 | 1 9500 12700 2518 | 0 -1 -1 0 2519 | $EndComp 2520 | $Comp 2521 | L R R28 2522 | U 1 1 59A076E4 2523 | P 9475 13100 2524 | F 0 "R28" H 9545 13146 50 0000 L CNN 2525 | F 1 "100K" H 9545 13055 50 0000 L CNN 2526 | F 2 "custom:R_0402_CUSTOM" V 9405 13100 50 0001 C CNN 2527 | F 3 "" H 9475 13100 50 0001 C CNN 2528 | 1 9475 13100 2529 | 0 -1 1 0 2530 | $EndComp 2531 | Wire Wire Line 2532 | 9225 13000 9750 13000 2533 | Wire Wire Line 2534 | 9750 12700 9750 13100 2535 | Wire Wire Line 2536 | 9750 12900 10525 12900 2537 | Wire Wire Line 2538 | 9225 13100 9325 13100 2539 | Wire Wire Line 2540 | 9750 13100 9625 13100 2541 | Connection ~ 9750 13000 2542 | Connection ~ 9750 12900 2543 | Wire Wire Line 2544 | 10100 13000 10100 12900 2545 | Connection ~ 10100 12900 2546 | Wire Wire Line 2547 | 9225 13450 10550 13450 2548 | Wire Wire Line 2549 | 9300 13250 9300 13800 2550 | Wire Wire Line 2551 | 9300 13250 9225 13250 2552 | Wire Wire Line 2553 | 9225 13350 9300 13350 2554 | Connection ~ 9300 13350 2555 | Connection ~ 9300 13450 2556 | Wire Wire Line 2557 | 10100 13450 10100 13300 2558 | Connection ~ 10100 13450 2559 | Wire Wire Line 2560 | 9300 13800 8100 13800 2561 | $Comp 2562 | L GND #PWR041 2563 | U 1 1 59A09B7C 2564 | P 6725 13450 2565 | F 0 "#PWR041" H 6725 13200 50 0001 C CNN 2566 | F 1 "GND" H 6730 13277 50 0000 C CNN 2567 | F 2 "" H 6725 13450 50 0001 C CNN 2568 | F 3 "" H 6725 13450 50 0001 C CNN 2569 | 1 6725 13450 2570 | 1 0 0 -1 2571 | $EndComp 2572 | $Comp 2573 | L GND #PWR042 2574 | U 1 1 59A09E35 2575 | P 10550 13450 2576 | F 0 "#PWR042" H 10550 13200 50 0001 C CNN 2577 | F 1 "GND" H 10555 13277 50 0000 C CNN 2578 | F 2 "" H 10550 13450 50 0001 C CNN 2579 | F 3 "" H 10550 13450 50 0001 C CNN 2580 | 1 10550 13450 2581 | 1 0 0 -1 2582 | $EndComp 2583 | $Comp 2584 | L TP TP11 2585 | U 1 1 59A0AB4A 2586 | P 1900 7425 2587 | F 0 "TP11" H 1900 7275 60 0001 C CNN 2588 | F 1 "5V" H 1999 7425 60 0000 L CNN 2589 | F 2 "custom:TP_1.5x1.0" H 1900 7425 60 0001 C CNN 2590 | F 3 "" H 1900 7425 60 0000 C CNN 2591 | 1 1900 7425 2592 | 1 0 0 -1 2593 | $EndComp 2594 | Text GLabel 1375 7425 0 60 Input ~ 0 2595 | 5V 2596 | Wire Wire Line 2597 | 1600 7425 1375 7425 2598 | Text GLabel 1550 950 0 60 Input ~ 0 2599 | 5V 2600 | Text GLabel 10525 12900 2 60 Input ~ 0 2601 | 5V 2602 | Wire Wire Line 2603 | 9225 13550 9300 13550 2604 | Connection ~ 9300 13550 2605 | Wire Wire Line 2606 | 9225 13650 9300 13650 2607 | Wire Wire Line 2608 | 9300 13650 9300 13625 2609 | Connection ~ 9300 13625 2610 | Wire Wire Line 2611 | 9225 12900 9300 12900 2612 | Wire Wire Line 2613 | 9300 12900 9300 12700 2614 | Wire Wire Line 2615 | 9225 12700 9350 12700 2616 | Wire Wire Line 2617 | 9225 12800 9300 12800 2618 | Connection ~ 9300 12800 2619 | Connection ~ 9300 12700 2620 | Wire Wire Line 2621 | 9650 12700 9750 12700 2622 | Wire Wire Line 2623 | 8100 12800 8175 12800 2624 | $Comp 2625 | L TP TP13 2626 | U 1 1 59A1C5A3 2627 | P 1900 7200 2628 | F 0 "TP13" H 1900 7050 60 0001 C CNN 2629 | F 1 "GND" H 1999 7200 60 0000 L CNN 2630 | F 2 "custom:TP_1.5x1.0" H 1900 7200 60 0001 C CNN 2631 | F 3 "" H 1900 7200 60 0000 C CNN 2632 | 1 1900 7200 2633 | 1 0 0 -1 2634 | $EndComp 2635 | Wire Wire Line 2636 | 1525 7200 1600 7200 2637 | Connection ~ 1525 7025 2638 | $Comp 2639 | L hole H4 2640 | U 1 1 59A03F0B 2641 | P 9700 2975 2642 | F 0 "H4" H 9828 3028 60 0000 L CNN 2643 | F 1 "hole" H 9828 2922 60 0000 L CNN 2644 | F 2 "custom:mouting_hole" H 9700 2975 60 0001 C CNN 2645 | F 3 "" H 9700 2975 60 0000 C CNN 2646 | 1 9700 2975 2647 | 1 0 0 -1 2648 | $EndComp 2649 | $Comp 2650 | L hole H3 2651 | U 1 1 59A0420D 2652 | P 9700 2700 2653 | F 0 "H3" H 9828 2753 60 0000 L CNN 2654 | F 1 "hole" H 9828 2647 60 0000 L CNN 2655 | F 2 "custom:mouting_hole" H 9700 2700 60 0001 C CNN 2656 | F 3 "" H 9700 2700 60 0000 C CNN 2657 | 1 9700 2700 2658 | 1 0 0 -1 2659 | $EndComp 2660 | $Comp 2661 | L hole H2 2662 | U 1 1 59A0452B 2663 | P 9700 2450 2664 | F 0 "H2" H 9828 2503 60 0000 L CNN 2665 | F 1 "hole" H 9828 2397 60 0000 L CNN 2666 | F 2 "custom:mouting_hole" H 9700 2450 60 0001 C CNN 2667 | F 3 "" H 9700 2450 60 0000 C CNN 2668 | 1 9700 2450 2669 | 1 0 0 -1 2670 | $EndComp 2671 | $Comp 2672 | L hole H1 2673 | U 1 1 59A04672 2674 | P 9700 2225 2675 | F 0 "H1" H 9828 2278 60 0000 L CNN 2676 | F 1 "hole" H 9828 2172 60 0000 L CNN 2677 | F 2 "custom:mouting_hole" H 9700 2225 60 0001 C CNN 2678 | F 3 "" H 9700 2225 60 0000 C CNN 2679 | 1 9700 2225 2680 | 1 0 0 -1 2681 | $EndComp 2682 | $Comp 2683 | L COAX ANT1 2684 | U 1 1 59AD1DEC 2685 | P 9050 1725 2686 | F 0 "ANT1" H 9075 2162 60 0000 C CNN 2687 | F 1 "COAX" H 9075 2056 60 0000 C CNN 2688 | F 2 "custom:U.FL-R-SMT-1" H 9200 1725 60 0001 C CNN 2689 | F 3 "" H 9200 1725 60 0001 C CNN 2690 | 1 9050 1725 2691 | 1 0 0 -1 2692 | $EndComp 2693 | $Comp 2694 | L GND #PWR043 2695 | U 1 1 59AD28F4 2696 | P 9425 1975 2697 | F 0 "#PWR043" H 9425 1725 50 0001 C CNN 2698 | F 1 "GND" H 9430 1802 50 0000 C CNN 2699 | F 2 "" H 9425 1975 50 0000 C CNN 2700 | F 3 "" H 9425 1975 50 0000 C CNN 2701 | 1 9425 1975 2702 | 1 0 0 -1 2703 | $EndComp 2704 | Wire Wire Line 2705 | 9425 1975 9425 1575 2706 | Wire Wire Line 2707 | 9425 1575 9400 1575 2708 | Wire Wire Line 2709 | 9400 1875 9425 1875 2710 | Connection ~ 9425 1875 2711 | $EndSCHEMATC 2712 | --------------------------------------------------------------------------------