├── .gitignore ├── README.md └── mk-0 ├── KiCAD ├── LICENSE └── TopBoard │ ├── #auto_saved_files# │ ├── DSP.kicad_sch │ ├── Interface.kicad_sch │ ├── Library │ ├── CUI_DEVICES_CMM-4030DT-26154-TR.step │ ├── CUI_DEVICES_SJ1-3533N.step │ ├── PinSocket_2x20_P2.54mm_Vertical_Through_SMD.kicad_mod │ ├── PinSocket_2x20_P2.54mm_Vertical_Through_SMD.stp │ ├── Power Ring.kicad_mod │ └── XDCR_CMM-4030DT-26154-TR.kicad_mod │ ├── Power.kicad_sch │ ├── TopBoard.kicad_pcb │ ├── TopBoard.kicad_prl │ ├── TopBoard.kicad_pro │ ├── TopBoard.kicad_sch │ ├── TopBoard.round-tracks-config │ ├── fp-lib-table │ ├── freerouting.frb │ ├── production │ ├── TopBoard.zip │ ├── backups │ │ └── TopBoard_2024-04-05_12-14-11.zip │ ├── bom.csv │ ├── designators.csv │ ├── netlist.ipc │ └── positions.csv │ └── schematic_pdf │ └── TopBoard.pdf ├── README.md ├── Reference Files ├── ESP32-LYRATD-MSC_A_V2.2-20220119.pdf ├── ESP32-LyraTD-MSC_B_V1_1-1109A.pdf ├── Microsemi_ZLS38063_Datasheet_v4-3.pdf ├── SCH_ESP32-S3-BOX-3-MB_V1.1_20230808.pdf └── esp32-s3_datasheet_en.pdf └── Signal-backups └── Signal-2024-03-25_144127.zip /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | fp-info-cache 3 | Wave-backups/* 4 | *.bak 5 | *.lck 6 | mk-0/KiCAD/Wave-backups/* 7 | mk-0/KiCAD/TopBoard/TopBoard-backups/* -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Wave Mark 0 Hardware 2 | 3 | *⛵️ Note that this repository is a work-in-progress. It will be updated and improved on over time.* 4 | 5 | This repository contains all of the designs and technical details of the Wave Smart Speaker Prototype. 6 | 7 | Each sub-directory represents a prototype device. Currently this consists of: 8 | - [Wave Mark 0](./mk-0) - the first Mark 0 prototype 9 | 10 | ## Our open hardware principles 11 | * **Copy our designs** – build your own 12 | * **Modify our designs** – remixing is encouraged 13 | * **Sell products based on our designs** – commercial use is permitted 14 | * **Always keep the open license** – contribute your output back to the community 15 | * **Credit the original author(s)** – like they do in science 16 | 17 | ## Feedback or ideas 18 | 19 | We are always keen to hear from the community about ways to improve these designs. Whether you're a hacker, maker, engineer, or something else - join us in the: -------------------------------------------------------------------------------- /mk-0/KiCAD/LICENSE: -------------------------------------------------------------------------------- 1 | CERN Open Hardware Licence Version 2 - Permissive 2 | 3 | Copyright (c) 2024 LibreTalk 4 | 5 | 6 | 1 Definitions 7 | 8 | 1.1 'Licence' means this CERN-OHL-P. 9 | 10 | 1.2 'Source' means information such as design materials or digital code 11 | which can be applied to Make or test a Product or to prepare a Product 12 | for use, Conveyance or sale, regardless of its medium or how it is 13 | expressed. It may include Notices. 14 | 15 | 1.3 'Covered Source' means Source that is explicitly made available under 16 | this Licence. 17 | 18 | 1.4 'Product' means any device, component, work or physical object, whether 19 | in finished or intermediate form, arising from the use, application or 20 | processing of Covered Source. 21 | 22 | 1.5 'Make' means to create or configure something, whether by manufacture, 23 | assembly, compiling, loading or applying Covered Source or another 24 | Product or otherwise. 25 | 26 | 1.6 'Notice' means copyright, acknowledgement and trademark notices, 27 | references to the location of any Notices, modification notices 28 | (subsection 3.3(b)) and all notices that refer to this Licence and to 29 | the disclaimer of warranties that are included in the Covered Source. 30 | 31 | 1.7 'Licensee' or 'You' means any person exercising rights under this 32 | Licence. 33 | 34 | 1.8 'Licensor' means a person who creates Source or modifies Covered Source 35 | and subsequently Conveys the resulting Covered Source under the terms 36 | and conditions of this Licence. A person may be a Licensee and a 37 | Licensor at the same time. 38 | 39 | 1.9 'Convey' means to communicate to the public or distribute. 40 | 41 | 42 | 2 Applicability 43 | 44 | 2.1 This Licence governs the use, copying, modification, Conveying of 45 | Covered Source and Products, and the Making of Products. By exercising 46 | any right granted under this Licence, You irrevocably accept these terms 47 | and conditions. 48 | 49 | 2.2 This Licence is granted by the Licensor directly to You, and shall apply 50 | worldwide and without limitation in time. 51 | 52 | 2.3 You shall not attempt to restrict by contract or otherwise the rights 53 | granted under this Licence to other Licensees. 54 | 55 | 2.4 This Licence is not intended to restrict fair use, fair dealing, or any 56 | other similar right. 57 | 58 | 59 | 3 Copying, Modifying and Conveying Covered Source 60 | 61 | 3.1 You may copy and Convey verbatim copies of Covered Source, in any 62 | medium, provided You retain all Notices. 63 | 64 | 3.2 You may modify Covered Source, other than Notices. 65 | 66 | You may only delete Notices if they are no longer applicable to the 67 | corresponding Covered Source as modified by You and You may add 68 | additional Notices applicable to Your modifications. 69 | 70 | 3.3 You may Convey modified Covered Source (with the effect that You shall 71 | also become a Licensor) provided that You: 72 | 73 | a) retain Notices as required in subsection 3.2; and 74 | 75 | b) add a Notice to the modified Covered Source stating that You have 76 | modified it, with the date and brief description of how You have 77 | modified it. 78 | 79 | 3.4 You may Convey Covered Source or modified Covered Source under licence 80 | terms which differ from the terms of this Licence provided that You: 81 | 82 | a) comply at all times with subsection 3.3; and 83 | 84 | b) provide a copy of this Licence to anyone to whom You Convey Covered 85 | Source or modified Covered Source. 86 | 87 | 88 | 4 Making and Conveying Products 89 | 90 | You may Make Products, and/or Convey them, provided that You ensure that the 91 | recipient of the Product has access to any Notices applicable to the Product. 92 | 93 | 94 | 5 DISCLAIMER AND LIABILITY 95 | 96 | 5.1 DISCLAIMER OF WARRANTY -- The Covered Source and any Products are 97 | provided 'as is' and any express or implied warranties, including, but 98 | not limited to, implied warranties of merchantability, of satisfactory 99 | quality, non-infringement of third party rights, and fitness for a 100 | particular purpose or use are disclaimed in respect of any Source or 101 | Product to the maximum extent permitted by law. The Licensor makes no 102 | representation that any Source or Product does not or will not infringe 103 | any patent, copyright, trade secret or other proprietary right. The 104 | entire risk as to the use, quality, and performance of any Source or 105 | Product shall be with You and not the Licensor. This disclaimer of 106 | warranty is an essential part of this Licence and a condition for the 107 | grant of any rights granted under this Licence. 108 | 109 | 5.2 EXCLUSION AND LIMITATION OF LIABILITY -- The Licensor shall, to the 110 | maximum extent permitted by law, have no liability for direct, indirect, 111 | special, incidental, consequential, exemplary, punitive or other damages 112 | of any character including, without limitation, procurement of 113 | substitute goods or services, loss of use, data or profits, or business 114 | interruption, however caused and on any theory of contract, warranty, 115 | tort (including negligence), product liability or otherwise, arising in 116 | any way in relation to the Covered Source, modified Covered Source 117 | and/or the Making or Conveyance of a Product, even if advised of the 118 | possibility of such damages, and You shall hold the Licensor(s) free and 119 | harmless from any liability, costs, damages, fees and expenses, 120 | including claims by third parties, in relation to such use. 121 | 122 | 123 | 6 Patents 124 | 125 | 6.1 Subject to the terms and conditions of this Licence, each Licensor 126 | hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, 127 | royalty-free, irrevocable (except as stated in this section 6, or where 128 | terminated by the Licensor for cause) patent licence to Make, have Made, 129 | use, offer to sell, sell, import, and otherwise transfer the Covered 130 | Source and Products, where such licence applies only to those patent 131 | claims licensable by such Licensor that are necessarily infringed by 132 | exercising rights under the Covered Source as Conveyed by that Licensor. 133 | 134 | 6.2 If You institute patent litigation against any entity (including a 135 | cross-claim or counterclaim in a lawsuit) alleging that the Covered 136 | Source or a Product constitutes direct or contributory patent 137 | infringement, or You seek any declaration that a patent licensed to You 138 | under this Licence is invalid or unenforceable then any rights granted 139 | to You under this Licence shall terminate as of the date such process is 140 | initiated. 141 | 142 | 143 | 7 General 144 | 145 | 7.1 If any provisions of this Licence are or subsequently become invalid or 146 | unenforceable for any reason, the remaining provisions shall remain 147 | effective. 148 | 149 | 7.2 You shall not use any of the name (including acronyms and 150 | abbreviations), image, or logo by which the Licensor or CERN is known, 151 | except where needed to comply with section 3, or where the use is 152 | otherwise allowed by law. Any such permitted use shall be factual and 153 | shall not be made so as to suggest any kind of endorsement or 154 | implication of involvement by the Licensor or its personnel. 155 | 156 | 7.3 CERN may publish updated versions and variants of this Licence which it 157 | considers to be in the spirit of this version, but may differ in detail 158 | to address new problems or concerns. New versions will be published with 159 | a unique version number and a variant identifier specifying the variant. 160 | If the Licensor has specified that a given variant applies to the 161 | Covered Source without specifying a version, You may treat that Covered 162 | Source as being released under any version of the CERN-OHL with that 163 | variant. If no variant is specified, the Covered Source shall be treated 164 | as being released under CERN-OHL-S. The Licensor may also specify that 165 | the Covered Source is subject to a specific version of the CERN-OHL or 166 | any later version in which case You may apply this or any later version 167 | of CERN-OHL with the same variant identifier published by CERN. 168 | 169 | 7.4 This Licence shall not be enforceable except by a Licensor acting as 170 | such, and third party beneficiary rights are specifically excluded. 171 | -------------------------------------------------------------------------------- /mk-0/KiCAD/TopBoard/#auto_saved_files#: -------------------------------------------------------------------------------- 1 | /mnt/ntfs/GitHub/LibreTalk/Wave/mk-0/KiCAD/TopBoard/_autosave-Interface.kicad_sch 2 | -------------------------------------------------------------------------------- /mk-0/KiCAD/TopBoard/Library/PinSocket_2x20_P2.54mm_Vertical_Through_SMD.kicad_mod: -------------------------------------------------------------------------------- 1 | (footprint "PinSocket_2x20_P2.54mm_Vertical_Through_SMD" 2 | (version 20240108) 3 | (generator "pcbnew") 4 | (generator_version "8.0") 5 | (layer "F.Cu") 6 | (descr "M20-7812045-3") 7 | (tags "Connector") 8 | (property "Reference" "J**" 9 | (at 0 0 0) 10 | (layer "F.SilkS") 11 | (uuid "8bfdb8a0-759f-4ed7-90d1-ef6c8d4b5647") 12 | (effects 13 | (font 14 | (size 1.27 1.27) 15 | (thickness 0.254) 16 | ) 17 | ) 18 | ) 19 | (property "Value" "PinSocket_2x20_P2.54mm_Vertical_Through_SMD" 20 | (at 0 0 0) 21 | (layer "F.SilkS") 22 | (hide yes) 23 | (uuid "6c19a71d-fed7-4e61-ae74-67cb20944abe") 24 | (effects 25 | (font 26 | (size 1.27 1.27) 27 | (thickness 0.254) 28 | ) 29 | ) 30 | ) 31 | (property "Footprint" "" 32 | (at 0 0 0) 33 | (unlocked yes) 34 | (layer "F.Fab") 35 | (hide yes) 36 | (uuid "09659f73-dff5-41cf-808f-c71806ac14b3") 37 | (effects 38 | (font 39 | (size 1.27 1.27) 40 | ) 41 | ) 42 | ) 43 | (property "Datasheet" "" 44 | (at 0 0 0) 45 | (unlocked yes) 46 | (layer "F.Fab") 47 | (hide yes) 48 | (uuid "9818c63d-817b-413e-8120-1f813e0898d7") 49 | (effects 50 | (font 51 | (size 1.27 1.27) 52 | ) 53 | ) 54 | ) 55 | (property "Description" "" 56 | (at 0 0 0) 57 | (unlocked yes) 58 | (layer "F.Fab") 59 | (hide yes) 60 | (uuid "d989cb23-63d3-4f0b-af25-db90728d2d70") 61 | (effects 62 | (font 63 | (size 1.27 1.27) 64 | ) 65 | ) 66 | ) 67 | (attr through_hole) 68 | (fp_line 69 | (start -25.4 -2.54) 70 | (end -25.4 2.54) 71 | (stroke 72 | (width 0.1) 73 | (type solid) 74 | ) 75 | (layer "F.SilkS") 76 | (uuid "0ef49fcf-969a-4d2c-b341-7d59adf61156") 77 | ) 78 | (fp_line 79 | (start 25.4 -2.54) 80 | (end 25.4 2.54) 81 | (stroke 82 | (width 0.1) 83 | (type solid) 84 | ) 85 | (layer "F.SilkS") 86 | (uuid "96e66af3-871d-4d4e-9070-8e2ebc31092e") 87 | ) 88 | (fp_line 89 | (start -26.4 -4.8) 90 | (end 26.4 -4.8) 91 | (stroke 92 | (width 0.1) 93 | (type solid) 94 | ) 95 | (layer "F.CrtYd") 96 | (uuid "e66e8b6b-304c-4393-9e08-333070ff8795") 97 | ) 98 | (fp_line 99 | (start -26.4 4.8) 100 | (end -26.4 -4.8) 101 | (stroke 102 | (width 0.1) 103 | (type solid) 104 | ) 105 | (layer "F.CrtYd") 106 | (uuid "b6231a5f-c708-4f5c-ab19-1184d061b20a") 107 | ) 108 | (fp_line 109 | (start 26.4 -4.8) 110 | (end 26.4 4.8) 111 | (stroke 112 | (width 0.1) 113 | (type solid) 114 | ) 115 | (layer "F.CrtYd") 116 | (uuid "f9067382-a6a9-4a92-a4ac-87e3cb2111ba") 117 | ) 118 | (fp_line 119 | (start 26.4 4.8) 120 | (end -26.4 4.8) 121 | (stroke 122 | (width 0.1) 123 | (type solid) 124 | ) 125 | (layer "F.CrtYd") 126 | (uuid "2b81a69b-1afe-4d59-89ff-5efe06a3d0f6") 127 | ) 128 | (fp_line 129 | (start -25.4 -2.54) 130 | (end 25.4 -2.54) 131 | (stroke 132 | (width 0.2) 133 | (type solid) 134 | ) 135 | (layer "F.Fab") 136 | (uuid "53da34a5-eb50-4cc3-b54e-bd8e76d1d71b") 137 | ) 138 | (fp_line 139 | (start -25.4 2.54) 140 | (end -25.4 -2.54) 141 | (stroke 142 | (width 0.2) 143 | (type solid) 144 | ) 145 | (layer "F.Fab") 146 | (uuid "ab635bf3-9ff2-4719-b34e-ff72ac748a5f") 147 | ) 148 | (fp_line 149 | (start 25.4 -2.54) 150 | (end 25.4 2.54) 151 | (stroke 152 | (width 0.2) 153 | (type solid) 154 | ) 155 | (layer "F.Fab") 156 | (uuid "8a71a93e-0c63-495d-86e9-018d956d3f2a") 157 | ) 158 | (fp_line 159 | (start 25.4 2.54) 160 | (end -25.4 2.54) 161 | (stroke 162 | (width 0.2) 163 | (type solid) 164 | ) 165 | (layer "F.Fab") 166 | (uuid "4af7c074-032d-4e31-b271-6f200c027241") 167 | ) 168 | (fp_text user "${REFERENCE}" 169 | (at 0 0 0) 170 | (layer "F.Fab") 171 | (uuid "ead19a55-77f2-47e0-8a01-995d75a1a496") 172 | (effects 173 | (font 174 | (size 1.27 1.27) 175 | (thickness 0.254) 176 | ) 177 | ) 178 | ) 179 | (pad "" np_thru_hole circle 180 | (at -24.13 -1.27) 181 | (size 1.02 1.02) 182 | (drill 1.02) 183 | (layers "*.Cu" "*.Mask") 184 | (uuid "e2d19196-cc9b-4526-a02b-001ecd0d04d7") 185 | ) 186 | (pad "" np_thru_hole circle 187 | (at -24.13 1.27) 188 | (size 1.02 1.02) 189 | (drill 1.02) 190 | (layers "F&B.Cu" "*.Mask") 191 | (uuid "fddbd3c8-ef46-4e59-9c62-5b9297209ecd") 192 | ) 193 | (pad "" np_thru_hole circle 194 | (at -22.86 0) 195 | (size 1.8 1.8) 196 | (drill 1.8) 197 | (layers "*.Cu" "*.Mask") 198 | (uuid "a8aa3e12-076a-490d-99da-d38b0e0abe3e") 199 | ) 200 | (pad "" np_thru_hole circle 201 | (at -21.59 -1.27) 202 | (size 1.02 1.02) 203 | (drill 1.02) 204 | (layers "*.Cu" "*.Mask") 205 | (uuid "7a41ca4b-e790-49d8-b333-3e0b149161e5") 206 | ) 207 | (pad "" np_thru_hole circle 208 | (at -21.59 1.27) 209 | (size 1.02 1.02) 210 | (drill 1.02) 211 | (layers "*.Cu" "*.Mask") 212 | (uuid "0b6680ce-b0ef-446e-9397-ad7c69e95e9a") 213 | ) 214 | (pad "" np_thru_hole circle 215 | (at -19.05 -1.27) 216 | (size 1.02 1.02) 217 | (drill 1.02) 218 | (layers "*.Cu" "*.Mask") 219 | (uuid "8b6204b9-c3fa-4f6e-87f6-a126429271e0") 220 | ) 221 | (pad "" np_thru_hole circle 222 | (at -19.05 1.27) 223 | (size 1.02 1.02) 224 | (drill 1.02) 225 | (layers "*.Cu" "*.Mask") 226 | (uuid "a1443575-e07c-4c6b-ab02-7b3287cab9e8") 227 | ) 228 | (pad "" np_thru_hole circle 229 | (at -16.51 -1.27) 230 | (size 1.02 1.02) 231 | (drill 1.02) 232 | (layers "*.Cu" "*.Mask") 233 | (uuid "34704330-bceb-4d35-90df-330cbb660100") 234 | ) 235 | (pad "" np_thru_hole circle 236 | (at -16.51 1.27) 237 | (size 1.02 1.02) 238 | (drill 1.02) 239 | (layers "*.Cu" "*.Mask") 240 | (uuid "d56844ed-6c24-44a6-b63b-1bc3c6c1212d") 241 | ) 242 | (pad "" np_thru_hole circle 243 | (at -13.97 -1.27) 244 | (size 1.02 1.02) 245 | (drill 1.02) 246 | (layers "*.Cu" "*.Mask") 247 | (uuid "3008f6f5-1c9a-427b-b1e3-a8f841b5a0c5") 248 | ) 249 | (pad "" np_thru_hole circle 250 | (at -13.97 1.27) 251 | (size 1.02 1.02) 252 | (drill 1.02) 253 | (layers "*.Cu" "*.Mask") 254 | (uuid "c359cbe5-1bb3-4534-a8bf-3737debed08a") 255 | ) 256 | (pad "" np_thru_hole circle 257 | (at -11.43 -1.27) 258 | (size 1.02 1.02) 259 | (drill 1.02) 260 | (layers "*.Cu" "*.Mask") 261 | (uuid "143b0ca1-8fa5-40af-8ff9-1749a834665d") 262 | ) 263 | (pad "" np_thru_hole circle 264 | (at -11.43 1.27) 265 | (size 1.02 1.02) 266 | (drill 1.02) 267 | (layers "*.Cu" "*.Mask") 268 | (uuid "be87a3f4-f33b-4e3c-ad02-5cc616261eec") 269 | ) 270 | (pad "" np_thru_hole circle 271 | (at -8.89 -1.27) 272 | (size 1.02 1.02) 273 | (drill 1.02) 274 | (layers "*.Cu" "*.Mask") 275 | (uuid "05d09c4e-5e0f-4527-a160-10cf097bc4a0") 276 | ) 277 | (pad "" np_thru_hole circle 278 | (at -8.89 1.27) 279 | (size 1.02 1.02) 280 | (drill 1.02) 281 | (layers "*.Cu" "*.Mask") 282 | (uuid "23813c3a-154e-4876-a260-ba0620f4f321") 283 | ) 284 | (pad "" np_thru_hole circle 285 | (at -6.35 -1.27) 286 | (size 1.02 1.02) 287 | (drill 1.02) 288 | (layers "*.Cu" "*.Mask") 289 | (uuid "48b0b67c-a40a-4520-9505-253a171c75aa") 290 | ) 291 | (pad "" np_thru_hole circle 292 | (at -6.35 1.27) 293 | (size 1.02 1.02) 294 | (drill 1.02) 295 | (layers "*.Cu" "*.Mask") 296 | (uuid "38c65b49-c764-4e30-a1e0-b7d2c15da175") 297 | ) 298 | (pad "" np_thru_hole circle 299 | (at -3.81 -1.27) 300 | (size 1.02 1.02) 301 | (drill 1.02) 302 | (layers "*.Cu" "*.Mask") 303 | (uuid "66797e17-8159-474b-a3b6-569abd8b40ad") 304 | ) 305 | (pad "" np_thru_hole circle 306 | (at -3.81 1.27) 307 | (size 1.02 1.02) 308 | (drill 1.02) 309 | (layers "*.Cu" "*.Mask") 310 | (uuid "1f3b3a7a-8e14-46c4-b2d6-dbef85069cd2") 311 | ) 312 | (pad "" np_thru_hole circle 313 | (at -1.27 -1.27) 314 | (size 1.02 1.02) 315 | (drill 1.02) 316 | (layers "*.Cu" "*.Mask") 317 | (uuid "42f5d109-af1c-44e9-8a14-8ad84b1c65c9") 318 | ) 319 | (pad "" np_thru_hole circle 320 | (at -1.27 1.27) 321 | (size 1.02 1.02) 322 | (drill 1.02) 323 | (layers "*.Cu" "*.Mask") 324 | (uuid "490cf7cc-decc-4c1e-ba09-541d800dcae1") 325 | ) 326 | (pad "" np_thru_hole circle 327 | (at 1.27 -1.27) 328 | (size 1.02 1.02) 329 | (drill 1.02) 330 | (layers "*.Cu" "*.Mask") 331 | (uuid "51b771ba-c887-4ad2-bced-b954e024c284") 332 | ) 333 | (pad "" np_thru_hole circle 334 | (at 1.27 1.27) 335 | (size 1.02 1.02) 336 | (drill 1.02) 337 | (layers "*.Cu" "*.Mask") 338 | (uuid "c2ee578d-6300-48be-8d6f-c34e78ed79e2") 339 | ) 340 | (pad "" np_thru_hole circle 341 | (at 3.81 -1.27) 342 | (size 1.02 1.02) 343 | (drill 1.02) 344 | (layers "*.Cu" "*.Mask") 345 | (uuid "3bbc5468-d19e-4447-8d74-24958ec038a3") 346 | ) 347 | (pad "" np_thru_hole circle 348 | (at 3.81 1.27) 349 | (size 1.02 1.02) 350 | (drill 1.02) 351 | (layers "*.Cu" "*.Mask") 352 | (uuid "a89fef90-1ee9-42d0-bda7-c97729c72e1d") 353 | ) 354 | (pad "" np_thru_hole circle 355 | (at 6.35 -1.27) 356 | (size 1.02 1.02) 357 | (drill 1.02) 358 | (layers "*.Cu" "*.Mask") 359 | (uuid "1133bec5-7c4e-40e3-9cea-b1fd5f3c2bc3") 360 | ) 361 | (pad "" np_thru_hole circle 362 | (at 6.35 1.27) 363 | (size 1.02 1.02) 364 | (drill 1.02) 365 | (layers "*.Cu" "*.Mask") 366 | (uuid "2fbb543d-912c-448d-8753-71dfa900751a") 367 | ) 368 | (pad "" np_thru_hole circle 369 | (at 8.89 -1.27) 370 | (size 1.02 1.02) 371 | (drill 1.02) 372 | (layers "*.Cu" "*.Mask") 373 | (uuid "3959a6c2-259d-49e1-9934-7d003701936f") 374 | ) 375 | (pad "" np_thru_hole circle 376 | (at 8.89 1.27) 377 | (size 1.02 1.02) 378 | (drill 1.02) 379 | (layers "*.Cu" "*.Mask") 380 | (uuid "5a11c565-5c1e-49fc-a369-c16db517b920") 381 | ) 382 | (pad "" np_thru_hole circle 383 | (at 11.43 -1.27) 384 | (size 1.02 1.02) 385 | (drill 1.02) 386 | (layers "*.Cu" "*.Mask") 387 | (uuid "76b87734-bedd-4098-9da4-99d3c71bff25") 388 | ) 389 | (pad "" np_thru_hole circle 390 | (at 11.43 1.27) 391 | (size 1.02 1.02) 392 | (drill 1.02) 393 | (layers "*.Cu" "*.Mask") 394 | (uuid "e53ea9fb-5267-46a4-a7a8-ea45b8a2708a") 395 | ) 396 | (pad "" np_thru_hole circle 397 | (at 13.97 -1.27) 398 | (size 1.02 1.02) 399 | (drill 1.02) 400 | (layers "*.Cu" "*.Mask") 401 | (uuid "d492af06-6130-4b73-ba76-9e461b794a18") 402 | ) 403 | (pad "" np_thru_hole circle 404 | (at 13.97 1.27) 405 | (size 1.02 1.02) 406 | (drill 1.02) 407 | (layers "*.Cu" "*.Mask") 408 | (uuid "7c18275e-f278-43b2-8971-1639d8c56144") 409 | ) 410 | (pad "" np_thru_hole circle 411 | (at 16.51 -1.27) 412 | (size 1.02 1.02) 413 | (drill 1.02) 414 | (layers "*.Cu" "*.Mask") 415 | (uuid "2abebdb4-62b2-44f6-a177-30ac31a7a67b") 416 | ) 417 | (pad "" np_thru_hole circle 418 | (at 16.51 1.27) 419 | (size 1.02 1.02) 420 | (drill 1.02) 421 | (layers "*.Cu" "*.Mask") 422 | (uuid "9a18f7fa-a590-4ecd-bbf8-d1bf0d95f435") 423 | ) 424 | (pad "" np_thru_hole circle 425 | (at 19.05 -1.27) 426 | (size 1.02 1.02) 427 | (drill 1.02) 428 | (layers "*.Cu" "*.Mask") 429 | (uuid "1cd0c61f-f276-4350-864f-aa877491dc65") 430 | ) 431 | (pad "" np_thru_hole circle 432 | (at 19.05 1.27) 433 | (size 1.02 1.02) 434 | (drill 1.02) 435 | (layers "*.Cu" "*.Mask") 436 | (uuid "bba4e29d-7d8d-41c8-bdc7-089d27f407c1") 437 | ) 438 | (pad "" np_thru_hole circle 439 | (at 21.59 -1.27) 440 | (size 1.02 1.02) 441 | (drill 1.02) 442 | (layers "*.Cu" "*.Mask") 443 | (uuid "0d5563f8-2237-498f-943c-529dbf24bc27") 444 | ) 445 | (pad "" np_thru_hole circle 446 | (at 21.59 1.27) 447 | (size 1.02 1.02) 448 | (drill 1.02) 449 | (layers "*.Cu" "*.Mask") 450 | (uuid "d1d14431-8011-4ac2-9807-4a4d19c96a5a") 451 | ) 452 | (pad "" np_thru_hole circle 453 | (at 22.86 0) 454 | (size 1.8 1.8) 455 | (drill 1.8) 456 | (layers "*.Cu" "*.Mask") 457 | (uuid "3c096259-634a-46cd-800c-bde56e6a8971") 458 | ) 459 | (pad "" np_thru_hole circle 460 | (at 24.13 -1.27) 461 | (size 1.02 1.02) 462 | (drill 1.02) 463 | (layers "*.Cu" "*.Mask") 464 | (uuid "d64ae679-7157-4e35-b397-e9a3c579aaef") 465 | ) 466 | (pad "" np_thru_hole circle 467 | (at 24.13 1.27) 468 | (size 1.02 1.02) 469 | (drill 1.02) 470 | (layers "*.Cu" "*.Mask") 471 | (uuid "86308435-8fae-4df3-87ad-3e53823e948c") 472 | ) 473 | (pad "1" smd rect 474 | (at -24.13 2.91) 475 | (size 1.02 1.78) 476 | (layers "F.Cu" "F.Paste" "F.Mask") 477 | (uuid "34efaf1e-0d49-4723-9a14-3a7ea6d33f03") 478 | ) 479 | (pad "2" smd rect 480 | (at -24.13 -2.91) 481 | (size 1.02 1.78) 482 | (layers "F.Cu" "F.Paste" "F.Mask") 483 | (uuid "5ff0263e-cf51-4657-910d-a7de9bf0a56d") 484 | ) 485 | (pad "3" smd rect 486 | (at -21.59 2.91) 487 | (size 1.02 1.78) 488 | (layers "F.Cu" "F.Paste" "F.Mask") 489 | (uuid "64d15737-6433-4d53-acc1-dc6937b873cb") 490 | ) 491 | (pad "4" smd rect 492 | (at -21.59 -2.91) 493 | (size 1.02 1.78) 494 | (layers "F.Cu" "F.Paste" "F.Mask") 495 | (uuid "39ad136d-3034-45f5-9a28-4ed85f6f8b91") 496 | ) 497 | (pad "5" smd rect 498 | (at -19.05 2.91) 499 | (size 1.02 1.78) 500 | (layers "F.Cu" "F.Paste" "F.Mask") 501 | (uuid "7c3cd126-ccdc-46c0-aa9c-a9598d5b143c") 502 | ) 503 | (pad "6" smd rect 504 | (at -19.05 -2.91) 505 | (size 1.02 1.78) 506 | (layers "F.Cu" "F.Paste" "F.Mask") 507 | (uuid "70d79293-b546-4a4a-81be-2fded4248936") 508 | ) 509 | (pad "7" smd rect 510 | (at -16.51 2.91) 511 | (size 1.02 1.78) 512 | (layers "F.Cu" "F.Paste" "F.Mask") 513 | (uuid "5992dc26-2ce7-4aa0-ad5c-24845ffaff86") 514 | ) 515 | (pad "8" smd rect 516 | (at -16.51 -2.91) 517 | (size 1.02 1.78) 518 | (layers "F.Cu" "F.Paste" "F.Mask") 519 | (uuid "d9311272-3f0a-4222-a9b9-b0656b7a6beb") 520 | ) 521 | (pad "9" smd rect 522 | (at -13.97 2.91) 523 | (size 1.02 1.78) 524 | (layers "F.Cu" "F.Paste" "F.Mask") 525 | (uuid "1bef78c6-a1ed-4f8d-8de8-bbe670d317b6") 526 | ) 527 | (pad "10" smd rect 528 | (at -13.97 -2.91) 529 | (size 1.02 1.78) 530 | (layers "F.Cu" "F.Paste" "F.Mask") 531 | (uuid "48981b48-e9fe-4ad5-ab6d-ae77e56fe1fe") 532 | ) 533 | (pad "11" smd rect 534 | (at -11.43 2.91) 535 | (size 1.02 1.78) 536 | (layers "F.Cu" "F.Paste" "F.Mask") 537 | (uuid "8d957f74-8493-46e0-b1ed-553e8bbe48a1") 538 | ) 539 | (pad "12" smd rect 540 | (at -11.43 -2.91) 541 | (size 1.02 1.78) 542 | (layers "F.Cu" "F.Paste" "F.Mask") 543 | (uuid "f8e53464-a2cd-4531-9f00-887625203f27") 544 | ) 545 | (pad "13" smd rect 546 | (at -8.89 2.91) 547 | (size 1.02 1.78) 548 | (layers "F.Cu" "F.Paste" "F.Mask") 549 | (uuid "3acfc304-c3b9-461b-8417-35ba8f0c6ec0") 550 | ) 551 | (pad "14" smd rect 552 | (at -8.89 -2.91) 553 | (size 1.02 1.78) 554 | (layers "F.Cu" "F.Paste" "F.Mask") 555 | (uuid "c885c628-fa05-4bc2-beac-85e1d25adac1") 556 | ) 557 | (pad "15" smd rect 558 | (at -6.35 2.91) 559 | (size 1.02 1.78) 560 | (layers "F.Cu" "F.Paste" "F.Mask") 561 | (uuid "a258a047-ed61-441a-9e1b-095e40d50a86") 562 | ) 563 | (pad "16" smd rect 564 | (at -6.35 -2.91) 565 | (size 1.02 1.78) 566 | (layers "F.Cu" "F.Paste" "F.Mask") 567 | (uuid "2ca172a0-20cb-40c6-924f-ad3e3f73fbbc") 568 | ) 569 | (pad "17" smd rect 570 | (at -3.81 2.91) 571 | (size 1.02 1.78) 572 | (layers "F.Cu" "F.Paste" "F.Mask") 573 | (uuid "edbec83c-fb22-44de-9d86-7e801b99699f") 574 | ) 575 | (pad "18" smd rect 576 | (at -3.81 -2.91) 577 | (size 1.02 1.78) 578 | (layers "F.Cu" "F.Paste" "F.Mask") 579 | (uuid "6872be9d-a00b-4b61-8427-41101e85da90") 580 | ) 581 | (pad "19" smd rect 582 | (at -1.27 2.91) 583 | (size 1.02 1.78) 584 | (layers "F.Cu" "F.Paste" "F.Mask") 585 | (uuid "246c11ef-2d5d-494a-b8d7-29a676be480f") 586 | ) 587 | (pad "20" smd rect 588 | (at -1.27 -2.91) 589 | (size 1.02 1.78) 590 | (layers "F.Cu" "F.Paste" "F.Mask") 591 | (uuid "5009cfb1-c995-4a14-8d64-cd6ff9d0afaf") 592 | ) 593 | (pad "21" smd rect 594 | (at 1.27 2.91) 595 | (size 1.02 1.78) 596 | (layers "F.Cu" "F.Paste" "F.Mask") 597 | (uuid "c024f6fb-30b2-4423-bacb-1d8778750486") 598 | ) 599 | (pad "22" smd rect 600 | (at 1.27 -2.91) 601 | (size 1.02 1.78) 602 | (layers "F.Cu" "F.Paste" "F.Mask") 603 | (uuid "f6343059-4ae1-4ab3-9625-4b01ac078cf4") 604 | ) 605 | (pad "23" smd rect 606 | (at 3.81 2.91) 607 | (size 1.02 1.78) 608 | (layers "F.Cu" "F.Paste" "F.Mask") 609 | (uuid "257bd1a7-881a-4bd5-8e76-eedf113a8dfb") 610 | ) 611 | (pad "24" smd rect 612 | (at 3.81 -2.91) 613 | (size 1.02 1.78) 614 | (layers "F.Cu" "F.Paste" "F.Mask") 615 | (uuid "f579b142-e72c-465b-8171-696cb09f7659") 616 | ) 617 | (pad "25" smd rect 618 | (at 6.35 2.91) 619 | (size 1.02 1.78) 620 | (layers "F.Cu" "F.Paste" "F.Mask") 621 | (uuid "8e3fc409-166c-4fec-96fb-e5820b505616") 622 | ) 623 | (pad "26" smd rect 624 | (at 6.35 -2.91) 625 | (size 1.02 1.78) 626 | (layers "F.Cu" "F.Paste" "F.Mask") 627 | (uuid "9483ac13-8a2f-4fe5-a95c-440d88056935") 628 | ) 629 | (pad "27" smd rect 630 | (at 8.89 2.91) 631 | (size 1.02 1.78) 632 | (layers "F.Cu" "F.Paste" "F.Mask") 633 | (uuid "52855177-017e-42a7-8330-2b127f546361") 634 | ) 635 | (pad "28" smd rect 636 | (at 8.89 -2.91) 637 | (size 1.02 1.78) 638 | (layers "F.Cu" "F.Paste" "F.Mask") 639 | (uuid "be6c4df7-427e-4377-8e03-f77a595c3e27") 640 | ) 641 | (pad "29" smd rect 642 | (at 11.43 2.91) 643 | (size 1.02 1.78) 644 | (layers "F.Cu" "F.Paste" "F.Mask") 645 | (uuid "e40b3915-020a-4853-abc5-f35a7b104a88") 646 | ) 647 | (pad "30" smd rect 648 | (at 11.43 -2.91) 649 | (size 1.02 1.78) 650 | (layers "F.Cu" "F.Paste" "F.Mask") 651 | (uuid "ce74f2a4-c593-4c54-af69-649171e10e4b") 652 | ) 653 | (pad "31" smd rect 654 | (at 13.97 2.91) 655 | (size 1.02 1.78) 656 | (layers "F.Cu" "F.Paste" "F.Mask") 657 | (uuid "2b91ca69-22b8-487c-8f88-d4da2f7adddf") 658 | ) 659 | (pad "32" smd rect 660 | (at 13.97 -2.91) 661 | (size 1.02 1.78) 662 | (layers "F.Cu" "F.Paste" "F.Mask") 663 | (uuid "f84d4cdc-ec90-4192-9e94-a44f7db8286b") 664 | ) 665 | (pad "33" smd rect 666 | (at 16.51 2.91) 667 | (size 1.02 1.78) 668 | (layers "F.Cu" "F.Paste" "F.Mask") 669 | (uuid "868e4f10-817c-49d4-94c4-feaa3392f998") 670 | ) 671 | (pad "34" smd rect 672 | (at 16.51 -2.91) 673 | (size 1.02 1.78) 674 | (layers "F.Cu" "F.Paste" "F.Mask") 675 | (uuid "e464e78f-157f-4a44-9631-f1544e4085ef") 676 | ) 677 | (pad "35" smd rect 678 | (at 19.05 2.91) 679 | (size 1.02 1.78) 680 | (layers "F.Cu" "F.Paste" "F.Mask") 681 | (uuid "c1287a34-183c-4fc4-b217-35bc29fcb016") 682 | ) 683 | (pad "36" smd rect 684 | (at 19.05 -2.91) 685 | (size 1.02 1.78) 686 | (layers "F.Cu" "F.Paste" "F.Mask") 687 | (uuid "9423ea32-fa86-4f24-81cf-91b814b3ab54") 688 | ) 689 | (pad "37" smd rect 690 | (at 21.59 2.91) 691 | (size 1.02 1.78) 692 | (layers "F.Cu" "F.Paste" "F.Mask") 693 | (uuid "9749fee3-8ced-486b-a63c-ef59ff850351") 694 | ) 695 | (pad "38" smd rect 696 | (at 21.59 -2.91) 697 | (size 1.02 1.78) 698 | (layers "F.Cu" "F.Paste" "F.Mask") 699 | (uuid "9a6ebf8e-735e-497c-bcaa-ae4bc78af566") 700 | ) 701 | (pad "39" smd rect 702 | (at 24.13 2.91) 703 | (size 1.02 1.78) 704 | (layers "F.Cu" "F.Paste" "F.Mask") 705 | (uuid "e11f0347-ee43-4178-bf97-e67f7cba4fa3") 706 | ) 707 | (pad "40" smd rect 708 | (at 24.13 -2.91) 709 | (size 1.02 1.78) 710 | (layers "F.Cu" "F.Paste" "F.Mask") 711 | (uuid "18b4a1a5-5acb-4d58-9766-78c47092ad55") 712 | ) 713 | (model "${KIPRJMOD}/Library/PinSocket_2x20_P2.54mm_Vertical_Through_SMD.stp" 714 | (offset 715 | (xyz 0 0 2) 716 | ) 717 | (scale 718 | (xyz 1 1 1) 719 | ) 720 | (rotate 721 | (xyz -90 0 0) 722 | ) 723 | ) 724 | ) -------------------------------------------------------------------------------- /mk-0/KiCAD/TopBoard/Library/Power Ring.kicad_mod: -------------------------------------------------------------------------------- 1 | (footprint "Power Ring" 2 | (version 20240108) 3 | (generator "pcbnew") 4 | (generator_version "8.0") 5 | (layer "F.Cu") 6 | (property "Reference" "REF**" 7 | (at 0 -0.5 0) 8 | (unlocked yes) 9 | (layer "F.SilkS") 10 | (uuid "e29e9af9-a3a2-46d2-b2f4-305e343a2722") 11 | (effects 12 | (font 13 | (size 1 1) 14 | (thickness 0.1) 15 | ) 16 | ) 17 | ) 18 | (property "Value" "Power Ring" 19 | (at 0 1 0) 20 | (unlocked yes) 21 | (layer "F.Fab") 22 | (uuid "2d4559da-6a54-416a-b4af-8dd52381f79a") 23 | (effects 24 | (font 25 | (size 1 1) 26 | (thickness 0.15) 27 | ) 28 | ) 29 | ) 30 | (property "Footprint" "" 31 | (at 0 0 0) 32 | (unlocked yes) 33 | (layer "F.Fab") 34 | (hide yes) 35 | (uuid "d2ba662d-4e6b-4aa8-a2d0-8edb955856cf") 36 | (effects 37 | (font 38 | (size 1 1) 39 | (thickness 0.15) 40 | ) 41 | ) 42 | ) 43 | (property "Datasheet" "" 44 | (at 0 0 0) 45 | (unlocked yes) 46 | (layer "F.Fab") 47 | (hide yes) 48 | (uuid "2f3c1f2a-8133-4eb8-b61d-5866edfe29cc") 49 | (effects 50 | (font 51 | (size 1 1) 52 | (thickness 0.15) 53 | ) 54 | ) 55 | ) 56 | (property "Description" "" 57 | (at 0 0 0) 58 | (unlocked yes) 59 | (layer "F.Fab") 60 | (hide yes) 61 | (uuid "cd4c2936-6c4d-4f4e-8087-61fc7128bde8") 62 | (effects 63 | (font 64 | (size 1 1) 65 | (thickness 0.15) 66 | ) 67 | ) 68 | ) 69 | (attr smd) 70 | (fp_circle 71 | (center 0 0) 72 | (end 43 0) 73 | (stroke 74 | (width 1) 75 | (type default) 76 | ) 77 | (fill none) 78 | (layer "F.Cu") 79 | (uuid "feb80fee-b20d-4199-b8b3-27b98e7e68ae") 80 | ) 81 | (fp_text user "${REFERENCE}" 82 | (at 0 2.5 0) 83 | (unlocked yes) 84 | (layer "F.Fab") 85 | (uuid "19c314db-413f-4a0c-83dd-a338f8bbbd6d") 86 | (effects 87 | (font 88 | (size 1 1) 89 | (thickness 0.15) 90 | ) 91 | ) 92 | ) 93 | ) -------------------------------------------------------------------------------- /mk-0/KiCAD/TopBoard/Library/XDCR_CMM-4030DT-26154-TR.kicad_mod: -------------------------------------------------------------------------------- 1 | 2 | (footprint XDCR_CMM-4030DT-26154-TR (layer F.Cu) (tedit 6601E1E4) 3 | (descr "") 4 | (attr smd) 5 | (fp_text reference REF** (at -0.075 -3.485 0) (layer F.SilkS) 6 | (effects (font (size 1.0 1.0) (thickness 0.15))) 7 | ) 8 | (fp_text value XDCR_CMM-4030DT-26154-TR (at 11.89 3.395 0) (layer F.Fab) 9 | (effects (font (size 1.0 1.0) (thickness 0.15))) 10 | ) 11 | (pad 1 smd rect (at 0.425 0.675 180.0) (size 0.45 0.95) (layers F.Cu F.Mask F.Paste) (solder_mask_margin 0.102)) 12 | (pad 2 smd rect (at 0.425 -0.675 180.0) (size 0.45 0.95) (layers F.Cu F.Mask F.Paste) (solder_mask_margin 0.102)) 13 | (pad 3 smd rect (at -0.425 -0.675 180.0) (size 0.45 0.95) (layers F.Cu F.Mask F.Paste) (solder_mask_margin 0.102)) 14 | (pad 4 smd rect (at -0.425 0.675 180.0) (size 0.45 0.95) (layers F.Cu F.Mask F.Paste) (solder_mask_margin 0.102)) 15 | (pad 5 smd rect (at 0.0 1.775 180.0) (size 1.3 0.45) (layers F.Cu F.Mask F.Paste) (solder_mask_margin 0.102)) 16 | (pad 6 smd rect (at 1.275 0.0 180.0) (size 0.45 2.3) (layers F.Cu F.Mask F.Paste) (solder_mask_margin 0.102)) 17 | (pad 7 smd rect (at 0.0 -1.775 180.0) (size 1.3 0.45) (layers F.Cu F.Mask F.Paste) (solder_mask_margin 0.102)) 18 | (pad 8 smd rect (at -1.275 0.0 180.0) (size 0.45 2.3) (layers F.Cu F.Mask F.Paste) (solder_mask_margin 0.102)) 19 | (fp_line (start 1.75 -2.25) (end 1.75 2.25) (layer F.CrtYd) (width 0.05)) 20 | (fp_line (start 1.75 2.25) (end -1.75 2.25) (layer F.CrtYd) (width 0.05)) 21 | (fp_line (start -1.75 2.25) (end -1.75 -2.25) (layer F.CrtYd) (width 0.05)) 22 | (fp_line (start -1.75 -2.25) (end 1.75 -2.25) (layer F.CrtYd) (width 0.05)) 23 | (fp_circle (center 2.04 0.705) (end 2.14 0.705) (layer F.SilkS) (width 0.2)) 24 | (fp_circle (center 2.035 0.705) (end 2.135 0.705) (layer F.Fab) (width 0.2)) 25 | (fp_line (start 1.5 2.0) (end -1.5 2.0) (layer F.Fab) (width 0.127)) 26 | (fp_line (start -1.5 2.0) (end -1.5 -2.0) (layer F.Fab) (width 0.127)) 27 | (fp_line (start -1.5 -2.0) (end 1.5 -2.0) (layer F.Fab) (width 0.127)) 28 | (fp_line (start 1.5 -2.0) (end 1.5 2.0) (layer F.Fab) (width 0.127)) 29 | (fp_line (start -1.5 -2.0) (end -1.0 -2.0) (layer F.SilkS) (width 0.127)) 30 | (fp_line (start 1.5 -2.0) (end 1.0 -2.0) (layer F.SilkS) (width 0.127)) 31 | (fp_line (start -1.5 2.0) (end -1.0 2.0) (layer F.SilkS) (width 0.127)) 32 | (fp_line (start 1.5 2.0) (end 0.9 2.0) (layer F.SilkS) (width 0.127)) 33 | (fp_line (start -1.5 -2.0) (end -1.5 -1.4) (layer F.SilkS) (width 0.127)) 34 | (fp_line (start 1.5 -2.0) (end 1.5 -1.4) (layer F.SilkS) (width 0.127)) 35 | (fp_line (start -1.5 1.5) (end -1.5 2.0) (layer F.SilkS) (width 0.127)) 36 | (fp_line (start 1.5 1.5) (end 1.5 2.0) (layer F.SilkS) (width 0.127)) 37 | ) -------------------------------------------------------------------------------- /mk-0/KiCAD/TopBoard/TopBoard.kicad_prl: -------------------------------------------------------------------------------- 1 | { 2 | "board": { 3 | "active_layer": 31, 4 | "active_layer_preset": "All Layers", 5 | "auto_track_width": false, 6 | "hidden_netclasses": [], 7 | "hidden_nets": [], 8 | "high_contrast_mode": 0, 9 | "net_color_mode": 1, 10 | "opacity": { 11 | "images": 0.6, 12 | "pads": 1.0, 13 | "tracks": 1.0, 14 | "vias": 1.0, 15 | "zones": 0.6 16 | }, 17 | "selection_filter": { 18 | "dimensions": true, 19 | "footprints": true, 20 | "graphics": true, 21 | "keepouts": true, 22 | "lockedItems": true, 23 | "otherItems": true, 24 | "pads": true, 25 | "text": true, 26 | "tracks": true, 27 | "vias": true, 28 | "zones": true 29 | }, 30 | "visible_items": [ 31 | 0, 32 | 1, 33 | 2, 34 | 3, 35 | 4, 36 | 5, 37 | 8, 38 | 9, 39 | 10, 40 | 11, 41 | 12, 42 | 13, 43 | 15, 44 | 16, 45 | 17, 46 | 18, 47 | 19, 48 | 20, 49 | 21, 50 | 22, 51 | 23, 52 | 24, 53 | 25, 54 | 26, 55 | 27, 56 | 28, 57 | 29, 58 | 30, 59 | 32, 60 | 33, 61 | 34, 62 | 35, 63 | 36, 64 | 39, 65 | 40 66 | ], 67 | "visible_layers": "fffffff_ffffffff", 68 | "zone_display_mode": 0 69 | }, 70 | "git": { 71 | "repo_password": "", 72 | "repo_type": "", 73 | "repo_username": "", 74 | "ssh_key": "" 75 | }, 76 | "meta": { 77 | "filename": "TopBoard.kicad_prl", 78 | "version": 3 79 | }, 80 | "project": { 81 | "files": [] 82 | } 83 | } 84 | -------------------------------------------------------------------------------- /mk-0/KiCAD/TopBoard/TopBoard.kicad_pro: -------------------------------------------------------------------------------- 1 | { 2 | "board": { 3 | "3dviewports": [], 4 | "design_settings": { 5 | "defaults": { 6 | "apply_defaults_to_fp_fields": false, 7 | "apply_defaults_to_fp_shapes": false, 8 | "apply_defaults_to_fp_text": false, 9 | "board_outline_line_width": 0.038099999999999995, 10 | "copper_line_width": 0.254, 11 | "copper_text_italic": false, 12 | "copper_text_size_h": 1.524, 13 | "copper_text_size_v": 1.524, 14 | "copper_text_thickness": 0.30479999999999996, 15 | "copper_text_upright": false, 16 | "courtyard_line_width": 0.049999999999999996, 17 | "dimension_precision": 4, 18 | "dimension_units": 3, 19 | "dimensions": { 20 | "arrow_length": 1270000, 21 | "extension_offset": 500000, 22 | "keep_text_aligned": true, 23 | "suppress_zeroes": false, 24 | "text_position": 0, 25 | "units_format": 1 26 | }, 27 | "fab_line_width": 0.09999999999999999, 28 | "fab_text_italic": false, 29 | "fab_text_size_h": 1.0, 30 | "fab_text_size_v": 1.0, 31 | "fab_text_thickness": 0.15, 32 | "fab_text_upright": false, 33 | "other_line_width": 0.09999999999999999, 34 | "other_text_italic": false, 35 | "other_text_size_h": 1.0, 36 | "other_text_size_v": 1.0, 37 | "other_text_thickness": 0.15, 38 | "other_text_upright": false, 39 | "pads": { 40 | "drill": 1.02, 41 | "height": 1.02, 42 | "width": 1.02 43 | }, 44 | "silk_line_width": 0.15239999999999998, 45 | "silk_text_italic": false, 46 | "silk_text_size_h": 0.8128, 47 | "silk_text_size_v": 0.8128, 48 | "silk_text_thickness": 0.15239999999999998, 49 | "silk_text_upright": false, 50 | "zones": { 51 | "45_degree_only": true, 52 | "min_clearance": 0.0 53 | } 54 | }, 55 | "diff_pair_dimensions": [ 56 | { 57 | "gap": 0.0, 58 | "via_gap": 0.0, 59 | "width": 0.0 60 | } 61 | ], 62 | "drc_exclusions": [], 63 | "meta": { 64 | "version": 2 65 | }, 66 | "rule_severities": { 67 | "annular_width": "error", 68 | "clearance": "error", 69 | "connection_width": "warning", 70 | "copper_edge_clearance": "error", 71 | "copper_sliver": "warning", 72 | "courtyards_overlap": "error", 73 | "diff_pair_gap_out_of_range": "error", 74 | "diff_pair_uncoupled_length_too_long": "error", 75 | "drill_out_of_range": "error", 76 | "duplicate_footprints": "warning", 77 | "extra_footprint": "warning", 78 | "footprint": "error", 79 | "footprint_symbol_mismatch": "warning", 80 | "footprint_type_mismatch": "ignore", 81 | "hole_clearance": "error", 82 | "hole_near_hole": "error", 83 | "invalid_outline": "error", 84 | "isolated_copper": "warning", 85 | "item_on_disabled_layer": "error", 86 | "items_not_allowed": "error", 87 | "length_out_of_range": "error", 88 | "lib_footprint_issues": "warning", 89 | "lib_footprint_mismatch": "warning", 90 | "malformed_courtyard": "error", 91 | "microvia_drill_out_of_range": "error", 92 | "missing_courtyard": "ignore", 93 | "missing_footprint": "warning", 94 | "net_conflict": "warning", 95 | "npth_inside_courtyard": "ignore", 96 | "padstack": "warning", 97 | "pth_inside_courtyard": "ignore", 98 | "shorting_items": "error", 99 | "silk_edge_clearance": "warning", 100 | "silk_over_copper": "warning", 101 | "silk_overlap": "warning", 102 | "skew_out_of_range": "error", 103 | "solder_mask_bridge": "error", 104 | "starved_thermal": "error", 105 | "text_height": "warning", 106 | "text_thickness": "warning", 107 | "through_hole_pad_without_hole": "error", 108 | "too_many_vias": "error", 109 | "track_dangling": "warning", 110 | "track_width": "error", 111 | "tracks_crossing": "error", 112 | "unconnected_items": "error", 113 | "unresolved_variable": "error", 114 | "via_dangling": "warning", 115 | "zone_has_empty_net": "error", 116 | "zones_intersect": "error" 117 | }, 118 | "rules": { 119 | "allow_blind_buried_vias": false, 120 | "allow_microvias": false, 121 | "max_error": 0.005, 122 | "min_clearance": 0.0, 123 | "min_connection": 0.0, 124 | "min_copper_edge_clearance": 0.5, 125 | "min_hole_clearance": 0.175, 126 | "min_hole_to_hole": 0.25, 127 | "min_microvia_diameter": 0.0, 128 | "min_microvia_drill": 0.0, 129 | "min_resolved_spokes": 1, 130 | "min_silk_clearance": 0.0, 131 | "min_text_height": 0.7999999999999999, 132 | "min_text_thickness": 0.08, 133 | "min_through_hole_diameter": 0.3, 134 | "min_track_width": 0.127, 135 | "min_via_annular_width": 0.09999999999999999, 136 | "min_via_diameter": 0.6, 137 | "solder_mask_to_copper_clearance": 0.005, 138 | "use_height_for_length_calcs": true 139 | }, 140 | "teardrop_options": [ 141 | { 142 | "td_onpadsmd": true, 143 | "td_onroundshapesonly": false, 144 | "td_ontrackend": false, 145 | "td_onviapad": true 146 | } 147 | ], 148 | "teardrop_parameters": [ 149 | { 150 | "td_allow_use_two_tracks": true, 151 | "td_curve_segcount": 0, 152 | "td_height_ratio": 1.0, 153 | "td_length_ratio": 0.5, 154 | "td_maxheight": 2.0, 155 | "td_maxlen": 1.0, 156 | "td_on_pad_in_zone": false, 157 | "td_target_name": "td_round_shape", 158 | "td_width_to_size_filter_ratio": 0.9 159 | }, 160 | { 161 | "td_allow_use_two_tracks": true, 162 | "td_curve_segcount": 0, 163 | "td_height_ratio": 1.0, 164 | "td_length_ratio": 0.5, 165 | "td_maxheight": 2.0, 166 | "td_maxlen": 1.0, 167 | "td_on_pad_in_zone": false, 168 | "td_target_name": "td_rect_shape", 169 | "td_width_to_size_filter_ratio": 0.9 170 | }, 171 | { 172 | "td_allow_use_two_tracks": true, 173 | "td_curve_segcount": 0, 174 | "td_height_ratio": 1.0, 175 | "td_length_ratio": 0.5, 176 | "td_maxheight": 2.0, 177 | "td_maxlen": 1.0, 178 | "td_on_pad_in_zone": false, 179 | "td_target_name": "td_track_end", 180 | "td_width_to_size_filter_ratio": 0.9 181 | } 182 | ], 183 | "track_widths": [ 184 | 0.0, 185 | 0.15, 186 | 0.2, 187 | 0.3, 188 | 0.4, 189 | 0.6 190 | ], 191 | "tuning_pattern_settings": { 192 | "diff_pair_defaults": { 193 | "corner_radius_percentage": 80, 194 | "corner_style": 1, 195 | "max_amplitude": 1.0, 196 | "min_amplitude": 0.2, 197 | "single_sided": false, 198 | "spacing": 1.0 199 | }, 200 | "diff_pair_skew_defaults": { 201 | "corner_radius_percentage": 80, 202 | "corner_style": 1, 203 | "max_amplitude": 1.0, 204 | "min_amplitude": 0.2, 205 | "single_sided": false, 206 | "spacing": 0.6 207 | }, 208 | "single_track_defaults": { 209 | "corner_radius_percentage": 80, 210 | "corner_style": 1, 211 | "max_amplitude": 1.0, 212 | "min_amplitude": 0.2, 213 | "single_sided": false, 214 | "spacing": 0.6 215 | } 216 | }, 217 | "via_dimensions": [ 218 | { 219 | "diameter": 0.0, 220 | "drill": 0.0 221 | }, 222 | { 223 | "diameter": 0.6, 224 | "drill": 0.3 225 | }, 226 | { 227 | "diameter": 0.9, 228 | "drill": 0.4 229 | } 230 | ], 231 | "zones_allow_external_fillets": false, 232 | "zones_use_no_outline": true 233 | }, 234 | "ipc2581": { 235 | "dist": "", 236 | "distpn": "", 237 | "internal_id": "", 238 | "mfg": "", 239 | "mpn": "" 240 | }, 241 | "layer_presets": [], 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_to_bus_conflict": "error", 427 | "bus_to_net_conflict": "error", 428 | "conflicting_netclasses": "error", 429 | "different_unit_footprint": "error", 430 | "different_unit_net": "error", 431 | "duplicate_reference": "error", 432 | "duplicate_sheet_names": "error", 433 | "endpoint_off_grid": "warning", 434 | "extra_units": "error", 435 | "global_label_dangling": "warning", 436 | "hier_label_mismatch": "error", 437 | "label_dangling": "error", 438 | "lib_symbol_issues": "warning", 439 | "missing_bidi_pin": "warning", 440 | "missing_input_pin": "warning", 441 | "missing_power_pin": "error", 442 | "missing_unit": "warning", 443 | "multiple_net_names": "warning", 444 | "net_not_bus_member": "warning", 445 | "no_connect_connected": "warning", 446 | "no_connect_dangling": "warning", 447 | "pin_not_connected": "error", 448 | "pin_not_driven": "error", 449 | "pin_to_pin": "warning", 450 | "power_pin_not_driven": "error", 451 | "similar_labels": "warning", 452 | "simulation_model_issue": "error", 453 | "unannotated": "error", 454 | "unit_value_mismatch": "error", 455 | "unresolved_variable": "error", 456 | "wire_dangling": "error" 457 | } 458 | }, 459 | "libraries": { 460 | "pinned_footprint_libs": [], 461 | "pinned_symbol_libs": [] 462 | }, 463 | "meta": { 464 | "filename": "TopBoard.kicad_pro", 465 | "version": 1 466 | }, 467 | "net_settings": { 468 | "classes": [ 469 | { 470 | "bus_width": 12, 471 | "clearance": 0.127, 472 | "diff_pair_gap": 0.254, 473 | "diff_pair_via_gap": 0.25, 474 | "diff_pair_width": 0.1524, 475 | "line_style": 0, 476 | "microvia_diameter": 0.6858, 477 | "microvia_drill": 0.3302, 478 | "name": "Default", 479 | "pcb_color": "rgba(0, 0, 0, 0.000)", 480 | "schematic_color": "rgba(0, 0, 0, 0.000)", 481 | "track_width": 0.127, 482 | "via_diameter": 0.6, 483 | "via_drill": 0.3, 484 | "wire_width": 6 485 | } 486 | ], 487 | "meta": { 488 | "version": 3 489 | }, 490 | "net_colors": null, 491 | "netclass_assignments": null, 492 | "netclass_patterns": [] 493 | }, 494 | "pcbnew": { 495 | "last_paths": { 496 | "gencad": "", 497 | "idf": "", 498 | "netlist": "", 499 | "plot": "", 500 | "pos_files": "", 501 | "specctra_dsn": "", 502 | "step": "", 503 | "svg": "", 504 | "vrml": "" 505 | }, 506 | "page_layout_descr_file": "" 507 | }, 508 | "schematic": { 509 | "annotate_start_num": 0, 510 | "bom_fmt_presets": [], 511 | "bom_fmt_settings": { 512 | "field_delimiter": ",", 513 | "keep_line_breaks": false, 514 | "keep_tabs": false, 515 | "name": "CSV", 516 | "ref_delimiter": ",", 517 | "ref_range_delimiter": "", 518 | "string_delimiter": "\"" 519 | }, 520 | "bom_presets": [], 521 | "bom_settings": { 522 | "exclude_dnp": false, 523 | "fields_ordered": [ 524 | { 525 | "group_by": false, 526 | "label": "Reference", 527 | "name": "Reference", 528 | "show": true 529 | }, 530 | { 531 | "group_by": true, 532 | "label": "Value", 533 | "name": "Value", 534 | "show": true 535 | }, 536 | { 537 | "group_by": false, 538 | "label": "Datasheet", 539 | "name": "Datasheet", 540 | "show": true 541 | }, 542 | { 543 | "group_by": false, 544 | "label": "Footprint", 545 | "name": "Footprint", 546 | "show": true 547 | }, 548 | { 549 | "group_by": false, 550 | "label": "Qty", 551 | "name": "${QUANTITY}", 552 | "show": true 553 | }, 554 | { 555 | "group_by": true, 556 | "label": "DNP", 557 | "name": "${DNP}", 558 | "show": true 559 | }, 560 | { 561 | "group_by": false, 562 | "label": "#", 563 | "name": "${ITEM_NUMBER}", 564 | "show": false 565 | }, 566 | { 567 | "group_by": false, 568 | "label": "Availability", 569 | "name": "Availability", 570 | "show": false 571 | }, 572 | { 573 | "group_by": false, 574 | "label": "Check_prices", 575 | "name": "Check_prices", 576 | "show": false 577 | }, 578 | { 579 | "group_by": false, 580 | "label": "Description_1", 581 | "name": "Description_1", 582 | "show": false 583 | }, 584 | { 585 | "group_by": false, 586 | "label": "MF", 587 | "name": "MF", 588 | "show": false 589 | }, 590 | { 591 | "group_by": false, 592 | "label": "MP", 593 | "name": "MP", 594 | "show": false 595 | }, 596 | { 597 | "group_by": false, 598 | "label": "Package", 599 | "name": "Package", 600 | "show": false 601 | }, 602 | { 603 | "group_by": false, 604 | "label": "Price", 605 | "name": "Price", 606 | "show": false 607 | }, 608 | { 609 | "group_by": false, 610 | "label": "Purchase-URL", 611 | "name": "Purchase-URL", 612 | "show": false 613 | }, 614 | { 615 | "group_by": false, 616 | "label": "SnapEDA_Link", 617 | "name": "SnapEDA_Link", 618 | "show": false 619 | }, 620 | { 621 | "group_by": false, 622 | "label": "Description", 623 | "name": "Description", 624 | "show": false 625 | }, 626 | { 627 | "group_by": false, 628 | "label": "Sim.Device", 629 | "name": "Sim.Device", 630 | "show": false 631 | }, 632 | { 633 | "group_by": false, 634 | "label": "Sim.Pins", 635 | "name": "Sim.Pins", 636 | "show": false 637 | } 638 | ], 639 | "filter_string": "", 640 | "group_symbols": true, 641 | "name": "", 642 | "sort_asc": true, 643 | "sort_field": "Reference" 644 | }, 645 | "connection_grid_size": 50.0, 646 | "drawing": { 647 | "dashed_lines_dash_length_ratio": 12.0, 648 | "dashed_lines_gap_length_ratio": 3.0, 649 | "default_bus_thickness": 12.0, 650 | "default_junction_size": 40.0, 651 | "default_line_thickness": 6.0, 652 | "default_text_size": 50.0, 653 | "default_wire_thickness": 6.0, 654 | "field_names": [], 655 | "intersheets_ref_own_page": false, 656 | "intersheets_ref_prefix": "", 657 | "intersheets_ref_short": false, 658 | "intersheets_ref_show": false, 659 | "intersheets_ref_suffix": "", 660 | "junction_size_choice": 3, 661 | "label_size_ratio": 0.3, 662 | "operating_point_overlay_i_precision": 3, 663 | "operating_point_overlay_i_range": "~A", 664 | "operating_point_overlay_v_precision": 3, 665 | "operating_point_overlay_v_range": "~V", 666 | "overbar_offset_ratio": 1.23, 667 | "pin_symbol_size": 25.0, 668 | "text_offset_ratio": 0.3 669 | }, 670 | "legacy_lib_dir": "", 671 | "legacy_lib_list": [], 672 | "meta": { 673 | "version": 1 674 | }, 675 | "net_format_name": "", 676 | "ngspice": { 677 | "fix_include_paths": true, 678 | "fix_passive_vals": false, 679 | "meta": { 680 | "version": 0 681 | }, 682 | "model_mode": 0, 683 | "workbook_filename": "" 684 | }, 685 | "page_layout_descr_file": "", 686 | "plot_directory": "", 687 | "spice_adjust_passive_values": false, 688 | "spice_current_sheet_as_root": false, 689 | "spice_external_command": "spice \"%I\"", 690 | "spice_model_current_sheet_as_root": true, 691 | "spice_save_all_currents": false, 692 | "spice_save_all_dissipations": false, 693 | "spice_save_all_voltages": false, 694 | "subpart_first_id": 65, 695 | "subpart_id_separator": 0 696 | }, 697 | "sheets": [ 698 | [ 699 | "e63e39d7-6ac0-4ffd-8aa3-1841a4541b55", 700 | "Root" 701 | ], 702 | [ 703 | "958c7b0d-baa0-4852-b175-63ea9119e9f3", 704 | "DSP" 705 | ], 706 | [ 707 | "763ca73f-631c-4961-8ef6-82b2e2a58ef1", 708 | "Power" 709 | ], 710 | [ 711 | "e65d50ca-f7e0-495f-8bb0-c6a5384eb90a", 712 | "Interface" 713 | ] 714 | ], 715 | "text_variables": {} 716 | } 717 | -------------------------------------------------------------------------------- /mk-0/KiCAD/TopBoard/TopBoard.kicad_sch: -------------------------------------------------------------------------------- 1 | (kicad_sch 2 | (version 20231120) 3 | (generator "eeschema") 4 | (generator_version "8.0") 5 | (uuid "e63e39d7-6ac0-4ffd-8aa3-1841a4541b55") 6 | (paper "A3") 7 | (title_block 8 | (date "15 nov 2012") 9 | ) 10 | (lib_symbols) 11 | (label "GPIO23" 12 | (at 450.85 76.2 0) 13 | (fields_autoplaced yes) 14 | (effects 15 | (font 16 | (size 1.27 1.27) 17 | ) 18 | (justify left bottom) 19 | ) 20 | (uuid "0fb4635a-a895-4c6b-b7fa-2bc5b36c9b6f") 21 | ) 22 | (label "GPIO10{slash}SPI0.MOSI" 23 | (at 441.96 71.12 180) 24 | (fields_autoplaced yes) 25 | (effects 26 | (font 27 | (size 1.27 1.27) 28 | ) 29 | (justify right bottom) 30 | ) 31 | (uuid "122c313a-fd80-424d-8e4b-4191d890f23d") 32 | ) 33 | (label "GPIO8{slash}SPI0.CE0" 34 | (at 441.96 66.04 180) 35 | (fields_autoplaced yes) 36 | (effects 37 | (font 38 | (size 1.27 1.27) 39 | ) 40 | (justify right bottom) 41 | ) 42 | (uuid "13cac4d5-43f2-4ec3-ba29-8c844fbbb33b") 43 | ) 44 | (label "GPIO3{slash}SCL1" 45 | (at 441.96 48.26 180) 46 | (fields_autoplaced yes) 47 | (effects 48 | (font 49 | (size 1.27 1.27) 50 | ) 51 | (justify right bottom) 52 | ) 53 | (uuid "1776f24f-bda1-46b1-a246-fd22e4aa4a18") 54 | ) 55 | (label "GPIO15{slash}RXD0" 56 | (at 450.85 48.26 0) 57 | (fields_autoplaced yes) 58 | (effects 59 | (font 60 | (size 1.27 1.27) 61 | ) 62 | (justify left bottom) 63 | ) 64 | (uuid "1ad3b0bc-586c-4bd0-bdcf-660bb8aac863") 65 | ) 66 | (label "GPIO24" 67 | (at 450.85 78.74 0) 68 | (fields_autoplaced yes) 69 | (effects 70 | (font 71 | (size 1.27 1.27) 72 | ) 73 | (justify left bottom) 74 | ) 75 | (uuid "1e0d31d5-49ad-4e2d-8450-d66f631c1688") 76 | ) 77 | (label "GPIO2{slash}SDA1" 78 | (at 441.96 45.72 180) 79 | (fields_autoplaced yes) 80 | (effects 81 | (font 82 | (size 1.27 1.27) 83 | ) 84 | (justify right bottom) 85 | ) 86 | (uuid "2e4ef5a4-8fc5-4b4c-ae77-53af1f79a49e") 87 | ) 88 | (label "GPIO18{slash}PCM.CLK" 89 | (at 450.85 58.42 0) 90 | (fields_autoplaced yes) 91 | (effects 92 | (font 93 | (size 1.27 1.27) 94 | ) 95 | (justify left bottom) 96 | ) 97 | (uuid "5fff34f2-2d92-4dce-bc36-9a6705390b04") 98 | ) 99 | (label "GPIO21{slash}PCM.DOUT" 100 | (at 450.85 68.58 0) 101 | (fields_autoplaced yes) 102 | (effects 103 | (font 104 | (size 1.27 1.27) 105 | ) 106 | (justify left bottom) 107 | ) 108 | (uuid "7520c44e-2859-4590-80dd-0f917384269d") 109 | ) 110 | (label "GPIO25" 111 | (at 450.85 81.28 0) 112 | (fields_autoplaced yes) 113 | (effects 114 | (font 115 | (size 1.27 1.27) 116 | ) 117 | (justify left bottom) 118 | ) 119 | (uuid "7567dd69-3f42-43fa-904f-5f37902a8c6d") 120 | ) 121 | (label "GPIO17" 122 | (at 450.85 55.88 0) 123 | (fields_autoplaced yes) 124 | (effects 125 | (font 126 | (size 1.27 1.27) 127 | ) 128 | (justify left bottom) 129 | ) 130 | (uuid "8c2595dd-eff4-4e26-9138-f19f3c6a6685") 131 | ) 132 | (label "GPIO27" 133 | (at 450.85 86.36 0) 134 | (fields_autoplaced yes) 135 | (effects 136 | (font 137 | (size 1.27 1.27) 138 | ) 139 | (justify left bottom) 140 | ) 141 | (uuid "9da7c71a-38b6-466d-81a5-daca78ff13ca") 142 | ) 143 | (label "GPIO6" 144 | (at 441.96 58.42 180) 145 | (fields_autoplaced yes) 146 | (effects 147 | (font 148 | (size 1.27 1.27) 149 | ) 150 | (justify right bottom) 151 | ) 152 | (uuid "9fe1ad8a-1d7c-4a97-8527-0f3c22739b3b") 153 | ) 154 | (label "GPIO5" 155 | (at 441.96 55.88 180) 156 | (fields_autoplaced yes) 157 | (effects 158 | (font 159 | (size 1.27 1.27) 160 | ) 161 | (justify right bottom) 162 | ) 163 | (uuid "a2416508-b5d0-4f4f-9644-94f3bd2d3f5d") 164 | ) 165 | (label "GPIO16" 166 | (at 450.85 53.34 0) 167 | (fields_autoplaced yes) 168 | (effects 169 | (font 170 | (size 1.27 1.27) 171 | ) 172 | (justify left bottom) 173 | ) 174 | (uuid "a8008f37-7a88-4903-a5aa-f352b11b2cce") 175 | ) 176 | (label "GPIO13{slash}PWM1" 177 | (at 441.96 81.28 180) 178 | (fields_autoplaced yes) 179 | (effects 180 | (font 181 | (size 1.27 1.27) 182 | ) 183 | (justify right bottom) 184 | ) 185 | (uuid "a961ca75-292e-45aa-9da3-8657a4c651dc") 186 | ) 187 | (label "GPIO19{slash}PCM.FS" 188 | (at 450.85 63.5 0) 189 | (fields_autoplaced yes) 190 | (effects 191 | (font 192 | (size 1.27 1.27) 193 | ) 194 | (justify left bottom) 195 | ) 196 | (uuid "acfb6a6d-75bd-4036-9de8-32871146eb8f") 197 | ) 198 | (label "GPIO20{slash}PCM.DIN" 199 | (at 450.85 66.04 0) 200 | (fields_autoplaced yes) 201 | (effects 202 | (font 203 | (size 1.27 1.27) 204 | ) 205 | (justify left bottom) 206 | ) 207 | (uuid "b253e0a1-47db-4a34-8bfc-a82ce2d90299") 208 | ) 209 | (label "GPIO9{slash}SPI0.MISO" 210 | (at 441.96 68.58 180) 211 | (fields_autoplaced yes) 212 | (effects 213 | (font 214 | (size 1.27 1.27) 215 | ) 216 | (justify right bottom) 217 | ) 218 | (uuid "bf41d8da-544d-482a-b9be-a8ce5094502d") 219 | ) 220 | (label "GPIO11{slash}SPI0.SCLK" 221 | (at 441.96 73.66 180) 222 | (fields_autoplaced yes) 223 | (effects 224 | (font 225 | (size 1.27 1.27) 226 | ) 227 | (justify right bottom) 228 | ) 229 | (uuid "d181dc53-471b-4929-9989-65a2e0b8ca6c") 230 | ) 231 | (label "GPIO22" 232 | (at 450.85 73.66 0) 233 | (fields_autoplaced yes) 234 | (effects 235 | (font 236 | (size 1.27 1.27) 237 | ) 238 | (justify left bottom) 239 | ) 240 | (uuid "dc824fe6-0276-49a2-a091-08c8656919e7") 241 | ) 242 | (label "GPIO26" 243 | (at 450.85 83.82 0) 244 | (fields_autoplaced yes) 245 | (effects 246 | (font 247 | (size 1.27 1.27) 248 | ) 249 | (justify left bottom) 250 | ) 251 | (uuid "dd941ea8-b1d9-4d7a-a8cc-cde1c2c96618") 252 | ) 253 | (label "GPIO14{slash}TXD0" 254 | (at 450.85 45.72 0) 255 | (fields_autoplaced yes) 256 | (effects 257 | (font 258 | (size 1.27 1.27) 259 | ) 260 | (justify left bottom) 261 | ) 262 | (uuid "e08a1995-831b-4f8a-bf9b-5e10d6894c0e") 263 | ) 264 | (label "GPIO7{slash}SPI0.CE1" 265 | (at 441.96 63.5 180) 266 | (fields_autoplaced yes) 267 | (effects 268 | (font 269 | (size 1.27 1.27) 270 | ) 271 | (justify right bottom) 272 | ) 273 | (uuid "e2f0bc43-0e3b-49d3-a42f-54eb5c3aa0de") 274 | ) 275 | (label "GPIO12{slash}PWM0" 276 | (at 441.96 78.74 180) 277 | (fields_autoplaced yes) 278 | (effects 279 | (font 280 | (size 1.27 1.27) 281 | ) 282 | (justify right bottom) 283 | ) 284 | (uuid "f02c02b9-48a7-44cb-a797-f2536a5211b7") 285 | ) 286 | (label "GPIO4{slash}GPCLK0" 287 | (at 441.96 53.34 180) 288 | (fields_autoplaced yes) 289 | (effects 290 | (font 291 | (size 1.27 1.27) 292 | ) 293 | (justify right bottom) 294 | ) 295 | (uuid "f3293b59-effe-477e-83d4-cded9a263c24") 296 | ) 297 | (sheet 298 | (at 49.53 317.5) 299 | (size 24.13 27.94) 300 | (fields_autoplaced yes) 301 | (stroke 302 | (width 0.1524) 303 | (type solid) 304 | ) 305 | (fill 306 | (color 0 0 0 0.0000) 307 | ) 308 | (uuid "763ca73f-631c-4961-8ef6-82b2e2a58ef1") 309 | (property "Sheetname" "Power" 310 | (at 49.53 316.7884 0) 311 | (effects 312 | (font 313 | (size 1.27 1.27) 314 | ) 315 | (justify left bottom) 316 | ) 317 | ) 318 | (property "Sheetfile" "Power.kicad_sch" 319 | (at 49.53 346.0246 0) 320 | (effects 321 | (font 322 | (size 1.27 1.27) 323 | ) 324 | (justify left top) 325 | ) 326 | ) 327 | (instances 328 | (project "TopBoard" 329 | (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" 330 | (page "3") 331 | ) 332 | ) 333 | ) 334 | ) 335 | (sheet 336 | (at 15.24 317.5) 337 | (size 27.94 27.94) 338 | (fields_autoplaced yes) 339 | (stroke 340 | (width 0.1524) 341 | (type solid) 342 | ) 343 | (fill 344 | (color 0 0 0 0.0000) 345 | ) 346 | (uuid "958c7b0d-baa0-4852-b175-63ea9119e9f3") 347 | (property "Sheetname" "DSP" 348 | (at 15.24 316.7884 0) 349 | (effects 350 | (font 351 | (size 1.27 1.27) 352 | ) 353 | (justify left bottom) 354 | ) 355 | ) 356 | (property "Sheetfile" "DSP.kicad_sch" 357 | (at 15.24 346.0246 0) 358 | (effects 359 | (font 360 | (size 1.27 1.27) 361 | ) 362 | (justify left top) 363 | ) 364 | ) 365 | (instances 366 | (project "TopBoard" 367 | (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" 368 | (page "2") 369 | ) 370 | ) 371 | ) 372 | ) 373 | (sheet 374 | (at 86.36 317.5) 375 | (size 24.13 29.21) 376 | (fields_autoplaced yes) 377 | (stroke 378 | (width 0.1524) 379 | (type solid) 380 | ) 381 | (fill 382 | (color 0 0 0 0.0000) 383 | ) 384 | (uuid "e65d50ca-f7e0-495f-8bb0-c6a5384eb90a") 385 | (property "Sheetname" "Interface" 386 | (at 86.36 316.7884 0) 387 | (effects 388 | (font 389 | (size 1.27 1.27) 390 | ) 391 | (justify left bottom) 392 | ) 393 | ) 394 | (property "Sheetfile" "Interface.kicad_sch" 395 | (at 86.36 347.2946 0) 396 | (effects 397 | (font 398 | (size 1.27 1.27) 399 | ) 400 | (justify left top) 401 | ) 402 | ) 403 | (instances 404 | (project "TopBoard" 405 | (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" 406 | (page "4") 407 | ) 408 | ) 409 | ) 410 | ) 411 | (sheet_instances 412 | (path "/" 413 | (page "1") 414 | ) 415 | ) 416 | ) -------------------------------------------------------------------------------- /mk-0/KiCAD/TopBoard/TopBoard.round-tracks-config: -------------------------------------------------------------------------------- 1 | Default True 2.0 3 2 | False True False 3 | -------------------------------------------------------------------------------- /mk-0/KiCAD/TopBoard/fp-lib-table: -------------------------------------------------------------------------------- 1 | (fp_lib_table 2 | (version 7) 3 | (lib (name "Library")(type "KiCad")(uri "${KIPRJMOD}/Library")(options "")(descr "")) 4 | ) 5 | -------------------------------------------------------------------------------- /mk-0/KiCAD/TopBoard/freerouting.frb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Libre-Talk/Wave/e8fe526ad1dd820e8f5715df3bcb62e79529ddc5/mk-0/KiCAD/TopBoard/freerouting.frb -------------------------------------------------------------------------------- /mk-0/KiCAD/TopBoard/production/TopBoard.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Libre-Talk/Wave/e8fe526ad1dd820e8f5715df3bcb62e79529ddc5/mk-0/KiCAD/TopBoard/production/TopBoard.zip -------------------------------------------------------------------------------- /mk-0/KiCAD/TopBoard/production/backups/TopBoard_2024-04-05_12-14-11.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Libre-Talk/Wave/e8fe526ad1dd820e8f5715df3bcb62e79529ddc5/mk-0/KiCAD/TopBoard/production/backups/TopBoard_2024-04-05_12-14-11.zip -------------------------------------------------------------------------------- /mk-0/KiCAD/TopBoard/production/bom.csv: -------------------------------------------------------------------------------- 1 | Designator,Footprint,Quantity,Value,LCSC Part # 2 | "C1, C10, C13, C16, C17, C18, C19, C20, C21, C23, C24, C25, C26, C27, C29, C3, C30, C31, C40, C41, C42, C6, C7",0402,23,0.1uF/10V(10%), 3 | "C11, C14",0402,2,0.1uF/10V, 4 | C12,0402,1,1uF/10V, 5 | "C15, C9",0402,2,18pF/25V(10%), 6 | "C2, C33, C34, C35, C36, C4, C43, C44, C45, C47",0402,10,1uF/10V(10%), 7 | "C22, C28, C32, C37, C38, C39",0402,6,10uF/10V(20%), 8 | "C46, C51",0402,2,100nF/16V, 9 | "C48, C52",0402,2,10nF/16V, 10 | C49,0402,1,4.7uF/10V, 11 | C5,0402,1,22pF/50V(5%), 12 | C8,0402,1,100n, 13 | D1,0603,1,LED, 14 | "D10, D11, D12, D13, D2, D3, D4, D5, D6, D7, D8, D9",LED_WS2812B_PLCC4_5.0x5.0mm_P3.2mm,12,WS2812B, 15 | D15,D_SOD-323F,1,1N4148WS, 16 | "D16, D17",D_SMA,2,SS24, 17 | J3,USB_C_Receptacle_G-Switch_GT-USB-7010ASV,1,USB_C_Receptacle_USB2.0_16P, 18 | J5,PinSocket_2x20_P2.54mm_Vertical_Through_SMD,1,Raspberry_Pi_2_3, 19 | JP1,SolderJumper-2_P1.3mm_Open_RoundedPad1.0x1.5mm,1,ID_WP, 20 | "JP10, JP11, JP4, JP9",SolderJumper-3_P1.3mm_Bridged12_RoundedPad1.0x1.5mm,4,SolderJumper_3_Bridged12, 21 | "JP2, JP3",SolderJumper-3_P1.3mm_Open_RoundedPad1.0x1.5mm,2,SolderJumper_3_Open, 22 | "JP5, JP6, JP7, JP8",SolderJumper-2_P1.3mm_Bridged_RoundedPad1.0x1.5mm,4,SolderJumper_2_Bridged, 23 | L1,0603,1,40 Ohm, 24 | "MK1, MK2, MK3",XDCR_CMM-4030DT-26154-TR,3,GMA4030H11-F26, 25 | Q1,SOT-23,1,AO3400A, 26 | "R1, R10, R13, R2, R8",0402,5,100K(1%), 27 | "R11, R12, R39, R42, R45, R53, R56, R58",0402,8,10K(5%), 28 | "R14, R15, R18, R19, R3, R36, R37, R38, R50, R51, R52, R9",0402,12,10K(1%), 29 | "R16, R17",0402,2,3.9k, 30 | "R20, R21, R22, R23, R24, R25, R26, R27, R28, R29, R30, R31, R32, R33, R34, R35, R40, R41, R43, R44, R46, R47",0402,22,33R(5%), 31 | R4,0402,1,1K(1%), 32 | "R48, R49",0402,2,5.1K(1%), 33 | R5,0402,1,100(1%), 34 | R54,0402,1,15K(5%), 35 | R55,0402,1,3.9K(5%), 36 | R6,0402,1,20K(1%), 37 | R7,0402,1,330(1%), 38 | "SW1, SW2, SW3, SW4",SW_SPST_PTS645,4,SW_Push, 39 | "TP1, TP10, TP11, TP12, TP2, TP3, TP4, TP5, TP6, TP7, TP8",TestPoint_Pad_D1.0mm,11,TestPoint, 40 | "U1, U7",SOT-23-5,2,SN74LVC1G126DBV, 41 | U10,SOT-23-6,1,SRV05-4, 42 | U11,SOT-223-3_TabPin2,1,AMS1117-1.2, 43 | U2,SOT-23-5,1,74LVC1G17, 44 | U3,VSSOP-8_2.4x2.1mm_P0.5mm,1,SN74LVC2G74, 45 | U4,SOT-23-5,1,74AHCT1G125, 46 | U5,SOIC-8_3.9x4.9mm_P1.27mm,1,W25Q16JVSS, 47 | U8,QFN-64-1EP_9x9mm_P0.5mm_EP7.3x7.3mm_ThermalVias,1,ZL38063, 48 | U9,SOT-223-3_TabPin2,1,AMS1117-3.3, 49 | Y1,Crystal_SMD_3225-4Pin_3.2x2.5mm,1,12MHz, 50 | -------------------------------------------------------------------------------- /mk-0/KiCAD/TopBoard/production/designators.csv: -------------------------------------------------------------------------------- 1 | C1:1 2 | C10:1 3 | C11:1 4 | C12:1 5 | C13:1 6 | C14:1 7 | C15:1 8 | C16:1 9 | C17:1 10 | C18:1 11 | C19:1 12 | C2:1 13 | C20:1 14 | C21:1 15 | C22:1 16 | C23:1 17 | C24:1 18 | C25:1 19 | C26:1 20 | C27:1 21 | C28:1 22 | C29:1 23 | C3:1 24 | C30:1 25 | C31:1 26 | C32:1 27 | C33:1 28 | C34:1 29 | C35:1 30 | C36:1 31 | C37:1 32 | C38:1 33 | C39:1 34 | C4:1 35 | C40:1 36 | C41:1 37 | C42:1 38 | C43:1 39 | C44:1 40 | C45:1 41 | C46:1 42 | C47:1 43 | C48:1 44 | C49:1 45 | C5:1 46 | C51:1 47 | C52:1 48 | C6:1 49 | C7:1 50 | C8:1 51 | C9:1 52 | D1:1 53 | D10:1 54 | D11:1 55 | D12:1 56 | D13:1 57 | D15:1 58 | D16:1 59 | D17:1 60 | D2:1 61 | D3:1 62 | D4:1 63 | D5:1 64 | D6:1 65 | D7:1 66 | D8:1 67 | D9:1 68 | J1:1 69 | J2:1 70 | J3:1 71 | J4:1 72 | J5:1 73 | JP1:1 74 | JP10:1 75 | JP11:1 76 | JP2:1 77 | JP3:1 78 | JP4:1 79 | JP5:1 80 | JP6:1 81 | JP7:1 82 | JP8:1 83 | JP9:1 84 | L1:1 85 | MH1:1 86 | MH2:1 87 | MH3:1 88 | MH4:1 89 | MK1:1 90 | MK2:1 91 | MK3:1 92 | NT2:1 93 | Q1:1 94 | R1:1 95 | R10:1 96 | R11:1 97 | R12:1 98 | R13:1 99 | R14:1 100 | R15:1 101 | R16:1 102 | R17:1 103 | R18:1 104 | R19:1 105 | R2:1 106 | R20:1 107 | R21:1 108 | R22:1 109 | R23:1 110 | R24:1 111 | R25:1 112 | R26:1 113 | R27:1 114 | R28:1 115 | R29:1 116 | R3:1 117 | R30:1 118 | R31:1 119 | R32:1 120 | R33:1 121 | R34:1 122 | R35:1 123 | R36:1 124 | R37:1 125 | R38:1 126 | R39:1 127 | R4:1 128 | R40:1 129 | R41:1 130 | R42:1 131 | R43:1 132 | R44:1 133 | R45:1 134 | R46:1 135 | R47:1 136 | R48:1 137 | R49:1 138 | R5:1 139 | R50:1 140 | R51:1 141 | R52:1 142 | R53:1 143 | R54:1 144 | R55:1 145 | R56:1 146 | R58:1 147 | R6:1 148 | R7:1 149 | R8:1 150 | R9:1 151 | SW1:1 152 | SW2:1 153 | SW3:1 154 | SW4:1 155 | TP1:1 156 | TP10:1 157 | TP11:1 158 | TP12:1 159 | TP2:1 160 | TP3:1 161 | TP4:1 162 | TP5:1 163 | TP6:1 164 | TP7:1 165 | TP8:1 166 | U1:1 167 | U10:1 168 | U11:1 169 | U2:1 170 | U3:1 171 | U4:1 172 | U5:1 173 | U6:1 174 | U7:1 175 | U8:1 176 | U9:1 177 | Y1:1 178 | -------------------------------------------------------------------------------- /mk-0/KiCAD/TopBoard/production/netlist.ipc: -------------------------------------------------------------------------------- 1 | P CODE 00 2 | P UNITS CUST 0 3 | P arrayDim N 4 | 317LASH}I2S_SDOB) VIA MD0118PA00X-003757Y+009678X0236Y0000R000S3 5 | 317BTN3 VIA MD0118PA00X-004727Y+005020X0236Y0000R000S3 6 | 317BTN3 VIA MD0118PA00X-007329Y+005459X0236Y0000R000S3 7 | 317BTN3 VIA MD0118PA00X+000824Y+008124X0236Y0000R000S3 8 | 317BTN3 VIA MD0118PA00X-001884Y+018541X0236Y0000R000S3 9 | 317E/DMIC_IN2_BUF VIA MD0118PA00X-003646Y+017634X0236Y0000R000S3 10 | 317E/DMIC_IN2_BUF VIA MD0118PA00X-014497Y+017343X0236Y0000R000S3 11 | 317E/DMIC_IN2_BUF VIA MD0118PA00X-015974Y+004585X0236Y0000R000S3 12 | 317E/DMIC_IN1_BUF VIA MD0118PA00X+005317Y+006717X0236Y0000R000S3 13 | 317E/DMIC_IN1_BUF VIA MD0118PA00X-001526Y+017728X0236Y0000R000S3 14 | 317NET-(R40-PAD2) VIA MD0118PA00X+005726Y+006514X0236Y0000R000S3 15 | 317NET-(R40-PAD2) VIA MD0118PA00X-016351Y+004341X0236Y0000R000S3 16 | 317NET-(R40-PAD2) VIA MD0118PA00X-008495Y+008426X0236Y0000R000S3 17 | 317NET-(R40-PAD2) VIA MD0118PA00X-006932Y+024481X0236Y0000R000S3 18 | 317NET-(JP1-A) VIA MD0118PA00X-009450Y-001472X0236Y0000R000S3 19 | 317LASH}I2S_SDIB) VIA MD0118PA00X-003839Y+009315X0236Y0000R000S3 20 | 317FACE/MUTE_DATA VIA MD0118PA00X-016034Y+012287X0236Y0000R000S3 21 | 317FACE/MUTE_DATA VIA MD0118PA00X-002273Y+016917X0236Y0000R000S3 22 | 317NET-(JP11-A) VIA MD0118PA00X+001798Y+008918X0236Y0000R000S3 23 | 317BTN2 VIA MD0118PA00X-000452Y+009324X0236Y0000R000S3 24 | 317NET-(JP11-C) VIA MD0118PA00X+001133Y+009718X0236Y0000R000S3 25 | 317NET-(JP11-C) VIA MD0118PA00X+001336Y+012932X0236Y0000R000S3 26 | 317NET-(JP10-A) VIA MD0118PA00X-002714Y+019009X0236Y0000R000S3 27 | 317BTN1 VIA MD0118PA00X-002225Y+017963X0236Y0000R000S3 28 | 317NET-(JP10-C) VIA MD0118PA00X-003770Y+018551X0236Y0000R000S3 29 | 317NET-(JP10-C) VIA MD0118PA00X-006910Y+018469X0236Y0000R000S3 30 | 317/DSP/EXT_SEL VIA MD0118PA00X-003267Y+013793X0236Y0000R000S3 31 | 317NET-(JP9-B) VIA MD0118PA00X-002979Y+013817X0236Y0000R000S3 32 | 317NET-(JP9-A) VIA MD0118PA00X-001377Y+013960X0236Y0000R000S3 33 | 317NET-(JP4-A) VIA MD0118PA00X-011789Y+015890X0236Y0000R000S3 34 | 317NET-(JP4-B) VIA MD0118PA00X-010707Y+014689X0236Y0000R000S3 35 | 317NET-(JP3-A) VIA MD0118PA00X-011345Y+017785X0236Y0000R000S3 36 | 317NET-(JP3-B) VIA MD0118PA00X-011762Y+016808X0236Y0000R000S3 37 | 317NET-(JP2-B) VIA MD0118PA00X-011799Y+017852X0236Y0000R000S3 38 | 317NET-(JP2-A) VIA MD0118PA00X-011345Y+019651X0236Y0000R000S3 39 | 31738063_I2S_SDIA VIA MD0118PA00X-013035Y+000511X0236Y0000R000S3 40 | 31738063_I2S_SDIA VIA MD0118PA00X-007868Y+015452X0236Y0000R000S3 41 | 317L38063_I2S_WSA VIA MD0118PA00X-009948Y+003608X0236Y0000R000S3 42 | 317L38063_I2S_WSA VIA MD0118PA00X-007468Y+015444X0236Y0000R000S3 43 | 31738063_I2S_SDOA VIA MD0118PA00X-008300Y+015449X0236Y0000R000S3 44 | 31738063_I2S_SDOA VIA MD0118PA00X-013944Y+001155X0236Y0000R000S3 45 | 317ZL38063_HINT VIA MD0118PA00X-005281Y+008197X0236Y0000R000S3 46 | 317ZL38063_HINT VIA MD0118PA00X-014319Y+003831X0236Y0000R000S3 47 | 31738063_I2S_SCKA VIA MD0118PA00X-001897Y+001915X0236Y0000R000S3 48 | 31738063_I2S_SCKA VIA MD0118PA00X-007068Y+015451X0236Y0000R000S3 49 | 317NET-(C13-PAD1) VIA MD0118PA00X-001239Y+014824X0236Y0000R000S3 50 | 317GNDA VIA MD0118PA00X-001607Y+016100X0236Y0000R000S3 51 | 317GNDA VIA MD0118PA00X-003112Y+016177X0236Y0000R000S3 52 | 317+3V3 VIA MD0118PA00X-002115Y+006848X0236Y0000R000S3 53 | 317+3V3 VIA MD0118PA00X-005371Y+007887X0236Y0000R000S3 54 | 317+3V3 VIA MD0118PA00X-001377Y+009768X0236Y0000R000S3 55 | 317+3V3 VIA MD0118PA00X-011100Y-001739X0236Y0000R000S3 56 | 317+3V3 VIA MD0118PA00X-004095Y+014401X0236Y0000R000S3 57 | 317+3V3 VIA MD0118PA00X-002017Y+015451X0236Y0000R000S3 58 | 317+3V3 VIA MD0118PA00X-008621Y+004218X0236Y0000R000S3 59 | 317L38063_UART_TX VIA MD0118PA00X-000692Y+000612X0236Y0000R000S3 60 | 317L38063_UART_RX VIA MD0118PA00X+000310Y+001296X0236Y0000R000S3 61 | 317+1V2 VIA MD0118PA00X-007725Y+011805X0236Y0000R000S3 62 | 317+1V2 VIA MD0118PA00X-004909Y+009326X0236Y0000R000S3 63 | 317+1V2 VIA MD0118PA00X-002339Y+009885X0236Y0000R000S3 64 | 317+1V2 VIA MD0118PA00X-002505Y+013568X0236Y0000R000S3 65 | 317+1V2 VIA MD0118PA00X-005054Y+014183X0236Y0000R000S3 66 | 317+3.3V VIA MD0118PA00X-013224Y+012305X0236Y0000R000S3 67 | 317+3.3V VIA MD0118PA00X+003537Y+012363X0236Y0000R000S3 68 | 327LASH}I2S_SCKB) R1 -2 A01X-004468Y+008969X0213Y0252R270S2 69 | 327GND R1 -1 A01X-004468Y+008567X0213Y0252R270S2 70 | 327GND C40 -2 A01X-004900Y+024100X0220Y0244R270S2 71 | 327+3V3 C40 -1 A01X-004900Y+023722X0220Y0244R270S2 72 | 327LASH}I2S_SCKA) R30 -2 A01X-007068Y+014766X0213Y0252R090S2 73 | 32738063_I2S_SCKA R30 -1 A01X-007068Y+015168X0213Y0252R090S2 74 | 327GND Y1 -4 A01X-004335Y+015333X0551Y0472R180S2 75 | 327NET-(U8-XO) Y1 -3 A01X-005201Y+015333X0551Y0472R180S2 76 | 327GND Y1 -2 A01X-005201Y+016002X0551Y0472R180S2 77 | 327NET-(U8-XI) Y1 -1 A01X-004335Y+016002X0551Y0472R180S2 78 | 327NET-(D8-DOUT) D9 -4 A01X-006781Y+027303X0591Y0354R180S2 79 | 327GND D9 -3 A01X-006781Y+028602X0591Y0354R180S2 80 | 327NET-(D10-DIN) D9 -2 A01X-004852Y+028602X0591Y0354R180S2 81 | 327+5V D9 -1 A01X-004852Y+027303X0591Y0354R180S2 82 | 327NET-(JP11-A) R55 -2 A01X+001100Y+008801X0213Y0252R270S2 83 | 327BTN3 R55 -1 A01X+001100Y+008399X0213Y0252R270S2 84 | 367N/C MH2 D1063UA00X-017234Y+002165X1063Y0000R180S0 85 | 327NET-(D7-DOUT) D8 -4 A01X-014398Y+024745X0591Y0354R150S2 86 | 327GND D8 -3 A01X-015048Y+025870X0591Y0354R150S2 87 | 327NET-(D8-DOUT) D8 -2 A01X-013377Y+026835X0591Y0354R150S2 88 | 327+5V D8 -1 A01X-012728Y+025710X0591Y0354R150S2 89 | 327GND C23 -2 A01X-001679Y+009968X0220Y0244R000S2 90 | 327+3V3 C23 -1 A01X-002057Y+009968X0220Y0244R000S2 91 | 327+3V3 R14 -2 A01X-005670Y+007798X0213Y0252R090S2 92 | 327ZL38063_HINT R14 -1 A01X-005670Y+008200X0213Y0252R090S2 93 | 327NET-(R40-PAD2) R40 -2 A01X-006699Y+024698X0213Y0252R090S2 94 | 327ET-(MK1-CLOCK) R40 -1 A01X-006699Y+025100X0213Y0252R090S2 95 | 327GND C32 -2 A01X-021989Y+013600X0220Y0244R180S2 96 | 327+5V C32 -1 A01X-021611Y+013600X0220Y0244R180S2 97 | 327NET-(D10-DOUT) D11 -4 A01X+007117Y+020392X0591Y0354R240S2 98 | 327GND D11 -3 A01X+008242Y+021042X0591Y0354R240S2 99 | 327NET-(D11-DOUT) D11 -2 A01X+009207Y+019371X0591Y0354R240S2 100 | 327+5V D11 -1 A01X+008082Y+018722X0591Y0354R240S2 101 | 327NET-(U8-HCLK) R25 -2 A01X-007268Y+008969X0213Y0252R270S2 102 | 32738063_SPI_HCLK R25 -1 A01X-007268Y+008567X0213Y0252R270S2 103 | 327LASH}I2S_SDOA) R33 -2 A01X-008268Y+014767X0213Y0252R090S2 104 | 32738063_I2S_SDOA R33 -1 A01X-008268Y+015169X0213Y0252R090S2 105 | 327GND MK1 -8 A01X-006319Y+024409X0177Y0906R180S2 106 | 327GND MK1 -7 A01X-005817Y+025108X0512Y0177R180S2 107 | 327GND MK1 -6 A01X-005315Y+024409X0177Y0906R180S2 108 | 327GND MK1 -5 A01X-005817Y+023711X0512Y0177R180S2 109 | 327NET-(MK1-DATA) MK1 -4 A01X-005984Y+024144X0177Y0374R180S2 110 | 327ET-(MK1-CLOCK) MK1 -3 A01X-005984Y+024675X0177Y0374R180S2 111 | 327NET-(MK1-SEL) MK1 -2 A01X-005650Y+024675X0177Y0374R180S2 112 | 327+3V3 MK1 -1 A01X-005650Y+024144X0177Y0374R180S2 113 | 327FACE/MUTE_DATA R9 -2 A01X-000600Y+016801X0213Y0252R270S2 114 | 327+3V3 R9 -1 A01X-000600Y+016399X0213Y0252R270S2 115 | 327T-(U8-SM_MISO) R22 -2 A01X-002468Y+008969X0213Y0252R270S2 116 | 327T-(U5-DO(IO1)) R22 -1 A01X-002468Y+008568X0213Y0252R270S2 117 | 327+3.3V R3 -2 A01X-012993Y+014076X0213Y0252R180S2 118 | 327NET-(C2-PAD1) R3 -1 A01X-012591Y+014076X0213Y0252R180S2 119 | 317GND U8 -65 D0079PA00X-006474Y+013274X0197Y0000R180S3 120 | 317GND U8 -65 D0079PA00X-006474Y+012739X0197Y0000R180S3 121 | 317GND U8 -65 D0079PA00X-006474Y+012203X0197Y0000R180S3 122 | 317GND U8 -65 D0079PA00X-006474Y+011668X0197Y0000R180S3 123 | 317GND U8 -65 D0079PA00X-006474Y+011132X0197Y0000R180S3 124 | 317GND U8 -65 D0079PA00X-006474Y+010597X0197Y0000R180S3 125 | 317GND U8 -65 D0079PA00X-005939Y+013274X0197Y0000R180S3 126 | 317GND U8 -65 D0079PA00X-005939Y+012739X0197Y0000R180S3 127 | 317GND U8 -65 D0079PA00X-005939Y+012203X0197Y0000R180S3 128 | 317GND U8 -65 D0079PA00X-005939Y+011668X0197Y0000R180S3 129 | 317GND U8 -65 D0079PA00X-005939Y+011132X0197Y0000R180S3 130 | 317GND U8 -65 D0079PA00X-005939Y+010597X0197Y0000R180S3 131 | 317GND U8 -65 D0079PA00X-005403Y+013274X0197Y0000R180S3 132 | 317GND U8 -65 D0079PA00X-005403Y+012739X0197Y0000R180S3 133 | 317GND U8 -65 D0079PA00X-005403Y+012203X0197Y0000R180S3 134 | 317GND U8 -65 D0079PA00X-005403Y+011668X0197Y0000R180S3 135 | 317GND U8 -65 D0079PA00X-005403Y+011132X0197Y0000R180S3 136 | 317GND U8 -65 D0079PA00X-005403Y+010597X0197Y0000R180S3 137 | 327GND U8 -65 A04X-005135Y+011935X2874Y2874R180S3 138 | 327GND U8 -65 A01X-005135Y+011935X2874Y2874R180S2 139 | 317GND U8 -65 D0079PA00X-004868Y+013274X0197Y0000R180S3 140 | 317GND U8 -65 D0079PA00X-004868Y+012739X0197Y0000R180S3 141 | 317GND U8 -65 D0079PA00X-004868Y+012203X0197Y0000R180S3 142 | 317GND U8 -65 D0079PA00X-004868Y+011668X0197Y0000R180S3 143 | 317GND U8 -65 D0079PA00X-004868Y+011132X0197Y0000R180S3 144 | 317GND U8 -65 D0079PA00X-004868Y+010597X0197Y0000R180S3 145 | 317GND U8 -65 D0079PA00X-004332Y+013274X0197Y0000R180S3 146 | 317GND U8 -65 D0079PA00X-004332Y+012739X0197Y0000R180S3 147 | 317GND U8 -65 D0079PA00X-004332Y+012203X0197Y0000R180S3 148 | 317GND U8 -65 D0079PA00X-004332Y+011668X0197Y0000R180S3 149 | 317GND U8 -65 D0079PA00X-004332Y+011132X0197Y0000R180S3 150 | 317GND U8 -65 D0079PA00X-004332Y+010597X0197Y0000R180S3 151 | 317GND U8 -65 D0079PA00X-003797Y+013274X0197Y0000R180S3 152 | 317GND U8 -65 D0079PA00X-003797Y+012739X0197Y0000R180S3 153 | 317GND U8 -65 D0079PA00X-003797Y+012203X0197Y0000R180S3 154 | 317GND U8 -65 D0079PA00X-003797Y+011668X0197Y0000R180S3 155 | 317GND U8 -65 D0079PA00X-003797Y+011132X0197Y0000R180S3 156 | 317GND U8 -65 D0079PA00X-003797Y+010597X0197Y0000R180S3 157 | 3279{SLASH}SM_CS) U8 -64 A01X-003659Y+010188X0098Y0344R180S2 158 | 327LASH}I2S_SDOB) U8 -63 A01X-003856Y+010188X0098Y0344R180S2 159 | 327LASH}I2S_SDIB) U8 -62 A01X-004053Y+010188X0098Y0344R180S2 160 | 327SLASH}I2S_WSB) U8 -61 A01X-004250Y+010188X0098Y0344R180S2 161 | 327LASH}I2S_SCKB) U8 -60 A01X-004446Y+010188X0098Y0344R180S2 162 | 327+3V3 U8 -59 A01X-004643Y+010188X0098Y0344R180S2 163 | 327+1V2 U8 -58 A01X-004840Y+010188X0098Y0344R180S2 164 | 327NET-(U8-HINT) U8 -57 A01X-005037Y+010188X0098Y0344R180S2 165 | 327NET-(U8-HDOUT) U8 -56 A01X-005234Y+010188X0098Y0344R180S2 166 | 327NET-(U8-HDIN) U8 -55 A01X-005431Y+010188X0098Y0344R180S2 167 | 327GND U8 -54 A01X-005628Y+010188X0098Y0344R180S2 168 | 327NET-(U8-HCS) U8 -53 A01X-005824Y+010188X0098Y0344R180S2 169 | 327NET-(U8-HCLK) U8 -52 A01X-006021Y+010188X0098Y0344R180S2 170 | 327+3V3 U8 -51 A01X-006218Y+010188X0098Y0344R180S2 171 | 327L38063_UART_RX U8 -50 A01X-006415Y+010188X0098Y0344R180S2 172 | 327T-(U8-UART_TX) U8 -49 A01X-006612Y+010188X0098Y0344R180S2 173 | 327ET-(J4-PIN_14) U8 -48 A01X-006882Y+010459X0344Y0098R180S2 174 | 327ET-(J4-PIN_13) U8 -47 A01X-006882Y+010656X0344Y0098R180S2 175 | 327+3V3 U8 -46 A01X-006882Y+010853X0344Y0098R180S2 176 | 327ET-(J4-PIN_12) U8 -45 A01X-006882Y+011050X0344Y0098R180S2 177 | 327ET-(J4-PIN_11) U8 -44 A01X-006882Y+011246X0344Y0098R180S2 178 | 327ET-(J4-PIN_10) U8 -43 A01X-006882Y+011443X0344Y0098R180S2 179 | 327+1V2 U8 -42 A01X-006882Y+011640X0344Y0098R180S2 180 | 327NET-(J4-PIN_9) U8 -41 A01X-006882Y+011837X0344Y0098R180S2 181 | 327NET-(J4-PIN_8) U8 -40 A01X-006882Y+012034X0344Y0098R180S2 182 | 327NET-(J4-PIN_7) U8 -39 A01X-006882Y+012231X0344Y0098R180S2 183 | 327NET-(J4-PIN_6) U8 -38 A01X-006882Y+012428X0344Y0098R180S2 184 | 327NET-(J4-PIN_5) U8 -37 A01X-006882Y+012624X0344Y0098R180S2 185 | 327/DSP/GPIO2 U8 -36 A01X-006882Y+012821X0344Y0098R180S2 186 | 327+3V3 U8 -35 A01X-006882Y+013018X0344Y0098R180S2 187 | 327/DSP/GPIO1 U8 -34 A01X-006882Y+013215X0344Y0098R180S2 188 | 327/DSP/GPIO0 U8 -33 A01X-006882Y+013412X0344Y0098R180S2 189 | 327LASH}I2S_SDOA) U8 -32 A01X-006612Y+013682X0098Y0344R180S2 190 | 327LASH}I2S_SDIA) U8 -31 A01X-006415Y+013682X0098Y0344R180S2 191 | 327SLASH}I2S_WSA) U8 -30 A01X-006218Y+013682X0098Y0344R180S2 192 | 327LASH}I2S_SCKA) U8 -29 A01X-006021Y+013682X0098Y0344R180S2 193 | 327+3V3 U8 -28 A01X-005824Y+013682X0098Y0344R180S2 194 | 327USB_D+ U8 -27 A01X-005628Y+013682X0098Y0344R180S2 195 | 327NET-(U8-RTN) U8 -26 A01X-005431Y+013682X0098Y0344R180S2 196 | 327USB_D- U8 -25 A01X-005234Y+013682X0098Y0344R180S2 197 | 327+1V2 U8 -24 A01X-005037Y+013682X0098Y0344R180S2 198 | 327NET-(U8-XO) U8 -23 A01X-004840Y+013682X0098Y0344R180S2 199 | 327NET-(U8-XI) U8 -22 A01X-004643Y+013682X0098Y0344R180S2 200 | 327+3V3 U8 -21 A01X-004446Y+013682X0098Y0344R180S2 201 | 32738063_DMIC_IN2 U8 -20 A01X-004250Y+013682X0098Y0344R180S2 202 | 32738063_DMIC_IN1 U8 -19 A01X-004053Y+013682X0098Y0344R180S2 203 | 327-(U8-DMIC_CLK) U8 -18 A01X-003856Y+013682X0098Y0344R180S2 204 | 327/DSP/EXT_SEL U8 -17 A01X-003659Y+013682X0098Y0344R180S2 205 | 327D12_CTL-PAD16) U8 -16 A01X-003388Y+013412X0344Y0098R180S2 206 | 327NET-(U8-RESET) U8 -15 A01X-003388Y+013215X0344Y0098R180S2 207 | 327+1V2 U8 -14 A01X-003388Y+013018X0344Y0098R180S2 208 | 327NET-(U8-CREF) U8 -13 A01X-003388Y+012821X0344Y0098R180S2 209 | 327NET-(U8-CDAC) U8 -12 A01X-003388Y+012624X0344Y0098R180S2 210 | 327+3V3 U8 -11 A01X-003388Y+012428X0344Y0098R180S2 211 | 327+3V3 U8 -10 A01X-003388Y+012231X0344Y0098R180S2 212 | 327ET-(U8-DAC2_M) U8 -9 A01X-003388Y+012034X0344Y0098R180S2 213 | 327ET-(U8-DAC2_P) U8 -8 A01X-003388Y+011837X0344Y0098R180S2 214 | 327ET-(U8-DAC1_P) U8 -7 A01X-003388Y+011640X0344Y0098R180S2 215 | 327ET-(U8-DAC1_M) U8 -6 A01X-003388Y+011443X0344Y0098R180S2 216 | 327+3V3 U8 -5 A01X-003388Y+011246X0344Y0098R180S2 217 | 327+1V2 U8 -4 A01X-003388Y+011050X0344Y0098R180S2 218 | 327T-(U8-SM_MOSI) U8 -3 A01X-003388Y+010853X0344Y0098R180S2 219 | 327T-(U8-SM_MISO) U8 -2 A01X-003388Y+010656X0344Y0098R180S2 220 | 327ET-(U8-SM_CLK) U8 -1 A01X-003388Y+010459X0344Y0098R180S2 221 | 327GND R13 -2 A01X-001420Y+008652X0213Y0252R270S2 222 | 327NET-(U5-CLK) R13 -1 A01X-001420Y+008250X0213Y0252R270S2 223 | 327GND SW3 -2 A01X-000797Y+010244X0610Y0512R090S2 224 | 327GND SW3 -2 A01X-000797Y+013378X0610Y0512R090S2 225 | 327NET-(JP11-C) SW3 -1 A01X+000974Y+010244X0610Y0512R090S2 226 | 327NET-(JP11-C) SW3 -1 A01X+000974Y+013378X0610Y0512R090S2 227 | 327GND C14 -2 A01X-001679Y+013168X0220Y0244R000S2 228 | 327NET-(U8-CREF) C14 -1 A01X-002057Y+013168X0220Y0244R000S2 229 | 317GND J4 -15 D0394PA00X-009671Y+004835X0669Y0669R000S0 230 | 317ET-(J4-PIN_14) J4 -14 D0394PA00X-009671Y+005835X0669Y0669R000S0 231 | 317ET-(J4-PIN_13) J4 -13 D0394PA00X-009671Y+006835X0669Y0669R000S0 232 | 317ET-(J4-PIN_12) J4 -12 D0394PA00X-009671Y+007835X0669Y0669R000S0 233 | 317ET-(J4-PIN_11) J4 -11 D0394PA00X-009671Y+008835X0669Y0669R000S0 234 | 317ET-(J4-PIN_10) J4 -10 D0394PA00X-009671Y+009835X0669Y0669R000S0 235 | 317NET-(J4-PIN_9) J4 -9 D0394PA00X-009671Y+010835X0669Y0669R000S0 236 | 317NET-(J4-PIN_8) J4 -8 D0394PA00X-009671Y+011835X0669Y0669R000S0 237 | 317NET-(J4-PIN_7) J4 -7 D0394PA00X-009671Y+012835X0669Y0669R000S0 238 | 317NET-(J4-PIN_6) J4 -6 D0394PA00X-009671Y+013835X0669Y0669R000S0 239 | 317NET-(J4-PIN_5) J4 -5 D0394PA00X-009671Y+014835X0669Y0669R000S0 240 | 317/DSP/GPIO2 J4 -4 D0394PA00X-009671Y+015835X0669Y0669R000S0 241 | 317/DSP/GPIO1 J4 -3 D0394PA00X-009671Y+016835X0669Y0669R000S0 242 | 317/DSP/GPIO0 J4 -2 D0394PA00X-009671Y+017835X0669Y0669R000S0 243 | 317+3V3 J4 -1 D0394PA00X-009671Y+018835X0669Y0669R000S0 244 | 327NET-(D2-DOUT) D3 -4 A01X-004852Y-003681X0591Y0354R000S2 245 | 327GND D3 -3 A01X-004852Y-004980X0591Y0354R000S2 246 | 327NET-(D3-DOUT) D3 -2 A01X-006781Y-004980X0591Y0354R000S2 247 | 327+5V D3 -1 A01X-006781Y-003681X0591Y0354R000S2 248 | 327NET-(D4-DOUT) D5 -4 A01X-018751Y+003230X0591Y0354R060S2 249 | 327GND D5 -3 A01X-019876Y+002580X0591Y0354R060S2 250 | 327NET-(D5-DOUT) D5 -2 A01X-020841Y+004251X0591Y0354R060S2 251 | 327+5V D5 -1 A01X-019716Y+004900X0591Y0354R060S2 252 | 327NET-(U8-RESET) R24 -2 A01X-002069Y+014368X0213Y0252R180S2 253 | 327NET-(C13-PAD1) R24 -1 A01X-001667Y+014368X0213Y0252R180S2 254 | 327NET-(JP10-A) R54 -2 A01X-002601Y+018700X0213Y0252R180S2 255 | 327BTN3 R54 -1 A01X-002199Y+018700X0213Y0252R180S2 256 | 327+3V3 R58 -2 A01X+000700Y+008801X0213Y0252R270S2 257 | 327BTN3 R58 -1 A01X+000700Y+008399X0213Y0252R270S2 258 | 327NET-(D11-DOUT) D12 -4 A01X+009675Y+012776X0591Y0354R270S2 259 | 327GND D12 -3 A01X+010974Y+012776X0591Y0354R270S2 260 | 327NET-(D12-DOUT) D12 -2 A01X+010974Y+010846X0591Y0354R270S2 261 | 327+5V D12 -1 A01X+009675Y+010846X0591Y0354R270S2 262 | 327GND C49 -2 A01X+004789Y+016500X0220Y0244R000S2 263 | 327+1V2 C49 -1 A01X+004411Y+016500X0220Y0244R000S2 264 | 327NET-(R40-PAD2) R46 -2 A01X-016526Y+004600X0213Y0252R330S2 265 | 327ET-(MK3-CLOCK) R46 -1 A01X-016874Y+004400X0213Y0252R330S2 266 | 327GND R49 -2 A01X-008189Y+024561X0213Y0252R075S2 267 | 327NET-(J3-CC1) R49 -1 A01X-008293Y+024949X0213Y0252R075S2 268 | 327NET-(D5-DOUT) D6 -4 A01X-021309Y+010846X0591Y0354R090S2 269 | 327GND D6 -3 A01X-022608Y+010846X0591Y0354R090S2 270 | 327NET-(D6-DOUT) D6 -2 A01X-022608Y+012776X0591Y0354R090S2 271 | 327+5V D6 -1 A01X-021309Y+012776X0591Y0354R090S2 272 | 327GND C30 -2 A01X-001679Y+011968X0220Y0244R000S2 273 | 327+3V3 C30 -1 A01X-002057Y+011968X0220Y0244R000S2 274 | 327SLASH}I2S_WSA) R31 -2 A01X-007468Y+014767X0213Y0252R090S2 275 | 327L38063_I2S_WSA R31 -1 A01X-007468Y+015169X0213Y0252R090S2 276 | 327GND C39 -2 A01X-007600Y-004389X0220Y0244R090S2 277 | 327+5V C39 -1 A01X-007600Y-004011X0220Y0244R090S2 278 | 327GND C25 -2 A01X-008471Y+013768X0220Y0244R180S2 279 | 327+3V3 C25 -1 A01X-008093Y+013768X0220Y0244R180S2 280 | 327ZL38063_DAC1_M C35 -2 A01X-001679Y+010368X0220Y0244R000S2 281 | 327ET-(U8-DAC1_M) C35 -1 A01X-002057Y+010368X0220Y0244R000S2 282 | 327BTN1 R53 -2 A01X-002601Y+018300X0213Y0252R180S2 283 | 327+3V3 R53 -1 A01X-002199Y+018300X0213Y0252R180S2 284 | 327+3.3V U2 -5 A01X-014530Y+013767X0522Y0236R180S2 285 | 327NET-(U3-CLK) U2 -4 A01X-014530Y+014515X0522Y0236R180S2 286 | 327GND U2 -3 A01X-013634Y+014515X0522Y0236R180S2 287 | 327NET-(C2-PAD1) U2 -2 A01X-013634Y+014141X0522Y0236R180S2 288 | 327D-(U2-NC-PAD1) U2 -1 A01X-013634Y+013767X0522Y0236R180S2 289 | 327GND C15 -2 A01X-005357Y+014768X0220Y0244R180S2 290 | 327NET-(U8-XO) C15 -1 A01X-004979Y+014768X0220Y0244R180S2 291 | 327NET-(D1-A) D1 -2 A01X-013500Y+012010X0344Y0374R270S2 292 | 327NET-(D1-K) D1 -1 A01X-013500Y+011390X0344Y0374R270S2 293 | 327GND C31 -2 A01X-001679Y+012368X0220Y0244R000S2 294 | 327+3V3 C31 -1 A01X-002057Y+012368X0220Y0244R000S2 295 | 327ET-(U3-~{CLR}) R6 -2 A01X-013900Y+012876X0213Y0252R180S2 296 | 327+3.3V R6 -1 A01X-013498Y+012876X0213Y0252R180S2 297 | 317ZL38063_DAC2_M J2 -4 D0394PA00X+002300Y+013243X0669Y0669R180S0 298 | 317ZL38063_DAC2_P J2 -3 D0394PA00X+002300Y+012243X0669Y0669R180S0 299 | 317ZL38063_DAC1_P J2 -2 D0394PA00X+002300Y+011243X0669Y0669R180S0 300 | 317ZL38063_DAC1_M J2 -1 D0394PA00X+002300Y+010243X0669Y0669R180S0 301 | 327GND C24 -2 A01X-003671Y+015168X0220Y0244R270S2 302 | 327+3V3 C24 -1 A01X-003671Y+014790X0220Y0244R270S2 303 | 317ET-(J3-SHIELD) J3 -S1 D0236PA00X-011752Y+027069X0394Y0709R165S0 304 | 317ET-(J3-SHIELD) J3 -S1 D0236PA00X-011324Y+025471X0394Y0827R165S0 305 | 317ET-(J3-SHIELD) J3 -S1 D0236PA00X-008467Y+027949X0394Y0709R165S0 306 | 317ET-(J3-SHIELD) J3 -S1 D0236PA00X-008039Y+026352X0394Y0827R165S0 307 | 327GND J3 -B12 A01X-008404Y+026010X0236Y0488R165S2 308 | 327NET-(D17-A) J3 -B9 A01X-008708Y+025928X0236Y0488R165S2 309 | 327J3-SBU2-PADB8) J3 -B8 A01X-008955Y+025862X0118Y0488R165S2 310 | 327USB_D- J3 -B7 A01X-009335Y+025760X0118Y0488R165S2 311 | 327USB_D+ J3 -B6 A01X-009906Y+025607X0118Y0488R165S2 312 | 327NET-(J3-CC2) J3 -B5 A01X-010286Y+025505X0118Y0488R165S2 313 | 327NET-(D17-A) J3 -B4 A01X-010533Y+025439X0236Y0488R165S2 314 | 327GND J3 -B1 A01X-010837Y+025357X0236Y0488R165S2 315 | 327GND J3 -A12 A01X-010837Y+025357X0236Y0488R165S2 316 | 327NET-(D17-A) J3 -A9 A01X-010533Y+025439X0236Y0488R165S2 317 | 327J3-SBU1-PADA8) J3 -A8 A01X-010096Y+025556X0118Y0488R165S2 318 | 327USB_D- J3 -A7 A01X-009716Y+025658X0118Y0488R165S2 319 | 327USB_D+ J3 -A6 A01X-009525Y+025709X0118Y0488R165S2 320 | 327NET-(J3-CC1) J3 -A5 A01X-009145Y+025811X0118Y0488R165S2 321 | 327NET-(D17-A) J3 -A4 A01X-008708Y+025928X0236Y0488R165S2 322 | 327GND J3 -A1 A01X-008404Y+026010X0236Y0488R165S2 323 | 367N/C J3 D0256UA00X-010834Y+025815X0256Y0000R165S0 324 | 367N/C J3 D0256UA00X-008636Y+026404X0256Y0000R165S0 325 | 327GND C2 -2 A01X-012981Y+014600X0220Y0244R180S2 326 | 327NET-(C2-PAD1) C2 -1 A01X-012603Y+014600X0220Y0244R180S2 327 | 327NET-(D12-DOUT) D13 -4 A01X+008082Y+004900X0591Y0354R300S2 328 | 327GND D13 -3 A01X+009207Y+004251X0591Y0354R300S2 329 | 327NET-(D13-DOUT) D13 -2 A01X+008242Y+002580X0591Y0354R300S2 330 | 327+5V D13 -1 A01X+007117Y+003230X0591Y0354R300S2 331 | 327BTN2 R56 -2 A01X+000300Y+008801X0213Y0252R270S2 332 | 327+3V3 R56 -1 A01X+000300Y+008399X0213Y0252R270S2 333 | 327NET-(JP4-A) R38 -2 A01X-011930Y+015470X0213Y0252R000S2 334 | 327+3V3 R38 -1 A01X-012332Y+015470X0213Y0252R000S2 335 | 327/POWER/ID_SCL R17 -2 A01X-009299Y-000200X0213Y0252R000S2 336 | 327+3V3 R17 -1 A01X-009701Y-000200X0213Y0252R000S2 337 | 327(U10-IO4-PAD6) U10 -6 A01X-008529Y+023800X0522Y0236R075S2 338 | 327NET-(D17-A) U10 -5 A01X-008891Y+023703X0522Y0236R075S2 339 | 327(U10-IO3-PAD4) U10 -4 A01X-009252Y+023606X0522Y0236R075S2 340 | 327USB_D+ U10 -3 A01X-009484Y+024471X0522Y0236R075S2 341 | 327GND U10 -2 A01X-009122Y+024568X0522Y0236R075S2 342 | 327USB_D- U10 -1 A01X-008761Y+024665X0522Y0236R075S2 343 | 327SLASH}I2S_WSB) R2 -2 A01X-004068Y+008969X0213Y0252R270S2 344 | 327GND R2 -1 A01X-004068Y+008567X0213Y0252R270S2 345 | 327NET-(JP2-A) R18 -2 A01X-011900Y+019190X0213Y0252R000S2 346 | 327+3V3 R18 -1 A01X-012302Y+019190X0213Y0252R000S2 347 | 327GNDA C10 -2 A01X-003189Y+015800X0220Y0244R180S2 348 | 327+3V3 C10 -1 A01X-002811Y+015800X0220Y0244R180S2 349 | 327GND R19 -2 A01X-012310Y+018220X0213Y0252R180S2 350 | 327NET-(JP2-B) R19 -1 A01X-011908Y+018220X0213Y0252R180S2 351 | 327GND C43 -2 A01X+004600Y+008111X0220Y0244R090S2 352 | 327NET-(U9-VI) C43 -1 A01X+004600Y+008489X0220Y0244R090S2 353 | 327NET-(U8-HCS) R26 -2 A01X-006868Y+008969X0213Y0252R270S2 354 | 327L38063_SPI_HCS R26 -1 A01X-006868Y+008567X0213Y0252R270S2 355 | 327GND C18 -2 A01X-005871Y+015357X0220Y0244R270S2 356 | 327+1V2 C18 -1 A01X-005871Y+014979X0220Y0244R270S2 357 | 327ZL38063_DAC2_M C36 -2 A01X-001679Y+011568X0220Y0244R000S2 358 | 327ET-(U8-DAC2_M) C36 -1 A01X-002057Y+011568X0220Y0244R000S2 359 | 327NET-(D2-DIN) D2 -4 A01X+002764Y-001123X0591Y0354R330S2 360 | 327GND D2 -3 A01X+003414Y-002248X0591Y0354R330S2 361 | 327NET-(D2-DOUT) D2 -2 A01X+001743Y-003213X0591Y0354R330S2 362 | 327+5V D2 -1 A01X+001094Y-002088X0591Y0354R330S2 363 | 327GND C21 -2 A01X-006668Y+015168X0220Y0244R270S2 364 | 327+3V3 C21 -1 A01X-006668Y+014790X0220Y0244R270S2 365 | 327GND C28 -2 A01X-003600Y+028389X0220Y0244R270S2 366 | 327+5V C28 -1 A01X-003600Y+028011X0220Y0244R270S2 367 | 327E/DMIC_IN1_BUF R41 -2 A01X-006700Y+024100X0213Y0252R270S2 368 | 327NET-(MK1-DATA) R41 -1 A01X-006700Y+023698X0213Y0252R270S2 369 | 327GND R48 -2 A01X-009927Y+024095X0213Y0252R075S2 370 | 327NET-(J3-CC2) R48 -1 A01X-010031Y+024483X0213Y0252R075S2 371 | 327GND SW4 -2 A01X-007384Y+006791X0610Y0512R180S2 372 | 327GND SW4 -2 A01X-004250Y+006791X0610Y0512R180S2 373 | 327BTN3 SW4 -1 A01X-007384Y+005020X0610Y0512R180S2 374 | 327BTN3 SW4 -1 A01X-004250Y+005020X0610Y0512R180S2 375 | 327L38063_UART_TX R35 -2 A01X-008200Y+008578X0213Y0252R090S2 376 | 327T-(U8-UART_TX) R35 -1 A01X-008200Y+008980X0213Y0252R090S2 377 | 327GND C29 -2 A01X-004868Y+008591X0220Y0244R090S2 378 | 327+3V3 C29 -1 A01X-004868Y+008969X0220Y0244R090S2 379 | 367N/C MH3 D1063UA00X+005600Y+021457X1063Y0000R180S0 380 | 327+3.3V D15 -2 A01X+004467Y+012300X0197Y0197R180S2 381 | 327NET-(D15-K) D15 -1 A01X+005333Y+012300X0197Y0197R180S2 382 | 327+1V2 TP10 -1 A01X+003800Y+016500X0394Y0000R000S2 383 | 327GND C19 -2 A01X-008457Y+011868X0220Y0244R180S2 384 | 327+1V2 C19 -1 A01X-008079Y+011868X0220Y0244R180S2 385 | 327NET-(U8-HDIN) R27 -2 A01X-006468Y+008969X0213Y0252R270S2 386 | 32738063_SPI_HDIN R27 -1 A01X-006468Y+008567X0213Y0252R270S2 387 | 327LASH}I2S_SDIB) R8 -2 A01X-003668Y+008969X0213Y0252R270S2 388 | 327GND R8 -1 A01X-003668Y+008567X0213Y0252R270S2 389 | 327GND C5 -2 A01X-014322Y+012900X0220Y0244R000S2 390 | 327NET-(U3-D) C5 -1 A01X-014700Y+012900X0220Y0244R000S2 391 | 327GND C4 -2 A01X-013611Y+013276X0220Y0244R000S2 392 | 327ET-(U3-~{CLR}) C4 -1 A01X-013989Y+013276X0220Y0244R000S2 393 | 327GND C3 -2 A01X-014370Y+013280X0220Y0244R000S2 394 | 327+3.3V C3 -1 A01X-014748Y+013280X0220Y0244R000S2 395 | 327GND C6 -2 A01X-015889Y+011000X0220Y0244R180S2 396 | 327+3.3V C6 -1 A01X-015511Y+011000X0220Y0244R180S2 397 | 327GND R52 -2 A01X-002368Y+015169X0213Y0252R270S2 398 | 327NET-(JP9-B) R52 -1 A01X-002368Y+014768X0213Y0252R270S2 399 | 327NET-(D17-A) D17 -2 A01X-003300Y+025613X0984Y0709R090S2 400 | 327+5V D17 -1 A01X-003300Y+027187X0984Y0709R090S2 401 | 367N/C MH1 D1063UA00X+005600Y+002165X1063Y0000R180S0 402 | 327NET-(JP9-A) R51 -2 A01X-001968Y+014768X0213Y0252R090S2 403 | 327+3V3 R51 -1 A01X-001968Y+015169X0213Y0252R090S2 404 | 327GND C45 -2 A01X+004511Y+012900X0220Y0244R180S2 405 | 327NET-(D15-K) C45 -1 A01X+004889Y+012900X0220Y0244R180S2 406 | 327GND R39 -2 A01X-004900Y+024698X0213Y0252R090S2 407 | 327NET-(MK1-SEL) R39 -1 A01X-004900Y+025100X0213Y0252R090S2 408 | 327NET-(R40-PAD2) R43 -2 A01X+005726Y+006200X0213Y0252R210S2 409 | 327ET-(MK2-CLOCK) R43 -1 A01X+006074Y+006000X0213Y0252R210S2 410 | 327GND C46 -2 A01X+006600Y+008111X0220Y0244R090S2 411 | 327+5V C46 -1 A01X+006600Y+008489X0220Y0244R090S2 412 | 327GND R50 -2 A01X-011802Y+014470X0213Y0252R180S2 413 | 327NET-(JP4-B) R50 -1 A01X-011400Y+014470X0213Y0252R180S2 414 | 327GND C47 -2 A01X+004789Y+016100X0220Y0244R000S2 415 | 327+1V2 C47 -1 A01X+004411Y+016100X0220Y0244R000S2 416 | 327+3V3 U1 -5 A01X-001152Y+016400X0522Y0236R090S2 417 | 32738063_DMIC_IN1 U1 -4 A01X-001900Y+016400X0522Y0236R090S2 418 | 327GND U1 -3 A01X-001900Y+017296X0522Y0236R090S2 419 | 327E/DMIC_IN1_BUF U1 -2 A01X-001526Y+017296X0522Y0236R090S2 420 | 327FACE/MUTE_DATA U1 -1 A01X-001152Y+017296X0522Y0236R090S2 421 | 327GND C11 -2 A01X-001679Y+012768X0220Y0244R000S2 422 | 327NET-(U8-CDAC) C11 -1 A01X-002057Y+012768X0220Y0244R000S2 423 | 327E/DMIC_IN1_BUF R44 -2 A01X+005348Y+006399X0213Y0252R030S2 424 | 327NET-(MK2-DATA) R44 -1 A01X+005000Y+006600X0213Y0252R030S2 425 | 327GND C8 -2 A01X-011000Y-001289X0220Y0244R090S2 426 | 327+3V3 C8 -1 A01X-011000Y-000911X0220Y0244R090S2 427 | 327/POWER/ID_SDA R16 -2 A01X-008901Y-000200X0213Y0252R180S2 428 | 327+3V3 R16 -1 A01X-008499Y-000200X0213Y0252R180S2 429 | 327NET-(C2-PAD1) SW1 -2 A01X-012608Y+010244X0610Y0512R090S2 430 | 327NET-(C2-PAD1) SW1 -2 A01X-012608Y+013378X0610Y0512R090S2 431 | 327GND SW1 -1 A01X-010837Y+010244X0610Y0512R090S2 432 | 327GND SW1 -1 A01X-010837Y+013378X0610Y0512R090S2 433 | 327NET-(D10-DIN) D10 -4 A01X+001094Y+025710X0591Y0354R210S2 434 | 327GND D10 -3 A01X+001743Y+026835X0591Y0354R210S2 435 | 327NET-(D10-DOUT) D10 -2 A01X+003414Y+025870X0591Y0354R210S2 436 | 327+5V D10 -1 A01X+002764Y+024745X0591Y0354R210S2 437 | 327GND C44 -2 A01X+004889Y+011700X0220Y0244R000S2 438 | 327+3.3V C44 -1 A01X+004511Y+011700X0220Y0244R000S2 439 | 327+3.3V TP7 -1 A01X+003800Y+012100X0394Y0000R000S2 440 | 327GND C17 -2 A01X-001679Y+013968X0220Y0244R000S2 441 | 327+1V2 C17 -1 A01X-002057Y+013968X0220Y0244R000S2 442 | 327NET-(U9-VI) U9 -3 A01X+006941Y+011007X0787Y0591R180S2 443 | 327+3.3V U9 -2 A01X+004461Y+010101X0787Y1496R180S2 444 | 327+3.3V U9 -2 A01X+006941Y+010101X0787Y0591R180S2 445 | 327GND U9 -1 A01X+006941Y+009196X0787Y0591R180S2 446 | 317GND J1 -4 D0394PA00X-011171Y+007843X0669Y0669R180S0 447 | 317L38063_UART_TX J1 -3 D0394PA00X-011171Y+006843X0669Y0669R180S0 448 | 317L38063_UART_RX J1 -2 D0394PA00X-011171Y+005843X0669Y0669R180S0 449 | 317J1-PIN_1-PAD1) J1 -1 D0394PA00X-011171Y+004843X0669Y0669R180S0 450 | 32738063_DMIC_CLK R34 -2 A01X-002768Y+015169X0213Y0252R270S2 451 | 327-(U8-DMIC_CLK) R34 -1 A01X-002768Y+014767X0213Y0252R270S2 452 | 327GND C1 -2 A01X-002400Y+007200X0220Y0244R000S2 453 | 327+3V3 C1 -1 A01X-002778Y+007200X0220Y0244R000S2 454 | 327E/DMIC_IN2_BUF R47 -2 A01X-015974Y+004900X0213Y0252R150S2 455 | 327NET-(MK3-DATA) R47 -1 A01X-015626Y+005100X0213Y0252R150S2 456 | 327NET-(D6-DOUT) D7 -4 A01X-019716Y+018722X0591Y0354R120S2 457 | 327GND D7 -3 A01X-020841Y+019371X0591Y0354R120S2 458 | 327NET-(D7-DOUT) D7 -2 A01X-019876Y+021042X0591Y0354R120S2 459 | 327+5V D7 -1 A01X-018751Y+020392X0591Y0354R120S2 460 | 327GND C51 -2 A01X+004200Y+008111X0220Y0244R090S2 461 | 327NET-(U9-VI) C51 -1 A01X+004200Y+008489X0220Y0244R090S2 462 | 327NET-(U3-D) R7 -2 A01X-014723Y+012500X0213Y0252R180S2 463 | 327FACE/MUTE_DATA R7 -1 A01X-014321Y+012500X0213Y0252R180S2 464 | 327NET-(U8-HDOUT) R28 -2 A01X-006068Y+008969X0213Y0252R270S2 465 | 3278063_SPI_HDOUT R28 -1 A01X-006068Y+008567X0213Y0252R270S2 466 | 327MUTE_PWR R5 -2 A01X-014000Y+011700X0213Y0252R270S2 467 | 327NET-(Q1-G) R5 -1 A01X-014000Y+011298X0213Y0252R270S2 468 | 327GND C16 -2 A01X-001679Y+009568X0220Y0244R000S2 469 | 327+1V2 C16 -1 A01X-002057Y+009568X0220Y0244R000S2 470 | 327+3V3 R15 -2 A01X-001560Y+015181X0213Y0252R270S2 471 | 327NET-(C13-PAD1) R15 -1 A01X-001560Y+014779X0213Y0252R270S2 472 | 327+5V U4 -5 A01X-001246Y-002600X0522Y0236R090S2 473 | 327NET-(D2-DIN) U4 -4 A01X-001994Y-002600X0522Y0236R090S2 474 | 327GND U4 -3 A01X-001994Y-001704X0522Y0236R090S2 475 | 327WS2812_CTRL U4 -2 A01X-001620Y-001704X0522Y0236R090S2 476 | 327GND U4 -1 A01X-001246Y-001704X0522Y0236R090S2 477 | 327GND C9 -2 A01X-004179Y+014768X0220Y0244R000S2 478 | 327NET-(U8-XI) C9 -1 A01X-004557Y+014768X0220Y0244R000S2 479 | 327GND C41 -2 A01X+004500Y+004800X0220Y0244R030S2 480 | 327+3V3 C41 -1 A01X+004173Y+004989X0220Y0244R030S2 481 | 327GND MK3 -8 A01X-016476Y+005077X0177Y0906R060S2 482 | 327GND MK3 -7 A01X-017333Y+005162X0512Y0177R060S2 483 | 327GND MK3 -6 A01X-016978Y+005947X0177Y0906R060S2 484 | 327GND MK3 -5 A01X-016122Y+005861X0512Y0177R060S2 485 | 327NET-(MK3-DATA) MK3 -4 A01X-016414Y+005500X0177Y0374R060S2 486 | 327ET-(MK3-CLOCK) MK3 -3 A01X-016874Y+005234X0177Y0374R060S2 487 | 327NET-(MK3-SEL) MK3 -2 A01X-017041Y+005524X0177Y0374R060S2 488 | 327+3V3 MK3 -1 A01X-016581Y+005790X0177Y0374R060S2 489 | 367N/C MH4 D1063UA00X-017234Y+021457X1063Y0000R180S0 490 | 327NET-(D1-A) R4 -2 A01X-013900Y+012472X0213Y0252R180S2 491 | 327+3.3V R4 -1 A01X-013498Y+012472X0213Y0252R180S2 492 | 327GND C38 -2 A01X+010389Y+010000X0220Y0244R000S2 493 | 327+5V C38 -1 A01X+010011Y+010000X0220Y0244R000S2 494 | 327+3V3 U5 -8 A01X-001918Y+007510X0768Y0236R270S2 495 | 327NET-(U5-IO3) U5 -7 A01X-001418Y+007510X0768Y0236R270S2 496 | 327NET-(U5-CLK) U5 -6 A01X-000918Y+007510X0768Y0236R270S2 497 | 327T-(U5-DI(IO0)) U5 -5 A01X-000418Y+007510X0768Y0236R270S2 498 | 327GND U5 -4 A01X-000418Y+005561X0768Y0236R270S2 499 | 327NET-(U5-IO2) U5 -3 A01X-000918Y+005561X0768Y0236R270S2 500 | 327T-(U5-DO(IO1)) U5 -2 A01X-001418Y+005561X0768Y0236R270S2 501 | 327NET-(U5-~{CS}) U5 -1 A01X-001918Y+005561X0768Y0236R270S2 502 | 327NET-(D16-A) D16 -2 A01X-000200Y-000825X0984Y0709R270S2 503 | 327+5V D16 -1 A01X-000200Y-002400X0984Y0709R270S2 504 | 327GND C48 -2 A01X+007000Y+008111X0220Y0244R090S2 505 | 327+5V C48 -1 A01X+007000Y+008489X0220Y0244R090S2 506 | 32738063_I2S_SDIA J5 -40 A01X-015319Y+001020X0402Y0701R180S2 507 | 327GND J5 -39 A01X-015319Y+003311X0402Y0701R180S2 508 | 32738063_I2S_SDOA J5 -38 A01X-014319Y+001020X0402Y0701R180S2 509 | 327ZL38063_HINT J5 -37 A01X-014319Y+003311X0402Y0701R180S2 510 | 327-GPIO16-PAD36) J5 -36 A01X-013319Y+001020X0402Y0701R180S2 511 | 327L38063_I2S_WSA J5 -35 A01X-013319Y+003311X0402Y0701R180S2 512 | 327GND J5 -34 A01X-012319Y+001020X0402Y0701R180S2 513 | 327}GPIO13-PAD33) J5 -33 A01X-012319Y+003311X0402Y0701R180S2 514 | 327}GPIO12-PAD32) J5 -32 A01X-011319Y+001020X0402Y0701R180S2 515 | 327H}GPIO6-PAD31) J5 -31 A01X-011319Y+003311X0402Y0701R180S2 516 | 327GND J5 -30 A01X-010319Y+001020X0402Y0701R180S2 517 | 327H}GPIO5-PAD29) J5 -29 A01X-010319Y+003311X0402Y0701R180S2 518 | 327/POWER/ID_SCL J5 -28 A01X-009319Y+001020X0402Y0701R180S2 519 | 327/POWER/ID_SDA J5 -27 A01X-009319Y+003311X0402Y0701R180S2 520 | 327H}GPIO7-PAD26) J5 -26 A01X-008319Y+001020X0402Y0701R180S2 521 | 327GND J5 -25 A01X-008319Y+003311X0402Y0701R180S2 522 | 327L38063_SPI_HCS J5 -24 A01X-007319Y+001020X0402Y0701R180S2 523 | 32738063_SPI_HCLK J5 -23 A01X-007319Y+003311X0402Y0701R180S2 524 | 327-GPIO25-PAD22) J5 -22 A01X-006319Y+001020X0402Y0701R180S2 525 | 3278063_SPI_HDOUT J5 -21 A01X-006319Y+003311X0402Y0701R180S2 526 | 327GND J5 -20 A01X-005319Y+001020X0402Y0701R180S2 527 | 32738063_SPI_HDIN J5 -19 A01X-005319Y+003311X0402Y0701R180S2 528 | 327-GPIO24-PAD18) J5 -18 A01X-004319Y+001020X0402Y0701R180S2 529 | 327-(J5-3V3-PAD1) J5 -17 A01X-004319Y+003311X0402Y0701R180S2 530 | 327WS2812_CTRL J5 -16 A01X-003319Y+001020X0402Y0701R180S2 531 | 327-GPIO22-PAD15) J5 -15 A01X-003319Y+003311X0402Y0701R180S2 532 | 327GND J5 -14 A01X-002319Y+001020X0402Y0701R180S2 533 | 327-GPIO27-PAD13) J5 -13 A01X-002319Y+003311X0402Y0701R180S2 534 | 32738063_I2S_SCKA J5 -12 A01X-001319Y+001020X0402Y0701R180S2 535 | 327-GPIO17-PAD11) J5 -11 A01X-001319Y+003311X0402Y0701R180S2 536 | 327L38063_UART_TX J5 -10 A01X-000319Y+001020X0402Y0701R180S2 537 | 327GND J5 -9 A01X-000319Y+003311X0402Y0701R180S2 538 | 327L38063_UART_RX J5 -8 A01X+000681Y+001020X0402Y0701R180S2 539 | 327SH}GPIO4-PAD7) J5 -7 A01X+000681Y+003311X0402Y0701R180S2 540 | 327GND J5 -6 A01X+001681Y+001020X0402Y0701R180S2 541 | 327SH}GPIO3-PAD5) J5 -5 A01X+001681Y+003311X0402Y0701R180S2 542 | 327NET-(D16-A) J5 -4 A01X+002681Y+001020X0402Y0701R180S2 543 | 327SH}GPIO2-PAD3) J5 -3 A01X+002681Y+003311X0402Y0701R180S2 544 | 327NET-(D16-A) J5 -2 A01X+003681Y+001020X0402Y0701R180S2 545 | 327J5-3V3-PAD1)_0 J5 -1 A01X+003681Y+003311X0402Y0701R180S2 546 | 367N/C J5 D0402UA00X-015319Y+002665X0402Y0000R180S0 547 | 367N/C J5 D0402UA00X-015319Y+001665X0402Y0000R180S0 548 | 367N/C J5 D0709UA00X-014819Y+002165X0709Y0000R180S0 549 | 367N/C J5 D0402UA00X-014319Y+002665X0402Y0000R180S0 550 | 367N/C J5 D0402UA00X-014319Y+001665X0402Y0000R180S0 551 | 367N/C J5 D0709UA00X-013819Y+002165X0709Y0000R180S0 552 | 367N/C J5 D0402UA00X-013319Y+002665X0402Y0000R180S0 553 | 367N/C J5 D0402UA00X-013319Y+001665X0402Y0000R180S0 554 | 367N/C J5 D0402UA00X-012319Y+002665X0402Y0000R180S0 555 | 367N/C J5 D0402UA00X-012319Y+001665X0402Y0000R180S0 556 | 367N/C J5 D0402UA00X-011319Y+002665X0402Y0000R180S0 557 | 367N/C J5 D0402UA00X-011319Y+001665X0402Y0000R180S0 558 | 367N/C J5 D0402UA00X-010319Y+002665X0402Y0000R180S0 559 | 367N/C J5 D0402UA00X-010319Y+001665X0402Y0000R180S0 560 | 367N/C J5 D0402UA00X-009319Y+002665X0402Y0000R180S0 561 | 367N/C J5 D0402UA00X-009319Y+001665X0402Y0000R180S0 562 | 367N/C J5 D0402UA00X-008319Y+002665X0402Y0000R180S0 563 | 367N/C J5 D0402UA00X-008319Y+001665X0402Y0000R180S0 564 | 367N/C J5 D0402UA00X-007319Y+002665X0402Y0000R180S0 565 | 367N/C J5 D0402UA00X-007319Y+001665X0402Y0000R180S0 566 | 367N/C J5 D0402UA00X-006319Y+002665X0402Y0000R180S0 567 | 367N/C J5 D0402UA00X-006319Y+001665X0402Y0000R180S0 568 | 367N/C J5 D0402UA00X-005319Y+002665X0402Y0000R180S0 569 | 367N/C J5 D0402UA00X-005319Y+001665X0402Y0000R180S0 570 | 367N/C J5 D0402UA00X-004319Y+002665X0402Y0000R180S0 571 | 367N/C J5 D0402UA00X-004319Y+001665X0402Y0000R180S0 572 | 367N/C J5 D0402UA00X-003319Y+002665X0402Y0000R180S0 573 | 367N/C J5 D0402UA00X-003319Y+001665X0402Y0000R180S0 574 | 367N/C J5 D0402UA00X-002319Y+002665X0402Y0000R180S0 575 | 367N/C J5 D0402UA00X-002319Y+001665X0402Y0000R180S0 576 | 367N/C J5 D0402UA00X-001319Y+002665X0402Y0000R180S0 577 | 367N/C J5 D0402UA00X-001319Y+001665X0402Y0000R180S0 578 | 367N/C J5 D0402UA00X-000319Y+002665X0402Y0000R180S0 579 | 367N/C J5 D0402UA00X-000319Y+001665X0402Y0000R180S0 580 | 367N/C J5 D0402UA00X+000681Y+002665X0402Y0000R180S0 581 | 367N/C J5 D0402UA00X+000681Y+001665X0402Y0000R180S0 582 | 367N/C J5 D0402UA00X+001681Y+002665X0402Y0000R180S0 583 | 367N/C J5 D0402UA00X+001681Y+001665X0402Y0000R180S0 584 | 367N/C J5 D0709UA00X+002181Y+002165X0709Y0000R180S0 585 | 367N/C J5 D0402UA00X+002681Y+002665X0402Y0000R180S0 586 | 367N/C J5 D0402UA00X+002681Y+001665X0402Y0000R180S0 587 | 367N/C J5 D0709UA00X+003181Y+002165X0709Y0000R180S0 588 | 367N/C J5 D0402UA00X+003681Y+002665X0402Y0000R180S0 589 | 367N/C J5 D0402UA00X+003681Y+001665X0402Y0000R180S0 590 | 327LASH}I2S_SDIA) R32 -2 A01X-007868Y+014767X0213Y0252R090S2 591 | 32738063_I2S_SDIA R32 -1 A01X-007868Y+015169X0213Y0252R090S2 592 | 327ET-(U8-SM_CLK) R20 -2 A01X-002868Y+008969X0213Y0252R270S2 593 | 327NET-(U5-CLK) R20 -1 A01X-002868Y+008568X0213Y0252R270S2 594 | 327+3V3 R42 -2 A01X+004852Y+004601X0213Y0252R210S2 595 | 327NET-(MK2-SEL) R42 -1 A01X+005200Y+004400X0213Y0252R210S2 596 | 327GND TP11 -1 A01X+005400Y+016500X0394Y0000R000S2 597 | 327+3V3 R12 -2 A01X-002801Y+008000X0213Y0252R180S2 598 | 327NET-(U5-IO3) R12 -1 A01X-002399Y+008000X0213Y0252R180S2 599 | 327GND SW2 -2 A01X-004250Y+016831X0610Y0512R000S2 600 | 327GND SW2 -2 A01X-007384Y+016831X0610Y0512R000S2 601 | 327NET-(JP10-C) SW2 -1 A01X-004250Y+018602X0610Y0512R000S2 602 | 327NET-(JP10-C) SW2 -1 A01X-007384Y+018602X0610Y0512R000S2 603 | 327+3.3V U3 -8 A01X-014590Y+012067X0295Y0098R000S2 604 | 327+3.3V U3 -7 A01X-014590Y+011870X0295Y0098R000S2 605 | 327ET-(U3-~{CLR}) U3 -6 A01X-014590Y+011673X0295Y0098R000S2 606 | 327MUTE_PWR U3 -5 A01X-014590Y+011476X0295Y0098R000S2 607 | 327GND U3 -4 A01X-015810Y+011476X0295Y0098R000S2 608 | 327FACE/MUTE_DATA U3 -3 A01X-015810Y+011673X0295Y0098R000S2 609 | 327NET-(U3-D) U3 -2 A01X-015810Y+011870X0295Y0098R000S2 610 | 327NET-(U3-CLK) U3 -1 A01X-015810Y+012067X0295Y0098R000S2 611 | 327ZL38063_DAC2_P C34 -2 A01X-001679Y+011168X0220Y0244R000S2 612 | 327ET-(U8-DAC2_P) C34 -1 A01X-002057Y+011168X0220Y0244R000S2 613 | 327GND C13 -2 A01X-000912Y+014370X0220Y0244R000S2 614 | 327NET-(C13-PAD1) C13 -1 A01X-001290Y+014370X0220Y0244R000S2 615 | 327+3V3 U7 -5 A01X-002652Y+016400X0522Y0236R090S2 616 | 32738063_DMIC_IN2 U7 -4 A01X-003400Y+016400X0522Y0236R090S2 617 | 327GND U7 -3 A01X-003400Y+017296X0522Y0236R090S2 618 | 327E/DMIC_IN2_BUF U7 -2 A01X-003026Y+017296X0522Y0236R090S2 619 | 327FACE/MUTE_DATA U7 -1 A01X-002652Y+017296X0522Y0236R090S2 620 | 327GND MK2 -8 A01X+005345Y+005947X0177Y0906R300S2 621 | 327GND MK2 -7 A01X+005699Y+005162X0512Y0177R300S2 622 | 327GND MK2 -6 A01X+004843Y+005077X0177Y0906R300S2 623 | 327GND MK2 -5 A01X+004488Y+005861X0512Y0177R300S2 624 | 327NET-(MK2-DATA) MK2 -4 A01X+004947Y+005790X0177Y0374R300S2 625 | 327ET-(MK2-CLOCK) MK2 -3 A01X+005407Y+005524X0177Y0374R300S2 626 | 327NET-(MK2-SEL) MK2 -2 A01X+005240Y+005234X0177Y0374R300S2 627 | 327+3V3 MK2 -1 A01X+004780Y+005500X0177Y0374R300S2 628 | 327GND C26 -2 A01X-008457Y+010668X0220Y0244R180S2 629 | 327+3V3 C26 -1 A01X-008079Y+010668X0220Y0244R180S2 630 | 327GND C52 -2 A01X+005000Y+008111X0220Y0244R090S2 631 | 327NET-(U9-VI) C52 -1 A01X+005000Y+008489X0220Y0244R090S2 632 | 3279{SLASH}SM_CS) R21 -2 A01X-003268Y+008969X0213Y0252R270S2 633 | 327NET-(U5-~{CS}) R21 -1 A01X-003268Y+008568X0213Y0252R270S2 634 | 327GND C22 -2 A01X+004634Y+023834X0220Y0244R315S2 635 | 327+5V C22 -1 A01X+004366Y+023566X0220Y0244R315S2 636 | 327NET-(D15-K) U11 -3 A01X+006941Y+015407X0787Y0591R180S2 637 | 327+1V2 U11 -2 A01X+004461Y+014501X0787Y1496R180S2 638 | 327+1V2 U11 -2 A01X+006941Y+014501X0787Y0591R180S2 639 | 327GND U11 -1 A01X+006941Y+013596X0787Y0591R180S2 640 | 327NET-(U9-VI) L1 -2 A01X+005490Y+008300X0344Y0374R180S2 641 | 327+5V L1 -1 A01X+006110Y+008300X0344Y0374R180S2 642 | 327NET-(JP3-A) R36 -2 A01X-011910Y+017300X0213Y0252R000S2 643 | 327+3V3 R36 -1 A01X-012312Y+017300X0213Y0252R000S2 644 | 327ZL38063_DAC1_P C33 -2 A01X-001679Y+010768X0220Y0244R000S2 645 | 327ET-(U8-DAC1_P) C33 -1 A01X-002057Y+010768X0220Y0244R000S2 646 | 327+3V3 R10 -2 A01X-002399Y+007600X0213Y0252R000S2 647 | 327NET-(U5-~{CS}) R10 -1 A01X-002801Y+007600X0213Y0252R000S2 648 | 327GND R45 -2 A01X-017326Y+006200X0213Y0252R330S2 649 | 327NET-(MK3-SEL) R45 -1 A01X-017674Y+006000X0213Y0252R330S2 650 | 327NET-(U8-HINT) R29 -2 A01X-005668Y+008969X0213Y0252R270S2 651 | 327ZL38063_HINT R29 -1 A01X-005668Y+008567X0213Y0252R270S2 652 | 327GND R37 -2 A01X-012302Y+016310X0213Y0252R180S2 653 | 327NET-(JP3-B) R37 -1 A01X-011900Y+016310X0213Y0252R180S2 654 | 327NET-(D3-DOUT) D4 -4 A01X-012728Y-002088X0591Y0354R030S2 655 | 327GND D4 -3 A01X-013377Y-003213X0591Y0354R030S2 656 | 327NET-(D4-DOUT) D4 -2 A01X-015048Y-002248X0591Y0354R030S2 657 | 327+5V D4 -1 A01X-014398Y-001123X0591Y0354R030S2 658 | 327GND C37 -2 A01X+004834Y-001034X0220Y0244R045S2 659 | 327+5V C37 -1 A01X+004566Y-000766X0220Y0244R045S2 660 | 327+3V3 R11 -2 A01X-002802Y+006800X0213Y0252R180S2 661 | 327NET-(U5-IO2) R11 -1 A01X-002400Y+006800X0213Y0252R180S2 662 | 327GND C20 -2 A01X-005268Y+008591X0220Y0244R090S2 663 | 327+1V2 C20 -1 A01X-005268Y+008969X0220Y0244R090S2 664 | 327T-(U8-SM_MOSI) R23 -2 A01X-002069Y+009168X0213Y0252R180S2 665 | 327T-(U5-DI(IO0)) R23 -1 A01X-001667Y+009168X0213Y0252R180S2 666 | 327+3V3 U6 -8 A01X-010424Y-000900X0768Y0236R270S2 667 | 327NET-(JP1-A) U6 -7 A01X-009924Y-000900X0768Y0236R270S2 668 | 327/POWER/ID_SCL U6 -6 A01X-009424Y-000900X0768Y0236R270S2 669 | 327/POWER/ID_SDA U6 -5 A01X-008924Y-000900X0768Y0236R270S2 670 | 327GND U6 -4 A01X-008924Y-002849X0768Y0236R270S2 671 | 327D-(U6-A2-PAD3) U6 -3 A01X-009424Y-002849X0768Y0236R270S2 672 | 327D-(U6-A1-PAD2) U6 -2 A01X-009924Y-002849X0768Y0236R270S2 673 | 327D-(U6-A0-PAD1) U6 -1 A01X-010424Y-002849X0768Y0236R270S2 674 | 327GND C27 -2 A01X-007668Y+008591X0220Y0244R090S2 675 | 327+3V3 C27 -1 A01X-007668Y+008969X0220Y0244R090S2 676 | 327NET-(D1-K) Q1 -3 A01X-013600Y+010400X0581Y0236R000S2 677 | 327GND Q1 -2 A01X-014338Y+010026X0581Y0236R000S2 678 | 327NET-(Q1-G) Q1 -1 A01X-014338Y+010774X0581Y0236R000S2 679 | 327GND C12 -2 A01X-001679Y+013568X0220Y0244R000S2 680 | 327NET-(U8-CREF) C12 -1 A01X-002057Y+013568X0220Y0244R000S2 681 | 327GNDA C7 -2 A01X-001689Y+015800X0220Y0244R180S2 682 | 327+3V3 C7 -1 A01X-001311Y+015800X0220Y0244R180S2 683 | 327GND C42 -2 A01X-016964Y+006406X0220Y0244R150S2 684 | 327+3V3 C42 -1 A01X-016636Y+006594X0220Y0244R150S2 685 | 327NET-(D13-DOUT) TP12 -1 A01X+007700Y+001900X0394Y0000R000S2 686 | 327SLASH}I2S_WSB) TP2 -1 A04X-004100Y+008600X0394Y0000R180S1 687 | 327BTN1 JP10 -3 A04X-003300Y+018088X0394Y0197R090S1 688 | 327NET-(JP10-C) JP10 -2 A04X-003300Y+018600X0394Y0591R090S1 689 | 327NET-(JP10-A) JP10 -1 A04X-003300Y+019112X0394Y0197R090S1 690 | 327LASH}I2S_SDOB) TP4 -1 A04X-003900Y+010100X0394Y0000R270S1 691 | 327NET-(JP2-B) JP2 -3 A04X-011266Y+018168X0394Y0197R090S1 692 | 327/DSP/GPIO0 JP2 -2 A04X-011266Y+018680X0394Y0591R090S1 693 | 327NET-(JP2-A) JP2 -1 A04X-011266Y+019192X0394Y0197R090S1 694 | 327ZL38063_HINT TP5 -1 A04X-005700Y+008400X0394Y0000R180S1 695 | 327ET-(J3-SHIELD) NT2 -2 A04X-010249Y+027700X0197Y0000R075S3 696 | 327GND NT2 -1 A04X-010351Y+028080X0197Y0000R075S3 697 | 327NET-(U8-RTN) TP8 -1 A04X-005471Y+013735X0394Y0000R180S1 698 | 327NET-(JP3-B) JP3 -3 A04X-011266Y+016308X0394Y0197R090S1 699 | 327/DSP/GPIO1 JP3 -2 A04X-011266Y+016820X0394Y0591R090S1 700 | 327NET-(JP3-A) JP3 -1 A04X-011266Y+017332X0394Y0197R090S1 701 | 327NET-(JP9-B) JP9 -3 A04X-003580Y+014368X0394Y0197R180S1 702 | 327/DSP/EXT_SEL JP9 -2 A04X-003068Y+014368X0394Y0591R180S1 703 | 327NET-(JP9-A) JP9 -1 A04X-002556Y+014368X0394Y0197R180S1 704 | 327NET-(C13-PAD1) TP6 -1 A04X-001400Y+014400X0394Y0000R180S1 705 | 327ZL38063_DAC2_M JP8 -2 A04X+000941Y+013235X0394Y0197R000S1 706 | 327D-(JP8-A-PAD1) JP8 -1 A04X+000429Y+013235X0394Y0197R000S1 707 | 327ZL38063_DAC2_P JP7 -2 A04X+000941Y+012235X0394Y0197R000S1 708 | 327D-(JP7-A-PAD1) JP7 -1 A04X+000429Y+012235X0394Y0197R000S1 709 | 327NET-(JP4-B) JP4 -3 A04X-011264Y+014468X0394Y0197R090S1 710 | 327/DSP/GPIO2 JP4 -2 A04X-011264Y+014980X0394Y0591R090S1 711 | 327NET-(JP4-A) JP4 -1 A04X-011264Y+015492X0394Y0197R090S1 712 | 327ZL38063_DAC1_M JP5 -2 A04X+000941Y+010235X0394Y0197R000S1 713 | 327D-(JP5-A-PAD1) JP5 -1 A04X+000429Y+010235X0394Y0197R000S1 714 | 327LASH}I2S_SDIB) TP3 -1 A04X-003700Y+007900X0394Y0000R180S1 715 | 327+3V3 JP1 -2 A04X-010400Y-001300X0394Y0197R180S1 716 | 327NET-(JP1-A) JP1 -1 A04X-009888Y-001300X0394Y0197R180S1 717 | 327ZL38063_DAC1_P JP6 -2 A04X+000941Y+011235X0394Y0197R000S1 718 | 327D-(JP6-A-PAD1) JP6 -1 A04X+000429Y+011235X0394Y0197R000S1 719 | 327LASH}I2S_SCKB) TP1 -1 A04X-004500Y+007900X0394Y0000R180S1 720 | 327BTN2 JP11 -3 A04X+000088Y+009200X0394Y0197R180S1 721 | 327NET-(JP11-C) JP11 -2 A04X+000600Y+009200X0394Y0591R180S1 722 | 327NET-(JP11-A) JP11 -1 A04X+001112Y+009200X0394Y0197R180S1 723 | 999 724 | -------------------------------------------------------------------------------- /mk-0/KiCAD/TopBoard/production/positions.csv: -------------------------------------------------------------------------------- 1 | Designator,Mid X,Mid Y,Rotation,Layer 2 | C1,-6.576,18.288,0.0,top 3 | C10,-7.62,40.132,180.0,top 4 | C11,-4.744,32.43,0.0,top 5 | C12,-4.744,34.462,0.0,top 6 | C13,-2.7966,36.4998,0.0,top 7 | C14,-4.744,33.446,0.0,top 8 | C15,-13.126,37.51,180.0,top 9 | C16,-4.744,24.302,0.0,top 10 | C17,-4.744,35.478,0.0,top 11 | C18,-14.912,38.526,90.0,top 12 | C19,-21.0,30.144,180.0,top 13 | C2,-32.492,37.084,180.0,top 14 | C20,-13.38,22.3,270.0,top 15 | C21,-16.936,38.046,90.0,top 16 | C22,11.43,60.198,45.0,top 17 | C23,-4.744,25.318,0.0,top 18 | C24,-9.324,38.046,90.0,top 19 | C25,-21.036,34.97,180.0,top 20 | C26,-21.0,27.096,180.0,top 21 | C27,-19.476,22.3,270.0,top 22 | C28,-9.144,71.628,90.0,top 23 | C29,-12.364,22.3,270.0,top 24 | C3,-36.9798,33.7312,0.0,top 25 | C30,-4.744,30.398,0.0,top 26 | C31,-4.744,31.414,0.0,top 27 | C32,-55.372,34.544,180.0,top 28 | C33,-4.744,27.35,0.0,top 29 | C34,-4.744,28.366,0.0,top 30 | C35,-4.744,26.334,0.0,top 31 | C36,-4.744,29.382,0.0,top 32 | C37,11.938,-2.286,315.0,top 33 | C38,25.908,25.4,0.0,top 34 | C39,-19.304,-10.668,270.0,top 35 | C4,-35.052,33.722,0.0,top 36 | C40,-12.446,60.734,90.0,top 37 | C41,11.0143,12.432,330.0,top 38 | C42,-42.672,16.51,210.0,top 39 | C43,11.684,21.082,270.0,top 40 | C44,11.938,29.718,0.0,top 41 | C45,11.938,32.766,180.0,top 42 | C46,16.764,21.082,270.0,top 43 | C47,11.684,40.894,0.0,top 44 | C48,17.78,21.082,270.0,top 45 | C49,11.684,41.91,0.0,top 46 | C5,-36.858,32.766,0.0,top 47 | C51,10.668,21.082,270.0,top 48 | C52,12.7,21.082,270.0,top 49 | C6,-39.878,27.94,180.0,top 50 | C7,-3.81,40.132,180.0,top 51 | C8,-27.94,-2.794,270.0,top 52 | C9,-11.094,37.51,0.0,top 53 | D1,-34.29,29.718,90.0,top 54 | D10,5.725,65.507,150.0,top 55 | D11,20.732,50.5,120.0,top 56 | D12,26.225,30.0,90.0,top 57 | D13,20.732,9.5,60.0,top 58 | D15,12.446,31.242,180.0,top 59 | D16,-0.508,-4.096,90.0,top 60 | D17,-8.382,67.056,270.0,top 61 | D2,5.725,-5.507,30.0,top 62 | D3,-14.775,-11.0,0.0,top 63 | D4,-35.275,-5.507,330.0,top 64 | D5,-50.282,9.5,300.0,top 65 | D6,-55.775,30.0,270.0,top 66 | D7,-50.282,50.5,240.0,top 67 | D8,-35.275,65.507,210.0,top 68 | D9,-14.775,71.0,180.0,top 69 | J3,-25.4,68.834,195.0,top 70 | J5,-14.78,5.5,180.0,top 71 | L1,14.732,21.082,180.0,top 72 | MK1,-14.775,62.0,0.0,top 73 | MK2,12.9378,14.0,240.0,top 74 | MK3,-42.4878,14.0,120.0,top 75 | Q1,-35.4815,26.416,180.0,top 76 | R1,-11.348,22.27,90.0,top 77 | R10,-6.604,19.304,0.0,top 78 | R11,-6.606,17.272,180.0,top 79 | R12,-6.604,20.32,180.0,top 80 | R13,-3.6068,21.465,90.0,top 81 | R14,-14.4018,20.318,270.0,top 82 | R15,-3.9624,38.0492,90.0,top 83 | R16,-22.098,-0.508,180.0,top 84 | R17,-24.13,-0.508,0.0,top 85 | R18,-30.736,48.7426,0.0,top 86 | R19,-30.7574,46.2788,180.0,top 87 | R2,-10.332,22.27,90.0,top 88 | R20,-7.284,22.272,90.0,top 89 | R21,-8.3,22.272,90.0,top 90 | R22,-6.268,22.272,90.0,top 91 | R23,-4.744,23.286,180.0,top 92 | R24,-4.744,36.494,180.0,top 93 | R25,-18.46,22.27,90.0,top 94 | R26,-17.444,22.27,90.0,top 95 | R27,-16.428,22.27,90.0,top 96 | R28,-15.412,22.27,90.0,top 97 | R29,-14.396,22.27,90.0,top 98 | R3,-32.492,35.754,180.0,top 99 | R30,-17.952,38.016,270.0,top 100 | R31,-18.968,38.018,270.0,top 101 | R32,-19.984,38.018,270.0,top 102 | R33,-21.0,38.018,270.0,top 103 | R34,-7.03,38.018,90.0,top 104 | R35,-20.828,22.2992,270.0,top 105 | R36,-30.7614,43.942,0.0,top 106 | R37,-30.736,41.4274,180.0,top 107 | R38,-30.8122,39.2938,0.0,top 108 | R39,-12.446,63.244,270.0,top 109 | R4,-34.796,31.678,180.0,top 110 | R40,-17.016,63.244,270.0,top 111 | R41,-17.018,60.704,90.0,top 112 | R42,12.7663,11.431,150.0,top 113 | R43,14.986,15.494,150.0,top 114 | R44,13.1417,16.509,330.0,top 115 | R45,-44.45,15.494,30.0,top 116 | R46,-42.418,11.43,30.0,top 117 | R47,-40.132,12.7,210.0,top 118 | R48,-25.3473,61.6939,285.0,top 119 | R49,-20.9311,62.8772,285.0,top 120 | R5,-35.56,29.208,90.0,top 121 | R50,-29.466,36.7538,180.0,top 122 | R51,-4.998,38.02,270.0,top 123 | R52,-6.014,38.02,90.0,top 124 | R53,-6.096,46.482,180.0,top 125 | R54,-6.096,47.498,180.0,top 126 | R55,2.794,21.844,90.0,top 127 | R56,0.762,21.844,90.0,top 128 | R58,1.778,21.844,90.0,top 129 | R6,-34.796,32.706,180.0,top 130 | R7,-36.886,31.75,180.0,top 131 | R8,-9.316,22.27,90.0,top 132 | R9,-1.524,42.164,90.0,top 133 | SW1,-29.775,30.0,270.0,top 134 | SW2,-14.775,45.0,0.0,top 135 | SW3,0.225,30.0,270.0,top 136 | SW4,-14.775,15.0,180.0,top 137 | U1,-3.876,42.7935,90.0,top 138 | U10,-22.8763,61.3042,105.0,top 139 | U11,14.4811,36.8334,0.0,top 140 | U2,-35.768,35.917,0.0,top 141 | U3,-38.608,29.9,180.0,top 142 | U4,-4.1148,-5.4665,90.0,top 143 | U5,-2.966,16.6,0.0,top 144 | U7,-7.686,42.7935,90.0,top 145 | U8,-13.044,30.316,270.0,top 146 | U9,14.4811,25.6574,0.0,top 147 | Y1,-12.11,39.796,180.0,top 148 | -------------------------------------------------------------------------------- /mk-0/KiCAD/TopBoard/schematic_pdf/TopBoard.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Libre-Talk/Wave/e8fe526ad1dd820e8f5715df3bcb62e79529ddc5/mk-0/KiCAD/TopBoard/schematic_pdf/TopBoard.pdf -------------------------------------------------------------------------------- /mk-0/README.md: -------------------------------------------------------------------------------- 1 | 2 | # Wave Mk 0 - Prototype 3 | 4 | ## Kit Major Components 5 | * ESP32-S3 6 | * Mk 0 Motherboard 7 | * Audio Chamber 8 | * Single 10W Speaker with driver 9 | * Elegant 3D printed enclosure 10 | * Universal 12V power supply (USA, EU,UK, AUS, CCC) -------------------------------------------------------------------------------- /mk-0/Reference Files/ESP32-LYRATD-MSC_A_V2.2-20220119.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Libre-Talk/Wave/e8fe526ad1dd820e8f5715df3bcb62e79529ddc5/mk-0/Reference Files/ESP32-LYRATD-MSC_A_V2.2-20220119.pdf -------------------------------------------------------------------------------- /mk-0/Reference Files/ESP32-LyraTD-MSC_B_V1_1-1109A.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Libre-Talk/Wave/e8fe526ad1dd820e8f5715df3bcb62e79529ddc5/mk-0/Reference Files/ESP32-LyraTD-MSC_B_V1_1-1109A.pdf -------------------------------------------------------------------------------- /mk-0/Reference Files/Microsemi_ZLS38063_Datasheet_v4-3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Libre-Talk/Wave/e8fe526ad1dd820e8f5715df3bcb62e79529ddc5/mk-0/Reference Files/Microsemi_ZLS38063_Datasheet_v4-3.pdf -------------------------------------------------------------------------------- /mk-0/Reference Files/SCH_ESP32-S3-BOX-3-MB_V1.1_20230808.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Libre-Talk/Wave/e8fe526ad1dd820e8f5715df3bcb62e79529ddc5/mk-0/Reference Files/SCH_ESP32-S3-BOX-3-MB_V1.1_20230808.pdf -------------------------------------------------------------------------------- /mk-0/Reference Files/esp32-s3_datasheet_en.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Libre-Talk/Wave/e8fe526ad1dd820e8f5715df3bcb62e79529ddc5/mk-0/Reference Files/esp32-s3_datasheet_en.pdf -------------------------------------------------------------------------------- /mk-0/Signal-backups/Signal-2024-03-25_144127.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Libre-Talk/Wave/e8fe526ad1dd820e8f5715df3bcb62e79529ddc5/mk-0/Signal-backups/Signal-2024-03-25_144127.zip --------------------------------------------------------------------------------