├── .DS_Store ├── .gitattributes ├── LICENSE ├── README.md ├── documents ├── CH549DS1.PDF ├── official manual.pdf └── official schematic.pdf ├── firmware └── WCHLINK_V1.2.bin ├── hardware ├── .DS_Store └── WCH_Linkv0.1 │ ├── Untitled │ ├── Untitled.kicad_pcb │ ├── Untitled.pro │ └── Untitled.sch │ ├── WCH-Link.zip │ ├── WCH_Link-B_Cu.gbr │ ├── WCH_Link-B_Mask.gbr │ ├── WCH_Link-B_Paste.gbr │ ├── WCH_Link-B_SilkS.gbr │ ├── WCH_Link-Edge_Cuts.gbr │ ├── WCH_Link-F_Cu.gbr │ ├── WCH_Link-F_Mask.gbr │ ├── WCH_Link-F_Paste.gbr │ ├── WCH_Link-F_SilkS.gbr │ ├── WCH_Link-NPTH.drl │ ├── WCH_Link-PTH.drl │ ├── WCH_Link-cache.lib │ ├── WCH_Link-job.gbrjob │ ├── WCH_Link.kicad_pcb │ ├── WCH_Link.kicad_pcb-bak │ ├── WCH_Link.pro │ ├── WCH_Link.sch │ ├── WCH_Link.sch-bak │ └── fp-info-cache ├── image ├── .DS_Store ├── MDK-ARM.jpg ├── openocd.jpg └── size.png └── tools └── WCHISPTool_Setup.exe /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaidegit/CMSIS-DAPbyWCH/7730b6388bb46ca279a42af0a29932ae8b32287a/.DS_Store -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | # Auto detect text files and perform LF normalization 2 | * text=auto 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | GNU GENERAL PUBLIC LICENSE 2 | Version 3, 29 June 2007 3 | 4 | Copyright (C) 2007 Free Software Foundation, Inc. 5 | Everyone is permitted to copy and distribute verbatim copies 6 | of this license document, but changing it is not allowed. 7 | 8 | Preamble 9 | 10 | The GNU General Public License is a free, copyleft license for 11 | software and other kinds of works. 12 | 13 | The licenses for most software and other practical works are designed 14 | to take away your freedom to share and change the works. By contrast, 15 | the GNU General Public License is intended to guarantee your freedom to 16 | share and change all versions of a program--to make sure it remains free 17 | software for all its users. We, the Free Software Foundation, use the 18 | GNU General Public License for most of our software; it applies also to 19 | any other work released this way by its authors. You can apply it to 20 | your programs, too. 21 | 22 | When we speak of free software, we are referring to freedom, not 23 | price. Our General Public Licenses are designed to make sure that you 24 | have the freedom to distribute copies of free software (and charge for 25 | them if you wish), that you receive source code or can get it if you 26 | want it, that you can change the software or use pieces of it in new 27 | free programs, and that you know you can do these things. 28 | 29 | To protect your rights, we need to prevent others from denying you 30 | these rights or asking you to surrender the rights. Therefore, you have 31 | certain responsibilities if you distribute copies of the software, or if 32 | you modify it: responsibilities to respect the freedom of others. 33 | 34 | For example, if you distribute copies of such a program, whether 35 | gratis or for a fee, you must pass on to the recipients the same 36 | freedoms that you received. You must make sure that they, too, receive 37 | or can get the source code. And you must show them these terms so they 38 | know their rights. 39 | 40 | Developers that use the GNU GPL protect your rights with two steps: 41 | (1) assert copyright on the software, and (2) offer you this License 42 | giving you legal permission to copy, distribute and/or modify it. 43 | 44 | For the developers' and authors' protection, the GPL clearly explains 45 | that there is no warranty for this free software. For both users' and 46 | authors' sake, the GPL requires that modified versions be marked as 47 | changed, so that their problems will not be attributed erroneously to 48 | authors of previous versions. 49 | 50 | Some devices are designed to deny users access to install or run 51 | modified versions of the software inside them, although the manufacturer 52 | can do so. This is fundamentally incompatible with the aim of 53 | protecting users' freedom to change the software. The systematic 54 | pattern of such abuse occurs in the area of products for individuals to 55 | use, which is precisely where it is most unacceptable. Therefore, we 56 | have designed this version of the GPL to prohibit the practice for those 57 | products. If such problems arise substantially in other domains, we 58 | stand ready to extend this provision to those domains in future versions 59 | of the GPL, as needed to protect the freedom of users. 60 | 61 | Finally, every program is threatened constantly by software patents. 62 | States should not allow patents to restrict development and use of 63 | software on general-purpose computers, but in those that do, we wish to 64 | avoid the special danger that patents applied to a free program could 65 | make it effectively proprietary. To prevent this, the GPL assures that 66 | patents cannot be used to render the program non-free. 67 | 68 | The precise terms and conditions for copying, distribution and 69 | modification follow. 70 | 71 | TERMS AND CONDITIONS 72 | 73 | 0. Definitions. 74 | 75 | "This License" refers to version 3 of the GNU General Public License. 76 | 77 | "Copyright" also means copyright-like laws that apply to other kinds of 78 | works, such as semiconductor masks. 79 | 80 | "The Program" refers to any copyrightable work licensed under this 81 | License. Each licensee is addressed as "you". "Licensees" and 82 | "recipients" may be individuals or organizations. 83 | 84 | To "modify" a work means to copy from or adapt all or part of the work 85 | in a fashion requiring copyright permission, other than the making of an 86 | exact copy. The resulting work is called a "modified version" of the 87 | earlier work or a work "based on" the earlier work. 88 | 89 | A "covered work" means either the unmodified Program or a work based 90 | on the Program. 91 | 92 | To "propagate" a work means to do anything with it that, without 93 | permission, would make you directly or secondarily liable for 94 | infringement under applicable copyright law, except executing it on a 95 | computer or modifying a private copy. Propagation includes copying, 96 | distribution (with or without modification), making available to the 97 | public, and in some countries other activities as well. 98 | 99 | To "convey" a work means any kind of propagation that enables other 100 | parties to make or receive copies. Mere interaction with a user through 101 | a computer network, with no transfer of a copy, is not conveying. 102 | 103 | An interactive user interface displays "Appropriate Legal Notices" 104 | to the extent that it includes a convenient and prominently visible 105 | feature that (1) displays an appropriate copyright notice, and (2) 106 | tells the user that there is no warranty for the work (except to the 107 | extent that warranties are provided), that licensees may convey the 108 | work under this License, and how to view a copy of this License. If 109 | the interface presents a list of user commands or options, such as a 110 | menu, a prominent item in the list meets this criterion. 111 | 112 | 1. Source Code. 113 | 114 | The "source code" for a work means the preferred form of the work 115 | for making modifications to it. "Object code" means any non-source 116 | form of a work. 117 | 118 | A "Standard Interface" means an interface that either is an official 119 | standard defined by a recognized standards body, or, in the case of 120 | interfaces specified for a particular programming language, one that 121 | is widely used among developers working in that language. 122 | 123 | The "System Libraries" of an executable work include anything, other 124 | than the work as a whole, that (a) is included in the normal form of 125 | packaging a Major Component, but which is not part of that Major 126 | Component, and (b) serves only to enable use of the work with that 127 | Major Component, or to implement a Standard Interface for which an 128 | implementation is available to the public in source code form. A 129 | "Major Component", in this context, means a major essential component 130 | (kernel, window system, and so on) of the specific operating system 131 | (if any) on which the executable work runs, or a compiler used to 132 | produce the work, or an object code interpreter used to run it. 133 | 134 | The "Corresponding Source" for a work in object code form means all 135 | the source code needed to generate, install, and (for an executable 136 | work) run the object code and to modify the work, including scripts to 137 | control those activities. However, it does not include the work's 138 | System Libraries, or general-purpose tools or generally available free 139 | programs which are used unmodified in performing those activities but 140 | which are not part of the work. For example, Corresponding Source 141 | includes interface definition files associated with source files for 142 | the work, and the source code for shared libraries and dynamically 143 | linked subprograms that the work is specifically designed to require, 144 | such as by intimate data communication or control flow between those 145 | subprograms and other parts of the work. 146 | 147 | The Corresponding Source need not include anything that users 148 | can regenerate automatically from other parts of the Corresponding 149 | Source. 150 | 151 | The Corresponding Source for a work in source code form is that 152 | same work. 153 | 154 | 2. Basic Permissions. 155 | 156 | All rights granted under this License are granted for the term of 157 | copyright on the Program, and are irrevocable provided the stated 158 | conditions are met. This License explicitly affirms your unlimited 159 | permission to run the unmodified Program. The output from running a 160 | covered work is covered by this License only if the output, given its 161 | content, constitutes a covered work. This License acknowledges your 162 | rights of fair use or other equivalent, as provided by copyright law. 163 | 164 | You may make, run and propagate covered works that you do not 165 | convey, without conditions so long as your license otherwise remains 166 | in force. You may convey covered works to others for the sole purpose 167 | of having them make modifications exclusively for you, or provide you 168 | with facilities for running those works, provided that you comply with 169 | the terms of this License in conveying all material for which you do 170 | not control copyright. Those thus making or running the covered works 171 | for you must do so exclusively on your behalf, under your direction 172 | and control, on terms that prohibit them from making any copies of 173 | your copyrighted material outside their relationship with you. 174 | 175 | Conveying under any other circumstances is permitted solely under 176 | the conditions stated below. Sublicensing is not allowed; section 10 177 | makes it unnecessary. 178 | 179 | 3. Protecting Users' Legal Rights From Anti-Circumvention Law. 180 | 181 | No covered work shall be deemed part of an effective technological 182 | measure under any applicable law fulfilling obligations under article 183 | 11 of the WIPO copyright treaty adopted on 20 December 1996, or 184 | similar laws prohibiting or restricting circumvention of such 185 | measures. 186 | 187 | When you convey a covered work, you waive any legal power to forbid 188 | circumvention of technological measures to the extent such circumvention 189 | is effected by exercising rights under this License with respect to 190 | the covered work, and you disclaim any intention to limit operation or 191 | modification of the work as a means of enforcing, against the work's 192 | users, your or third parties' legal rights to forbid circumvention of 193 | technological measures. 194 | 195 | 4. Conveying Verbatim Copies. 196 | 197 | You may convey verbatim copies of the Program's source code as you 198 | receive it, in any medium, provided that you conspicuously and 199 | appropriately publish on each copy an appropriate copyright notice; 200 | keep intact all notices stating that this License and any 201 | non-permissive terms added in accord with section 7 apply to the code; 202 | keep intact all notices of the absence of any warranty; and give all 203 | recipients a copy of this License along with the Program. 204 | 205 | You may charge any price or no price for each copy that you convey, 206 | and you may offer support or warranty protection for a fee. 207 | 208 | 5. Conveying Modified Source Versions. 209 | 210 | You may convey a work based on the Program, or the modifications to 211 | produce it from the Program, in the form of source code under the 212 | terms of section 4, provided that you also meet all of these conditions: 213 | 214 | a) The work must carry prominent notices stating that you modified 215 | it, and giving a relevant date. 216 | 217 | b) The work must carry prominent notices stating that it is 218 | released under this License and any conditions added under section 219 | 7. This requirement modifies the requirement in section 4 to 220 | "keep intact all notices". 221 | 222 | c) You must license the entire work, as a whole, under this 223 | License to anyone who comes into possession of a copy. This 224 | License will therefore apply, along with any applicable section 7 225 | additional terms, to the whole of the work, and all its parts, 226 | regardless of how they are packaged. This License gives no 227 | permission to license the work in any other way, but it does not 228 | invalidate such permission if you have separately received it. 229 | 230 | d) If the work has interactive user interfaces, each must display 231 | Appropriate Legal Notices; however, if the Program has interactive 232 | interfaces that do not display Appropriate Legal Notices, your 233 | work need not make them do so. 234 | 235 | A compilation of a covered work with other separate and independent 236 | works, which are not by their nature extensions of the covered work, 237 | and which are not combined with it such as to form a larger program, 238 | in or on a volume of a storage or distribution medium, is called an 239 | "aggregate" if the compilation and its resulting copyright are not 240 | used to limit the access or legal rights of the compilation's users 241 | beyond what the individual works permit. Inclusion of a covered work 242 | in an aggregate does not cause this License to apply to the other 243 | parts of the aggregate. 244 | 245 | 6. Conveying Non-Source Forms. 246 | 247 | You may convey a covered work in object code form under the terms 248 | of sections 4 and 5, provided that you also convey the 249 | machine-readable Corresponding Source under the terms of this License, 250 | in one of these ways: 251 | 252 | a) Convey the object code in, or embodied in, a physical product 253 | (including a physical distribution medium), accompanied by the 254 | Corresponding Source fixed on a durable physical medium 255 | customarily used for software interchange. 256 | 257 | b) Convey the object code in, or embodied in, a physical product 258 | (including a physical distribution medium), accompanied by a 259 | written offer, valid for at least three years and valid for as 260 | long as you offer spare parts or customer support for that product 261 | model, to give anyone who possesses the object code either (1) a 262 | copy of the Corresponding Source for all the software in the 263 | product that is covered by this License, on a durable physical 264 | medium customarily used for software interchange, for a price no 265 | more than your reasonable cost of physically performing this 266 | conveying of source, or (2) access to copy the 267 | Corresponding Source from a network server at no charge. 268 | 269 | c) Convey individual copies of the object code with a copy of the 270 | written offer to provide the Corresponding Source. This 271 | alternative is allowed only occasionally and noncommercially, and 272 | only if you received the object code with such an offer, in accord 273 | with subsection 6b. 274 | 275 | d) Convey the object code by offering access from a designated 276 | place (gratis or for a charge), and offer equivalent access to the 277 | Corresponding Source in the same way through the same place at no 278 | further charge. You need not require recipients to copy the 279 | Corresponding Source along with the object code. If the place to 280 | copy the object code is a network server, the Corresponding Source 281 | may be on a different server (operated by you or a third party) 282 | that supports equivalent copying facilities, provided you maintain 283 | clear directions next to the object code saying where to find the 284 | Corresponding Source. Regardless of what server hosts the 285 | Corresponding Source, you remain obligated to ensure that it is 286 | available for as long as needed to satisfy these requirements. 287 | 288 | e) Convey the object code using peer-to-peer transmission, provided 289 | you inform other peers where the object code and Corresponding 290 | Source of the work are being offered to the general public at no 291 | charge under subsection 6d. 292 | 293 | A separable portion of the object code, whose source code is excluded 294 | from the Corresponding Source as a System Library, need not be 295 | included in conveying the object code work. 296 | 297 | A "User Product" is either (1) a "consumer product", which means any 298 | tangible personal property which is normally used for personal, family, 299 | or household purposes, or (2) anything designed or sold for incorporation 300 | into a dwelling. In determining whether a product is a consumer product, 301 | doubtful cases shall be resolved in favor of coverage. For a particular 302 | product received by a particular user, "normally used" refers to a 303 | typical or common use of that class of product, regardless of the status 304 | of the particular user or of the way in which the particular user 305 | actually uses, or expects or is expected to use, the product. A product 306 | is a consumer product regardless of whether the product has substantial 307 | commercial, industrial or non-consumer uses, unless such uses represent 308 | the only significant mode of use of the product. 309 | 310 | "Installation Information" for a User Product means any methods, 311 | procedures, authorization keys, or other information required to install 312 | and execute modified versions of a covered work in that User Product from 313 | a modified version of its Corresponding Source. The information must 314 | suffice to ensure that the continued functioning of the modified object 315 | code is in no case prevented or interfered with solely because 316 | modification has been made. 317 | 318 | If you convey an object code work under this section in, or with, or 319 | specifically for use in, a User Product, and the conveying occurs as 320 | part of a transaction in which the right of possession and use of the 321 | User Product is transferred to the recipient in perpetuity or for a 322 | fixed term (regardless of how the transaction is characterized), the 323 | Corresponding Source conveyed under this section must be accompanied 324 | by the Installation Information. But this requirement does not apply 325 | if neither you nor any third party retains the ability to install 326 | modified object code on the User Product (for example, the work has 327 | been installed in ROM). 328 | 329 | The requirement to provide Installation Information does not include a 330 | requirement to continue to provide support service, warranty, or updates 331 | for a work that has been modified or installed by the recipient, or for 332 | the User Product in which it has been modified or installed. Access to a 333 | network may be denied when the modification itself materially and 334 | adversely affects the operation of the network or violates the rules and 335 | protocols for communication across the network. 336 | 337 | Corresponding Source conveyed, and Installation Information provided, 338 | in accord with this section must be in a format that is publicly 339 | documented (and with an implementation available to the public in 340 | source code form), and must require no special password or key for 341 | unpacking, reading or copying. 342 | 343 | 7. Additional Terms. 344 | 345 | "Additional permissions" are terms that supplement the terms of this 346 | License by making exceptions from one or more of its conditions. 347 | Additional permissions that are applicable to the entire Program shall 348 | be treated as though they were included in this License, to the extent 349 | that they are valid under applicable law. If additional permissions 350 | apply only to part of the Program, that part may be used separately 351 | under those permissions, but the entire Program remains governed by 352 | this License without regard to the additional permissions. 353 | 354 | When you convey a copy of a covered work, you may at your option 355 | remove any additional permissions from that copy, or from any part of 356 | it. (Additional permissions may be written to require their own 357 | removal in certain cases when you modify the work.) You may place 358 | additional permissions on material, added by you to a covered work, 359 | for which you have or can give appropriate copyright permission. 360 | 361 | Notwithstanding any other provision of this License, for material you 362 | add to a covered work, you may (if authorized by the copyright holders of 363 | that material) supplement the terms of this License with terms: 364 | 365 | a) Disclaiming warranty or limiting liability differently from the 366 | terms of sections 15 and 16 of this License; or 367 | 368 | b) Requiring preservation of specified reasonable legal notices or 369 | author attributions in that material or in the Appropriate Legal 370 | Notices displayed by works containing it; or 371 | 372 | c) Prohibiting misrepresentation of the origin of that material, or 373 | requiring that modified versions of such material be marked in 374 | reasonable ways as different from the original version; or 375 | 376 | d) Limiting the use for publicity purposes of names of licensors or 377 | authors of the material; or 378 | 379 | e) Declining to grant rights under trademark law for use of some 380 | trade names, trademarks, or service marks; or 381 | 382 | f) Requiring indemnification of licensors and authors of that 383 | material by anyone who conveys the material (or modified versions of 384 | it) with contractual assumptions of liability to the recipient, for 385 | any liability that these contractual assumptions directly impose on 386 | those licensors and authors. 387 | 388 | All other non-permissive additional terms are considered "further 389 | restrictions" within the meaning of section 10. If the Program as you 390 | received it, or any part of it, contains a notice stating that it is 391 | governed by this License along with a term that is a further 392 | restriction, you may remove that term. If a license document contains 393 | a further restriction but permits relicensing or conveying under this 394 | License, you may add to a covered work material governed by the terms 395 | of that license document, provided that the further restriction does 396 | not survive such relicensing or conveying. 397 | 398 | If you add terms to a covered work in accord with this section, you 399 | must place, in the relevant source files, a statement of the 400 | additional terms that apply to those files, or a notice indicating 401 | where to find the applicable terms. 402 | 403 | Additional terms, permissive or non-permissive, may be stated in the 404 | form of a separately written license, or stated as exceptions; 405 | the above requirements apply either way. 406 | 407 | 8. Termination. 408 | 409 | You may not propagate or modify a covered work except as expressly 410 | provided under this License. Any attempt otherwise to propagate or 411 | modify it is void, and will automatically terminate your rights under 412 | this License (including any patent licenses granted under the third 413 | paragraph of section 11). 414 | 415 | However, if you cease all violation of this License, then your 416 | license from a particular copyright holder is reinstated (a) 417 | provisionally, unless and until the copyright holder explicitly and 418 | finally terminates your license, and (b) permanently, if the copyright 419 | holder fails to notify you of the violation by some reasonable means 420 | prior to 60 days after the cessation. 421 | 422 | Moreover, your license from a particular copyright holder is 423 | reinstated permanently if the copyright holder notifies you of the 424 | violation by some reasonable means, this is the first time you have 425 | received notice of violation of this License (for any work) from that 426 | copyright holder, and you cure the violation prior to 30 days after 427 | your receipt of the notice. 428 | 429 | Termination of your rights under this section does not terminate the 430 | licenses of parties who have received copies or rights from you under 431 | this License. If your rights have been terminated and not permanently 432 | reinstated, you do not qualify to receive new licenses for the same 433 | material under section 10. 434 | 435 | 9. Acceptance Not Required for Having Copies. 436 | 437 | You are not required to accept this License in order to receive or 438 | run a copy of the Program. Ancillary propagation of a covered work 439 | occurring solely as a consequence of using peer-to-peer transmission 440 | to receive a copy likewise does not require acceptance. However, 441 | nothing other than this License grants you permission to propagate or 442 | modify any covered work. These actions infringe copyright if you do 443 | not accept this License. Therefore, by modifying or propagating a 444 | covered work, you indicate your acceptance of this License to do so. 445 | 446 | 10. Automatic Licensing of Downstream Recipients. 447 | 448 | Each time you convey a covered work, the recipient automatically 449 | receives a license from the original licensors, to run, modify and 450 | propagate that work, subject to this License. You are not responsible 451 | for enforcing compliance by third parties with this License. 452 | 453 | An "entity transaction" is a transaction transferring control of an 454 | organization, or substantially all assets of one, or subdividing an 455 | organization, or merging organizations. If propagation of a covered 456 | work results from an entity transaction, each party to that 457 | transaction who receives a copy of the work also receives whatever 458 | licenses to the work the party's predecessor in interest had or could 459 | give under the previous paragraph, plus a right to possession of the 460 | Corresponding Source of the work from the predecessor in interest, if 461 | the predecessor has it or can get it with reasonable efforts. 462 | 463 | You may not impose any further restrictions on the exercise of the 464 | rights granted or affirmed under this License. For example, you may 465 | not impose a license fee, royalty, or other charge for exercise of 466 | rights granted under this License, and you may not initiate litigation 467 | (including a cross-claim or counterclaim in a lawsuit) alleging that 468 | any patent claim is infringed by making, using, selling, offering for 469 | sale, or importing the Program or any portion of it. 470 | 471 | 11. Patents. 472 | 473 | A "contributor" is a copyright holder who authorizes use under this 474 | License of the Program or a work on which the Program is based. The 475 | work thus licensed is called the contributor's "contributor version". 476 | 477 | A contributor's "essential patent claims" are all patent claims 478 | owned or controlled by the contributor, whether already acquired or 479 | hereafter acquired, that would be infringed by some manner, permitted 480 | by this License, of making, using, or selling its contributor version, 481 | but do not include claims that would be infringed only as a 482 | consequence of further modification of the contributor version. For 483 | purposes of this definition, "control" includes the right to grant 484 | patent sublicenses in a manner consistent with the requirements of 485 | this License. 486 | 487 | Each contributor grants you a non-exclusive, worldwide, royalty-free 488 | patent license under the contributor's essential patent claims, to 489 | make, use, sell, offer for sale, import and otherwise run, modify and 490 | propagate the contents of its contributor version. 491 | 492 | In the following three paragraphs, a "patent license" is any express 493 | agreement or commitment, however denominated, not to enforce a patent 494 | (such as an express permission to practice a patent or covenant not to 495 | sue for patent infringement). To "grant" such a patent license to a 496 | party means to make such an agreement or commitment not to enforce a 497 | patent against the party. 498 | 499 | If you convey a covered work, knowingly relying on a patent license, 500 | and the Corresponding Source of the work is not available for anyone 501 | to copy, free of charge and under the terms of this License, through a 502 | publicly available network server or other readily accessible means, 503 | then you must either (1) cause the Corresponding Source to be so 504 | available, or (2) arrange to deprive yourself of the benefit of the 505 | patent license for this particular work, or (3) arrange, in a manner 506 | consistent with the requirements of this License, to extend the patent 507 | license to downstream recipients. "Knowingly relying" means you have 508 | actual knowledge that, but for the patent license, your conveying the 509 | covered work in a country, or your recipient's use of the covered work 510 | in a country, would infringe one or more identifiable patents in that 511 | country that you have reason to believe are valid. 512 | 513 | If, pursuant to or in connection with a single transaction or 514 | arrangement, you convey, or propagate by procuring conveyance of, a 515 | covered work, and grant a patent license to some of the parties 516 | receiving the covered work authorizing them to use, propagate, modify 517 | or convey a specific copy of the covered work, then the patent license 518 | you grant is automatically extended to all recipients of the covered 519 | work and works based on it. 520 | 521 | A patent license is "discriminatory" if it does not include within 522 | the scope of its coverage, prohibits the exercise of, or is 523 | conditioned on the non-exercise of one or more of the rights that are 524 | specifically granted under this License. You may not convey a covered 525 | work if you are a party to an arrangement with a third party that is 526 | in the business of distributing software, under which you make payment 527 | to the third party based on the extent of your activity of conveying 528 | the work, and under which the third party grants, to any of the 529 | parties who would receive the covered work from you, a discriminatory 530 | patent license (a) in connection with copies of the covered work 531 | conveyed by you (or copies made from those copies), or (b) primarily 532 | for and in connection with specific products or compilations that 533 | contain the covered work, unless you entered into that arrangement, 534 | or that patent license was granted, prior to 28 March 2007. 535 | 536 | Nothing in this License shall be construed as excluding or limiting 537 | any implied license or other defenses to infringement that may 538 | otherwise be available to you under applicable patent law. 539 | 540 | 12. No Surrender of Others' Freedom. 541 | 542 | If conditions are imposed on you (whether by court order, agreement or 543 | otherwise) that contradict the conditions of this License, they do not 544 | excuse you from the conditions of this License. If you cannot convey a 545 | covered work so as to satisfy simultaneously your obligations under this 546 | License and any other pertinent obligations, then as a consequence you may 547 | not convey it at all. For example, if you agree to terms that obligate you 548 | to collect a royalty for further conveying from those to whom you convey 549 | the Program, the only way you could satisfy both those terms and this 550 | License would be to refrain entirely from conveying the Program. 551 | 552 | 13. Use with the GNU Affero General Public License. 553 | 554 | Notwithstanding any other provision of this License, you have 555 | permission to link or combine any covered work with a work licensed 556 | under version 3 of the GNU Affero General Public License into a single 557 | combined work, and to convey the resulting work. The terms of this 558 | License will continue to apply to the part which is the covered work, 559 | but the special requirements of the GNU Affero General Public License, 560 | section 13, concerning interaction through a network will apply to the 561 | combination as such. 562 | 563 | 14. Revised Versions of this License. 564 | 565 | The Free Software Foundation may publish revised and/or new versions of 566 | the GNU General Public License from time to time. Such new versions will 567 | be similar in spirit to the present version, but may differ in detail to 568 | address new problems or concerns. 569 | 570 | Each version is given a distinguishing version number. If the 571 | Program specifies that a certain numbered version of the GNU General 572 | Public License "or any later version" applies to it, you have the 573 | option of following the terms and conditions either of that numbered 574 | version or of any later version published by the Free Software 575 | Foundation. If the Program does not specify a version number of the 576 | GNU General Public License, you may choose any version ever published 577 | by the Free Software Foundation. 578 | 579 | If the Program specifies that a proxy can decide which future 580 | versions of the GNU General Public License can be used, that proxy's 581 | public statement of acceptance of a version permanently authorizes you 582 | to choose that version for the Program. 583 | 584 | Later license versions may give you additional or different 585 | permissions. However, no additional obligations are imposed on any 586 | author or copyright holder as a result of your choosing to follow a 587 | later version. 588 | 589 | 15. Disclaimer of Warranty. 590 | 591 | THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY 592 | APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT 593 | HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY 594 | OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, 595 | THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 596 | PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM 597 | IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF 598 | ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 599 | 600 | 16. Limitation of Liability. 601 | 602 | IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING 603 | WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS 604 | THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY 605 | GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE 606 | USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF 607 | DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD 608 | PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), 609 | EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF 610 | SUCH DAMAGES. 611 | 612 | 17. Interpretation of Sections 15 and 16. 613 | 614 | If the disclaimer of warranty and limitation of liability provided 615 | above cannot be given local legal effect according to their terms, 616 | reviewing courts shall apply local law that most closely approximates 617 | an absolute waiver of all civil liability in connection with the 618 | Program, unless a warranty or assumption of liability accompanies a 619 | copy of the Program in return for a fee. 620 | 621 | END OF TERMS AND CONDITIONS 622 | 623 | How to Apply These Terms to Your New Programs 624 | 625 | If you develop a new program, and you want it to be of the greatest 626 | possible use to the public, the best way to achieve this is to make it 627 | free software which everyone can redistribute and change under these terms. 628 | 629 | To do so, attach the following notices to the program. It is safest 630 | to attach them to the start of each source file to most effectively 631 | state the exclusion of warranty; and each file should have at least 632 | the "copyright" line and a pointer to where the full notice is found. 633 | 634 | 635 | Copyright (C) 636 | 637 | This program is free software: you can redistribute it and/or modify 638 | it under the terms of the GNU General Public License as published by 639 | the Free Software Foundation, either version 3 of the License, or 640 | (at your option) any later version. 641 | 642 | This program is distributed in the hope that it will be useful, 643 | but WITHOUT ANY WARRANTY; without even the implied warranty of 644 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 645 | GNU General Public License for more details. 646 | 647 | You should have received a copy of the GNU General Public License 648 | along with this program. If not, see . 649 | 650 | Also add information on how to contact you by electronic and paper mail. 651 | 652 | If the program does terminal interaction, make it output a short 653 | notice like this when it starts in an interactive mode: 654 | 655 | Copyright (C) 656 | This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. 657 | This is free software, and you are welcome to redistribute it 658 | under certain conditions; type `show c' for details. 659 | 660 | The hypothetical commands `show w' and `show c' should show the appropriate 661 | parts of the General Public License. Of course, your program's commands 662 | might be different; for a GUI interface, you would use an "about box". 663 | 664 | You should also get your employer (if you work as a programmer) or school, 665 | if any, to sign a "copyright disclaimer" for the program, if necessary. 666 | For more information on this, and how to apply and follow the GNU GPL, see 667 | . 668 | 669 | The GNU General Public License does not permit incorporating your program 670 | into proprietary programs. If your program is a subroutine library, you 671 | may consider it more useful to permit linking proprietary applications with 672 | the library. If this is what you want to do, use the GNU Lesser General 673 | Public License instead of this License. But first, please read 674 | . 675 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | Maybe it is the cheapest cmsis-dap debugger. 2 | 3 | [Official description](http://www.wch.cn/products/WCH-Link.html?from=search&wd=eyJpdiI6IjMyRDc0Z2dCV2g2UkVINldPaUtHWXc9PSIsInZhbHVlIjoiWndXN2d5OFhMUkt2UGZQZnF1Z1lcL0E9PSIsIm1hYyI6ImNkMDcwNzQ0YmNjOGZkNjkxN2IwZGFlNjY3ZDhmYTA3MmZjNDZmNTg0OTQ4MjM4ZWIwZTYzODAyY2Y5NDMxOWIifQ==) 4 | 5 | [Official schematic and mannual](http://www.wch.cn/bbs/thread-71088-1.html) 6 | # Hardward 7 | The main MCU is CH549F, which has a lot of advantages. 8 | * cheap. The MCU is a 8051 core, and the price is less than 5RMB. It is cheaper than CH32F103 to make a CMSIS-DAP debugger. 9 | * easy to soldering. The MCU is an SOP-16 package. 10 | * can also be small. The CH549 also have a QFN28 package. 11 | * can debug both ARM and RISC-V core MCU. (The target MCU should support SWD) 12 | 13 | # Firmware 14 | The firmware is extract from MounRiver Studio. 15 | 16 | # Screenshot 17 | MDK-ARM 18 | ![MDK-ARM](image/MDK-ARM.jpg) 19 | openocd 20 | ![openocd](image/openocd.jpg) 21 | size 22 | ![size](image/size.png) 23 | 24 | # How to Flash 25 | * short connect the 1.27mm pin hole 26 | * plug in the type-c connector 27 | * open the WCHISPTool.(The installer is in "tools" folder) 28 | * choose the 8-bit CH54X series, set the MCU model to CH549, set the download way to USB, select the erase the DataFlash, choose the right USB device and the user program file(use WCHLINK_V1.2.bin) 29 | * click the flash button. 30 | * if all goes well, you will see the success count adding one. You can plug off and plug in the DIY WCH-Link. If the 2 LEDs are all on, plug off it and short connect the TX and GND and plug in. 31 | 32 | # How to Use 33 | * When using MDK-ARM, it can be use as a normal CMSIS-DAP debugger. However, when using openocd to drive the WCH-Link, you should define the vid and pid by using the code 34 | 35 | `cmsis_dap_vid_pid 0x1a86 0x8011` 36 | 37 | In command line, the code should be before "-c" parameter. while in .cfg file, it should be added as above picture. 38 | 39 | 40 | for more information, check the documents in "documents" folder. -------------------------------------------------------------------------------- /documents/CH549DS1.PDF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaidegit/CMSIS-DAPbyWCH/7730b6388bb46ca279a42af0a29932ae8b32287a/documents/CH549DS1.PDF -------------------------------------------------------------------------------- /documents/official manual.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaidegit/CMSIS-DAPbyWCH/7730b6388bb46ca279a42af0a29932ae8b32287a/documents/official manual.pdf -------------------------------------------------------------------------------- /documents/official schematic.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaidegit/CMSIS-DAPbyWCH/7730b6388bb46ca279a42af0a29932ae8b32287a/documents/official schematic.pdf -------------------------------------------------------------------------------- /firmware/WCHLINK_V1.2.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaidegit/CMSIS-DAPbyWCH/7730b6388bb46ca279a42af0a29932ae8b32287a/firmware/WCHLINK_V1.2.bin -------------------------------------------------------------------------------- /hardware/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaidegit/CMSIS-DAPbyWCH/7730b6388bb46ca279a42af0a29932ae8b32287a/hardware/.DS_Store -------------------------------------------------------------------------------- /hardware/WCH_Linkv0.1/Untitled/Untitled.kicad_pcb: -------------------------------------------------------------------------------- 1 | (kicad_pcb (version 4) (host kicad "dummy file") ) 2 | -------------------------------------------------------------------------------- /hardware/WCH_Linkv0.1/Untitled/Untitled.pro: -------------------------------------------------------------------------------- 1 | update=22/05/2015 07:44:53 2 | version=1 3 | last_client=kicad 4 | [general] 5 | version=1 6 | RootSch= 7 | BoardNm= 8 | [pcbnew] 9 | version=1 10 | LastNetListRead= 11 | UseCmpFile=1 12 | PadDrill=0.600000000000 13 | PadDrillOvalY=0.600000000000 14 | PadSizeH=1.500000000000 15 | PadSizeV=1.500000000000 16 | PcbTextSizeV=1.500000000000 17 | PcbTextSizeH=1.500000000000 18 | PcbTextThickness=0.300000000000 19 | ModuleTextSizeV=1.000000000000 20 | ModuleTextSizeH=1.000000000000 21 | ModuleTextSizeThickness=0.150000000000 22 | SolderMaskClearance=0.000000000000 23 | SolderMaskMinWidth=0.000000000000 24 | DrawSegmentWidth=0.200000000000 25 | BoardOutlineThickness=0.100000000000 26 | ModuleOutlineThickness=0.150000000000 27 | [cvpcb] 28 | version=1 29 | NetIExt=net 30 | [eeschema] 31 | version=1 32 | LibDir= 33 | [eeschema/libraries] 34 | -------------------------------------------------------------------------------- /hardware/WCH_Linkv0.1/Untitled/Untitled.sch: -------------------------------------------------------------------------------- 1 | EESchema Schematic File Version 2 2 | EELAYER 25 0 3 | EELAYER END 4 | $EndSCHEMATC 5 | -------------------------------------------------------------------------------- /hardware/WCH_Linkv0.1/WCH-Link.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaidegit/CMSIS-DAPbyWCH/7730b6388bb46ca279a42af0a29932ae8b32287a/hardware/WCH_Linkv0.1/WCH-Link.zip -------------------------------------------------------------------------------- /hardware/WCH_Linkv0.1/WCH_Link-B_Cu.gbr: -------------------------------------------------------------------------------- 1 | %TF.GenerationSoftware,KiCad,Pcbnew,(5.1.9-0-10_14)*% 2 | %TF.CreationDate,2021-02-02T14:33:23+08:00*% 3 | %TF.ProjectId,WCH_Link,5743485f-4c69-46e6-9b2e-6b696361645f,rev?*% 4 | %TF.SameCoordinates,Original*% 5 | %TF.FileFunction,Copper,L2,Bot*% 6 | %TF.FilePolarity,Positive*% 7 | %FSLAX46Y46*% 8 | G04 Gerber Fmt 4.6, Leading zero omitted, Abs format (unit mm)* 9 | G04 Created by KiCad (PCBNEW (5.1.9-0-10_14)) date 2021-02-02 14:33:23* 10 | %MOMM*% 11 | %LPD*% 12 | G01* 13 | G04 APERTURE LIST* 14 | %TA.AperFunction,ComponentPad*% 15 | %ADD10O,1.700000X1.700000*% 16 | %TD*% 17 | %TA.AperFunction,ComponentPad*% 18 | %ADD11R,1.700000X1.700000*% 19 | %TD*% 20 | %TA.AperFunction,ComponentPad*% 21 | %ADD12O,1.000000X1.000000*% 22 | %TD*% 23 | %TA.AperFunction,ComponentPad*% 24 | %ADD13R,1.000000X1.000000*% 25 | %TD*% 26 | %TA.AperFunction,ComponentPad*% 27 | %ADD14O,1.000000X2.100000*% 28 | %TD*% 29 | %TA.AperFunction,ComponentPad*% 30 | %ADD15O,1.000000X1.600000*% 31 | %TD*% 32 | %TA.AperFunction,ViaPad*% 33 | %ADD16C,0.800000*% 34 | %TD*% 35 | %TA.AperFunction,Conductor*% 36 | %ADD17C,0.250000*% 37 | %TD*% 38 | %TA.AperFunction,Conductor*% 39 | %ADD18C,0.508000*% 40 | %TD*% 41 | %TA.AperFunction,Conductor*% 42 | %ADD19C,0.152400*% 43 | %TD*% 44 | %TA.AperFunction,Conductor*% 45 | %ADD20C,0.254000*% 46 | %TD*% 47 | %TA.AperFunction,Conductor*% 48 | %ADD21C,0.100000*% 49 | %TD*% 50 | G04 APERTURE END LIST* 51 | D10* 52 | %TO.P,REF\u002A\u002A,6*% 53 | %TO.N,+3V3*% 54 | X131699000Y-68834000D03* 55 | %TO.P,REF\u002A\u002A,5*% 56 | %TO.N,/RX*% 57 | X129159000Y-68834000D03* 58 | %TO.P,REF\u002A\u002A,4*% 59 | %TO.N,/TX*% 60 | X126619000Y-68834000D03* 61 | %TO.P,REF\u002A\u002A,3*% 62 | %TO.N,/T_SWDIO*% 63 | X124079000Y-68834000D03* 64 | %TO.P,REF\u002A\u002A,2*% 65 | %TO.N,/T_SWCLK*% 66 | X121539000Y-68834000D03* 67 | D11* 68 | %TO.P,REF\u002A\u002A,1*% 69 | %TO.N,GND*% 70 | X118999000Y-68834000D03* 71 | %TD*% 72 | %TO.P,REF\u002A\u002A,1*% 73 | %TO.N,+5V*% 74 | X114681000Y-57531000D03* 75 | D10* 76 | %TO.P,REF\u002A\u002A,2*% 77 | %TO.N,/T_SWDIO*% 78 | X114681000Y-60071000D03* 79 | %TO.P,REF\u002A\u002A,3*% 80 | %TO.N,/T_SWCLK*% 81 | X114681000Y-62611000D03* 82 | %TO.P,REF\u002A\u002A,4*% 83 | %TO.N,GND*% 84 | X114681000Y-65151000D03* 85 | %TD*% 86 | %TO.P,REF\u002A\u002A,4*% 87 | %TO.N,GND*% 88 | X135763000Y-65151000D03* 89 | %TO.P,REF\u002A\u002A,3*% 90 | %TO.N,/RX*% 91 | X135763000Y-62611000D03* 92 | %TO.P,REF\u002A\u002A,2*% 93 | %TO.N,/TX*% 94 | X135763000Y-60071000D03* 95 | D11* 96 | %TO.P,REF\u002A\u002A,1*% 97 | %TO.N,+3V3*% 98 | X135763000Y-57531000D03* 99 | %TD*% 100 | D12* 101 | %TO.P,J2,2*% 102 | %TO.N,Net-(J2-Pad2)*% 103 | X117221000Y-50927000D03* 104 | D13* 105 | %TO.P,J2,1*% 106 | %TO.N,/USB_P*% 107 | X117221000Y-52197000D03* 108 | %TD*% 109 | D14* 110 | %TO.P,J1,S1*% 111 | %TO.N,Net-(C1-Pad1)*% 112 | X120521000Y-43897000D03* 113 | X129161000Y-43897000D03* 114 | D15* 115 | X129161000Y-39717000D03* 116 | X120521000Y-39717000D03* 117 | %TD*% 118 | D16* 119 | %TO.N,GND*% 120 | X121412000Y-63373000D03* 121 | X121412000Y-61976000D03* 122 | X120142000Y-62357000D03* 123 | X124841000Y-57277000D03* 124 | X121539000Y-56007000D03* 125 | X125476000Y-40767000D03* 126 | X130683000Y-61722000D03* 127 | X130683000Y-62865000D03* 128 | X131826000Y-61722000D03* 129 | X133985000Y-67564000D03* 130 | X133985000Y-68453000D03* 131 | X133985000Y-69342000D03* 132 | X132080000Y-40894000D03* 133 | X133223000Y-40894000D03* 134 | X134366000Y-40894000D03* 135 | X124460000Y-38227000D03* 136 | X125476000Y-38227000D03* 137 | X126492000Y-38227000D03* 138 | X116205000Y-67945000D03* 139 | X117094000Y-66929000D03* 140 | %TO.N,+5V*% 141 | X124841000Y-50292000D03* 142 | X133731000Y-48387000D03* 143 | X127127000Y-60325000D03* 144 | %TO.N,Net-(J1-PadA5)*% 145 | X126111000Y-43307000D03* 146 | X119253000Y-40894000D03* 147 | %TO.N,/USB_N*% 148 | X124587000Y-43036999D03* 149 | X123825000Y-46609000D03* 150 | %TO.N,Net-(J1-PadB5)*% 151 | X123444000Y-43307000D03* 152 | X119126000Y-43053000D03* 153 | %TO.N,/TX*% 154 | X132207000Y-55753000D03* 155 | %TO.N,/RX*% 156 | X131191000Y-55880000D03* 157 | %TO.N,/TX*% 158 | X133673749Y-61525251D03* 159 | %TD*% 160 | D17* 161 | %TO.N,+5V*% 162 | X124841000Y-50292000D02* 163 | X131826000Y-50292000D01* 164 | X131826000Y-50292000D02* 165 | X133731000Y-48387000D01* 166 | D18* 167 | X117475000Y-60325000D02* 168 | X115160010Y-58010010D01* 169 | X127127000Y-60325000D02* 170 | X117475000Y-60325000D01* 171 | D17* 172 | %TO.N,Net-(J1-PadA5)*% 173 | X123698000Y-40894000D02* 174 | X119253000Y-40894000D01* 175 | X126111000Y-43307000D02* 176 | X123698000Y-40894000D01* 177 | D19* 178 | %TO.N,/USB_N*% 179 | X124587000Y-45847000D02* 180 | X123825000Y-46609000D01* 181 | X124587000Y-43036999D02* 182 | X124587000Y-45847000D01* 183 | D17* 184 | %TO.N,Net-(J1-PadB5)*% 185 | X119657010Y-42521990D02* 186 | X119126000Y-43053000D01* 187 | X122658990Y-42521990D02* 188 | X119657010Y-42521990D01* 189 | X123444000Y-43307000D02* 190 | X122658990Y-42521990D01* 191 | D19* 192 | %TO.N,/TX*% 193 | X135382000Y-60071000D02* 194 | X135715790Y-60071000D01* 195 | X132207000Y-56562210D02* 196 | X135715790Y-60071000D01* 197 | X132207000Y-55753000D02* 198 | X132207000Y-56562210D01* 199 | X133673749Y-61779251D02* 200 | X133673749Y-61525251D01* 201 | X126619000Y-68834000D02* 202 | X133673749Y-61779251D01* 203 | %TO.N,/RX*% 204 | X131191000Y-58086210D02* 205 | X135715790Y-62611000D01* 206 | X131191000Y-55880000D02* 207 | X131191000Y-58086210D01* 208 | X135382000Y-62611000D02* 209 | X135715790Y-62611000D01* 210 | X129159000Y-68834000D02* 211 | X135382000Y-62611000D01* 212 | %TO.N,/T_SWCLK*% 213 | X115316000Y-62611000D02* 214 | X114728210Y-62611000D01* 215 | X121539000Y-68834000D02* 216 | X115316000Y-62611000D01* 217 | %TO.N,/T_SWDIO*% 218 | X115316000Y-60071000D02* 219 | X114728210Y-60071000D01* 220 | X124079000Y-68834000D02* 221 | X115316000Y-60071000D01* 222 | %TD*% 223 | D20* 224 | %TO.N,GND*% 225 | X119166481Y-67467269D02* 226 | X119126000Y-67507750D01* 227 | X119126000Y-68707000D01* 228 | X119146000Y-68707000D01* 229 | X119146000Y-68961000D01* 230 | X119126000Y-68961000D01* 231 | X119126000Y-68981000D01* 232 | X118872000Y-68981000D01* 233 | X118872000Y-68961000D01* 234 | X117672750Y-68961000D01* 235 | X117514000Y-69119750D01* 236 | X117510928Y-69684000D01* 237 | X117523188Y-69808482D01* 238 | X117528199Y-69825000D01* 239 | X115087000Y-69825000D01* 240 | X115087000Y-67984000D01* 241 | X117510928Y-67984000D01* 242 | X117514000Y-68548250D01* 243 | X117672750Y-68707000D01* 244 | X118872000Y-68707000D01* 245 | X118872000Y-67507750D01* 246 | X118713250Y-67349000D01* 247 | X118149000Y-67345928D01* 248 | X118024518Y-67358188D01* 249 | X117904820Y-67394498D01* 250 | X117794506Y-67453463D01* 251 | X117697815Y-67532815D01* 252 | X117618463Y-67629506D01* 253 | X117559498Y-67739820D01* 254 | X117523188Y-67859518D01* 255 | X117510928Y-67984000D01* 256 | X115087000Y-67984000D01* 257 | X115087000Y-66575061D01* 258 | X115312252Y-66495157D01* 259 | X115562355Y-66346178D01* 260 | X115778588Y-66151269D01* 261 | X115952641Y-65917920D01* 262 | X116077825Y-65655099D01* 263 | X116122476Y-65507890D01* 264 | X116001155Y-65278000D01* 265 | X115087000Y-65278000D01* 266 | X115087000Y-65024000D01* 267 | X116001155Y-65024000D01* 268 | X116122476Y-64794110D01* 269 | X116077825Y-64646901D01* 270 | X115952641Y-64384080D01* 271 | X115778588Y-64150731D01* 272 | X115562355Y-63955822D01* 273 | X115445466Y-63886195D01* 274 | X115529355Y-63830142D01* 275 | X119166481Y-67467269D01* 276 | %TA.AperFunction,Conductor*% 277 | D21* 278 | G36* 279 | X119166481Y-67467269D02* 280 | G01* 281 | X119126000Y-67507750D01* 282 | X119126000Y-68707000D01* 283 | X119146000Y-68707000D01* 284 | X119146000Y-68961000D01* 285 | X119126000Y-68961000D01* 286 | X119126000Y-68981000D01* 287 | X118872000Y-68981000D01* 288 | X118872000Y-68961000D01* 289 | X117672750Y-68961000D01* 290 | X117514000Y-69119750D01* 291 | X117510928Y-69684000D01* 292 | X117523188Y-69808482D01* 293 | X117528199Y-69825000D01* 294 | X115087000Y-69825000D01* 295 | X115087000Y-67984000D01* 296 | X117510928Y-67984000D01* 297 | X117514000Y-68548250D01* 298 | X117672750Y-68707000D01* 299 | X118872000Y-68707000D01* 300 | X118872000Y-67507750D01* 301 | X118713250Y-67349000D01* 302 | X118149000Y-67345928D01* 303 | X118024518Y-67358188D01* 304 | X117904820Y-67394498D01* 305 | X117794506Y-67453463D01* 306 | X117697815Y-67532815D01* 307 | X117618463Y-67629506D01* 308 | X117559498Y-67739820D01* 309 | X117523188Y-67859518D01* 310 | X117510928Y-67984000D01* 311 | X115087000Y-67984000D01* 312 | X115087000Y-66575061D01* 313 | X115312252Y-66495157D01* 314 | X115562355Y-66346178D01* 315 | X115778588Y-66151269D01* 316 | X115952641Y-65917920D01* 317 | X116077825Y-65655099D01* 318 | X116122476Y-65507890D01* 319 | X116001155Y-65278000D01* 320 | X115087000Y-65278000D01* 321 | X115087000Y-65024000D01* 322 | X116001155Y-65024000D01* 323 | X116122476Y-64794110D01* 324 | X116077825Y-64646901D01* 325 | X115952641Y-64384080D01* 326 | X115778588Y-64150731D01* 327 | X115562355Y-63955822D01* 328 | X115445466Y-63886195D01* 329 | X115529355Y-63830142D01* 330 | X119166481Y-67467269D01* 331 | G37* 332 | %TD.AperFunction*% 333 | D20* 334 | X134366175Y-64646901D02* 335 | X134321524Y-64794110D01* 336 | X134442845Y-65024000D01* 337 | X135357001Y-65024000D01* 338 | X135357001Y-65278000D01* 339 | X134442845Y-65278000D01* 340 | X134321524Y-65507890D01* 341 | X134366175Y-65655099D01* 342 | X134491359Y-65917920D01* 343 | X134665412Y-66151269D01* 344 | X134881645Y-66346178D01* 345 | X135131748Y-66495157D01* 346 | X135357001Y-66575061D01* 347 | X135357001Y-69825000D01* 348 | X132808107Y-69825000D01* 349 | X132852475Y-69780632D01* 350 | X133014990Y-69537411D01* 351 | X133126932Y-69267158D01* 352 | X133184000Y-68980260D01* 353 | X133184000Y-68687740D01* 354 | X133126932Y-68400842D01* 355 | X133014990Y-68130589D01* 356 | X132852475Y-67887368D01* 357 | X132645632Y-67680525D01* 358 | X132402411Y-67518010D01* 359 | X132132158Y-67406068D01* 360 | X131845260Y-67349000D01* 361 | X131649787Y-67349000D01* 362 | X134379170Y-64619617D01* 363 | X134366175Y-64646901D01* 364 | %TA.AperFunction,Conductor*% 365 | D21* 366 | G36* 367 | X134366175Y-64646901D02* 368 | G01* 369 | X134321524Y-64794110D01* 370 | X134442845Y-65024000D01* 371 | X135357001Y-65024000D01* 372 | X135357001Y-65278000D01* 373 | X134442845Y-65278000D01* 374 | X134321524Y-65507890D01* 375 | X134366175Y-65655099D01* 376 | X134491359Y-65917920D01* 377 | X134665412Y-66151269D01* 378 | X134881645Y-66346178D01* 379 | X135131748Y-66495157D01* 380 | X135357001Y-66575061D01* 381 | X135357001Y-69825000D01* 382 | X132808107Y-69825000D01* 383 | X132852475Y-69780632D01* 384 | X133014990Y-69537411D01* 385 | X133126932Y-69267158D01* 386 | X133184000Y-68980260D01* 387 | X133184000Y-68687740D01* 388 | X133126932Y-68400842D01* 389 | X133014990Y-68130589D01* 390 | X132852475Y-67887368D01* 391 | X132645632Y-67680525D01* 392 | X132402411Y-67518010D01* 393 | X132132158Y-67406068D01* 394 | X131845260Y-67349000D01* 395 | X131649787Y-67349000D01* 396 | X134379170Y-64619617D01* 397 | X134366175Y-64646901D01* 398 | G37* 399 | %TD.AperFunction*% 400 | D20* 401 | X135357001Y-56042928D02* 402 | X134913000Y-56042928D01* 403 | X134788518Y-56055188D01* 404 | X134668820Y-56091498D01* 405 | X134558506Y-56150463D01* 406 | X134461815Y-56229815D01* 407 | X134382463Y-56326506D01* 408 | X134323498Y-56436820D01* 409 | X134287188Y-56556518D01* 410 | X134274928Y-56681000D01* 411 | X134274928Y-57624350D01* 412 | X133031931Y-56381354D01* 413 | X133124205Y-56243256D01* 414 | X133202226Y-56054898D01* 415 | X133242000Y-55854939D01* 416 | X133242000Y-55651061D01* 417 | X133202226Y-55451102D01* 418 | X133124205Y-55262744D01* 419 | X133010937Y-55093226D01* 420 | X132866774Y-54949063D01* 421 | X132697256Y-54835795D01* 422 | X132508898Y-54757774D01* 423 | X132308939Y-54718000D01* 424 | X132105061Y-54718000D01* 425 | X131905102Y-54757774D01* 426 | X131716744Y-54835795D01* 427 | X131585831Y-54923268D01* 428 | X131492898Y-54884774D01* 429 | X131292939Y-54845000D01* 430 | X131089061Y-54845000D01* 431 | X130889102Y-54884774D01* 432 | X130700744Y-54962795D01* 433 | X130531226Y-55076063D01* 434 | X130387063Y-55220226D01* 435 | X130273795Y-55389744D01* 436 | X130195774Y-55578102D01* 437 | X130156000Y-55778061D01* 438 | X130156000Y-55981939D01* 439 | X130195774Y-56181898D01* 440 | X130273795Y-56370256D01* 441 | X130387063Y-56539774D01* 442 | X130479800Y-56632511D01* 443 | X130479801Y-58051274D01* 444 | X130476360Y-58086210D01* 445 | X130479801Y-58121146D01* 446 | X130490092Y-58225630D01* 447 | X130530759Y-58359691D01* 448 | X130596799Y-58483243D01* 449 | X130685674Y-58591537D01* 450 | X130712810Y-58613807D01* 451 | X132917146Y-60818143D01* 452 | X132869812Y-60865477D01* 453 | X132756544Y-61034995D01* 454 | X132678523Y-61223353D01* 455 | X132638749Y-61423312D01* 456 | X132638749Y-61627190D01* 457 | X132668824Y-61778387D01* 458 | X127042972Y-67404241D01* 459 | X126765260Y-67349000D01* 460 | X126472740Y-67349000D01* 461 | X126185842Y-67406068D01* 462 | X125915589Y-67518010D01* 463 | X125672368Y-67680525D01* 464 | X125465525Y-67887368D01* 465 | X125349000Y-68061760D01* 466 | X125232475Y-67887368D01* 467 | X125025632Y-67680525D01* 468 | X124782411Y-67518010D01* 469 | X124512158Y-67406068D01* 470 | X124225260Y-67349000D01* 471 | X123932740Y-67349000D01* 472 | X123655029Y-67404241D01* 473 | X117468442Y-61217654D01* 474 | X117474999Y-61218300D01* 475 | X117518659Y-61214000D01* 476 | X126594532Y-61214000D01* 477 | X126636744Y-61242205D01* 478 | X126825102Y-61320226D01* 479 | X127025061Y-61360000D01* 480 | X127228939Y-61360000D01* 481 | X127428898Y-61320226D01* 482 | X127617256Y-61242205D01* 483 | X127786774Y-61128937D01* 484 | X127930937Y-60984774D01* 485 | X128044205Y-60815256D01* 486 | X128122226Y-60626898D01* 487 | X128162000Y-60426939D01* 488 | X128162000Y-60223061D01* 489 | X128122226Y-60023102D01* 490 | X128044205Y-59834744D01* 491 | X127930937Y-59665226D01* 492 | X127786774Y-59521063D01* 493 | X127617256Y-59407795D01* 494 | X127428898Y-59329774D01* 495 | X127228939Y-59290000D01* 496 | X127025061Y-59290000D01* 497 | X126825102Y-59329774D01* 498 | X126636744Y-59407795D01* 499 | X126594532Y-59436000D01* 500 | X117843235Y-59436000D01* 501 | X116169072Y-57761837D01* 502 | X116169072Y-56681000D01* 503 | X116156812Y-56556518D01* 504 | X116120502Y-56436820D01* 505 | X116061537Y-56326506D01* 506 | X115982185Y-56229815D01* 507 | X115885494Y-56150463D01* 508 | X115775180Y-56091498D01* 509 | X115655482Y-56055188D01* 510 | X115531000Y-56042928D01* 511 | X115087000Y-56042928D01* 512 | X115087000Y-51697000D01* 513 | X116082928Y-51697000D01* 514 | X116082928Y-52697000D01* 515 | X116095188Y-52821482D01* 516 | X116131498Y-52941180D01* 517 | X116190463Y-53051494D01* 518 | X116269815Y-53148185D01* 519 | X116366506Y-53227537D01* 520 | X116476820Y-53286502D01* 521 | X116596518Y-53322812D01* 522 | X116721000Y-53335072D01* 523 | X117721000Y-53335072D01* 524 | X117845482Y-53322812D01* 525 | X117965180Y-53286502D01* 526 | X118075494Y-53227537D01* 527 | X118172185Y-53148185D01* 528 | X118251537Y-53051494D01* 529 | X118310502Y-52941180D01* 530 | X118346812Y-52821482D01* 531 | X118359072Y-52697000D01* 532 | X118359072Y-51697000D01* 533 | X118346812Y-51572518D01* 534 | X118310502Y-51452820D01* 535 | X118266112Y-51369774D01* 536 | X118312383Y-51258067D01* 537 | X118356000Y-51038788D01* 538 | X118356000Y-50815212D01* 539 | X118312383Y-50595933D01* 540 | X118226824Y-50389376D01* 541 | X118102612Y-50203480D01* 542 | X118089193Y-50190061D01* 543 | X123806000Y-50190061D01* 544 | X123806000Y-50393939D01* 545 | X123845774Y-50593898D01* 546 | X123923795Y-50782256D01* 547 | X124037063Y-50951774D01* 548 | X124181226Y-51095937D01* 549 | X124350744Y-51209205D01* 550 | X124539102Y-51287226D01* 551 | X124739061Y-51327000D01* 552 | X124942939Y-51327000D01* 553 | X125142898Y-51287226D01* 554 | X125331256Y-51209205D01* 555 | X125500774Y-51095937D01* 556 | X125544711Y-51052000D01* 557 | X131788678Y-51052000D01* 558 | X131826000Y-51055676D01* 559 | X131863322Y-51052000D01* 560 | X131863333Y-51052000D01* 561 | X131974986Y-51041003D01* 562 | X132118247Y-50997546D01* 563 | X132250276Y-50926974D01* 564 | X132366001Y-50832001D01* 565 | X132389804Y-50802997D01* 566 | X133770802Y-49422000D01* 567 | X133832939Y-49422000D01* 568 | X134032898Y-49382226D01* 569 | X134221256Y-49304205D01* 570 | X134390774Y-49190937D01* 571 | X134534937Y-49046774D01* 572 | X134648205Y-48877256D01* 573 | X134726226Y-48688898D01* 574 | X134766000Y-48488939D01* 575 | X134766000Y-48285061D01* 576 | X134726226Y-48085102D01* 577 | X134648205Y-47896744D01* 578 | X134534937Y-47727226D01* 579 | X134390774Y-47583063D01* 580 | X134221256Y-47469795D01* 581 | X134032898Y-47391774D01* 582 | X133832939Y-47352000D01* 583 | X133629061Y-47352000D01* 584 | X133429102Y-47391774D01* 585 | X133240744Y-47469795D01* 586 | X133071226Y-47583063D01* 587 | X132927063Y-47727226D01* 588 | X132813795Y-47896744D01* 589 | X132735774Y-48085102D01* 590 | X132696000Y-48285061D01* 591 | X132696000Y-48347198D01* 592 | X131511199Y-49532000D01* 593 | X125544711Y-49532000D01* 594 | X125500774Y-49488063D01* 595 | X125331256Y-49374795D01* 596 | X125142898Y-49296774D01* 597 | X124942939Y-49257000D01* 598 | X124739061Y-49257000D01* 599 | X124539102Y-49296774D01* 600 | X124350744Y-49374795D01* 601 | X124181226Y-49488063D01* 602 | X124037063Y-49632226D01* 603 | X123923795Y-49801744D01* 604 | X123845774Y-49990102D01* 605 | X123806000Y-50190061D01* 606 | X118089193Y-50190061D01* 607 | X117944520Y-50045388D01* 608 | X117758624Y-49921176D01* 609 | X117552067Y-49835617D01* 610 | X117332788Y-49792000D01* 611 | X117109212Y-49792000D01* 612 | X116889933Y-49835617D01* 613 | X116683376Y-49921176D01* 614 | X116497480Y-50045388D01* 615 | X116339388Y-50203480D01* 616 | X116215176Y-50389376D01* 617 | X116129617Y-50595933D01* 618 | X116086000Y-50815212D01* 619 | X116086000Y-51038788D01* 620 | X116129617Y-51258067D01* 621 | X116175888Y-51369774D01* 622 | X116131498Y-51452820D01* 623 | X116095188Y-51572518D01* 624 | X116082928Y-51697000D01* 625 | X115087000Y-51697000D01* 626 | X115087000Y-42951061D01* 627 | X118091000Y-42951061D01* 628 | X118091000Y-43154939D01* 629 | X118130774Y-43354898D01* 630 | X118208795Y-43543256D01* 631 | X118322063Y-43712774D01* 632 | X118466226Y-43856937D01* 633 | X118635744Y-43970205D01* 634 | X118824102Y-44048226D01* 635 | X119024061Y-44088000D01* 636 | X119227939Y-44088000D01* 637 | X119386000Y-44056560D01* 638 | X119386000Y-44502751D01* 639 | X119402423Y-44669498D01* 640 | X119467324Y-44883446D01* 641 | X119572716Y-45080623D01* 642 | X119714551Y-45253449D01* 643 | X119887377Y-45395284D01* 644 | X120084553Y-45500676D01* 645 | X120298501Y-45565577D01* 646 | X120521000Y-45587491D01* 647 | X120743498Y-45565577D01* 648 | X120957446Y-45500676D01* 649 | X121154623Y-45395284D01* 650 | X121327449Y-45253449D01* 651 | X121469284Y-45080623D01* 652 | X121574676Y-44883447D01* 653 | X121639577Y-44669499D01* 654 | X121656000Y-44502752D01* 655 | X121656000Y-44283904D01* 656 | X121670978Y-44290108D01* 657 | X121856448Y-44327000D01* 658 | X122045552Y-44327000D01* 659 | X122231022Y-44290108D01* 660 | X122405731Y-44217741D01* 661 | X122562964Y-44112681D01* 662 | X122674467Y-44001178D01* 663 | X122784226Y-44110937D01* 664 | X122953744Y-44224205D01* 665 | X123142102Y-44302226D01* 666 | X123342061Y-44342000D01* 667 | X123545939Y-44342000D01* 668 | X123745898Y-44302226D01* 669 | X123875800Y-44248418D01* 670 | X123875801Y-45552411D01* 671 | X123854212Y-45574000D01* 672 | X123723061Y-45574000D01* 673 | X123523102Y-45613774D01* 674 | X123334744Y-45691795D01* 675 | X123165226Y-45805063D01* 676 | X123021063Y-45949226D01* 677 | X122907795Y-46118744D01* 678 | X122829774Y-46307102D01* 679 | X122790000Y-46507061D01* 680 | X122790000Y-46710939D01* 681 | X122829774Y-46910898D01* 682 | X122907795Y-47099256D01* 683 | X123021063Y-47268774D01* 684 | X123165226Y-47412937D01* 685 | X123334744Y-47526205D01* 686 | X123523102Y-47604226D01* 687 | X123723061Y-47644000D01* 688 | X123926939Y-47644000D01* 689 | X124126898Y-47604226D01* 690 | X124315256Y-47526205D01* 691 | X124484774Y-47412937D01* 692 | X124628937Y-47268774D01* 693 | X124742205Y-47099256D01* 694 | X124820226Y-46910898D01* 695 | X124860000Y-46710939D01* 696 | X124860000Y-46579788D01* 697 | X125065196Y-46374593D01* 698 | X125092327Y-46352327D01* 699 | X125114593Y-46325196D01* 700 | X125114598Y-46325191D01* 701 | X125181202Y-46244033D01* 702 | X125247242Y-46120482D01* 703 | X125287909Y-45986420D01* 704 | X125291572Y-45949226D01* 705 | X125298200Y-45881936D01* 706 | X125298200Y-45881929D01* 707 | X125301640Y-45847000D01* 708 | X125298200Y-45812072D01* 709 | X125298200Y-43953510D01* 710 | X125307063Y-43966774D01* 711 | X125451226Y-44110937D01* 712 | X125620744Y-44224205D01* 713 | X125809102Y-44302226D01* 714 | X126009061Y-44342000D01* 715 | X126212939Y-44342000D01* 716 | X126412898Y-44302226D01* 717 | X126601256Y-44224205D01* 718 | X126770774Y-44110937D01* 719 | X126914937Y-43966774D01* 720 | X126946055Y-43920202D01* 721 | X126985319Y-43978964D01* 722 | X127119036Y-44112681D01* 723 | X127276269Y-44217741D01* 724 | X127450978Y-44290108D01* 725 | X127636448Y-44327000D01* 726 | X127825552Y-44327000D01* 727 | X128011022Y-44290108D01* 728 | X128026000Y-44283904D01* 729 | X128026000Y-44502751D01* 730 | X128042423Y-44669498D01* 731 | X128107324Y-44883446D01* 732 | X128212716Y-45080623D01* 733 | X128354551Y-45253449D01* 734 | X128527377Y-45395284D01* 735 | X128724553Y-45500676D01* 736 | X128938501Y-45565577D01* 737 | X129161000Y-45587491D01* 738 | X129383498Y-45565577D01* 739 | X129597446Y-45500676D01* 740 | X129794623Y-45395284D01* 741 | X129967449Y-45253449D01* 742 | X130109284Y-45080623D01* 743 | X130214676Y-44883447D01* 744 | X130279577Y-44669499D01* 745 | X130296000Y-44502752D01* 746 | X130296000Y-43291248D01* 747 | X130279577Y-43124501D01* 748 | X130214676Y-42910553D01* 749 | X130109284Y-42713377D01* 750 | X129967449Y-42540551D01* 751 | X129794623Y-42398716D01* 752 | X129597447Y-42293324D01* 753 | X129383499Y-42228423D01* 754 | X129161000Y-42206509D01* 755 | X128938502Y-42228423D01* 756 | X128724554Y-42293324D01* 757 | X128527378Y-42398716D01* 758 | X128354552Y-42540551D01* 759 | X128307638Y-42597715D01* 760 | X128185731Y-42516259D01* 761 | X128011022Y-42443892D01* 762 | X127825552Y-42407000D01* 763 | X127636448Y-42407000D01* 764 | X127450978Y-42443892D01* 765 | X127276269Y-42516259D01* 766 | X127119036Y-42621319D01* 767 | X126986311Y-42754044D01* 768 | X126914937Y-42647226D01* 769 | X126770774Y-42503063D01* 770 | X126601256Y-42389795D01* 771 | X126412898Y-42311774D01* 772 | X126212939Y-42272000D01* 773 | X126150802Y-42272000D01* 774 | X124261804Y-40383003D01* 775 | X124238001Y-40353999D01* 776 | X124122276Y-40259026D01* 777 | X123990247Y-40188454D01* 778 | X123846986Y-40144997D01* 779 | X123735333Y-40134000D01* 780 | X123735322Y-40134000D01* 781 | X123698000Y-40130324D01* 782 | X123660678Y-40134000D01* 783 | X121649968Y-40134000D01* 784 | X121656000Y-40072752D01* 785 | X121656000Y-39361249D01* 786 | X121656000Y-39361248D01* 787 | X128026000Y-39361248D01* 788 | X128026000Y-40072751D01* 789 | X128042423Y-40239498D01* 790 | X128107324Y-40453446D01* 791 | X128212716Y-40650623D01* 792 | X128354551Y-40823449D01* 793 | X128527377Y-40965284D01* 794 | X128724553Y-41070676D01* 795 | X128938501Y-41135577D01* 796 | X129161000Y-41157491D01* 797 | X129383498Y-41135577D01* 798 | X129597446Y-41070676D01* 799 | X129794623Y-40965284D01* 800 | X129967449Y-40823449D01* 801 | X130109284Y-40650623D01* 802 | X130214676Y-40453447D01* 803 | X130279577Y-40239499D01* 804 | X130296000Y-40072752D01* 805 | X130296000Y-39361249D01* 806 | X130279577Y-39194502D01* 807 | X130214676Y-38980554D01* 808 | X130109284Y-38783377D01* 809 | X129967449Y-38610551D01* 810 | X129794623Y-38468716D01* 811 | X129597447Y-38363324D01* 812 | X129383499Y-38298423D01* 813 | X129161000Y-38276509D01* 814 | X128938502Y-38298423D01* 815 | X128724554Y-38363324D01* 816 | X128527378Y-38468716D01* 817 | X128354552Y-38610551D01* 818 | X128212717Y-38783377D01* 819 | X128107324Y-38980553D01* 820 | X128042423Y-39194501D01* 821 | X128026000Y-39361248D01* 822 | X121656000Y-39361248D01* 823 | X121639577Y-39194502D01* 824 | X121574676Y-38980554D01* 825 | X121469284Y-38783377D01* 826 | X121327449Y-38610551D01* 827 | X121154623Y-38468716D01* 828 | X120957447Y-38363324D01* 829 | X120743499Y-38298423D01* 830 | X120521000Y-38276509D01* 831 | X120298502Y-38298423D01* 832 | X120084554Y-38363324D01* 833 | X119887378Y-38468716D01* 834 | X119714552Y-38610551D01* 835 | X119572717Y-38783377D01* 836 | X119467324Y-38980553D01* 837 | X119402423Y-39194501D01* 838 | X119386000Y-39361248D01* 839 | X119386000Y-39865178D01* 840 | X119354939Y-39859000D01* 841 | X119151061Y-39859000D01* 842 | X118951102Y-39898774D01* 843 | X118762744Y-39976795D01* 844 | X118593226Y-40090063D01* 845 | X118449063Y-40234226D01* 846 | X118335795Y-40403744D01* 847 | X118257774Y-40592102D01* 848 | X118218000Y-40792061D01* 849 | X118218000Y-40995939D01* 850 | X118257774Y-41195898D01* 851 | X118335795Y-41384256D01* 852 | X118449063Y-41553774D01* 853 | X118593226Y-41697937D01* 854 | X118762744Y-41811205D01* 855 | X118951102Y-41889226D01* 856 | X119151061Y-41929000D01* 857 | X119181576Y-41929000D01* 858 | X119117009Y-41981989D01* 859 | X119093210Y-42010988D01* 860 | X119086198Y-42018000D01* 861 | X119024061Y-42018000D01* 862 | X118824102Y-42057774D01* 863 | X118635744Y-42135795D01* 864 | X118466226Y-42249063D01* 865 | X118322063Y-42393226D01* 866 | X118208795Y-42562744D01* 867 | X118130774Y-42751102D01* 868 | X118091000Y-42951061D01* 869 | X115087000Y-42951061D01* 870 | X115087000Y-37744000D01* 871 | X135357000Y-37744000D01* 872 | X135357001Y-56042928D01* 873 | %TA.AperFunction,Conductor*% 874 | D21* 875 | G36* 876 | X135357001Y-56042928D02* 877 | G01* 878 | X134913000Y-56042928D01* 879 | X134788518Y-56055188D01* 880 | X134668820Y-56091498D01* 881 | X134558506Y-56150463D01* 882 | X134461815Y-56229815D01* 883 | X134382463Y-56326506D01* 884 | X134323498Y-56436820D01* 885 | X134287188Y-56556518D01* 886 | X134274928Y-56681000D01* 887 | X134274928Y-57624350D01* 888 | X133031931Y-56381354D01* 889 | X133124205Y-56243256D01* 890 | X133202226Y-56054898D01* 891 | X133242000Y-55854939D01* 892 | X133242000Y-55651061D01* 893 | X133202226Y-55451102D01* 894 | X133124205Y-55262744D01* 895 | X133010937Y-55093226D01* 896 | X132866774Y-54949063D01* 897 | X132697256Y-54835795D01* 898 | X132508898Y-54757774D01* 899 | X132308939Y-54718000D01* 900 | X132105061Y-54718000D01* 901 | X131905102Y-54757774D01* 902 | X131716744Y-54835795D01* 903 | X131585831Y-54923268D01* 904 | X131492898Y-54884774D01* 905 | X131292939Y-54845000D01* 906 | X131089061Y-54845000D01* 907 | X130889102Y-54884774D01* 908 | X130700744Y-54962795D01* 909 | X130531226Y-55076063D01* 910 | X130387063Y-55220226D01* 911 | X130273795Y-55389744D01* 912 | X130195774Y-55578102D01* 913 | X130156000Y-55778061D01* 914 | X130156000Y-55981939D01* 915 | X130195774Y-56181898D01* 916 | X130273795Y-56370256D01* 917 | X130387063Y-56539774D01* 918 | X130479800Y-56632511D01* 919 | X130479801Y-58051274D01* 920 | X130476360Y-58086210D01* 921 | X130479801Y-58121146D01* 922 | X130490092Y-58225630D01* 923 | X130530759Y-58359691D01* 924 | X130596799Y-58483243D01* 925 | X130685674Y-58591537D01* 926 | X130712810Y-58613807D01* 927 | X132917146Y-60818143D01* 928 | X132869812Y-60865477D01* 929 | X132756544Y-61034995D01* 930 | X132678523Y-61223353D01* 931 | X132638749Y-61423312D01* 932 | X132638749Y-61627190D01* 933 | X132668824Y-61778387D01* 934 | X127042972Y-67404241D01* 935 | X126765260Y-67349000D01* 936 | X126472740Y-67349000D01* 937 | X126185842Y-67406068D01* 938 | X125915589Y-67518010D01* 939 | X125672368Y-67680525D01* 940 | X125465525Y-67887368D01* 941 | X125349000Y-68061760D01* 942 | X125232475Y-67887368D01* 943 | X125025632Y-67680525D01* 944 | X124782411Y-67518010D01* 945 | X124512158Y-67406068D01* 946 | X124225260Y-67349000D01* 947 | X123932740Y-67349000D01* 948 | X123655029Y-67404241D01* 949 | X117468442Y-61217654D01* 950 | X117474999Y-61218300D01* 951 | X117518659Y-61214000D01* 952 | X126594532Y-61214000D01* 953 | X126636744Y-61242205D01* 954 | X126825102Y-61320226D01* 955 | X127025061Y-61360000D01* 956 | X127228939Y-61360000D01* 957 | X127428898Y-61320226D01* 958 | X127617256Y-61242205D01* 959 | X127786774Y-61128937D01* 960 | X127930937Y-60984774D01* 961 | X128044205Y-60815256D01* 962 | X128122226Y-60626898D01* 963 | X128162000Y-60426939D01* 964 | X128162000Y-60223061D01* 965 | X128122226Y-60023102D01* 966 | X128044205Y-59834744D01* 967 | X127930937Y-59665226D01* 968 | X127786774Y-59521063D01* 969 | X127617256Y-59407795D01* 970 | X127428898Y-59329774D01* 971 | X127228939Y-59290000D01* 972 | X127025061Y-59290000D01* 973 | X126825102Y-59329774D01* 974 | X126636744Y-59407795D01* 975 | X126594532Y-59436000D01* 976 | X117843235Y-59436000D01* 977 | X116169072Y-57761837D01* 978 | X116169072Y-56681000D01* 979 | X116156812Y-56556518D01* 980 | X116120502Y-56436820D01* 981 | X116061537Y-56326506D01* 982 | X115982185Y-56229815D01* 983 | X115885494Y-56150463D01* 984 | X115775180Y-56091498D01* 985 | X115655482Y-56055188D01* 986 | X115531000Y-56042928D01* 987 | X115087000Y-56042928D01* 988 | X115087000Y-51697000D01* 989 | X116082928Y-51697000D01* 990 | X116082928Y-52697000D01* 991 | X116095188Y-52821482D01* 992 | X116131498Y-52941180D01* 993 | X116190463Y-53051494D01* 994 | X116269815Y-53148185D01* 995 | X116366506Y-53227537D01* 996 | X116476820Y-53286502D01* 997 | X116596518Y-53322812D01* 998 | X116721000Y-53335072D01* 999 | X117721000Y-53335072D01* 1000 | X117845482Y-53322812D01* 1001 | X117965180Y-53286502D01* 1002 | X118075494Y-53227537D01* 1003 | X118172185Y-53148185D01* 1004 | X118251537Y-53051494D01* 1005 | X118310502Y-52941180D01* 1006 | X118346812Y-52821482D01* 1007 | X118359072Y-52697000D01* 1008 | X118359072Y-51697000D01* 1009 | X118346812Y-51572518D01* 1010 | X118310502Y-51452820D01* 1011 | X118266112Y-51369774D01* 1012 | X118312383Y-51258067D01* 1013 | X118356000Y-51038788D01* 1014 | X118356000Y-50815212D01* 1015 | X118312383Y-50595933D01* 1016 | X118226824Y-50389376D01* 1017 | X118102612Y-50203480D01* 1018 | X118089193Y-50190061D01* 1019 | X123806000Y-50190061D01* 1020 | X123806000Y-50393939D01* 1021 | X123845774Y-50593898D01* 1022 | X123923795Y-50782256D01* 1023 | X124037063Y-50951774D01* 1024 | X124181226Y-51095937D01* 1025 | X124350744Y-51209205D01* 1026 | X124539102Y-51287226D01* 1027 | X124739061Y-51327000D01* 1028 | X124942939Y-51327000D01* 1029 | X125142898Y-51287226D01* 1030 | X125331256Y-51209205D01* 1031 | X125500774Y-51095937D01* 1032 | X125544711Y-51052000D01* 1033 | X131788678Y-51052000D01* 1034 | X131826000Y-51055676D01* 1035 | X131863322Y-51052000D01* 1036 | X131863333Y-51052000D01* 1037 | X131974986Y-51041003D01* 1038 | X132118247Y-50997546D01* 1039 | X132250276Y-50926974D01* 1040 | X132366001Y-50832001D01* 1041 | X132389804Y-50802997D01* 1042 | X133770802Y-49422000D01* 1043 | X133832939Y-49422000D01* 1044 | X134032898Y-49382226D01* 1045 | X134221256Y-49304205D01* 1046 | X134390774Y-49190937D01* 1047 | X134534937Y-49046774D01* 1048 | X134648205Y-48877256D01* 1049 | X134726226Y-48688898D01* 1050 | X134766000Y-48488939D01* 1051 | X134766000Y-48285061D01* 1052 | X134726226Y-48085102D01* 1053 | X134648205Y-47896744D01* 1054 | X134534937Y-47727226D01* 1055 | X134390774Y-47583063D01* 1056 | X134221256Y-47469795D01* 1057 | X134032898Y-47391774D01* 1058 | X133832939Y-47352000D01* 1059 | X133629061Y-47352000D01* 1060 | X133429102Y-47391774D01* 1061 | X133240744Y-47469795D01* 1062 | X133071226Y-47583063D01* 1063 | X132927063Y-47727226D01* 1064 | X132813795Y-47896744D01* 1065 | X132735774Y-48085102D01* 1066 | X132696000Y-48285061D01* 1067 | X132696000Y-48347198D01* 1068 | X131511199Y-49532000D01* 1069 | X125544711Y-49532000D01* 1070 | X125500774Y-49488063D01* 1071 | X125331256Y-49374795D01* 1072 | X125142898Y-49296774D01* 1073 | X124942939Y-49257000D01* 1074 | X124739061Y-49257000D01* 1075 | X124539102Y-49296774D01* 1076 | X124350744Y-49374795D01* 1077 | X124181226Y-49488063D01* 1078 | X124037063Y-49632226D01* 1079 | X123923795Y-49801744D01* 1080 | X123845774Y-49990102D01* 1081 | X123806000Y-50190061D01* 1082 | X118089193Y-50190061D01* 1083 | X117944520Y-50045388D01* 1084 | X117758624Y-49921176D01* 1085 | X117552067Y-49835617D01* 1086 | X117332788Y-49792000D01* 1087 | X117109212Y-49792000D01* 1088 | X116889933Y-49835617D01* 1089 | X116683376Y-49921176D01* 1090 | X116497480Y-50045388D01* 1091 | X116339388Y-50203480D01* 1092 | X116215176Y-50389376D01* 1093 | X116129617Y-50595933D01* 1094 | X116086000Y-50815212D01* 1095 | X116086000Y-51038788D01* 1096 | X116129617Y-51258067D01* 1097 | X116175888Y-51369774D01* 1098 | X116131498Y-51452820D01* 1099 | X116095188Y-51572518D01* 1100 | X116082928Y-51697000D01* 1101 | X115087000Y-51697000D01* 1102 | X115087000Y-42951061D01* 1103 | X118091000Y-42951061D01* 1104 | X118091000Y-43154939D01* 1105 | X118130774Y-43354898D01* 1106 | X118208795Y-43543256D01* 1107 | X118322063Y-43712774D01* 1108 | X118466226Y-43856937D01* 1109 | X118635744Y-43970205D01* 1110 | X118824102Y-44048226D01* 1111 | X119024061Y-44088000D01* 1112 | X119227939Y-44088000D01* 1113 | X119386000Y-44056560D01* 1114 | X119386000Y-44502751D01* 1115 | X119402423Y-44669498D01* 1116 | X119467324Y-44883446D01* 1117 | X119572716Y-45080623D01* 1118 | X119714551Y-45253449D01* 1119 | X119887377Y-45395284D01* 1120 | X120084553Y-45500676D01* 1121 | X120298501Y-45565577D01* 1122 | X120521000Y-45587491D01* 1123 | X120743498Y-45565577D01* 1124 | X120957446Y-45500676D01* 1125 | X121154623Y-45395284D01* 1126 | X121327449Y-45253449D01* 1127 | X121469284Y-45080623D01* 1128 | X121574676Y-44883447D01* 1129 | X121639577Y-44669499D01* 1130 | X121656000Y-44502752D01* 1131 | X121656000Y-44283904D01* 1132 | X121670978Y-44290108D01* 1133 | X121856448Y-44327000D01* 1134 | X122045552Y-44327000D01* 1135 | X122231022Y-44290108D01* 1136 | X122405731Y-44217741D01* 1137 | X122562964Y-44112681D01* 1138 | X122674467Y-44001178D01* 1139 | X122784226Y-44110937D01* 1140 | X122953744Y-44224205D01* 1141 | X123142102Y-44302226D01* 1142 | X123342061Y-44342000D01* 1143 | X123545939Y-44342000D01* 1144 | X123745898Y-44302226D01* 1145 | X123875800Y-44248418D01* 1146 | X123875801Y-45552411D01* 1147 | X123854212Y-45574000D01* 1148 | X123723061Y-45574000D01* 1149 | X123523102Y-45613774D01* 1150 | X123334744Y-45691795D01* 1151 | X123165226Y-45805063D01* 1152 | X123021063Y-45949226D01* 1153 | X122907795Y-46118744D01* 1154 | X122829774Y-46307102D01* 1155 | X122790000Y-46507061D01* 1156 | X122790000Y-46710939D01* 1157 | X122829774Y-46910898D01* 1158 | X122907795Y-47099256D01* 1159 | X123021063Y-47268774D01* 1160 | X123165226Y-47412937D01* 1161 | X123334744Y-47526205D01* 1162 | X123523102Y-47604226D01* 1163 | X123723061Y-47644000D01* 1164 | X123926939Y-47644000D01* 1165 | X124126898Y-47604226D01* 1166 | X124315256Y-47526205D01* 1167 | X124484774Y-47412937D01* 1168 | X124628937Y-47268774D01* 1169 | X124742205Y-47099256D01* 1170 | X124820226Y-46910898D01* 1171 | X124860000Y-46710939D01* 1172 | X124860000Y-46579788D01* 1173 | X125065196Y-46374593D01* 1174 | X125092327Y-46352327D01* 1175 | X125114593Y-46325196D01* 1176 | X125114598Y-46325191D01* 1177 | X125181202Y-46244033D01* 1178 | X125247242Y-46120482D01* 1179 | X125287909Y-45986420D01* 1180 | X125291572Y-45949226D01* 1181 | X125298200Y-45881936D01* 1182 | X125298200Y-45881929D01* 1183 | X125301640Y-45847000D01* 1184 | X125298200Y-45812072D01* 1185 | X125298200Y-43953510D01* 1186 | X125307063Y-43966774D01* 1187 | X125451226Y-44110937D01* 1188 | X125620744Y-44224205D01* 1189 | X125809102Y-44302226D01* 1190 | X126009061Y-44342000D01* 1191 | X126212939Y-44342000D01* 1192 | X126412898Y-44302226D01* 1193 | X126601256Y-44224205D01* 1194 | X126770774Y-44110937D01* 1195 | X126914937Y-43966774D01* 1196 | X126946055Y-43920202D01* 1197 | X126985319Y-43978964D01* 1198 | X127119036Y-44112681D01* 1199 | X127276269Y-44217741D01* 1200 | X127450978Y-44290108D01* 1201 | X127636448Y-44327000D01* 1202 | X127825552Y-44327000D01* 1203 | X128011022Y-44290108D01* 1204 | X128026000Y-44283904D01* 1205 | X128026000Y-44502751D01* 1206 | X128042423Y-44669498D01* 1207 | X128107324Y-44883446D01* 1208 | X128212716Y-45080623D01* 1209 | X128354551Y-45253449D01* 1210 | X128527377Y-45395284D01* 1211 | X128724553Y-45500676D01* 1212 | X128938501Y-45565577D01* 1213 | X129161000Y-45587491D01* 1214 | X129383498Y-45565577D01* 1215 | X129597446Y-45500676D01* 1216 | X129794623Y-45395284D01* 1217 | X129967449Y-45253449D01* 1218 | X130109284Y-45080623D01* 1219 | X130214676Y-44883447D01* 1220 | X130279577Y-44669499D01* 1221 | X130296000Y-44502752D01* 1222 | X130296000Y-43291248D01* 1223 | X130279577Y-43124501D01* 1224 | X130214676Y-42910553D01* 1225 | X130109284Y-42713377D01* 1226 | X129967449Y-42540551D01* 1227 | X129794623Y-42398716D01* 1228 | X129597447Y-42293324D01* 1229 | X129383499Y-42228423D01* 1230 | X129161000Y-42206509D01* 1231 | X128938502Y-42228423D01* 1232 | X128724554Y-42293324D01* 1233 | X128527378Y-42398716D01* 1234 | X128354552Y-42540551D01* 1235 | X128307638Y-42597715D01* 1236 | X128185731Y-42516259D01* 1237 | X128011022Y-42443892D01* 1238 | X127825552Y-42407000D01* 1239 | X127636448Y-42407000D01* 1240 | X127450978Y-42443892D01* 1241 | X127276269Y-42516259D01* 1242 | X127119036Y-42621319D01* 1243 | X126986311Y-42754044D01* 1244 | X126914937Y-42647226D01* 1245 | X126770774Y-42503063D01* 1246 | X126601256Y-42389795D01* 1247 | X126412898Y-42311774D01* 1248 | X126212939Y-42272000D01* 1249 | X126150802Y-42272000D01* 1250 | X124261804Y-40383003D01* 1251 | X124238001Y-40353999D01* 1252 | X124122276Y-40259026D01* 1253 | X123990247Y-40188454D01* 1254 | X123846986Y-40144997D01* 1255 | X123735333Y-40134000D01* 1256 | X123735322Y-40134000D01* 1257 | X123698000Y-40130324D01* 1258 | X123660678Y-40134000D01* 1259 | X121649968Y-40134000D01* 1260 | X121656000Y-40072752D01* 1261 | X121656000Y-39361249D01* 1262 | X121656000Y-39361248D01* 1263 | X128026000Y-39361248D01* 1264 | X128026000Y-40072751D01* 1265 | X128042423Y-40239498D01* 1266 | X128107324Y-40453446D01* 1267 | X128212716Y-40650623D01* 1268 | X128354551Y-40823449D01* 1269 | X128527377Y-40965284D01* 1270 | X128724553Y-41070676D01* 1271 | X128938501Y-41135577D01* 1272 | X129161000Y-41157491D01* 1273 | X129383498Y-41135577D01* 1274 | X129597446Y-41070676D01* 1275 | X129794623Y-40965284D01* 1276 | X129967449Y-40823449D01* 1277 | X130109284Y-40650623D01* 1278 | X130214676Y-40453447D01* 1279 | X130279577Y-40239499D01* 1280 | X130296000Y-40072752D01* 1281 | X130296000Y-39361249D01* 1282 | X130279577Y-39194502D01* 1283 | X130214676Y-38980554D01* 1284 | X130109284Y-38783377D01* 1285 | X129967449Y-38610551D01* 1286 | X129794623Y-38468716D01* 1287 | X129597447Y-38363324D01* 1288 | X129383499Y-38298423D01* 1289 | X129161000Y-38276509D01* 1290 | X128938502Y-38298423D01* 1291 | X128724554Y-38363324D01* 1292 | X128527378Y-38468716D01* 1293 | X128354552Y-38610551D01* 1294 | X128212717Y-38783377D01* 1295 | X128107324Y-38980553D01* 1296 | X128042423Y-39194501D01* 1297 | X128026000Y-39361248D01* 1298 | X121656000Y-39361248D01* 1299 | X121639577Y-39194502D01* 1300 | X121574676Y-38980554D01* 1301 | X121469284Y-38783377D01* 1302 | X121327449Y-38610551D01* 1303 | X121154623Y-38468716D01* 1304 | X120957447Y-38363324D01* 1305 | X120743499Y-38298423D01* 1306 | X120521000Y-38276509D01* 1307 | X120298502Y-38298423D01* 1308 | X120084554Y-38363324D01* 1309 | X119887378Y-38468716D01* 1310 | X119714552Y-38610551D01* 1311 | X119572717Y-38783377D01* 1312 | X119467324Y-38980553D01* 1313 | X119402423Y-39194501D01* 1314 | X119386000Y-39361248D01* 1315 | X119386000Y-39865178D01* 1316 | X119354939Y-39859000D01* 1317 | X119151061Y-39859000D01* 1318 | X118951102Y-39898774D01* 1319 | X118762744Y-39976795D01* 1320 | X118593226Y-40090063D01* 1321 | X118449063Y-40234226D01* 1322 | X118335795Y-40403744D01* 1323 | X118257774Y-40592102D01* 1324 | X118218000Y-40792061D01* 1325 | X118218000Y-40995939D01* 1326 | X118257774Y-41195898D01* 1327 | X118335795Y-41384256D01* 1328 | X118449063Y-41553774D01* 1329 | X118593226Y-41697937D01* 1330 | X118762744Y-41811205D01* 1331 | X118951102Y-41889226D01* 1332 | X119151061Y-41929000D01* 1333 | X119181576Y-41929000D01* 1334 | X119117009Y-41981989D01* 1335 | X119093210Y-42010988D01* 1336 | X119086198Y-42018000D01* 1337 | X119024061Y-42018000D01* 1338 | X118824102Y-42057774D01* 1339 | X118635744Y-42135795D01* 1340 | X118466226Y-42249063D01* 1341 | X118322063Y-42393226D01* 1342 | X118208795Y-42562744D01* 1343 | X118130774Y-42751102D01* 1344 | X118091000Y-42951061D01* 1345 | X115087000Y-42951061D01* 1346 | X115087000Y-37744000D01* 1347 | X135357000Y-37744000D01* 1348 | X135357001Y-56042928D01* 1349 | G37* 1350 | %TD.AperFunction*% 1351 | %TD*% 1352 | M02* 1353 | -------------------------------------------------------------------------------- /hardware/WCH_Linkv0.1/WCH_Link-B_Mask.gbr: -------------------------------------------------------------------------------- 1 | %TF.GenerationSoftware,KiCad,Pcbnew,(5.1.9-0-10_14)*% 2 | %TF.CreationDate,2021-02-02T14:33:23+08:00*% 3 | %TF.ProjectId,WCH_Link,5743485f-4c69-46e6-9b2e-6b696361645f,rev?*% 4 | %TF.SameCoordinates,Original*% 5 | %TF.FileFunction,Soldermask,Bot*% 6 | %TF.FilePolarity,Negative*% 7 | %FSLAX46Y46*% 8 | G04 Gerber Fmt 4.6, Leading zero omitted, Abs format (unit mm)* 9 | G04 Created by KiCad (PCBNEW (5.1.9-0-10_14)) date 2021-02-02 14:33:23* 10 | %MOMM*% 11 | %LPD*% 12 | G01* 13 | G04 APERTURE LIST* 14 | %ADD10O,1.700000X1.700000*% 15 | %ADD11R,1.700000X1.700000*% 16 | %ADD12O,1.000000X1.000000*% 17 | %ADD13R,1.000000X1.000000*% 18 | %ADD14O,1.000000X2.100000*% 19 | %ADD15C,0.650000*% 20 | %ADD16O,1.000000X1.600000*% 21 | G04 APERTURE END LIST* 22 | D10* 23 | %TO.C,REF\u002A\u002A*% 24 | X131699000Y-68834000D03* 25 | X129159000Y-68834000D03* 26 | X126619000Y-68834000D03* 27 | X124079000Y-68834000D03* 28 | X121539000Y-68834000D03* 29 | D11* 30 | X118999000Y-68834000D03* 31 | %TD*% 32 | %TO.C,REF\u002A\u002A*% 33 | X114681000Y-57531000D03* 34 | D10* 35 | X114681000Y-60071000D03* 36 | X114681000Y-62611000D03* 37 | X114681000Y-65151000D03* 38 | %TD*% 39 | %TO.C,REF\u002A\u002A*% 40 | X135763000Y-65151000D03* 41 | X135763000Y-62611000D03* 42 | X135763000Y-60071000D03* 43 | D11* 44 | X135763000Y-57531000D03* 45 | %TD*% 46 | D12* 47 | %TO.C,J2*% 48 | X117221000Y-50927000D03* 49 | D13* 50 | X117221000Y-52197000D03* 51 | %TD*% 52 | D14* 53 | %TO.C,J1*% 54 | X120521000Y-43897000D03* 55 | X129161000Y-43897000D03* 56 | D15* 57 | X127731000Y-43367000D03* 58 | D16* 59 | X129161000Y-39717000D03* 60 | D15* 61 | X121951000Y-43367000D03* 62 | D16* 63 | X120521000Y-39717000D03* 64 | %TD*% 65 | M02* 66 | -------------------------------------------------------------------------------- /hardware/WCH_Linkv0.1/WCH_Link-B_Paste.gbr: -------------------------------------------------------------------------------- 1 | %TF.GenerationSoftware,KiCad,Pcbnew,(5.1.9-0-10_14)*% 2 | %TF.CreationDate,2021-02-02T14:33:23+08:00*% 3 | %TF.ProjectId,WCH_Link,5743485f-4c69-46e6-9b2e-6b696361645f,rev?*% 4 | %TF.SameCoordinates,Original*% 5 | %TF.FileFunction,Paste,Bot*% 6 | %TF.FilePolarity,Positive*% 7 | %FSLAX46Y46*% 8 | G04 Gerber Fmt 4.6, Leading zero omitted, Abs format (unit mm)* 9 | G04 Created by KiCad (PCBNEW (5.1.9-0-10_14)) date 2021-02-02 14:33:23* 10 | %MOMM*% 11 | %LPD*% 12 | G01* 13 | G04 APERTURE LIST* 14 | G04 APERTURE END LIST* 15 | M02* 16 | -------------------------------------------------------------------------------- /hardware/WCH_Linkv0.1/WCH_Link-B_SilkS.gbr: -------------------------------------------------------------------------------- 1 | %TF.GenerationSoftware,KiCad,Pcbnew,(5.1.9-0-10_14)*% 2 | %TF.CreationDate,2021-02-02T14:33:23+08:00*% 3 | %TF.ProjectId,WCH_Link,5743485f-4c69-46e6-9b2e-6b696361645f,rev?*% 4 | %TF.SameCoordinates,Original*% 5 | %TF.FileFunction,Legend,Bot*% 6 | %TF.FilePolarity,Positive*% 7 | %FSLAX46Y46*% 8 | G04 Gerber Fmt 4.6, Leading zero omitted, Abs format (unit mm)* 9 | G04 Created by KiCad (PCBNEW (5.1.9-0-10_14)) date 2021-02-02 14:33:23* 10 | %MOMM*% 11 | %LPD*% 12 | G01* 13 | G04 APERTURE LIST* 14 | G04 APERTURE END LIST* 15 | M02* 16 | -------------------------------------------------------------------------------- /hardware/WCH_Linkv0.1/WCH_Link-Edge_Cuts.gbr: -------------------------------------------------------------------------------- 1 | %TF.GenerationSoftware,KiCad,Pcbnew,(5.1.9-0-10_14)*% 2 | %TF.CreationDate,2021-02-02T14:33:23+08:00*% 3 | %TF.ProjectId,WCH_Link,5743485f-4c69-46e6-9b2e-6b696361645f,rev?*% 4 | %TF.SameCoordinates,Original*% 5 | %TF.FileFunction,Profile,NP*% 6 | %FSLAX46Y46*% 7 | G04 Gerber Fmt 4.6, Leading zero omitted, Abs format (unit mm)* 8 | G04 Created by KiCad (PCBNEW (5.1.9-0-10_14)) date 2021-02-02 14:33:23* 9 | %MOMM*% 10 | %LPD*% 11 | G01* 12 | G04 APERTURE LIST* 13 | %TA.AperFunction,Profile*% 14 | %ADD10C,0.050000*% 15 | %TD*% 16 | G04 APERTURE END LIST* 17 | D10* 18 | X114427000Y-37084000D02* 19 | X136017000Y-37084000D01* 20 | X114427000Y-70485000D02* 21 | X114427000Y-37084000D01* 22 | X136017000Y-70485000D02* 23 | X114427000Y-70485000D01* 24 | X136017000Y-37084000D02* 25 | X136017000Y-70485000D01* 26 | M02* 27 | -------------------------------------------------------------------------------- /hardware/WCH_Linkv0.1/WCH_Link-F_Mask.gbr: -------------------------------------------------------------------------------- 1 | %TF.GenerationSoftware,KiCad,Pcbnew,(5.1.9-0-10_14)*% 2 | %TF.CreationDate,2021-02-02T14:33:23+08:00*% 3 | %TF.ProjectId,WCH_Link,5743485f-4c69-46e6-9b2e-6b696361645f,rev?*% 4 | %TF.SameCoordinates,Original*% 5 | %TF.FileFunction,Soldermask,Top*% 6 | %TF.FilePolarity,Negative*% 7 | %FSLAX46Y46*% 8 | G04 Gerber Fmt 4.6, Leading zero omitted, Abs format (unit mm)* 9 | G04 Created by KiCad (PCBNEW (5.1.9-0-10_14)) date 2021-02-02 14:33:23* 10 | %MOMM*% 11 | %LPD*% 12 | G01* 13 | G04 APERTURE LIST* 14 | %ADD10O,1.700000X1.700000*% 15 | %ADD11R,1.700000X1.700000*% 16 | %ADD12R,1.500000X2.000000*% 17 | %ADD13R,3.800000X2.000000*% 18 | %ADD14O,1.000000X1.000000*% 19 | %ADD15R,1.000000X1.000000*% 20 | %ADD16R,0.600000X1.450000*% 21 | %ADD17R,0.300000X1.450000*% 22 | %ADD18O,1.000000X2.100000*% 23 | %ADD19C,0.650000*% 24 | %ADD20O,1.000000X1.600000*% 25 | G04 APERTURE END LIST* 26 | D10* 27 | %TO.C,REF\u002A\u002A*% 28 | X131699000Y-68834000D03* 29 | X129159000Y-68834000D03* 30 | X126619000Y-68834000D03* 31 | X124079000Y-68834000D03* 32 | X121539000Y-68834000D03* 33 | D11* 34 | X118999000Y-68834000D03* 35 | %TD*% 36 | %TO.C,REF\u002A\u002A*% 37 | X114681000Y-57531000D03* 38 | D10* 39 | X114681000Y-60071000D03* 40 | X114681000Y-62611000D03* 41 | X114681000Y-65151000D03* 42 | %TD*% 43 | %TO.C,REF\u002A\u002A*% 44 | X135763000Y-65151000D03* 45 | X135763000Y-62611000D03* 46 | X135763000Y-60071000D03* 47 | D11* 48 | X135763000Y-57531000D03* 49 | %TD*% 50 | D12* 51 | %TO.C,U2*% 52 | X131840000Y-59080000D03* 53 | X127240000Y-59080000D03* 54 | X129540000Y-59080000D03* 55 | D13* 56 | X129540000Y-65380000D03* 57 | %TD*% 58 | %TO.C,U1*% 59 | G36* 60 | G01* 61 | X123721000Y-50062000D02* 62 | X123421000Y-50062000D01* 63 | G75* 64 | G02* 65 | X123271000Y-49912000I0J150000D01* 66 | G01* 67 | X123271000Y-48212000D01* 68 | G75* 69 | G02* 70 | X123421000Y-48062000I150000J0D01* 71 | G01* 72 | X123721000Y-48062000D01* 73 | G75* 74 | G02* 75 | X123871000Y-48212000I0J-150000D01* 76 | G01* 77 | X123871000Y-49912000D01* 78 | G75* 79 | G02* 80 | X123721000Y-50062000I-150000J0D01* 81 | G01* 82 | G37* 83 | G36* 84 | G01* 85 | X124991000Y-50062000D02* 86 | X124691000Y-50062000D01* 87 | G75* 88 | G02* 89 | X124541000Y-49912000I0J150000D01* 90 | G01* 91 | X124541000Y-48212000D01* 92 | G75* 93 | G02* 94 | X124691000Y-48062000I150000J0D01* 95 | G01* 96 | X124991000Y-48062000D01* 97 | G75* 98 | G02* 99 | X125141000Y-48212000I0J-150000D01* 100 | G01* 101 | X125141000Y-49912000D01* 102 | G75* 103 | G02* 104 | X124991000Y-50062000I-150000J0D01* 105 | G01* 106 | G37* 107 | G36* 108 | G01* 109 | X126261000Y-50062000D02* 110 | X125961000Y-50062000D01* 111 | G75* 112 | G02* 113 | X125811000Y-49912000I0J150000D01* 114 | G01* 115 | X125811000Y-48212000D01* 116 | G75* 117 | G02* 118 | X125961000Y-48062000I150000J0D01* 119 | G01* 120 | X126261000Y-48062000D01* 121 | G75* 122 | G02* 123 | X126411000Y-48212000I0J-150000D01* 124 | G01* 125 | X126411000Y-49912000D01* 126 | G75* 127 | G02* 128 | X126261000Y-50062000I-150000J0D01* 129 | G01* 130 | G37* 131 | G36* 132 | G01* 133 | X127531000Y-50062000D02* 134 | X127231000Y-50062000D01* 135 | G75* 136 | G02* 137 | X127081000Y-49912000I0J150000D01* 138 | G01* 139 | X127081000Y-48212000D01* 140 | G75* 141 | G02* 142 | X127231000Y-48062000I150000J0D01* 143 | G01* 144 | X127531000Y-48062000D01* 145 | G75* 146 | G02* 147 | X127681000Y-48212000I0J-150000D01* 148 | G01* 149 | X127681000Y-49912000D01* 150 | G75* 151 | G02* 152 | X127531000Y-50062000I-150000J0D01* 153 | G01* 154 | G37* 155 | G36* 156 | G01* 157 | X128801000Y-50062000D02* 158 | X128501000Y-50062000D01* 159 | G75* 160 | G02* 161 | X128351000Y-49912000I0J150000D01* 162 | G01* 163 | X128351000Y-48212000D01* 164 | G75* 165 | G02* 166 | X128501000Y-48062000I150000J0D01* 167 | G01* 168 | X128801000Y-48062000D01* 169 | G75* 170 | G02* 171 | X128951000Y-48212000I0J-150000D01* 172 | G01* 173 | X128951000Y-49912000D01* 174 | G75* 175 | G02* 176 | X128801000Y-50062000I-150000J0D01* 177 | G01* 178 | G37* 179 | G36* 180 | G01* 181 | X130071000Y-50062000D02* 182 | X129771000Y-50062000D01* 183 | G75* 184 | G02* 185 | X129621000Y-49912000I0J150000D01* 186 | G01* 187 | X129621000Y-48212000D01* 188 | G75* 189 | G02* 190 | X129771000Y-48062000I150000J0D01* 191 | G01* 192 | X130071000Y-48062000D01* 193 | G75* 194 | G02* 195 | X130221000Y-48212000I0J-150000D01* 196 | G01* 197 | X130221000Y-49912000D01* 198 | G75* 199 | G02* 200 | X130071000Y-50062000I-150000J0D01* 201 | G01* 202 | G37* 203 | G36* 204 | G01* 205 | X131341000Y-50062000D02* 206 | X131041000Y-50062000D01* 207 | G75* 208 | G02* 209 | X130891000Y-49912000I0J150000D01* 210 | G01* 211 | X130891000Y-48212000D01* 212 | G75* 213 | G02* 214 | X131041000Y-48062000I150000J0D01* 215 | G01* 216 | X131341000Y-48062000D01* 217 | G75* 218 | G02* 219 | X131491000Y-48212000I0J-150000D01* 220 | G01* 221 | X131491000Y-49912000D01* 222 | G75* 223 | G02* 224 | X131341000Y-50062000I-150000J0D01* 225 | G01* 226 | G37* 227 | G36* 228 | G01* 229 | X132611000Y-50062000D02* 230 | X132311000Y-50062000D01* 231 | G75* 232 | G02* 233 | X132161000Y-49912000I0J150000D01* 234 | G01* 235 | X132161000Y-48212000D01* 236 | G75* 237 | G02* 238 | X132311000Y-48062000I150000J0D01* 239 | G01* 240 | X132611000Y-48062000D01* 241 | G75* 242 | G02* 243 | X132761000Y-48212000I0J-150000D01* 244 | G01* 245 | X132761000Y-49912000D01* 246 | G75* 247 | G02* 248 | X132611000Y-50062000I-150000J0D01* 249 | G01* 250 | G37* 251 | G36* 252 | G01* 253 | X132611000Y-55062000D02* 254 | X132311000Y-55062000D01* 255 | G75* 256 | G02* 257 | X132161000Y-54912000I0J150000D01* 258 | G01* 259 | X132161000Y-53212000D01* 260 | G75* 261 | G02* 262 | X132311000Y-53062000I150000J0D01* 263 | G01* 264 | X132611000Y-53062000D01* 265 | G75* 266 | G02* 267 | X132761000Y-53212000I0J-150000D01* 268 | G01* 269 | X132761000Y-54912000D01* 270 | G75* 271 | G02* 272 | X132611000Y-55062000I-150000J0D01* 273 | G01* 274 | G37* 275 | G36* 276 | G01* 277 | X131341000Y-55062000D02* 278 | X131041000Y-55062000D01* 279 | G75* 280 | G02* 281 | X130891000Y-54912000I0J150000D01* 282 | G01* 283 | X130891000Y-53212000D01* 284 | G75* 285 | G02* 286 | X131041000Y-53062000I150000J0D01* 287 | G01* 288 | X131341000Y-53062000D01* 289 | G75* 290 | G02* 291 | X131491000Y-53212000I0J-150000D01* 292 | G01* 293 | X131491000Y-54912000D01* 294 | G75* 295 | G02* 296 | X131341000Y-55062000I-150000J0D01* 297 | G01* 298 | G37* 299 | G36* 300 | G01* 301 | X130071000Y-55062000D02* 302 | X129771000Y-55062000D01* 303 | G75* 304 | G02* 305 | X129621000Y-54912000I0J150000D01* 306 | G01* 307 | X129621000Y-53212000D01* 308 | G75* 309 | G02* 310 | X129771000Y-53062000I150000J0D01* 311 | G01* 312 | X130071000Y-53062000D01* 313 | G75* 314 | G02* 315 | X130221000Y-53212000I0J-150000D01* 316 | G01* 317 | X130221000Y-54912000D01* 318 | G75* 319 | G02* 320 | X130071000Y-55062000I-150000J0D01* 321 | G01* 322 | G37* 323 | G36* 324 | G01* 325 | X128801000Y-55062000D02* 326 | X128501000Y-55062000D01* 327 | G75* 328 | G02* 329 | X128351000Y-54912000I0J150000D01* 330 | G01* 331 | X128351000Y-53212000D01* 332 | G75* 333 | G02* 334 | X128501000Y-53062000I150000J0D01* 335 | G01* 336 | X128801000Y-53062000D01* 337 | G75* 338 | G02* 339 | X128951000Y-53212000I0J-150000D01* 340 | G01* 341 | X128951000Y-54912000D01* 342 | G75* 343 | G02* 344 | X128801000Y-55062000I-150000J0D01* 345 | G01* 346 | G37* 347 | G36* 348 | G01* 349 | X127531000Y-55062000D02* 350 | X127231000Y-55062000D01* 351 | G75* 352 | G02* 353 | X127081000Y-54912000I0J150000D01* 354 | G01* 355 | X127081000Y-53212000D01* 356 | G75* 357 | G02* 358 | X127231000Y-53062000I150000J0D01* 359 | G01* 360 | X127531000Y-53062000D01* 361 | G75* 362 | G02* 363 | X127681000Y-53212000I0J-150000D01* 364 | G01* 365 | X127681000Y-54912000D01* 366 | G75* 367 | G02* 368 | X127531000Y-55062000I-150000J0D01* 369 | G01* 370 | G37* 371 | G36* 372 | G01* 373 | X126261000Y-55062000D02* 374 | X125961000Y-55062000D01* 375 | G75* 376 | G02* 377 | X125811000Y-54912000I0J150000D01* 378 | G01* 379 | X125811000Y-53212000D01* 380 | G75* 381 | G02* 382 | X125961000Y-53062000I150000J0D01* 383 | G01* 384 | X126261000Y-53062000D01* 385 | G75* 386 | G02* 387 | X126411000Y-53212000I0J-150000D01* 388 | G01* 389 | X126411000Y-54912000D01* 390 | G75* 391 | G02* 392 | X126261000Y-55062000I-150000J0D01* 393 | G01* 394 | G37* 395 | G36* 396 | G01* 397 | X124991000Y-55062000D02* 398 | X124691000Y-55062000D01* 399 | G75* 400 | G02* 401 | X124541000Y-54912000I0J150000D01* 402 | G01* 403 | X124541000Y-53212000D01* 404 | G75* 405 | G02* 406 | X124691000Y-53062000I150000J0D01* 407 | G01* 408 | X124991000Y-53062000D01* 409 | G75* 410 | G02* 411 | X125141000Y-53212000I0J-150000D01* 412 | G01* 413 | X125141000Y-54912000D01* 414 | G75* 415 | G02* 416 | X124991000Y-55062000I-150000J0D01* 417 | G01* 418 | G37* 419 | G36* 420 | G01* 421 | X123721000Y-55062000D02* 422 | X123421000Y-55062000D01* 423 | G75* 424 | G02* 425 | X123271000Y-54912000I0J150000D01* 426 | G01* 427 | X123271000Y-53212000D01* 428 | G75* 429 | G02* 430 | X123421000Y-53062000I150000J0D01* 431 | G01* 432 | X123721000Y-53062000D01* 433 | G75* 434 | G02* 435 | X123871000Y-53212000I0J-150000D01* 436 | G01* 437 | X123871000Y-54912000D01* 438 | G75* 439 | G02* 440 | X123721000Y-55062000I-150000J0D01* 441 | G01* 442 | G37* 443 | %TD*% 444 | %TO.C,R6*% 445 | G36* 446 | G01* 447 | X118916000Y-54339500D02* 448 | X118916000Y-53864500D01* 449 | G75* 450 | G02* 451 | X119153500Y-53627000I237500J0D01* 452 | G01* 453 | X119653500Y-53627000D01* 454 | G75* 455 | G02* 456 | X119891000Y-53864500I0J-237500D01* 457 | G01* 458 | X119891000Y-54339500D01* 459 | G75* 460 | G02* 461 | X119653500Y-54577000I-237500J0D01* 462 | G01* 463 | X119153500Y-54577000D01* 464 | G75* 465 | G02* 466 | X118916000Y-54339500I0J237500D01* 467 | G01* 468 | G37* 469 | G36* 470 | G01* 471 | X117091000Y-54339500D02* 472 | X117091000Y-53864500D01* 473 | G75* 474 | G02* 475 | X117328500Y-53627000I237500J0D01* 476 | G01* 477 | X117828500Y-53627000D01* 478 | G75* 479 | G02* 480 | X118066000Y-53864500I0J-237500D01* 481 | G01* 482 | X118066000Y-54339500D01* 483 | G75* 484 | G02* 485 | X117828500Y-54577000I-237500J0D01* 486 | G01* 487 | X117328500Y-54577000D01* 488 | G75* 489 | G02* 490 | X117091000Y-54339500I0J237500D01* 491 | G01* 492 | G37* 493 | %TD*% 494 | %TO.C,R5*% 495 | G36* 496 | G01* 497 | X118916000Y-55863500D02* 498 | X118916000Y-55388500D01* 499 | G75* 500 | G02* 501 | X119153500Y-55151000I237500J0D01* 502 | G01* 503 | X119653500Y-55151000D01* 504 | G75* 505 | G02* 506 | X119891000Y-55388500I0J-237500D01* 507 | G01* 508 | X119891000Y-55863500D01* 509 | G75* 510 | G02* 511 | X119653500Y-56101000I-237500J0D01* 512 | G01* 513 | X119153500Y-56101000D01* 514 | G75* 515 | G02* 516 | X118916000Y-55863500I0J237500D01* 517 | G01* 518 | G37* 519 | G36* 520 | G01* 521 | X117091000Y-55863500D02* 522 | X117091000Y-55388500D01* 523 | G75* 524 | G02* 525 | X117328500Y-55151000I237500J0D01* 526 | G01* 527 | X117828500Y-55151000D01* 528 | G75* 529 | G02* 530 | X118066000Y-55388500I0J-237500D01* 531 | G01* 532 | X118066000Y-55863500D01* 533 | G75* 534 | G02* 535 | X117828500Y-56101000I-237500J0D01* 536 | G01* 537 | X117328500Y-56101000D01* 538 | G75* 539 | G02* 540 | X117091000Y-55863500I0J237500D01* 541 | G01* 542 | G37* 543 | %TD*% 544 | %TO.C,R4*% 545 | G36* 546 | G01* 547 | X118347500Y-43644000D02* 548 | X117872500Y-43644000D01* 549 | G75* 550 | G02* 551 | X117635000Y-43406500I0J237500D01* 552 | G01* 553 | X117635000Y-42906500D01* 554 | G75* 555 | G02* 556 | X117872500Y-42669000I237500J0D01* 557 | G01* 558 | X118347500Y-42669000D01* 559 | G75* 560 | G02* 561 | X118585000Y-42906500I0J-237500D01* 562 | G01* 563 | X118585000Y-43406500D01* 564 | G75* 565 | G02* 566 | X118347500Y-43644000I-237500J0D01* 567 | G01* 568 | G37* 569 | G36* 570 | G01* 571 | X118347500Y-45469000D02* 572 | X117872500Y-45469000D01* 573 | G75* 574 | G02* 575 | X117635000Y-45231500I0J237500D01* 576 | G01* 577 | X117635000Y-44731500D01* 578 | G75* 579 | G02* 580 | X117872500Y-44494000I237500J0D01* 581 | G01* 582 | X118347500Y-44494000D01* 583 | G75* 584 | G02* 585 | X118585000Y-44731500I0J-237500D01* 586 | G01* 587 | X118585000Y-45231500D01* 588 | G75* 589 | G02* 590 | X118347500Y-45469000I-237500J0D01* 591 | G01* 592 | G37* 593 | %TD*% 594 | %TO.C,R3*% 595 | G36* 596 | G01* 597 | X117872500Y-40049000D02* 598 | X118347500Y-40049000D01* 599 | G75* 600 | G02* 601 | X118585000Y-40286500I0J-237500D01* 602 | G01* 603 | X118585000Y-40786500D01* 604 | G75* 605 | G02* 606 | X118347500Y-41024000I-237500J0D01* 607 | G01* 608 | X117872500Y-41024000D01* 609 | G75* 610 | G02* 611 | X117635000Y-40786500I0J237500D01* 612 | G01* 613 | X117635000Y-40286500D01* 614 | G75* 615 | G02* 616 | X117872500Y-40049000I237500J0D01* 617 | G01* 618 | G37* 619 | G36* 620 | G01* 621 | X117872500Y-38224000D02* 622 | X118347500Y-38224000D01* 623 | G75* 624 | G02* 625 | X118585000Y-38461500I0J-237500D01* 626 | G01* 627 | X118585000Y-38961500D01* 628 | G75* 629 | G02* 630 | X118347500Y-39199000I-237500J0D01* 631 | G01* 632 | X117872500Y-39199000D01* 633 | G75* 634 | G02* 635 | X117635000Y-38961500I0J237500D01* 636 | G01* 637 | X117635000Y-38461500D01* 638 | G75* 639 | G02* 640 | X117872500Y-38224000I237500J0D01* 641 | G01* 642 | G37* 643 | %TD*% 644 | %TO.C,R2*% 645 | G36* 646 | G01* 647 | X131080500Y-39160000D02* 648 | X131555500Y-39160000D01* 649 | G75* 650 | G02* 651 | X131793000Y-39397500I0J-237500D01* 652 | G01* 653 | X131793000Y-39897500D01* 654 | G75* 655 | G02* 656 | X131555500Y-40135000I-237500J0D01* 657 | G01* 658 | X131080500Y-40135000D01* 659 | G75* 660 | G02* 661 | X130843000Y-39897500I0J237500D01* 662 | G01* 663 | X130843000Y-39397500D01* 664 | G75* 665 | G02* 666 | X131080500Y-39160000I237500J0D01* 667 | G01* 668 | G37* 669 | G36* 670 | G01* 671 | X131080500Y-37335000D02* 672 | X131555500Y-37335000D01* 673 | G75* 674 | G02* 675 | X131793000Y-37572500I0J-237500D01* 676 | G01* 677 | X131793000Y-38072500D01* 678 | G75* 679 | G02* 680 | X131555500Y-38310000I-237500J0D01* 681 | G01* 682 | X131080500Y-38310000D01* 683 | G75* 684 | G02* 685 | X130843000Y-38072500I0J237500D01* 686 | G01* 687 | X130843000Y-37572500D01* 688 | G75* 689 | G02* 690 | X131080500Y-37335000I237500J0D01* 691 | G01* 692 | G37* 693 | %TD*% 694 | %TO.C,R1*% 695 | G36* 696 | G01* 697 | X119396500Y-48939000D02* 698 | X119871500Y-48939000D01* 699 | G75* 700 | G02* 701 | X120109000Y-49176500I0J-237500D01* 702 | G01* 703 | X120109000Y-49676500D01* 704 | G75* 705 | G02* 706 | X119871500Y-49914000I-237500J0D01* 707 | G01* 708 | X119396500Y-49914000D01* 709 | G75* 710 | G02* 711 | X119159000Y-49676500I0J237500D01* 712 | G01* 713 | X119159000Y-49176500D01* 714 | G75* 715 | G02* 716 | X119396500Y-48939000I237500J0D01* 717 | G01* 718 | G37* 719 | G36* 720 | G01* 721 | X119396500Y-47114000D02* 722 | X119871500Y-47114000D01* 723 | G75* 724 | G02* 725 | X120109000Y-47351500I0J-237500D01* 726 | G01* 727 | X120109000Y-47851500D01* 728 | G75* 729 | G02* 730 | X119871500Y-48089000I-237500J0D01* 731 | G01* 732 | X119396500Y-48089000D01* 733 | G75* 734 | G02* 735 | X119159000Y-47851500I0J237500D01* 736 | G01* 737 | X119159000Y-47351500D01* 738 | G75* 739 | G02* 740 | X119396500Y-47114000I237500J0D01* 741 | G01* 742 | G37* 743 | %TD*% 744 | D14* 745 | %TO.C,J2*% 746 | X117221000Y-50927000D03* 747 | D15* 748 | X117221000Y-52197000D03* 749 | %TD*% 750 | D16* 751 | %TO.C,J1*% 752 | X121591000Y-44812000D03* 753 | X122391000Y-44812000D03* 754 | X127291000Y-44812000D03* 755 | X128091000Y-44812000D03* 756 | X128091000Y-44812000D03* 757 | X127291000Y-44812000D03* 758 | X122391000Y-44812000D03* 759 | X121591000Y-44812000D03* 760 | D17* 761 | X126591000Y-44812000D03* 762 | X126091000Y-44812000D03* 763 | X125591000Y-44812000D03* 764 | X124591000Y-44812000D03* 765 | X124091000Y-44812000D03* 766 | X123591000Y-44812000D03* 767 | X123091000Y-44812000D03* 768 | X125091000Y-44812000D03* 769 | D18* 770 | X120521000Y-43897000D03* 771 | X129161000Y-43897000D03* 772 | D19* 773 | X127731000Y-43367000D03* 774 | D20* 775 | X129161000Y-39717000D03* 776 | D19* 777 | X121951000Y-43367000D03* 778 | D20* 779 | X120521000Y-39717000D03* 780 | %TD*% 781 | %TO.C,F1*% 782 | G36* 783 | G01* 784 | X132011000Y-44253999D02* 785 | X132011000Y-45154001D01* 786 | G75* 787 | G02* 788 | X131761001Y-45404000I-249999J0D01* 789 | G01* 790 | X131110999Y-45404000D01* 791 | G75* 792 | G02* 793 | X130861000Y-45154001I0J249999D01* 794 | G01* 795 | X130861000Y-44253999D01* 796 | G75* 797 | G02* 798 | X131110999Y-44004000I249999J0D01* 799 | G01* 800 | X131761001Y-44004000D01* 801 | G75* 802 | G02* 803 | X132011000Y-44253999I0J-249999D01* 804 | G01* 805 | G37* 806 | G36* 807 | G01* 808 | X134061000Y-44253999D02* 809 | X134061000Y-45154001D01* 810 | G75* 811 | G02* 812 | X133811001Y-45404000I-249999J0D01* 813 | G01* 814 | X133160999Y-45404000D01* 815 | G75* 816 | G02* 817 | X132911000Y-45154001I0J249999D01* 818 | G01* 819 | X132911000Y-44253999D01* 820 | G75* 821 | G02* 822 | X133160999Y-44004000I249999J0D01* 823 | G01* 824 | X133811001Y-44004000D01* 825 | G75* 826 | G02* 827 | X134061000Y-44253999I0J-249999D01* 828 | G01* 829 | G37* 830 | %TD*% 831 | %TO.C,D2*% 832 | G36* 833 | G01* 834 | X117364500Y-58770000D02* 835 | X117839500Y-58770000D01* 836 | G75* 837 | G02* 838 | X118077000Y-59007500I0J-237500D01* 839 | G01* 840 | X118077000Y-59582500D01* 841 | G75* 842 | G02* 843 | X117839500Y-59820000I-237500J0D01* 844 | G01* 845 | X117364500Y-59820000D01* 846 | G75* 847 | G02* 848 | X117127000Y-59582500I0J237500D01* 849 | G01* 850 | X117127000Y-59007500D01* 851 | G75* 852 | G02* 853 | X117364500Y-58770000I237500J0D01* 854 | G01* 855 | G37* 856 | G36* 857 | G01* 858 | X117364500Y-57020000D02* 859 | X117839500Y-57020000D01* 860 | G75* 861 | G02* 862 | X118077000Y-57257500I0J-237500D01* 863 | G01* 864 | X118077000Y-57832500D01* 865 | G75* 866 | G02* 867 | X117839500Y-58070000I-237500J0D01* 868 | G01* 869 | X117364500Y-58070000D01* 870 | G75* 871 | G02* 872 | X117127000Y-57832500I0J237500D01* 873 | G01* 874 | X117127000Y-57257500D01* 875 | G75* 876 | G02* 877 | X117364500Y-57020000I237500J0D01* 878 | G01* 879 | G37* 880 | %TD*% 881 | %TO.C,D1*% 882 | G36* 883 | G01* 884 | X119142500Y-58770000D02* 885 | X119617500Y-58770000D01* 886 | G75* 887 | G02* 888 | X119855000Y-59007500I0J-237500D01* 889 | G01* 890 | X119855000Y-59582500D01* 891 | G75* 892 | G02* 893 | X119617500Y-59820000I-237500J0D01* 894 | G01* 895 | X119142500Y-59820000D01* 896 | G75* 897 | G02* 898 | X118905000Y-59582500I0J237500D01* 899 | G01* 900 | X118905000Y-59007500D01* 901 | G75* 902 | G02* 903 | X119142500Y-58770000I237500J0D01* 904 | G01* 905 | G37* 906 | G36* 907 | G01* 908 | X119142500Y-57020000D02* 909 | X119617500Y-57020000D01* 910 | G75* 911 | G02* 912 | X119855000Y-57257500I0J-237500D01* 913 | G01* 914 | X119855000Y-57832500D01* 915 | G75* 916 | G02* 917 | X119617500Y-58070000I-237500J0D01* 918 | G01* 919 | X119142500Y-58070000D01* 920 | G75* 921 | G02* 922 | X118905000Y-57832500I0J237500D01* 923 | G01* 924 | X118905000Y-57257500D01* 925 | G75* 926 | G02* 927 | X119142500Y-57020000I237500J0D01* 928 | G01* 929 | G37* 930 | %TD*% 931 | %TO.C,C7*% 932 | G36* 933 | G01* 934 | X123206500Y-65247000D02* 935 | X123681500Y-65247000D01* 936 | G75* 937 | G02* 938 | X123919000Y-65484500I0J-237500D01* 939 | G01* 940 | X123919000Y-66059500D01* 941 | G75* 942 | G02* 943 | X123681500Y-66297000I-237500J0D01* 944 | G01* 945 | X123206500Y-66297000D01* 946 | G75* 947 | G02* 948 | X122969000Y-66059500I0J237500D01* 949 | G01* 950 | X122969000Y-65484500D01* 951 | G75* 952 | G02* 953 | X123206500Y-65247000I237500J0D01* 954 | G01* 955 | G37* 956 | G36* 957 | G01* 958 | X123206500Y-63497000D02* 959 | X123681500Y-63497000D01* 960 | G75* 961 | G02* 962 | X123919000Y-63734500I0J-237500D01* 963 | G01* 964 | X123919000Y-64309500D01* 965 | G75* 966 | G02* 967 | X123681500Y-64547000I-237500J0D01* 968 | G01* 969 | X123206500Y-64547000D01* 970 | G75* 971 | G02* 972 | X122969000Y-64309500I0J237500D01* 973 | G01* 974 | X122969000Y-63734500D01* 975 | G75* 976 | G02* 977 | X123206500Y-63497000I237500J0D01* 978 | G01* 979 | G37* 980 | %TD*% 981 | %TO.C,C6*% 982 | G36* 983 | G01* 984 | X124730500Y-65247000D02* 985 | X125205500Y-65247000D01* 986 | G75* 987 | G02* 988 | X125443000Y-65484500I0J-237500D01* 989 | G01* 990 | X125443000Y-66059500D01* 991 | G75* 992 | G02* 993 | X125205500Y-66297000I-237500J0D01* 994 | G01* 995 | X124730500Y-66297000D01* 996 | G75* 997 | G02* 998 | X124493000Y-66059500I0J237500D01* 999 | G01* 1000 | X124493000Y-65484500D01* 1001 | G75* 1002 | G02* 1003 | X124730500Y-65247000I237500J0D01* 1004 | G01* 1005 | G37* 1006 | G36* 1007 | G01* 1008 | X124730500Y-63497000D02* 1009 | X125205500Y-63497000D01* 1010 | G75* 1011 | G02* 1012 | X125443000Y-63734500I0J-237500D01* 1013 | G01* 1014 | X125443000Y-64309500D01* 1015 | G75* 1016 | G02* 1017 | X125205500Y-64547000I-237500J0D01* 1018 | G01* 1019 | X124730500Y-64547000D01* 1020 | G75* 1021 | G02* 1022 | X124493000Y-64309500I0J237500D01* 1023 | G01* 1024 | X124493000Y-63734500D01* 1025 | G75* 1026 | G02* 1027 | X124730500Y-63497000I237500J0D01* 1028 | G01* 1029 | G37* 1030 | %TD*% 1031 | %TO.C,C5*% 1032 | G36* 1033 | G01* 1034 | X121903500Y-48164000D02* 1035 | X121428500Y-48164000D01* 1036 | G75* 1037 | G02* 1038 | X121191000Y-47926500I0J237500D01* 1039 | G01* 1040 | X121191000Y-47351500D01* 1041 | G75* 1042 | G02* 1043 | X121428500Y-47114000I237500J0D01* 1044 | G01* 1045 | X121903500Y-47114000D01* 1046 | G75* 1047 | G02* 1048 | X122141000Y-47351500I0J-237500D01* 1049 | G01* 1050 | X122141000Y-47926500D01* 1051 | G75* 1052 | G02* 1053 | X121903500Y-48164000I-237500J0D01* 1054 | G01* 1055 | G37* 1056 | G36* 1057 | G01* 1058 | X121903500Y-49914000D02* 1059 | X121428500Y-49914000D01* 1060 | G75* 1061 | G02* 1062 | X121191000Y-49676500I0J237500D01* 1063 | G01* 1064 | X121191000Y-49101500D01* 1065 | G75* 1066 | G02* 1067 | X121428500Y-48864000I237500J0D01* 1068 | G01* 1069 | X121903500Y-48864000D01* 1070 | G75* 1071 | G02* 1072 | X122141000Y-49101500I0J-237500D01* 1073 | G01* 1074 | X122141000Y-49676500D01* 1075 | G75* 1076 | G02* 1077 | X121903500Y-49914000I-237500J0D01* 1078 | G01* 1079 | G37* 1080 | %TD*% 1081 | %TO.C,C4*% 1082 | G36* 1083 | G01* 1084 | X131984000Y-42180500D02* 1085 | X131984000Y-42655500D01* 1086 | G75* 1087 | G02* 1088 | X131746500Y-42893000I-237500J0D01* 1089 | G01* 1090 | X131171500Y-42893000D01* 1091 | G75* 1092 | G02* 1093 | X130934000Y-42655500I0J237500D01* 1094 | G01* 1095 | X130934000Y-42180500D01* 1096 | G75* 1097 | G02* 1098 | X131171500Y-41943000I237500J0D01* 1099 | G01* 1100 | X131746500Y-41943000D01* 1101 | G75* 1102 | G02* 1103 | X131984000Y-42180500I0J-237500D01* 1104 | G01* 1105 | G37* 1106 | G36* 1107 | G01* 1108 | X133734000Y-42180500D02* 1109 | X133734000Y-42655500D01* 1110 | G75* 1111 | G02* 1112 | X133496500Y-42893000I-237500J0D01* 1113 | G01* 1114 | X132921500Y-42893000D01* 1115 | G75* 1116 | G02* 1117 | X132684000Y-42655500I0J237500D01* 1118 | G01* 1119 | X132684000Y-42180500D01* 1120 | G75* 1121 | G02* 1122 | X132921500Y-41943000I237500J0D01* 1123 | G01* 1124 | X133496500Y-41943000D01* 1125 | G75* 1126 | G02* 1127 | X133734000Y-42180500I0J-237500D01* 1128 | G01* 1129 | G37* 1130 | %TD*% 1131 | %TO.C,C3*% 1132 | G36* 1133 | G01* 1134 | X124730500Y-60435000D02* 1135 | X125205500Y-60435000D01* 1136 | G75* 1137 | G02* 1138 | X125443000Y-60672500I0J-237500D01* 1139 | G01* 1140 | X125443000Y-61247500D01* 1141 | G75* 1142 | G02* 1143 | X125205500Y-61485000I-237500J0D01* 1144 | G01* 1145 | X124730500Y-61485000D01* 1146 | G75* 1147 | G02* 1148 | X124493000Y-61247500I0J237500D01* 1149 | G01* 1150 | X124493000Y-60672500D01* 1151 | G75* 1152 | G02* 1153 | X124730500Y-60435000I237500J0D01* 1154 | G01* 1155 | G37* 1156 | G36* 1157 | G01* 1158 | X124730500Y-58685000D02* 1159 | X125205500Y-58685000D01* 1160 | G75* 1161 | G02* 1162 | X125443000Y-58922500I0J-237500D01* 1163 | G01* 1164 | X125443000Y-59497500D01* 1165 | G75* 1166 | G02* 1167 | X125205500Y-59735000I-237500J0D01* 1168 | G01* 1169 | X124730500Y-59735000D01* 1170 | G75* 1171 | G02* 1172 | X124493000Y-59497500I0J237500D01* 1173 | G01* 1174 | X124493000Y-58922500D01* 1175 | G75* 1176 | G02* 1177 | X124730500Y-58685000I237500J0D01* 1178 | G01* 1179 | G37* 1180 | %TD*% 1181 | %TO.C,C2*% 1182 | G36* 1183 | G01* 1184 | X123206500Y-60421000D02* 1185 | X123681500Y-60421000D01* 1186 | G75* 1187 | G02* 1188 | X123919000Y-60658500I0J-237500D01* 1189 | G01* 1190 | X123919000Y-61233500D01* 1191 | G75* 1192 | G02* 1193 | X123681500Y-61471000I-237500J0D01* 1194 | G01* 1195 | X123206500Y-61471000D01* 1196 | G75* 1197 | G02* 1198 | X122969000Y-61233500I0J237500D01* 1199 | G01* 1200 | X122969000Y-60658500D01* 1201 | G75* 1202 | G02* 1203 | X123206500Y-60421000I237500J0D01* 1204 | G01* 1205 | G37* 1206 | G36* 1207 | G01* 1208 | X123206500Y-58671000D02* 1209 | X123681500Y-58671000D01* 1210 | G75* 1211 | G02* 1212 | X123919000Y-58908500I0J-237500D01* 1213 | G01* 1214 | X123919000Y-59483500D01* 1215 | G75* 1216 | G02* 1217 | X123681500Y-59721000I-237500J0D01* 1218 | G01* 1219 | X123206500Y-59721000D01* 1220 | G75* 1221 | G02* 1222 | X122969000Y-59483500I0J237500D01* 1223 | G01* 1224 | X122969000Y-58908500D01* 1225 | G75* 1226 | G02* 1227 | X123206500Y-58671000I237500J0D01* 1228 | G01* 1229 | G37* 1230 | %TD*% 1231 | %TO.C,C1*% 1232 | G36* 1233 | G01* 1234 | X133239500Y-39085000D02* 1235 | X133714500Y-39085000D01* 1236 | G75* 1237 | G02* 1238 | X133952000Y-39322500I0J-237500D01* 1239 | G01* 1240 | X133952000Y-39897500D01* 1241 | G75* 1242 | G02* 1243 | X133714500Y-40135000I-237500J0D01* 1244 | G01* 1245 | X133239500Y-40135000D01* 1246 | G75* 1247 | G02* 1248 | X133002000Y-39897500I0J237500D01* 1249 | G01* 1250 | X133002000Y-39322500D01* 1251 | G75* 1252 | G02* 1253 | X133239500Y-39085000I237500J0D01* 1254 | G01* 1255 | G37* 1256 | G36* 1257 | G01* 1258 | X133239500Y-37335000D02* 1259 | X133714500Y-37335000D01* 1260 | G75* 1261 | G02* 1262 | X133952000Y-37572500I0J-237500D01* 1263 | G01* 1264 | X133952000Y-38147500D01* 1265 | G75* 1266 | G02* 1267 | X133714500Y-38385000I-237500J0D01* 1268 | G01* 1269 | X133239500Y-38385000D01* 1270 | G75* 1271 | G02* 1272 | X133002000Y-38147500I0J237500D01* 1273 | G01* 1274 | X133002000Y-37572500D01* 1275 | G75* 1276 | G02* 1277 | X133239500Y-37335000I237500J0D01* 1278 | G01* 1279 | G37* 1280 | %TD*% 1281 | M02* 1282 | -------------------------------------------------------------------------------- /hardware/WCH_Linkv0.1/WCH_Link-F_Paste.gbr: -------------------------------------------------------------------------------- 1 | %TF.GenerationSoftware,KiCad,Pcbnew,(5.1.9-0-10_14)*% 2 | %TF.CreationDate,2021-02-02T14:33:23+08:00*% 3 | %TF.ProjectId,WCH_Link,5743485f-4c69-46e6-9b2e-6b696361645f,rev?*% 4 | %TF.SameCoordinates,Original*% 5 | %TF.FileFunction,Paste,Top*% 6 | %TF.FilePolarity,Positive*% 7 | %FSLAX46Y46*% 8 | G04 Gerber Fmt 4.6, Leading zero omitted, Abs format (unit mm)* 9 | G04 Created by KiCad (PCBNEW (5.1.9-0-10_14)) date 2021-02-02 14:33:23* 10 | %MOMM*% 11 | %LPD*% 12 | G01* 13 | G04 APERTURE LIST* 14 | %ADD10R,1.500000X2.000000*% 15 | %ADD11R,3.800000X2.000000*% 16 | %ADD12R,0.600000X1.450000*% 17 | %ADD13R,0.300000X1.450000*% 18 | G04 APERTURE END LIST* 19 | D10* 20 | %TO.C,U2*% 21 | X131840000Y-59080000D03* 22 | X127240000Y-59080000D03* 23 | X129540000Y-59080000D03* 24 | D11* 25 | X129540000Y-65380000D03* 26 | %TD*% 27 | %TO.C,U1*% 28 | G36* 29 | G01* 30 | X123721000Y-50062000D02* 31 | X123421000Y-50062000D01* 32 | G75* 33 | G02* 34 | X123271000Y-49912000I0J150000D01* 35 | G01* 36 | X123271000Y-48212000D01* 37 | G75* 38 | G02* 39 | X123421000Y-48062000I150000J0D01* 40 | G01* 41 | X123721000Y-48062000D01* 42 | G75* 43 | G02* 44 | X123871000Y-48212000I0J-150000D01* 45 | G01* 46 | X123871000Y-49912000D01* 47 | G75* 48 | G02* 49 | X123721000Y-50062000I-150000J0D01* 50 | G01* 51 | G37* 52 | G36* 53 | G01* 54 | X124991000Y-50062000D02* 55 | X124691000Y-50062000D01* 56 | G75* 57 | G02* 58 | X124541000Y-49912000I0J150000D01* 59 | G01* 60 | X124541000Y-48212000D01* 61 | G75* 62 | G02* 63 | X124691000Y-48062000I150000J0D01* 64 | G01* 65 | X124991000Y-48062000D01* 66 | G75* 67 | G02* 68 | X125141000Y-48212000I0J-150000D01* 69 | G01* 70 | X125141000Y-49912000D01* 71 | G75* 72 | G02* 73 | X124991000Y-50062000I-150000J0D01* 74 | G01* 75 | G37* 76 | G36* 77 | G01* 78 | X126261000Y-50062000D02* 79 | X125961000Y-50062000D01* 80 | G75* 81 | G02* 82 | X125811000Y-49912000I0J150000D01* 83 | G01* 84 | X125811000Y-48212000D01* 85 | G75* 86 | G02* 87 | X125961000Y-48062000I150000J0D01* 88 | G01* 89 | X126261000Y-48062000D01* 90 | G75* 91 | G02* 92 | X126411000Y-48212000I0J-150000D01* 93 | G01* 94 | X126411000Y-49912000D01* 95 | G75* 96 | G02* 97 | X126261000Y-50062000I-150000J0D01* 98 | G01* 99 | G37* 100 | G36* 101 | G01* 102 | X127531000Y-50062000D02* 103 | X127231000Y-50062000D01* 104 | G75* 105 | G02* 106 | X127081000Y-49912000I0J150000D01* 107 | G01* 108 | X127081000Y-48212000D01* 109 | G75* 110 | G02* 111 | X127231000Y-48062000I150000J0D01* 112 | G01* 113 | X127531000Y-48062000D01* 114 | G75* 115 | G02* 116 | X127681000Y-48212000I0J-150000D01* 117 | G01* 118 | X127681000Y-49912000D01* 119 | G75* 120 | G02* 121 | X127531000Y-50062000I-150000J0D01* 122 | G01* 123 | G37* 124 | G36* 125 | G01* 126 | X128801000Y-50062000D02* 127 | X128501000Y-50062000D01* 128 | G75* 129 | G02* 130 | X128351000Y-49912000I0J150000D01* 131 | G01* 132 | X128351000Y-48212000D01* 133 | G75* 134 | G02* 135 | X128501000Y-48062000I150000J0D01* 136 | G01* 137 | X128801000Y-48062000D01* 138 | G75* 139 | G02* 140 | X128951000Y-48212000I0J-150000D01* 141 | G01* 142 | X128951000Y-49912000D01* 143 | G75* 144 | G02* 145 | X128801000Y-50062000I-150000J0D01* 146 | G01* 147 | G37* 148 | G36* 149 | G01* 150 | X130071000Y-50062000D02* 151 | X129771000Y-50062000D01* 152 | G75* 153 | G02* 154 | X129621000Y-49912000I0J150000D01* 155 | G01* 156 | X129621000Y-48212000D01* 157 | G75* 158 | G02* 159 | X129771000Y-48062000I150000J0D01* 160 | G01* 161 | X130071000Y-48062000D01* 162 | G75* 163 | G02* 164 | X130221000Y-48212000I0J-150000D01* 165 | G01* 166 | X130221000Y-49912000D01* 167 | G75* 168 | G02* 169 | X130071000Y-50062000I-150000J0D01* 170 | G01* 171 | G37* 172 | G36* 173 | G01* 174 | X131341000Y-50062000D02* 175 | X131041000Y-50062000D01* 176 | G75* 177 | G02* 178 | X130891000Y-49912000I0J150000D01* 179 | G01* 180 | X130891000Y-48212000D01* 181 | G75* 182 | G02* 183 | X131041000Y-48062000I150000J0D01* 184 | G01* 185 | X131341000Y-48062000D01* 186 | G75* 187 | G02* 188 | X131491000Y-48212000I0J-150000D01* 189 | G01* 190 | X131491000Y-49912000D01* 191 | G75* 192 | G02* 193 | X131341000Y-50062000I-150000J0D01* 194 | G01* 195 | G37* 196 | G36* 197 | G01* 198 | X132611000Y-50062000D02* 199 | X132311000Y-50062000D01* 200 | G75* 201 | G02* 202 | X132161000Y-49912000I0J150000D01* 203 | G01* 204 | X132161000Y-48212000D01* 205 | G75* 206 | G02* 207 | X132311000Y-48062000I150000J0D01* 208 | G01* 209 | X132611000Y-48062000D01* 210 | G75* 211 | G02* 212 | X132761000Y-48212000I0J-150000D01* 213 | G01* 214 | X132761000Y-49912000D01* 215 | G75* 216 | G02* 217 | X132611000Y-50062000I-150000J0D01* 218 | G01* 219 | G37* 220 | G36* 221 | G01* 222 | X132611000Y-55062000D02* 223 | X132311000Y-55062000D01* 224 | G75* 225 | G02* 226 | X132161000Y-54912000I0J150000D01* 227 | G01* 228 | X132161000Y-53212000D01* 229 | G75* 230 | G02* 231 | X132311000Y-53062000I150000J0D01* 232 | G01* 233 | X132611000Y-53062000D01* 234 | G75* 235 | G02* 236 | X132761000Y-53212000I0J-150000D01* 237 | G01* 238 | X132761000Y-54912000D01* 239 | G75* 240 | G02* 241 | X132611000Y-55062000I-150000J0D01* 242 | G01* 243 | G37* 244 | G36* 245 | G01* 246 | X131341000Y-55062000D02* 247 | X131041000Y-55062000D01* 248 | G75* 249 | G02* 250 | X130891000Y-54912000I0J150000D01* 251 | G01* 252 | X130891000Y-53212000D01* 253 | G75* 254 | G02* 255 | X131041000Y-53062000I150000J0D01* 256 | G01* 257 | X131341000Y-53062000D01* 258 | G75* 259 | G02* 260 | X131491000Y-53212000I0J-150000D01* 261 | G01* 262 | X131491000Y-54912000D01* 263 | G75* 264 | G02* 265 | X131341000Y-55062000I-150000J0D01* 266 | G01* 267 | G37* 268 | G36* 269 | G01* 270 | X130071000Y-55062000D02* 271 | X129771000Y-55062000D01* 272 | G75* 273 | G02* 274 | X129621000Y-54912000I0J150000D01* 275 | G01* 276 | X129621000Y-53212000D01* 277 | G75* 278 | G02* 279 | X129771000Y-53062000I150000J0D01* 280 | G01* 281 | X130071000Y-53062000D01* 282 | G75* 283 | G02* 284 | X130221000Y-53212000I0J-150000D01* 285 | G01* 286 | X130221000Y-54912000D01* 287 | G75* 288 | G02* 289 | X130071000Y-55062000I-150000J0D01* 290 | G01* 291 | G37* 292 | G36* 293 | G01* 294 | X128801000Y-55062000D02* 295 | X128501000Y-55062000D01* 296 | G75* 297 | G02* 298 | X128351000Y-54912000I0J150000D01* 299 | G01* 300 | X128351000Y-53212000D01* 301 | G75* 302 | G02* 303 | X128501000Y-53062000I150000J0D01* 304 | G01* 305 | X128801000Y-53062000D01* 306 | G75* 307 | G02* 308 | X128951000Y-53212000I0J-150000D01* 309 | G01* 310 | X128951000Y-54912000D01* 311 | G75* 312 | G02* 313 | X128801000Y-55062000I-150000J0D01* 314 | G01* 315 | G37* 316 | G36* 317 | G01* 318 | X127531000Y-55062000D02* 319 | X127231000Y-55062000D01* 320 | G75* 321 | G02* 322 | X127081000Y-54912000I0J150000D01* 323 | G01* 324 | X127081000Y-53212000D01* 325 | G75* 326 | G02* 327 | X127231000Y-53062000I150000J0D01* 328 | G01* 329 | X127531000Y-53062000D01* 330 | G75* 331 | G02* 332 | X127681000Y-53212000I0J-150000D01* 333 | G01* 334 | X127681000Y-54912000D01* 335 | G75* 336 | G02* 337 | X127531000Y-55062000I-150000J0D01* 338 | G01* 339 | G37* 340 | G36* 341 | G01* 342 | X126261000Y-55062000D02* 343 | X125961000Y-55062000D01* 344 | G75* 345 | G02* 346 | X125811000Y-54912000I0J150000D01* 347 | G01* 348 | X125811000Y-53212000D01* 349 | G75* 350 | G02* 351 | X125961000Y-53062000I150000J0D01* 352 | G01* 353 | X126261000Y-53062000D01* 354 | G75* 355 | G02* 356 | X126411000Y-53212000I0J-150000D01* 357 | G01* 358 | X126411000Y-54912000D01* 359 | G75* 360 | G02* 361 | X126261000Y-55062000I-150000J0D01* 362 | G01* 363 | G37* 364 | G36* 365 | G01* 366 | X124991000Y-55062000D02* 367 | X124691000Y-55062000D01* 368 | G75* 369 | G02* 370 | X124541000Y-54912000I0J150000D01* 371 | G01* 372 | X124541000Y-53212000D01* 373 | G75* 374 | G02* 375 | X124691000Y-53062000I150000J0D01* 376 | G01* 377 | X124991000Y-53062000D01* 378 | G75* 379 | G02* 380 | X125141000Y-53212000I0J-150000D01* 381 | G01* 382 | X125141000Y-54912000D01* 383 | G75* 384 | G02* 385 | X124991000Y-55062000I-150000J0D01* 386 | G01* 387 | G37* 388 | G36* 389 | G01* 390 | X123721000Y-55062000D02* 391 | X123421000Y-55062000D01* 392 | G75* 393 | G02* 394 | X123271000Y-54912000I0J150000D01* 395 | G01* 396 | X123271000Y-53212000D01* 397 | G75* 398 | G02* 399 | X123421000Y-53062000I150000J0D01* 400 | G01* 401 | X123721000Y-53062000D01* 402 | G75* 403 | G02* 404 | X123871000Y-53212000I0J-150000D01* 405 | G01* 406 | X123871000Y-54912000D01* 407 | G75* 408 | G02* 409 | X123721000Y-55062000I-150000J0D01* 410 | G01* 411 | G37* 412 | %TD*% 413 | %TO.C,R6*% 414 | G36* 415 | G01* 416 | X118916000Y-54339500D02* 417 | X118916000Y-53864500D01* 418 | G75* 419 | G02* 420 | X119153500Y-53627000I237500J0D01* 421 | G01* 422 | X119653500Y-53627000D01* 423 | G75* 424 | G02* 425 | X119891000Y-53864500I0J-237500D01* 426 | G01* 427 | X119891000Y-54339500D01* 428 | G75* 429 | G02* 430 | X119653500Y-54577000I-237500J0D01* 431 | G01* 432 | X119153500Y-54577000D01* 433 | G75* 434 | G02* 435 | X118916000Y-54339500I0J237500D01* 436 | G01* 437 | G37* 438 | G36* 439 | G01* 440 | X117091000Y-54339500D02* 441 | X117091000Y-53864500D01* 442 | G75* 443 | G02* 444 | X117328500Y-53627000I237500J0D01* 445 | G01* 446 | X117828500Y-53627000D01* 447 | G75* 448 | G02* 449 | X118066000Y-53864500I0J-237500D01* 450 | G01* 451 | X118066000Y-54339500D01* 452 | G75* 453 | G02* 454 | X117828500Y-54577000I-237500J0D01* 455 | G01* 456 | X117328500Y-54577000D01* 457 | G75* 458 | G02* 459 | X117091000Y-54339500I0J237500D01* 460 | G01* 461 | G37* 462 | %TD*% 463 | %TO.C,R5*% 464 | G36* 465 | G01* 466 | X118916000Y-55863500D02* 467 | X118916000Y-55388500D01* 468 | G75* 469 | G02* 470 | X119153500Y-55151000I237500J0D01* 471 | G01* 472 | X119653500Y-55151000D01* 473 | G75* 474 | G02* 475 | X119891000Y-55388500I0J-237500D01* 476 | G01* 477 | X119891000Y-55863500D01* 478 | G75* 479 | G02* 480 | X119653500Y-56101000I-237500J0D01* 481 | G01* 482 | X119153500Y-56101000D01* 483 | G75* 484 | G02* 485 | X118916000Y-55863500I0J237500D01* 486 | G01* 487 | G37* 488 | G36* 489 | G01* 490 | X117091000Y-55863500D02* 491 | X117091000Y-55388500D01* 492 | G75* 493 | G02* 494 | X117328500Y-55151000I237500J0D01* 495 | G01* 496 | X117828500Y-55151000D01* 497 | G75* 498 | G02* 499 | X118066000Y-55388500I0J-237500D01* 500 | G01* 501 | X118066000Y-55863500D01* 502 | G75* 503 | G02* 504 | X117828500Y-56101000I-237500J0D01* 505 | G01* 506 | X117328500Y-56101000D01* 507 | G75* 508 | G02* 509 | X117091000Y-55863500I0J237500D01* 510 | G01* 511 | G37* 512 | %TD*% 513 | %TO.C,R4*% 514 | G36* 515 | G01* 516 | X118347500Y-43644000D02* 517 | X117872500Y-43644000D01* 518 | G75* 519 | G02* 520 | X117635000Y-43406500I0J237500D01* 521 | G01* 522 | X117635000Y-42906500D01* 523 | G75* 524 | G02* 525 | X117872500Y-42669000I237500J0D01* 526 | G01* 527 | X118347500Y-42669000D01* 528 | G75* 529 | G02* 530 | X118585000Y-42906500I0J-237500D01* 531 | G01* 532 | X118585000Y-43406500D01* 533 | G75* 534 | G02* 535 | X118347500Y-43644000I-237500J0D01* 536 | G01* 537 | G37* 538 | G36* 539 | G01* 540 | X118347500Y-45469000D02* 541 | X117872500Y-45469000D01* 542 | G75* 543 | G02* 544 | X117635000Y-45231500I0J237500D01* 545 | G01* 546 | X117635000Y-44731500D01* 547 | G75* 548 | G02* 549 | X117872500Y-44494000I237500J0D01* 550 | G01* 551 | X118347500Y-44494000D01* 552 | G75* 553 | G02* 554 | X118585000Y-44731500I0J-237500D01* 555 | G01* 556 | X118585000Y-45231500D01* 557 | G75* 558 | G02* 559 | X118347500Y-45469000I-237500J0D01* 560 | G01* 561 | G37* 562 | %TD*% 563 | %TO.C,R3*% 564 | G36* 565 | G01* 566 | X117872500Y-40049000D02* 567 | X118347500Y-40049000D01* 568 | G75* 569 | G02* 570 | X118585000Y-40286500I0J-237500D01* 571 | G01* 572 | X118585000Y-40786500D01* 573 | G75* 574 | G02* 575 | X118347500Y-41024000I-237500J0D01* 576 | G01* 577 | X117872500Y-41024000D01* 578 | G75* 579 | G02* 580 | X117635000Y-40786500I0J237500D01* 581 | G01* 582 | X117635000Y-40286500D01* 583 | G75* 584 | G02* 585 | X117872500Y-40049000I237500J0D01* 586 | G01* 587 | G37* 588 | G36* 589 | G01* 590 | X117872500Y-38224000D02* 591 | X118347500Y-38224000D01* 592 | G75* 593 | G02* 594 | X118585000Y-38461500I0J-237500D01* 595 | G01* 596 | X118585000Y-38961500D01* 597 | G75* 598 | G02* 599 | X118347500Y-39199000I-237500J0D01* 600 | G01* 601 | X117872500Y-39199000D01* 602 | G75* 603 | G02* 604 | X117635000Y-38961500I0J237500D01* 605 | G01* 606 | X117635000Y-38461500D01* 607 | G75* 608 | G02* 609 | X117872500Y-38224000I237500J0D01* 610 | G01* 611 | G37* 612 | %TD*% 613 | %TO.C,R2*% 614 | G36* 615 | G01* 616 | X131080500Y-39160000D02* 617 | X131555500Y-39160000D01* 618 | G75* 619 | G02* 620 | X131793000Y-39397500I0J-237500D01* 621 | G01* 622 | X131793000Y-39897500D01* 623 | G75* 624 | G02* 625 | X131555500Y-40135000I-237500J0D01* 626 | G01* 627 | X131080500Y-40135000D01* 628 | G75* 629 | G02* 630 | X130843000Y-39897500I0J237500D01* 631 | G01* 632 | X130843000Y-39397500D01* 633 | G75* 634 | G02* 635 | X131080500Y-39160000I237500J0D01* 636 | G01* 637 | G37* 638 | G36* 639 | G01* 640 | X131080500Y-37335000D02* 641 | X131555500Y-37335000D01* 642 | G75* 643 | G02* 644 | X131793000Y-37572500I0J-237500D01* 645 | G01* 646 | X131793000Y-38072500D01* 647 | G75* 648 | G02* 649 | X131555500Y-38310000I-237500J0D01* 650 | G01* 651 | X131080500Y-38310000D01* 652 | G75* 653 | G02* 654 | X130843000Y-38072500I0J237500D01* 655 | G01* 656 | X130843000Y-37572500D01* 657 | G75* 658 | G02* 659 | X131080500Y-37335000I237500J0D01* 660 | G01* 661 | G37* 662 | %TD*% 663 | %TO.C,R1*% 664 | G36* 665 | G01* 666 | X119396500Y-48939000D02* 667 | X119871500Y-48939000D01* 668 | G75* 669 | G02* 670 | X120109000Y-49176500I0J-237500D01* 671 | G01* 672 | X120109000Y-49676500D01* 673 | G75* 674 | G02* 675 | X119871500Y-49914000I-237500J0D01* 676 | G01* 677 | X119396500Y-49914000D01* 678 | G75* 679 | G02* 680 | X119159000Y-49676500I0J237500D01* 681 | G01* 682 | X119159000Y-49176500D01* 683 | G75* 684 | G02* 685 | X119396500Y-48939000I237500J0D01* 686 | G01* 687 | G37* 688 | G36* 689 | G01* 690 | X119396500Y-47114000D02* 691 | X119871500Y-47114000D01* 692 | G75* 693 | G02* 694 | X120109000Y-47351500I0J-237500D01* 695 | G01* 696 | X120109000Y-47851500D01* 697 | G75* 698 | G02* 699 | X119871500Y-48089000I-237500J0D01* 700 | G01* 701 | X119396500Y-48089000D01* 702 | G75* 703 | G02* 704 | X119159000Y-47851500I0J237500D01* 705 | G01* 706 | X119159000Y-47351500D01* 707 | G75* 708 | G02* 709 | X119396500Y-47114000I237500J0D01* 710 | G01* 711 | G37* 712 | %TD*% 713 | D12* 714 | %TO.C,J1*% 715 | X121591000Y-44812000D03* 716 | X122391000Y-44812000D03* 717 | X127291000Y-44812000D03* 718 | X128091000Y-44812000D03* 719 | X128091000Y-44812000D03* 720 | X127291000Y-44812000D03* 721 | X122391000Y-44812000D03* 722 | X121591000Y-44812000D03* 723 | D13* 724 | X126591000Y-44812000D03* 725 | X126091000Y-44812000D03* 726 | X125591000Y-44812000D03* 727 | X124591000Y-44812000D03* 728 | X124091000Y-44812000D03* 729 | X123591000Y-44812000D03* 730 | X123091000Y-44812000D03* 731 | X125091000Y-44812000D03* 732 | %TD*% 733 | %TO.C,F1*% 734 | G36* 735 | G01* 736 | X132011000Y-44253999D02* 737 | X132011000Y-45154001D01* 738 | G75* 739 | G02* 740 | X131761001Y-45404000I-249999J0D01* 741 | G01* 742 | X131110999Y-45404000D01* 743 | G75* 744 | G02* 745 | X130861000Y-45154001I0J249999D01* 746 | G01* 747 | X130861000Y-44253999D01* 748 | G75* 749 | G02* 750 | X131110999Y-44004000I249999J0D01* 751 | G01* 752 | X131761001Y-44004000D01* 753 | G75* 754 | G02* 755 | X132011000Y-44253999I0J-249999D01* 756 | G01* 757 | G37* 758 | G36* 759 | G01* 760 | X134061000Y-44253999D02* 761 | X134061000Y-45154001D01* 762 | G75* 763 | G02* 764 | X133811001Y-45404000I-249999J0D01* 765 | G01* 766 | X133160999Y-45404000D01* 767 | G75* 768 | G02* 769 | X132911000Y-45154001I0J249999D01* 770 | G01* 771 | X132911000Y-44253999D01* 772 | G75* 773 | G02* 774 | X133160999Y-44004000I249999J0D01* 775 | G01* 776 | X133811001Y-44004000D01* 777 | G75* 778 | G02* 779 | X134061000Y-44253999I0J-249999D01* 780 | G01* 781 | G37* 782 | %TD*% 783 | %TO.C,D2*% 784 | G36* 785 | G01* 786 | X117364500Y-58770000D02* 787 | X117839500Y-58770000D01* 788 | G75* 789 | G02* 790 | X118077000Y-59007500I0J-237500D01* 791 | G01* 792 | X118077000Y-59582500D01* 793 | G75* 794 | G02* 795 | X117839500Y-59820000I-237500J0D01* 796 | G01* 797 | X117364500Y-59820000D01* 798 | G75* 799 | G02* 800 | X117127000Y-59582500I0J237500D01* 801 | G01* 802 | X117127000Y-59007500D01* 803 | G75* 804 | G02* 805 | X117364500Y-58770000I237500J0D01* 806 | G01* 807 | G37* 808 | G36* 809 | G01* 810 | X117364500Y-57020000D02* 811 | X117839500Y-57020000D01* 812 | G75* 813 | G02* 814 | X118077000Y-57257500I0J-237500D01* 815 | G01* 816 | X118077000Y-57832500D01* 817 | G75* 818 | G02* 819 | X117839500Y-58070000I-237500J0D01* 820 | G01* 821 | X117364500Y-58070000D01* 822 | G75* 823 | G02* 824 | X117127000Y-57832500I0J237500D01* 825 | G01* 826 | X117127000Y-57257500D01* 827 | G75* 828 | G02* 829 | X117364500Y-57020000I237500J0D01* 830 | G01* 831 | G37* 832 | %TD*% 833 | %TO.C,D1*% 834 | G36* 835 | G01* 836 | X119142500Y-58770000D02* 837 | X119617500Y-58770000D01* 838 | G75* 839 | G02* 840 | X119855000Y-59007500I0J-237500D01* 841 | G01* 842 | X119855000Y-59582500D01* 843 | G75* 844 | G02* 845 | X119617500Y-59820000I-237500J0D01* 846 | G01* 847 | X119142500Y-59820000D01* 848 | G75* 849 | G02* 850 | X118905000Y-59582500I0J237500D01* 851 | G01* 852 | X118905000Y-59007500D01* 853 | G75* 854 | G02* 855 | X119142500Y-58770000I237500J0D01* 856 | G01* 857 | G37* 858 | G36* 859 | G01* 860 | X119142500Y-57020000D02* 861 | X119617500Y-57020000D01* 862 | G75* 863 | G02* 864 | X119855000Y-57257500I0J-237500D01* 865 | G01* 866 | X119855000Y-57832500D01* 867 | G75* 868 | G02* 869 | X119617500Y-58070000I-237500J0D01* 870 | G01* 871 | X119142500Y-58070000D01* 872 | G75* 873 | G02* 874 | X118905000Y-57832500I0J237500D01* 875 | G01* 876 | X118905000Y-57257500D01* 877 | G75* 878 | G02* 879 | X119142500Y-57020000I237500J0D01* 880 | G01* 881 | G37* 882 | %TD*% 883 | %TO.C,C7*% 884 | G36* 885 | G01* 886 | X123206500Y-65247000D02* 887 | X123681500Y-65247000D01* 888 | G75* 889 | G02* 890 | X123919000Y-65484500I0J-237500D01* 891 | G01* 892 | X123919000Y-66059500D01* 893 | G75* 894 | G02* 895 | X123681500Y-66297000I-237500J0D01* 896 | G01* 897 | X123206500Y-66297000D01* 898 | G75* 899 | G02* 900 | X122969000Y-66059500I0J237500D01* 901 | G01* 902 | X122969000Y-65484500D01* 903 | G75* 904 | G02* 905 | X123206500Y-65247000I237500J0D01* 906 | G01* 907 | G37* 908 | G36* 909 | G01* 910 | X123206500Y-63497000D02* 911 | X123681500Y-63497000D01* 912 | G75* 913 | G02* 914 | X123919000Y-63734500I0J-237500D01* 915 | G01* 916 | X123919000Y-64309500D01* 917 | G75* 918 | G02* 919 | X123681500Y-64547000I-237500J0D01* 920 | G01* 921 | X123206500Y-64547000D01* 922 | G75* 923 | G02* 924 | X122969000Y-64309500I0J237500D01* 925 | G01* 926 | X122969000Y-63734500D01* 927 | G75* 928 | G02* 929 | X123206500Y-63497000I237500J0D01* 930 | G01* 931 | G37* 932 | %TD*% 933 | %TO.C,C6*% 934 | G36* 935 | G01* 936 | X124730500Y-65247000D02* 937 | X125205500Y-65247000D01* 938 | G75* 939 | G02* 940 | X125443000Y-65484500I0J-237500D01* 941 | G01* 942 | X125443000Y-66059500D01* 943 | G75* 944 | G02* 945 | X125205500Y-66297000I-237500J0D01* 946 | G01* 947 | X124730500Y-66297000D01* 948 | G75* 949 | G02* 950 | X124493000Y-66059500I0J237500D01* 951 | G01* 952 | X124493000Y-65484500D01* 953 | G75* 954 | G02* 955 | X124730500Y-65247000I237500J0D01* 956 | G01* 957 | G37* 958 | G36* 959 | G01* 960 | X124730500Y-63497000D02* 961 | X125205500Y-63497000D01* 962 | G75* 963 | G02* 964 | X125443000Y-63734500I0J-237500D01* 965 | G01* 966 | X125443000Y-64309500D01* 967 | G75* 968 | G02* 969 | X125205500Y-64547000I-237500J0D01* 970 | G01* 971 | X124730500Y-64547000D01* 972 | G75* 973 | G02* 974 | X124493000Y-64309500I0J237500D01* 975 | G01* 976 | X124493000Y-63734500D01* 977 | G75* 978 | G02* 979 | X124730500Y-63497000I237500J0D01* 980 | G01* 981 | G37* 982 | %TD*% 983 | %TO.C,C5*% 984 | G36* 985 | G01* 986 | X121903500Y-48164000D02* 987 | X121428500Y-48164000D01* 988 | G75* 989 | G02* 990 | X121191000Y-47926500I0J237500D01* 991 | G01* 992 | X121191000Y-47351500D01* 993 | G75* 994 | G02* 995 | X121428500Y-47114000I237500J0D01* 996 | G01* 997 | X121903500Y-47114000D01* 998 | G75* 999 | G02* 1000 | X122141000Y-47351500I0J-237500D01* 1001 | G01* 1002 | X122141000Y-47926500D01* 1003 | G75* 1004 | G02* 1005 | X121903500Y-48164000I-237500J0D01* 1006 | G01* 1007 | G37* 1008 | G36* 1009 | G01* 1010 | X121903500Y-49914000D02* 1011 | X121428500Y-49914000D01* 1012 | G75* 1013 | G02* 1014 | X121191000Y-49676500I0J237500D01* 1015 | G01* 1016 | X121191000Y-49101500D01* 1017 | G75* 1018 | G02* 1019 | X121428500Y-48864000I237500J0D01* 1020 | G01* 1021 | X121903500Y-48864000D01* 1022 | G75* 1023 | G02* 1024 | X122141000Y-49101500I0J-237500D01* 1025 | G01* 1026 | X122141000Y-49676500D01* 1027 | G75* 1028 | G02* 1029 | X121903500Y-49914000I-237500J0D01* 1030 | G01* 1031 | G37* 1032 | %TD*% 1033 | %TO.C,C4*% 1034 | G36* 1035 | G01* 1036 | X131984000Y-42180500D02* 1037 | X131984000Y-42655500D01* 1038 | G75* 1039 | G02* 1040 | X131746500Y-42893000I-237500J0D01* 1041 | G01* 1042 | X131171500Y-42893000D01* 1043 | G75* 1044 | G02* 1045 | X130934000Y-42655500I0J237500D01* 1046 | G01* 1047 | X130934000Y-42180500D01* 1048 | G75* 1049 | G02* 1050 | X131171500Y-41943000I237500J0D01* 1051 | G01* 1052 | X131746500Y-41943000D01* 1053 | G75* 1054 | G02* 1055 | X131984000Y-42180500I0J-237500D01* 1056 | G01* 1057 | G37* 1058 | G36* 1059 | G01* 1060 | X133734000Y-42180500D02* 1061 | X133734000Y-42655500D01* 1062 | G75* 1063 | G02* 1064 | X133496500Y-42893000I-237500J0D01* 1065 | G01* 1066 | X132921500Y-42893000D01* 1067 | G75* 1068 | G02* 1069 | X132684000Y-42655500I0J237500D01* 1070 | G01* 1071 | X132684000Y-42180500D01* 1072 | G75* 1073 | G02* 1074 | X132921500Y-41943000I237500J0D01* 1075 | G01* 1076 | X133496500Y-41943000D01* 1077 | G75* 1078 | G02* 1079 | X133734000Y-42180500I0J-237500D01* 1080 | G01* 1081 | G37* 1082 | %TD*% 1083 | %TO.C,C3*% 1084 | G36* 1085 | G01* 1086 | X124730500Y-60435000D02* 1087 | X125205500Y-60435000D01* 1088 | G75* 1089 | G02* 1090 | X125443000Y-60672500I0J-237500D01* 1091 | G01* 1092 | X125443000Y-61247500D01* 1093 | G75* 1094 | G02* 1095 | X125205500Y-61485000I-237500J0D01* 1096 | G01* 1097 | X124730500Y-61485000D01* 1098 | G75* 1099 | G02* 1100 | X124493000Y-61247500I0J237500D01* 1101 | G01* 1102 | X124493000Y-60672500D01* 1103 | G75* 1104 | G02* 1105 | X124730500Y-60435000I237500J0D01* 1106 | G01* 1107 | G37* 1108 | G36* 1109 | G01* 1110 | X124730500Y-58685000D02* 1111 | X125205500Y-58685000D01* 1112 | G75* 1113 | G02* 1114 | X125443000Y-58922500I0J-237500D01* 1115 | G01* 1116 | X125443000Y-59497500D01* 1117 | G75* 1118 | G02* 1119 | X125205500Y-59735000I-237500J0D01* 1120 | G01* 1121 | X124730500Y-59735000D01* 1122 | G75* 1123 | G02* 1124 | X124493000Y-59497500I0J237500D01* 1125 | G01* 1126 | X124493000Y-58922500D01* 1127 | G75* 1128 | G02* 1129 | X124730500Y-58685000I237500J0D01* 1130 | G01* 1131 | G37* 1132 | %TD*% 1133 | %TO.C,C2*% 1134 | G36* 1135 | G01* 1136 | X123206500Y-60421000D02* 1137 | X123681500Y-60421000D01* 1138 | G75* 1139 | G02* 1140 | X123919000Y-60658500I0J-237500D01* 1141 | G01* 1142 | X123919000Y-61233500D01* 1143 | G75* 1144 | G02* 1145 | X123681500Y-61471000I-237500J0D01* 1146 | G01* 1147 | X123206500Y-61471000D01* 1148 | G75* 1149 | G02* 1150 | X122969000Y-61233500I0J237500D01* 1151 | G01* 1152 | X122969000Y-60658500D01* 1153 | G75* 1154 | G02* 1155 | X123206500Y-60421000I237500J0D01* 1156 | G01* 1157 | G37* 1158 | G36* 1159 | G01* 1160 | X123206500Y-58671000D02* 1161 | X123681500Y-58671000D01* 1162 | G75* 1163 | G02* 1164 | X123919000Y-58908500I0J-237500D01* 1165 | G01* 1166 | X123919000Y-59483500D01* 1167 | G75* 1168 | G02* 1169 | X123681500Y-59721000I-237500J0D01* 1170 | G01* 1171 | X123206500Y-59721000D01* 1172 | G75* 1173 | G02* 1174 | X122969000Y-59483500I0J237500D01* 1175 | G01* 1176 | X122969000Y-58908500D01* 1177 | G75* 1178 | G02* 1179 | X123206500Y-58671000I237500J0D01* 1180 | G01* 1181 | G37* 1182 | %TD*% 1183 | %TO.C,C1*% 1184 | G36* 1185 | G01* 1186 | X133239500Y-39085000D02* 1187 | X133714500Y-39085000D01* 1188 | G75* 1189 | G02* 1190 | X133952000Y-39322500I0J-237500D01* 1191 | G01* 1192 | X133952000Y-39897500D01* 1193 | G75* 1194 | G02* 1195 | X133714500Y-40135000I-237500J0D01* 1196 | G01* 1197 | X133239500Y-40135000D01* 1198 | G75* 1199 | G02* 1200 | X133002000Y-39897500I0J237500D01* 1201 | G01* 1202 | X133002000Y-39322500D01* 1203 | G75* 1204 | G02* 1205 | X133239500Y-39085000I237500J0D01* 1206 | G01* 1207 | G37* 1208 | G36* 1209 | G01* 1210 | X133239500Y-37335000D02* 1211 | X133714500Y-37335000D01* 1212 | G75* 1213 | G02* 1214 | X133952000Y-37572500I0J-237500D01* 1215 | G01* 1216 | X133952000Y-38147500D01* 1217 | G75* 1218 | G02* 1219 | X133714500Y-38385000I-237500J0D01* 1220 | G01* 1221 | X133239500Y-38385000D01* 1222 | G75* 1223 | G02* 1224 | X133002000Y-38147500I0J237500D01* 1225 | G01* 1226 | X133002000Y-37572500D01* 1227 | G75* 1228 | G02* 1229 | X133239500Y-37335000I237500J0D01* 1230 | G01* 1231 | G37* 1232 | %TD*% 1233 | M02* 1234 | -------------------------------------------------------------------------------- /hardware/WCH_Linkv0.1/WCH_Link-F_SilkS.gbr: -------------------------------------------------------------------------------- 1 | %TF.GenerationSoftware,KiCad,Pcbnew,(5.1.9-0-10_14)*% 2 | %TF.CreationDate,2021-02-02T14:33:23+08:00*% 3 | %TF.ProjectId,WCH_Link,5743485f-4c69-46e6-9b2e-6b696361645f,rev?*% 4 | %TF.SameCoordinates,Original*% 5 | %TF.FileFunction,Legend,Top*% 6 | %TF.FilePolarity,Positive*% 7 | %FSLAX46Y46*% 8 | G04 Gerber Fmt 4.6, Leading zero omitted, Abs format (unit mm)* 9 | G04 Created by KiCad (PCBNEW (5.1.9-0-10_14)) date 2021-02-02 14:33:23* 10 | %MOMM*% 11 | %LPD*% 12 | G01* 13 | G04 APERTURE LIST* 14 | %ADD10C,0.150000*% 15 | %ADD11C,0.120000*% 16 | G04 APERTURE END LIST* 17 | D10* 18 | X123396952Y-51014380D02* 19 | X123396952Y-51728666D01* 20 | X123349333Y-51871523D01* 21 | X123254095Y-51966761D01* 22 | X123111238Y-52014380D01* 23 | X123016000Y-52014380D01* 24 | X124349333Y-52014380D02* 25 | X123873142Y-52014380D01* 26 | X123873142Y-51014380D01* 27 | X125254095Y-51919142D02* 28 | X125206476Y-51966761D01* 29 | X125063619Y-52014380D01* 30 | X124968380Y-52014380D01* 31 | X124825523Y-51966761D01* 32 | X124730285Y-51871523D01* 33 | X124682666Y-51776285D01* 34 | X124635047Y-51585809D01* 35 | X124635047Y-51442952D01* 36 | X124682666Y-51252476D01* 37 | X124730285Y-51157238D01* 38 | X124825523Y-51062000D01* 39 | X124968380Y-51014380D01* 40 | X125063619Y-51014380D01* 41 | X125206476Y-51062000D01* 42 | X125254095Y-51109619D01* 43 | X125968380Y-51014380D02* 44 | X125968380Y-51728666D01* 45 | X125920761Y-51871523D01* 46 | X125825523Y-51966761D01* 47 | X125682666Y-52014380D01* 48 | X125587428Y-52014380D01* 49 | X126920761Y-52014380D02* 50 | X126444571Y-52014380D01* 51 | X126444571Y-51014380D01* 52 | X127825523Y-51919142D02* 53 | X127777904Y-51966761D01* 54 | X127635047Y-52014380D01* 55 | X127539809Y-52014380D01* 56 | X127396952Y-51966761D01* 57 | X127301714Y-51871523D01* 58 | X127254095Y-51776285D01* 59 | X127206476Y-51585809D01* 60 | X127206476Y-51442952D01* 61 | X127254095Y-51252476D01* 62 | X127301714Y-51157238D01* 63 | X127396952Y-51062000D01* 64 | X127539809Y-51014380D01* 65 | X127635047Y-51014380D01* 66 | X127777904Y-51062000D01* 67 | X127825523Y-51109619D01* 68 | X128539809Y-51014380D02* 69 | X128539809Y-51728666D01* 70 | X128492190Y-51871523D01* 71 | X128396952Y-51966761D01* 72 | X128254095Y-52014380D01* 73 | X128158857Y-52014380D01* 74 | X129492190Y-52014380D02* 75 | X129016000Y-52014380D01* 76 | X129016000Y-51014380D01* 77 | X130396952Y-51919142D02* 78 | X130349333Y-51966761D01* 79 | X130206476Y-52014380D01* 80 | X130111238Y-52014380D01* 81 | X129968380Y-51966761D01* 82 | X129873142Y-51871523D01* 83 | X129825523Y-51776285D01* 84 | X129777904Y-51585809D01* 85 | X129777904Y-51442952D01* 86 | X129825523Y-51252476D01* 87 | X129873142Y-51157238D01* 88 | X129968380Y-51062000D01* 89 | X130111238Y-51014380D01* 90 | X130206476Y-51014380D01* 91 | X130349333Y-51062000D01* 92 | X130396952Y-51109619D01* 93 | X131111238Y-51014380D02* 94 | X131111238Y-51728666D01* 95 | X131063619Y-51871523D01* 96 | X130968380Y-51966761D01* 97 | X130825523Y-52014380D01* 98 | X130730285Y-52014380D01* 99 | X132063619Y-52014380D02* 100 | X131587428Y-52014380D01* 101 | X131587428Y-51014380D01* 102 | X132968380Y-51919142D02* 103 | X132920761Y-51966761D01* 104 | X132777904Y-52014380D01* 105 | X132682666Y-52014380D01* 106 | X132539809Y-51966761D01* 107 | X132444571Y-51871523D01* 108 | X132396952Y-51776285D01* 109 | X132349333Y-51585809D01* 110 | X132349333Y-51442952D01* 111 | X132396952Y-51252476D01* 112 | X132444571Y-51157238D01* 113 | X132539809Y-51062000D01* 114 | X132682666Y-51014380D01* 115 | X132777904Y-51014380D01* 116 | X132920761Y-51062000D01* 117 | X132968380Y-51109619D01* 118 | X117803990Y-65760600D02* 119 | X117726580Y-65721895D01* 120 | X117610466Y-65721895D01* 121 | X117494352Y-65760600D01* 122 | X117416942Y-65838009D01* 123 | X117378238Y-65915419D01* 124 | X117339533Y-66070238D01* 125 | X117339533Y-66186352D01* 126 | X117378238Y-66341171D01* 127 | X117416942Y-66418580D01* 128 | X117494352Y-66495990D01* 129 | X117610466Y-66534695D01* 130 | X117687876Y-66534695D01* 131 | X117803990Y-66495990D01* 132 | X117842695Y-66457285D01* 133 | X117842695Y-66186352D01* 134 | X117687876Y-66186352D01* 135 | X118655495Y-66457285D02* 136 | X118616790Y-66495990D01* 137 | X118500676Y-66534695D01* 138 | X118423266Y-66534695D01* 139 | X118307152Y-66495990D01* 140 | X118229742Y-66418580D01* 141 | X118191038Y-66341171D01* 142 | X118152333Y-66186352D01* 143 | X118152333Y-66070238D01* 144 | X118191038Y-65915419D01* 145 | X118229742Y-65838009D01* 146 | X118307152Y-65760600D01* 147 | X118423266Y-65721895D01* 148 | X118500676Y-65721895D01* 149 | X118616790Y-65760600D01* 150 | X118655495Y-65799304D01* 151 | X119003838Y-66534695D02* 152 | X119003838Y-65721895D01* 153 | X119197361Y-65721895D01* 154 | X119313476Y-65760600D01* 155 | X119390885Y-65838009D01* 156 | X119429590Y-65915419D01* 157 | X119468295Y-66070238D01* 158 | X119468295Y-66186352D01* 159 | X119429590Y-66341171D01* 160 | X119390885Y-66418580D01* 161 | X119313476Y-66495990D01* 162 | X119197361Y-66534695D01* 163 | X119003838Y-66534695D01* 164 | X119700523Y-65721895D02* 165 | X120164980Y-65721895D01* 166 | X119932752Y-66534695D02* 167 | X119932752Y-65721895D01* 168 | X120900371Y-66534695D02* 169 | X120629438Y-66147647D01* 170 | X120435914Y-66534695D02* 171 | X120435914Y-65721895D01* 172 | X120745552Y-65721895D01* 173 | X120822961Y-65760600D01* 174 | X120861666Y-65799304D01* 175 | X120900371Y-65876714D01* 176 | X120900371Y-65992828D01* 177 | X120861666Y-66070238D01* 178 | X120822961Y-66108942D01* 179 | X120745552Y-66147647D01* 180 | X120435914Y-66147647D01* 181 | X121171304Y-65721895D02* 182 | X121674466Y-65721895D01* 183 | X121403533Y-66031533D01* 184 | X121519647Y-66031533D01* 185 | X121597057Y-66070238D01* 186 | X121635761Y-66108942D01* 187 | X121674466Y-66186352D01* 188 | X121674466Y-66379876D01* 189 | X121635761Y-66457285D01* 190 | X121597057Y-66495990D01* 191 | X121519647Y-66534695D01* 192 | X121287419Y-66534695D01* 193 | X121210009Y-66495990D01* 194 | X121171304Y-66457285D01* 195 | X120405676Y-60239095D02* 196 | X120908838Y-60239095D01* 197 | X120637904Y-60548733D01* 198 | X120754019Y-60548733D01* 199 | X120831428Y-60587438D01* 200 | X120870133Y-60626142D01* 201 | X120908838Y-60703552D01* 202 | X120908838Y-60897076D01* 203 | X120870133Y-60974485D01* 204 | X120831428Y-61013190D01* 205 | X120754019Y-61051895D01* 206 | X120521790Y-61051895D01* 207 | X120444380Y-61013190D01* 208 | X120405676Y-60974485D01* 209 | X121141066Y-60239095D02* 210 | X121412000Y-61051895D01* 211 | X121682933Y-60239095D01* 212 | X121876457Y-60239095D02* 213 | X122379619Y-60239095D01* 214 | X122108685Y-60548733D01* 215 | X122224800Y-60548733D01* 216 | X122302209Y-60587438D01* 217 | X122340914Y-60626142D01* 218 | X122379619Y-60703552D01* 219 | X122379619Y-60897076D01* 220 | X122340914Y-60974485D01* 221 | X122302209Y-61013190D01* 222 | X122224800Y-61051895D01* 223 | X121992571Y-61051895D01* 224 | X121915161Y-61013190D01* 225 | X121876457Y-60974485D01* 226 | X120792723Y-61608295D02* 227 | X121257180Y-61608295D01* 228 | X121024952Y-62421095D02* 229 | X121024952Y-61608295D01* 230 | X121450704Y-61608295D02* 231 | X121992571Y-62421095D01* 232 | X121992571Y-61608295D02* 233 | X121450704Y-62421095D01* 234 | X121276533Y-63790295D02* 235 | X121005600Y-63403247D01* 236 | X120812076Y-63790295D02* 237 | X120812076Y-62977495D01* 238 | X121121714Y-62977495D01* 239 | X121199123Y-63016200D01* 240 | X121237828Y-63054904D01* 241 | X121276533Y-63132314D01* 242 | X121276533Y-63248428D01* 243 | X121237828Y-63325838D01* 244 | X121199123Y-63364542D01* 245 | X121121714Y-63403247D01* 246 | X120812076Y-63403247D01* 247 | X121547466Y-62977495D02* 248 | X122089333Y-63790295D01* 249 | X122089333Y-62977495D02* 250 | X121547466Y-63790295D01* 251 | X120792723Y-64385400D02* 252 | X120715314Y-64346695D01* 253 | X120599200Y-64346695D01* 254 | X120483085Y-64385400D01* 255 | X120405676Y-64462809D01* 256 | X120366971Y-64540219D01* 257 | X120328266Y-64695038D01* 258 | X120328266Y-64811152D01* 259 | X120366971Y-64965971D01* 260 | X120405676Y-65043380D01* 261 | X120483085Y-65120790D01* 262 | X120599200Y-65159495D01* 263 | X120676609Y-65159495D01* 264 | X120792723Y-65120790D01* 265 | X120831428Y-65082085D01* 266 | X120831428Y-64811152D01* 267 | X120676609Y-64811152D01* 268 | X121179771Y-65159495D02* 269 | X121179771Y-64346695D01* 270 | X121644228Y-65159495D01* 271 | X121644228Y-64346695D01* 272 | X122031276Y-65159495D02* 273 | X122031276Y-64346695D01* 274 | X122224800Y-64346695D01* 275 | X122340914Y-64385400D01* 276 | X122418323Y-64462809D01* 277 | X122457028Y-64540219D01* 278 | X122495733Y-64695038D01* 279 | X122495733Y-64811152D01* 280 | X122457028Y-64965971D01* 281 | X122418323Y-65043380D01* 282 | X122340914Y-65120790D01* 283 | X122224800Y-65159495D01* 284 | X122031276Y-65159495D01* 285 | X117320180Y-60239095D02* 286 | X116933133Y-60239095D01* 287 | X116894428Y-60626142D01* 288 | X116933133Y-60587438D01* 289 | X117010542Y-60548733D01* 290 | X117204066Y-60548733D01* 291 | X117281476Y-60587438D01* 292 | X117320180Y-60626142D01* 293 | X117358885Y-60703552D01* 294 | X117358885Y-60897076D01* 295 | X117320180Y-60974485D01* 296 | X117281476Y-61013190D01* 297 | X117204066Y-61051895D01* 298 | X117010542Y-61051895D01* 299 | X116933133Y-61013190D01* 300 | X116894428Y-60974485D01* 301 | X117591114Y-60239095D02* 302 | X117862047Y-61051895D01* 303 | X118132980Y-60239095D01* 304 | X116642847Y-62421095D02* 305 | X116642847Y-61608295D01* 306 | X116836371Y-61608295D01* 307 | X116952485Y-61647000D01* 308 | X117029895Y-61724409D01* 309 | X117068600Y-61801819D01* 310 | X117107304Y-61956638D01* 311 | X117107304Y-62072752D01* 312 | X117068600Y-62227571D01* 313 | X117029895Y-62304980D01* 314 | X116952485Y-62382390D01* 315 | X116836371Y-62421095D01* 316 | X116642847Y-62421095D01* 317 | X117455647Y-62421095D02* 318 | X117455647Y-61608295D01* 319 | X117997514Y-61608295D02* 320 | X118152333Y-61608295D01* 321 | X118229742Y-61647000D01* 322 | X118307152Y-61724409D01* 323 | X118345857Y-61879228D01* 324 | X118345857Y-62150161D01* 325 | X118307152Y-62304980D01* 326 | X118229742Y-62382390D01* 327 | X118152333Y-62421095D01* 328 | X117997514Y-62421095D01* 329 | X117920104Y-62382390D01* 330 | X117842695Y-62304980D01* 331 | X117803990Y-62150161D01* 332 | X117803990Y-61879228D01* 333 | X117842695Y-61724409D01* 334 | X117920104Y-61647000D01* 335 | X117997514Y-61608295D01* 336 | X116991190Y-63712885D02* 337 | X116952485Y-63751590D01* 338 | X116836371Y-63790295D01* 339 | X116758961Y-63790295D01* 340 | X116642847Y-63751590D01* 341 | X116565438Y-63674180D01* 342 | X116526733Y-63596771D01* 343 | X116488028Y-63441952D01* 344 | X116488028Y-63325838D01* 345 | X116526733Y-63171019D01* 346 | X116565438Y-63093609D01* 347 | X116642847Y-63016200D01* 348 | X116758961Y-62977495D01* 349 | X116836371Y-62977495D01* 350 | X116952485Y-63016200D01* 351 | X116991190Y-63054904D01* 352 | X117726580Y-63790295D02* 353 | X117339533Y-63790295D01* 354 | X117339533Y-62977495D01* 355 | X117997514Y-63790295D02* 356 | X117997514Y-62977495D01* 357 | X118461971Y-63790295D02* 358 | X118113628Y-63325838D01* 359 | X118461971Y-62977495D02* 360 | X117997514Y-63441952D01* 361 | X116855723Y-64385400D02* 362 | X116778314Y-64346695D01* 363 | X116662200Y-64346695D01* 364 | X116546085Y-64385400D01* 365 | X116468676Y-64462809D01* 366 | X116429971Y-64540219D01* 367 | X116391266Y-64695038D01* 368 | X116391266Y-64811152D01* 369 | X116429971Y-64965971D01* 370 | X116468676Y-65043380D01* 371 | X116546085Y-65120790D01* 372 | X116662200Y-65159495D01* 373 | X116739609Y-65159495D01* 374 | X116855723Y-65120790D01* 375 | X116894428Y-65082085D01* 376 | X116894428Y-64811152D01* 377 | X116739609Y-64811152D01* 378 | X117242771Y-65159495D02* 379 | X117242771Y-64346695D01* 380 | X117707228Y-65159495D01* 381 | X117707228Y-64346695D01* 382 | X118094276Y-65159495D02* 383 | X118094276Y-64346695D01* 384 | X118287800Y-64346695D01* 385 | X118403914Y-64385400D01* 386 | X118481323Y-64462809D01* 387 | X118520028Y-64540219D01* 388 | X118558733Y-64695038D01* 389 | X118558733Y-64811152D01* 390 | X118520028Y-64965971D01* 391 | X118481323Y-65043380D01* 392 | X118403914Y-65120790D01* 393 | X118287800Y-65159495D01* 394 | X118094276Y-65159495D01* 395 | D11* 396 | %TO.C,REF\u002A\u002A*% 397 | X120269000Y-70164000D02* 398 | X120269000Y-67504000D01* 399 | X120269000Y-70164000D02* 400 | X133029000Y-70164000D01* 401 | X133029000Y-70164000D02* 402 | X133029000Y-67504000D01* 403 | X120269000Y-67504000D02* 404 | X133029000Y-67504000D01* 405 | X117669000Y-67504000D02* 406 | X118999000Y-67504000D01* 407 | X117669000Y-68834000D02* 408 | X117669000Y-67504000D01* 409 | X113351000Y-58801000D02* 410 | X116011000Y-58801000D01* 411 | X113351000Y-58801000D02* 412 | X113351000Y-66481000D01* 413 | X113351000Y-66481000D02* 414 | X116011000Y-66481000D01* 415 | X116011000Y-58801000D02* 416 | X116011000Y-66481000D01* 417 | X116011000Y-56201000D02* 418 | X116011000Y-57531000D01* 419 | X114681000Y-56201000D02* 420 | X116011000Y-56201000D01* 421 | X134433000Y-58801000D02* 422 | X137093000Y-58801000D01* 423 | X134433000Y-58801000D02* 424 | X134433000Y-66481000D01* 425 | X134433000Y-66481000D02* 426 | X137093000Y-66481000D01* 427 | X137093000Y-58801000D02* 428 | X137093000Y-66481000D01* 429 | X137093000Y-56201000D02* 430 | X137093000Y-57531000D01* 431 | X135763000Y-56201000D02* 432 | X137093000Y-56201000D01* 433 | %TO.C,U2*% 434 | X126130000Y-64140000D02* 435 | X127390000Y-64140000D01* 436 | X132950000Y-64140000D02* 437 | X131690000Y-64140000D01* 438 | X126130000Y-60380000D02* 439 | X126130000Y-64140000D01* 440 | X132950000Y-58130000D02* 441 | X132950000Y-64140000D01* 442 | %TO.C,U1*% 443 | X133076000Y-51562000D02* 444 | X133076000Y-49612000D01* 445 | X133076000Y-51562000D02* 446 | X133076000Y-53512000D01* 447 | X122956000Y-51562000D02* 448 | X122956000Y-49612000D01* 449 | X122956000Y-51562000D02* 450 | X122956000Y-55062000D01* 451 | %TO.C,R6*% 452 | X118236276Y-53579500D02* 453 | X118745724Y-53579500D01* 454 | X118236276Y-54624500D02* 455 | X118745724Y-54624500D01* 456 | %TO.C,R5*% 457 | X118236276Y-55103500D02* 458 | X118745724Y-55103500D01* 459 | X118236276Y-56148500D02* 460 | X118745724Y-56148500D01* 461 | %TO.C,R4*% 462 | X117587500Y-44323724D02* 463 | X117587500Y-43814276D01* 464 | X118632500Y-44323724D02* 465 | X118632500Y-43814276D01* 466 | %TO.C,R3*% 467 | X118632500Y-39369276D02* 468 | X118632500Y-39878724D01* 469 | X117587500Y-39369276D02* 470 | X117587500Y-39878724D01* 471 | %TO.C,R2*% 472 | X131840500Y-38480276D02* 473 | X131840500Y-38989724D01* 474 | X130795500Y-38480276D02* 475 | X130795500Y-38989724D01* 476 | %TO.C,R1*% 477 | X120156500Y-48259276D02* 478 | X120156500Y-48768724D01* 479 | X119111500Y-48259276D02* 480 | X119111500Y-48768724D01* 481 | %TO.C,J2*% 482 | X116461000Y-52892000D02* 483 | X115661000Y-52892000D01* 484 | X115661000Y-52892000D02* 485 | X115661000Y-50232000D01* 486 | X115661000Y-50232000D02* 487 | X116781000Y-50232000D01* 488 | X116781000Y-50232000D02* 489 | X116781000Y-50307323D01* 490 | X115661000Y-52457000D02* 491 | X111661000Y-52457000D01* 492 | X111661000Y-52457000D02* 493 | X111661000Y-51937000D01* 494 | X111661000Y-51937000D02* 495 | X115661000Y-51937000D01* 496 | X115661000Y-52397000D02* 497 | X111661000Y-52397000D01* 498 | X115661000Y-52277000D02* 499 | X111661000Y-52277000D01* 500 | X115661000Y-52157000D02* 501 | X111661000Y-52157000D01* 502 | X115661000Y-52037000D02* 503 | X111661000Y-52037000D01* 504 | X116461000Y-51562000D02* 505 | X115661000Y-51562000D01* 506 | X115661000Y-51187000D02* 507 | X111661000Y-51187000D01* 508 | X111661000Y-51187000D02* 509 | X111661000Y-50667000D01* 510 | X111661000Y-50667000D02* 511 | X115661000Y-50667000D01* 512 | X117981000Y-52197000D02* 513 | X117981000Y-52957000D01* 514 | X117981000Y-52957000D02* 515 | X117221000Y-52957000D01* 516 | %TO.C,J1*% 517 | X129541000Y-38767000D02* 518 | X129541000Y-36867000D01* 519 | X129541000Y-42667000D02* 520 | X129541000Y-40667000D01* 521 | X120141000Y-38767000D02* 522 | X120141000Y-36867000D01* 523 | X120141000Y-42667000D02* 524 | X120141000Y-40667000D01* 525 | X129541000Y-36867000D02* 526 | X120141000Y-36867000D01* 527 | %TO.C,F1*% 528 | X132722252Y-45414000D02* 529 | X132199748Y-45414000D01* 530 | X132722252Y-43994000D02* 531 | X132199748Y-43994000D01* 532 | %TO.C,D2*% 533 | X118337000Y-59220000D02* 534 | X118337000Y-56760000D01* 535 | X118337000Y-56760000D02* 536 | X116867000Y-56760000D01* 537 | X116867000Y-56760000D02* 538 | X116867000Y-59220000D01* 539 | %TO.C,D1*% 540 | X120115000Y-59220000D02* 541 | X120115000Y-56760000D01* 542 | X120115000Y-56760000D02* 543 | X118645000Y-56760000D01* 544 | X118645000Y-56760000D02* 545 | X118645000Y-59220000D01* 546 | %TO.C,C7*% 547 | X123954000Y-64725733D02* 548 | X123954000Y-65068267D01* 549 | X122934000Y-64725733D02* 550 | X122934000Y-65068267D01* 551 | %TO.C,C6*% 552 | X125478000Y-64725733D02* 553 | X125478000Y-65068267D01* 554 | X124458000Y-64725733D02* 555 | X124458000Y-65068267D01* 556 | %TO.C,C5*% 557 | X121156000Y-48685267D02* 558 | X121156000Y-48342733D01* 559 | X122176000Y-48685267D02* 560 | X122176000Y-48342733D01* 561 | %TO.C,C4*% 562 | X132505267Y-42928000D02* 563 | X132162733Y-42928000D01* 564 | X132505267Y-41908000D02* 565 | X132162733Y-41908000D01* 566 | %TO.C,C3*% 567 | X125478000Y-59913733D02* 568 | X125478000Y-60256267D01* 569 | X124458000Y-59913733D02* 570 | X124458000Y-60256267D01* 571 | %TO.C,C2*% 572 | X123954000Y-59899733D02* 573 | X123954000Y-60242267D01* 574 | X122934000Y-59899733D02* 575 | X122934000Y-60242267D01* 576 | %TO.C,C1*% 577 | X133987000Y-38563733D02* 578 | X133987000Y-38906267D01* 579 | X132967000Y-38563733D02* 580 | X132967000Y-38906267D01* 581 | %TO.C,REF\u002A\u002A*% 582 | D10* 583 | X117546380Y-75628333D02* 584 | X117070190Y-75961666D01* 585 | X117546380Y-76199761D02* 586 | X116546380Y-76199761D01* 587 | X116546380Y-75818809D01* 588 | X116594000Y-75723571D01* 589 | X116641619Y-75675952D01* 590 | X116736857Y-75628333D01* 591 | X116879714Y-75628333D01* 592 | X116974952Y-75675952D01* 593 | X117022571Y-75723571D01* 594 | X117070190Y-75818809D01* 595 | X117070190Y-76199761D01* 596 | X117022571Y-75199761D02* 597 | X117022571Y-74866428D01* 598 | X117546380Y-74723571D02* 599 | X117546380Y-75199761D01* 600 | X116546380Y-75199761D01* 601 | X116546380Y-74723571D01* 602 | X117022571Y-73961666D02* 603 | X117022571Y-74295000D01* 604 | X117546380Y-74295000D02* 605 | X116546380Y-74295000D01* 606 | X116546380Y-73818809D01* 607 | X116546380Y-73295000D02* 608 | X116784476Y-73295000D01* 609 | X116689238Y-73533095D02* 610 | X116784476Y-73295000D01* 611 | X116689238Y-73056904D01* 612 | X116974952Y-73437857D02* 613 | X116784476Y-73295000D01* 614 | X116974952Y-73152142D01* 615 | X116546380Y-72533095D02* 616 | X116784476Y-72533095D01* 617 | X116689238Y-72771190D02* 618 | X116784476Y-72533095D01* 619 | X116689238Y-72295000D01* 620 | X116974952Y-72675952D02* 621 | X116784476Y-72533095D01* 622 | X116974952Y-72390238D01* 623 | X108267666Y-56713380D02* 624 | X107934333Y-56237190D01* 625 | X107696238Y-56713380D02* 626 | X107696238Y-55713380D01* 627 | X108077190Y-55713380D01* 628 | X108172428Y-55761000D01* 629 | X108220047Y-55808619D01* 630 | X108267666Y-55903857D01* 631 | X108267666Y-56046714D01* 632 | X108220047Y-56141952D01* 633 | X108172428Y-56189571D01* 634 | X108077190Y-56237190D01* 635 | X107696238Y-56237190D01* 636 | X108696238Y-56189571D02* 637 | X109029571Y-56189571D01* 638 | X109172428Y-56713380D02* 639 | X108696238Y-56713380D01* 640 | X108696238Y-55713380D01* 641 | X109172428Y-55713380D01* 642 | X109934333Y-56189571D02* 643 | X109601000Y-56189571D01* 644 | X109601000Y-56713380D02* 645 | X109601000Y-55713380D01* 646 | X110077190Y-55713380D01* 647 | X110601000Y-55713380D02* 648 | X110601000Y-55951476D01* 649 | X110362904Y-55856238D02* 650 | X110601000Y-55951476D01* 651 | X110839095Y-55856238D01* 652 | X110458142Y-56141952D02* 653 | X110601000Y-55951476D01* 654 | X110743857Y-56141952D01* 655 | X111362904Y-55713380D02* 656 | X111362904Y-55951476D01* 657 | X111124809Y-55856238D02* 658 | X111362904Y-55951476D01* 659 | X111601000Y-55856238D01* 660 | X111220047Y-56141952D02* 661 | X111362904Y-55951476D01* 662 | X111505761Y-56141952D01* 663 | X139890666Y-55951380D02* 664 | X139557333Y-55475190D01* 665 | X139319238Y-55951380D02* 666 | X139319238Y-54951380D01* 667 | X139700190Y-54951380D01* 668 | X139795428Y-54999000D01* 669 | X139843047Y-55046619D01* 670 | X139890666Y-55141857D01* 671 | X139890666Y-55284714D01* 672 | X139843047Y-55379952D01* 673 | X139795428Y-55427571D01* 674 | X139700190Y-55475190D01* 675 | X139319238Y-55475190D01* 676 | X140319238Y-55427571D02* 677 | X140652571Y-55427571D01* 678 | X140795428Y-55951380D02* 679 | X140319238Y-55951380D01* 680 | X140319238Y-54951380D01* 681 | X140795428Y-54951380D01* 682 | X141557333Y-55427571D02* 683 | X141224000Y-55427571D01* 684 | X141224000Y-55951380D02* 685 | X141224000Y-54951380D01* 686 | X141700190Y-54951380D01* 687 | X142224000Y-54951380D02* 688 | X142224000Y-55189476D01* 689 | X141985904Y-55094238D02* 690 | X142224000Y-55189476D01* 691 | X142462095Y-55094238D01* 692 | X142081142Y-55379952D02* 693 | X142224000Y-55189476D01* 694 | X142366857Y-55379952D01* 695 | X142985904Y-54951380D02* 696 | X142985904Y-55189476D01* 697 | X142747809Y-55094238D02* 698 | X142985904Y-55189476D01* 699 | X143224000Y-55094238D01* 700 | X142843047Y-55379952D02* 701 | X142985904Y-55189476D01* 702 | X143128761Y-55379952D01* 703 | %TO.C,U2*% 704 | X129119380Y-62991904D02* 705 | X129928904Y-62991904D01* 706 | X130024142Y-62944285D01* 707 | X130071761Y-62896666D01* 708 | X130119380Y-62801428D01* 709 | X130119380Y-62610952D01* 710 | X130071761Y-62515714D01* 711 | X130024142Y-62468095D01* 712 | X129928904Y-62420476D01* 713 | X129119380Y-62420476D01* 714 | X129214619Y-61991904D02* 715 | X129167000Y-61944285D01* 716 | X129119380Y-61849047D01* 717 | X129119380Y-61610952D01* 718 | X129167000Y-61515714D01* 719 | X129214619Y-61468095D01* 720 | X129309857Y-61420476D01* 721 | X129405095Y-61420476D01* 722 | X129547952Y-61468095D01* 723 | X130119380Y-62039523D01* 724 | X130119380Y-61420476D01* 725 | %TO.C,U1*% 726 | X139787380Y-51942904D02* 727 | X140596904Y-51942904D01* 728 | X140692142Y-51895285D01* 729 | X140739761Y-51847666D01* 730 | X140787380Y-51752428D01* 731 | X140787380Y-51561952D01* 732 | X140739761Y-51466714D01* 733 | X140692142Y-51419095D01* 734 | X140596904Y-51371476D01* 735 | X139787380Y-51371476D01* 736 | X140787380Y-50371476D02* 737 | X140787380Y-50942904D01* 738 | X140787380Y-50657190D02* 739 | X139787380Y-50657190D01* 740 | X139930238Y-50752428D01* 741 | X140025476Y-50847666D01* 742 | X140073095Y-50942904D01* 743 | %TO.C,R6*% 744 | X120864333Y-54681380D02* 745 | X120531000Y-54205190D01* 746 | X120292904Y-54681380D02* 747 | X120292904Y-53681380D01* 748 | X120673857Y-53681380D01* 749 | X120769095Y-53729000D01* 750 | X120816714Y-53776619D01* 751 | X120864333Y-53871857D01* 752 | X120864333Y-54014714D01* 753 | X120816714Y-54109952D01* 754 | X120769095Y-54157571D01* 755 | X120673857Y-54205190D01* 756 | X120292904Y-54205190D01* 757 | X121721476Y-53681380D02* 758 | X121531000Y-53681380D01* 759 | X121435761Y-53729000D01* 760 | X121388142Y-53776619D01* 761 | X121292904Y-53919476D01* 762 | X121245285Y-54109952D01* 763 | X121245285Y-54490904D01* 764 | X121292904Y-54586142D01* 765 | X121340523Y-54633761D01* 766 | X121435761Y-54681380D01* 767 | X121626238Y-54681380D01* 768 | X121721476Y-54633761D01* 769 | X121769095Y-54586142D01* 770 | X121816714Y-54490904D01* 771 | X121816714Y-54252809D01* 772 | X121769095Y-54157571D01* 773 | X121721476Y-54109952D01* 774 | X121626238Y-54062333D01* 775 | X121435761Y-54062333D01* 776 | X121340523Y-54109952D01* 777 | X121292904Y-54157571D01* 778 | X121245285Y-54252809D01* 779 | %TO.C,R5*% 780 | X120991333Y-56205380D02* 781 | X120658000Y-55729190D01* 782 | X120419904Y-56205380D02* 783 | X120419904Y-55205380D01* 784 | X120800857Y-55205380D01* 785 | X120896095Y-55253000D01* 786 | X120943714Y-55300619D01* 787 | X120991333Y-55395857D01* 788 | X120991333Y-55538714D01* 789 | X120943714Y-55633952D01* 790 | X120896095Y-55681571D01* 791 | X120800857Y-55729190D01* 792 | X120419904Y-55729190D01* 793 | X121896095Y-55205380D02* 794 | X121419904Y-55205380D01* 795 | X121372285Y-55681571D01* 796 | X121419904Y-55633952D01* 797 | X121515142Y-55586333D01* 798 | X121753238Y-55586333D01* 799 | X121848476Y-55633952D01* 800 | X121896095Y-55681571D01* 801 | X121943714Y-55776809D01* 802 | X121943714Y-56014904D01* 803 | X121896095Y-56110142D01* 804 | X121848476Y-56157761D01* 805 | X121753238Y-56205380D01* 806 | X121515142Y-56205380D01* 807 | X121419904Y-56157761D01* 808 | X121372285Y-56110142D01* 809 | %TO.C,R4*% 810 | X122753380Y-41060666D02* 811 | X122277190Y-41394000D01* 812 | X122753380Y-41632095D02* 813 | X121753380Y-41632095D01* 814 | X121753380Y-41251142D01* 815 | X121801000Y-41155904D01* 816 | X121848619Y-41108285D01* 817 | X121943857Y-41060666D01* 818 | X122086714Y-41060666D01* 819 | X122181952Y-41108285D01* 820 | X122229571Y-41155904D01* 821 | X122277190Y-41251142D01* 822 | X122277190Y-41632095D01* 823 | X122086714Y-40203523D02* 824 | X122753380Y-40203523D01* 825 | X121705761Y-40441619D02* 826 | X122420047Y-40679714D01* 827 | X122420047Y-40060666D01* 828 | %TO.C,R3*% 829 | X122753380Y-39155666D02* 830 | X122277190Y-39489000D01* 831 | X122753380Y-39727095D02* 832 | X121753380Y-39727095D01* 833 | X121753380Y-39346142D01* 834 | X121801000Y-39250904D01* 835 | X121848619Y-39203285D01* 836 | X121943857Y-39155666D01* 837 | X122086714Y-39155666D01* 838 | X122181952Y-39203285D01* 839 | X122229571Y-39250904D01* 840 | X122277190Y-39346142D01* 841 | X122277190Y-39727095D01* 842 | X121753380Y-38822333D02* 843 | X121753380Y-38203285D01* 844 | X122134333Y-38536619D01* 845 | X122134333Y-38393761D01* 846 | X122181952Y-38298523D01* 847 | X122229571Y-38250904D01* 848 | X122324809Y-38203285D01* 849 | X122562904Y-38203285D01* 850 | X122658142Y-38250904D01* 851 | X122705761Y-38298523D01* 852 | X122753380Y-38393761D01* 853 | X122753380Y-38679476D01* 854 | X122705761Y-38774714D01* 855 | X122658142Y-38822333D01* 856 | %TO.C,R2*% 857 | X126944380Y-39282666D02* 858 | X126468190Y-39616000D01* 859 | X126944380Y-39854095D02* 860 | X125944380Y-39854095D01* 861 | X125944380Y-39473142D01* 862 | X125992000Y-39377904D01* 863 | X126039619Y-39330285D01* 864 | X126134857Y-39282666D01* 865 | X126277714Y-39282666D01* 866 | X126372952Y-39330285D01* 867 | X126420571Y-39377904D01* 868 | X126468190Y-39473142D01* 869 | X126468190Y-39854095D01* 870 | X126039619Y-38901714D02* 871 | X125992000Y-38854095D01* 872 | X125944380Y-38758857D01* 873 | X125944380Y-38520761D01* 874 | X125992000Y-38425523D01* 875 | X126039619Y-38377904D01* 876 | X126134857Y-38330285D01* 877 | X126230095Y-38330285D01* 878 | X126372952Y-38377904D01* 879 | X126944380Y-38949333D01* 880 | X126944380Y-38330285D01* 881 | %TO.C,R1*% 882 | X120086380Y-51474666D02* 883 | X119610190Y-51808000D01* 884 | X120086380Y-52046095D02* 885 | X119086380Y-52046095D01* 886 | X119086380Y-51665142D01* 887 | X119134000Y-51569904D01* 888 | X119181619Y-51522285D01* 889 | X119276857Y-51474666D01* 890 | X119419714Y-51474666D01* 891 | X119514952Y-51522285D01* 892 | X119562571Y-51569904D01* 893 | X119610190Y-51665142D01* 894 | X119610190Y-52046095D01* 895 | X120086380Y-50522285D02* 896 | X120086380Y-51093714D01* 897 | X120086380Y-50808000D02* 898 | X119086380Y-50808000D01* 899 | X119229238Y-50903238D01* 900 | X119324476Y-50998476D01* 901 | X119372095Y-51093714D01* 902 | %TO.C,J2*% 903 | X109648666Y-52919380D02* 904 | X109648666Y-53633666D01* 905 | X109601047Y-53776523D01* 906 | X109505809Y-53871761D01* 907 | X109362952Y-53919380D01* 908 | X109267714Y-53919380D01* 909 | X110077238Y-53014619D02* 910 | X110124857Y-52967000D01* 911 | X110220095Y-52919380D01* 912 | X110458190Y-52919380D01* 913 | X110553428Y-52967000D01* 914 | X110601047Y-53014619D01* 915 | X110648666Y-53109857D01* 916 | X110648666Y-53205095D01* 917 | X110601047Y-53347952D01* 918 | X110029619Y-53919380D01* 919 | X110648666Y-53919380D01* 920 | %TO.C,J1*% 921 | X138096666Y-41108380D02* 922 | X138096666Y-41822666D01* 923 | X138049047Y-41965523D01* 924 | X137953809Y-42060761D01* 925 | X137810952Y-42108380D01* 926 | X137715714Y-42108380D01* 927 | X139096666Y-42108380D02* 928 | X138525238Y-42108380D01* 929 | X138810952Y-42108380D02* 930 | X138810952Y-41108380D01* 931 | X138715714Y-41251238D01* 932 | X138620476Y-41346476D01* 933 | X138525238Y-41394095D01* 934 | %TO.C,F1*% 935 | X127174666Y-41711571D02* 936 | X126841333Y-41711571D01* 937 | X126841333Y-42235380D02* 938 | X126841333Y-41235380D01* 939 | X127317523Y-41235380D01* 940 | X128222285Y-42235380D02* 941 | X127650857Y-42235380D01* 942 | X127936571Y-42235380D02* 943 | X127936571Y-41235380D01* 944 | X127841333Y-41378238D01* 945 | X127746095Y-41473476D01* 946 | X127650857Y-41521095D01* 947 | %TO.C,D2*% 948 | X121356380Y-59158095D02* 949 | X120356380Y-59158095D01* 950 | X120356380Y-58920000D01* 951 | X120404000Y-58777142D01* 952 | X120499238Y-58681904D01* 953 | X120594476Y-58634285D01* 954 | X120784952Y-58586666D01* 955 | X120927809Y-58586666D01* 956 | X121118285Y-58634285D01* 957 | X121213523Y-58681904D01* 958 | X121308761Y-58777142D01* 959 | X121356380Y-58920000D01* 960 | X121356380Y-59158095D01* 961 | X120451619Y-58205714D02* 962 | X120404000Y-58158095D01* 963 | X120356380Y-58062857D01* 964 | X120356380Y-57824761D01* 965 | X120404000Y-57729523D01* 966 | X120451619Y-57681904D01* 967 | X120546857Y-57634285D01* 968 | X120642095Y-57634285D01* 969 | X120784952Y-57681904D01* 970 | X121356380Y-58253333D01* 971 | X121356380Y-57634285D01* 972 | %TO.C,D1*% 973 | X122626380Y-59158095D02* 974 | X121626380Y-59158095D01* 975 | X121626380Y-58920000D01* 976 | X121674000Y-58777142D01* 977 | X121769238Y-58681904D01* 978 | X121864476Y-58634285D01* 979 | X122054952Y-58586666D01* 980 | X122197809Y-58586666D01* 981 | X122388285Y-58634285D01* 982 | X122483523Y-58681904D01* 983 | X122578761Y-58777142D01* 984 | X122626380Y-58920000D01* 985 | X122626380Y-59158095D01* 986 | X122626380Y-57634285D02* 987 | X122626380Y-58205714D01* 988 | X122626380Y-57920000D02* 989 | X121626380Y-57920000D01* 990 | X121769238Y-58015238D01* 991 | X121864476Y-58110476D01* 992 | X121912095Y-58205714D01* 993 | %TO.C,C7*% 994 | X127230142Y-63158666D02* 995 | X127277761Y-63206285D01* 996 | X127325380Y-63349142D01* 997 | X127325380Y-63444380D01* 998 | X127277761Y-63587238D01* 999 | X127182523Y-63682476D01* 1000 | X127087285Y-63730095D01* 1001 | X126896809Y-63777714D01* 1002 | X126753952Y-63777714D01* 1003 | X126563476Y-63730095D01* 1004 | X126468238Y-63682476D01* 1005 | X126373000Y-63587238D01* 1006 | X126325380Y-63444380D01* 1007 | X126325380Y-63349142D01* 1008 | X126373000Y-63206285D01* 1009 | X126420619Y-63158666D01* 1010 | X126325380Y-62825333D02* 1011 | X126325380Y-62158666D01* 1012 | X127325380Y-62587238D01* 1013 | %TO.C,C6*% 1014 | X128500142Y-63158666D02* 1015 | X128547761Y-63206285D01* 1016 | X128595380Y-63349142D01* 1017 | X128595380Y-63444380D01* 1018 | X128547761Y-63587238D01* 1019 | X128452523Y-63682476D01* 1020 | X128357285Y-63730095D01* 1021 | X128166809Y-63777714D01* 1022 | X128023952Y-63777714D01* 1023 | X127833476Y-63730095D01* 1024 | X127738238Y-63682476D01* 1025 | X127643000Y-63587238D01* 1026 | X127595380Y-63444380D01* 1027 | X127595380Y-63349142D01* 1028 | X127643000Y-63206285D01* 1029 | X127690619Y-63158666D01* 1030 | X127595380Y-62301523D02* 1031 | X127595380Y-62492000D01* 1032 | X127643000Y-62587238D01* 1033 | X127690619Y-62634857D01* 1034 | X127833476Y-62730095D01* 1035 | X128023952Y-62777714D01* 1036 | X128404904Y-62777714D01* 1037 | X128500142Y-62730095D01* 1038 | X128547761Y-62682476D01* 1039 | X128595380Y-62587238D01* 1040 | X128595380Y-62396761D01* 1041 | X128547761Y-62301523D01* 1042 | X128500142Y-62253904D01* 1043 | X128404904Y-62206285D01* 1044 | X128166809Y-62206285D01* 1045 | X128071571Y-62253904D01* 1046 | X128023952Y-62301523D01* 1047 | X127976333Y-62396761D01* 1048 | X127976333Y-62587238D01* 1049 | X128023952Y-62682476D01* 1050 | X128071571Y-62730095D01* 1051 | X128166809Y-62777714D01* 1052 | %TO.C,C5*% 1053 | X122023142Y-51474666D02* 1054 | X122070761Y-51522285D01* 1055 | X122118380Y-51665142D01* 1056 | X122118380Y-51760380D01* 1057 | X122070761Y-51903238D01* 1058 | X121975523Y-51998476D01* 1059 | X121880285Y-52046095D01* 1060 | X121689809Y-52093714D01* 1061 | X121546952Y-52093714D01* 1062 | X121356476Y-52046095D01* 1063 | X121261238Y-51998476D01* 1064 | X121166000Y-51903238D01* 1065 | X121118380Y-51760380D01* 1066 | X121118380Y-51665142D01* 1067 | X121166000Y-51522285D01* 1068 | X121213619Y-51474666D01* 1069 | X121118380Y-50569904D02* 1070 | X121118380Y-51046095D01* 1071 | X121594571Y-51093714D01* 1072 | X121546952Y-51046095D01* 1073 | X121499333Y-50950857D01* 1074 | X121499333Y-50712761D01* 1075 | X121546952Y-50617523D01* 1076 | X121594571Y-50569904D01* 1077 | X121689809Y-50522285D01* 1078 | X121927904Y-50522285D01* 1079 | X122023142Y-50569904D01* 1080 | X122070761Y-50617523D01* 1081 | X122118380Y-50712761D01* 1082 | X122118380Y-50950857D01* 1083 | X122070761Y-51046095D01* 1084 | X122023142Y-51093714D01* 1085 | %TO.C,C4*% 1086 | X127087333Y-40997142D02* 1087 | X127039714Y-41044761D01* 1088 | X126896857Y-41092380D01* 1089 | X126801619Y-41092380D01* 1090 | X126658761Y-41044761D01* 1091 | X126563523Y-40949523D01* 1092 | X126515904Y-40854285D01* 1093 | X126468285Y-40663809D01* 1094 | X126468285Y-40520952D01* 1095 | X126515904Y-40330476D01* 1096 | X126563523Y-40235238D01* 1097 | X126658761Y-40140000D01* 1098 | X126801619Y-40092380D01* 1099 | X126896857Y-40092380D01* 1100 | X127039714Y-40140000D01* 1101 | X127087333Y-40187619D01* 1102 | X127944476Y-40425714D02* 1103 | X127944476Y-41092380D01* 1104 | X127706380Y-40044761D02* 1105 | X127468285Y-40759047D01* 1106 | X128087333Y-40759047D01* 1107 | %TO.C,C3*% 1108 | X128500142Y-61380666D02* 1109 | X128547761Y-61428285D01* 1110 | X128595380Y-61571142D01* 1111 | X128595380Y-61666380D01* 1112 | X128547761Y-61809238D01* 1113 | X128452523Y-61904476D01* 1114 | X128357285Y-61952095D01* 1115 | X128166809Y-61999714D01* 1116 | X128023952Y-61999714D01* 1117 | X127833476Y-61952095D01* 1118 | X127738238Y-61904476D01* 1119 | X127643000Y-61809238D01* 1120 | X127595380Y-61666380D01* 1121 | X127595380Y-61571142D01* 1122 | X127643000Y-61428285D01* 1123 | X127690619Y-61380666D01* 1124 | X127595380Y-61047333D02* 1125 | X127595380Y-60428285D01* 1126 | X127976333Y-60761619D01* 1127 | X127976333Y-60618761D01* 1128 | X128023952Y-60523523D01* 1129 | X128071571Y-60475904D01* 1130 | X128166809Y-60428285D01* 1131 | X128404904Y-60428285D01* 1132 | X128500142Y-60475904D01* 1133 | X128547761Y-60523523D01* 1134 | X128595380Y-60618761D01* 1135 | X128595380Y-60904476D01* 1136 | X128547761Y-60999714D01* 1137 | X128500142Y-61047333D01* 1138 | %TO.C,C2*% 1139 | X127230142Y-61380666D02* 1140 | X127277761Y-61428285D01* 1141 | X127325380Y-61571142D01* 1142 | X127325380Y-61666380D01* 1143 | X127277761Y-61809238D01* 1144 | X127182523Y-61904476D01* 1145 | X127087285Y-61952095D01* 1146 | X126896809Y-61999714D01* 1147 | X126753952Y-61999714D01* 1148 | X126563476Y-61952095D01* 1149 | X126468238Y-61904476D01* 1150 | X126373000Y-61809238D01* 1151 | X126325380Y-61666380D01* 1152 | X126325380Y-61571142D01* 1153 | X126373000Y-61428285D01* 1154 | X126420619Y-61380666D01* 1155 | X126420619Y-60999714D02* 1156 | X126373000Y-60952095D01* 1157 | X126325380Y-60856857D01* 1158 | X126325380Y-60618761D01* 1159 | X126373000Y-60523523D01* 1160 | X126420619Y-60475904D01* 1161 | X126515857Y-60428285D01* 1162 | X126611095Y-60428285D01* 1163 | X126753952Y-60475904D01* 1164 | X127325380Y-61047333D01* 1165 | X127325380Y-60428285D01* 1166 | %TO.C,C1*% 1167 | X128119142Y-39155666D02* 1168 | X128166761Y-39203285D01* 1169 | X128214380Y-39346142D01* 1170 | X128214380Y-39441380D01* 1171 | X128166761Y-39584238D01* 1172 | X128071523Y-39679476D01* 1173 | X127976285Y-39727095D01* 1174 | X127785809Y-39774714D01* 1175 | X127642952Y-39774714D01* 1176 | X127452476Y-39727095D01* 1177 | X127357238Y-39679476D01* 1178 | X127262000Y-39584238D01* 1179 | X127214380Y-39441380D01* 1180 | X127214380Y-39346142D01* 1181 | X127262000Y-39203285D01* 1182 | X127309619Y-39155666D01* 1183 | X128214380Y-38203285D02* 1184 | X128214380Y-38774714D01* 1185 | X128214380Y-38489000D02* 1186 | X127214380Y-38489000D01* 1187 | X127357238Y-38584238D01* 1188 | X127452476Y-38679476D01* 1189 | X127500095Y-38774714D01* 1190 | %TD*% 1191 | M02* 1192 | -------------------------------------------------------------------------------- /hardware/WCH_Linkv0.1/WCH_Link-NPTH.drl: -------------------------------------------------------------------------------- 1 | M48 2 | ; DRILL file {KiCad (5.1.9-0-10_14)} date Tuesday, February 02, 2021 at 02:33:22 PM 3 | ; FORMAT={-:-/ absolute / inch / decimal} 4 | ; #@! TF.CreationDate,2021-02-02T14:33:22+08:00 5 | ; #@! TF.GenerationSoftware,Kicad,Pcbnew,(5.1.9-0-10_14) 6 | ; #@! TF.FileFunction,NonPlated,1,2,NPTH 7 | FMAT,2 8 | INCH 9 | T1C0.0256 10 | % 11 | G90 12 | G05 13 | T1 14 | X4.8012Y-1.7074 15 | X5.0288Y-1.7074 16 | T0 17 | M30 18 | -------------------------------------------------------------------------------- /hardware/WCH_Linkv0.1/WCH_Link-PTH.drl: -------------------------------------------------------------------------------- 1 | M48 2 | ; DRILL file {KiCad (5.1.9-0-10_14)} date Tuesday, February 02, 2021 at 02:33:22 PM 3 | ; FORMAT={-:-/ absolute / inch / decimal} 4 | ; #@! TF.CreationDate,2021-02-02T14:33:22+08:00 5 | ; #@! TF.GenerationSoftware,Kicad,Pcbnew,(5.1.9-0-10_14) 6 | ; #@! TF.FileFunction,Plated,1,2,PTH 7 | FMAT,2 8 | INCH 9 | T1C0.0157 10 | T2C0.0236 11 | T3C0.0256 12 | T4C0.0394 13 | % 14 | G90 15 | G05 16 | T1 17 | X4.575Y-2.675 18 | X4.61Y-2.635 19 | X4.69Y-1.695 20 | X4.695Y-1.61 21 | X4.73Y-2.455 22 | X4.78Y-2.44 23 | X4.78Y-2.495 24 | X4.785Y-2.205 25 | X4.86Y-1.705 26 | X4.875Y-1.835 27 | X4.9Y-1.505 28 | X4.905Y-1.6944 29 | X4.915Y-1.98 30 | X4.915Y-2.255 31 | X4.94Y-1.505 32 | X4.94Y-1.605 33 | X4.965Y-1.705 34 | X4.98Y-1.505 35 | X5.005Y-2.375 36 | X5.145Y-2.43 37 | X5.145Y-2.475 38 | X5.165Y-2.2 39 | X5.19Y-2.43 40 | X5.2Y-1.61 41 | X5.205Y-2.195 42 | X5.245Y-1.61 43 | X5.2627Y-2.4223 44 | X5.265Y-1.905 45 | X5.275Y-2.66 46 | X5.275Y-2.695 47 | X5.275Y-2.73 48 | X5.29Y-1.61 49 | T3 50 | X4.615Y-2.005 51 | X4.615Y-2.055 52 | T4 53 | X4.515Y-2.265 54 | X4.515Y-2.365 55 | X4.515Y-2.465 56 | X4.515Y-2.565 57 | X4.685Y-2.71 58 | X4.785Y-2.71 59 | X4.885Y-2.71 60 | X4.985Y-2.71 61 | X5.085Y-2.71 62 | X5.185Y-2.71 63 | X5.345Y-2.265 64 | X5.345Y-2.365 65 | X5.345Y-2.465 66 | X5.345Y-2.565 67 | T2 68 | G00X4.7449Y-1.5755 69 | M15 70 | G01X4.7449Y-1.5519 71 | M16 72 | G05 73 | G00X4.7449Y-1.7499 74 | M15 75 | G01X4.7449Y-1.7066 76 | M16 77 | G05 78 | G00X5.0851Y-1.5755 79 | M15 80 | G01X5.0851Y-1.5519 81 | M16 82 | G05 83 | G00X5.0851Y-1.7499 84 | M15 85 | G01X5.0851Y-1.7066 86 | M16 87 | G05 88 | T0 89 | M30 90 | -------------------------------------------------------------------------------- /hardware/WCH_Linkv0.1/WCH_Link-cache.lib: -------------------------------------------------------------------------------- 1 | EESchema-LIBRARY Version 2.4 2 | #encoding utf-8 3 | # 4 | # Connector_Conn_01x02_Female 5 | # 6 | DEF Connector_Conn_01x02_Female J 0 40 Y N 1 F N 7 | F0 "J" 0 100 50 H V C CNN 8 | F1 "Connector_Conn_01x02_Female" 0 -200 50 H V C CNN 9 | F2 "" 0 0 50 H I C CNN 10 | F3 "" 0 0 50 H I C CNN 11 | $FPLIST 12 | Connector*:*_1x??_* 13 | $ENDFPLIST 14 | DRAW 15 | A 0 -100 20 901 -901 1 1 6 N 0 -80 0 -120 16 | A 0 0 20 901 -901 1 1 6 N 0 20 0 -20 17 | P 2 1 1 6 -50 -100 -20 -100 N 18 | P 2 1 1 6 -50 0 -20 0 N 19 | X Pin_1 1 -200 0 150 R 50 50 1 1 P 20 | X Pin_2 2 -200 -100 150 R 50 50 1 1 P 21 | ENDDRAW 22 | ENDDEF 23 | # 24 | # Connector_USB_C_Receptacle_USB2.0 25 | # 26 | DEF Connector_USB_C_Receptacle_USB2.0 J 0 40 Y Y 1 F N 27 | F0 "J" -400 750 50 H V L CNN 28 | F1 "Connector_USB_C_Receptacle_USB2.0" 750 750 50 H V R CNN 29 | F2 "" 150 0 50 H I C CNN 30 | F3 "" 150 0 50 H I C CNN 31 | $FPLIST 32 | USB*C*Receptacle* 33 | $ENDFPLIST 34 | DRAW 35 | A -275 -150 75 -1799 -1 0 1 20 N -350 -150 -200 -150 36 | A -275 -150 25 -1799 -1 0 1 10 N -300 -150 -250 -150 37 | A -275 -150 25 -1799 -1 0 1 10 F -300 -150 -250 -150 38 | A -275 150 25 1 1799 0 1 10 F -250 150 -300 150 39 | A -275 150 25 1 1799 0 1 10 N -250 150 -300 150 40 | A -275 150 75 1 1799 0 1 20 N -200 150 -350 150 41 | C -100 45 25 0 1 10 F 42 | C 0 -230 50 0 1 0 F 43 | S -10 -700 10 -660 0 0 0 N 44 | S 400 -590 360 -610 0 0 0 N 45 | S 400 -490 360 -510 0 0 0 N 46 | S 400 -190 360 -210 0 0 0 N 47 | S 400 -90 360 -110 0 0 0 N 48 | S 400 10 360 -10 0 0 0 N 49 | S 400 110 360 90 0 0 0 N 50 | S 400 310 360 290 0 0 0 N 51 | S 400 410 360 390 0 0 0 N 52 | S 400 610 360 590 0 0 0 N 53 | S -400 700 400 -700 0 1 10 f 54 | S -300 -150 -250 150 0 1 10 F 55 | S 75 70 125 120 0 1 10 F 56 | P 2 0 1 20 -350 -150 -350 150 N 57 | P 2 0 1 20 -200 150 -200 -150 N 58 | P 2 0 1 20 0 -230 0 170 N 59 | P 3 0 1 20 0 -130 -100 -30 -100 20 N 60 | P 3 0 1 20 0 -80 100 20 100 70 N 61 | P 4 0 1 10 -50 170 0 270 50 170 -50 170 F 62 | X GND A1 0 -900 200 U 50 50 1 1 P 63 | X GND A12 0 -900 200 U 50 50 1 1 P N 64 | X VBUS A4 600 600 200 L 50 50 1 1 P 65 | X CC1 A5 600 400 200 L 50 50 1 1 B 66 | X D+ A6 600 -100 200 L 50 50 1 1 B 67 | X D- A7 600 100 200 L 50 50 1 1 B 68 | X SBU1 A8 600 -500 200 L 50 50 1 1 B 69 | X VBUS A9 600 600 200 L 50 50 1 1 P N 70 | X GND B1 0 -900 200 U 50 50 1 1 P N 71 | X GND B12 0 -900 200 U 50 50 1 1 P N 72 | X VBUS B4 600 600 200 L 50 50 1 1 P N 73 | X CC2 B5 600 300 200 L 50 50 1 1 B 74 | X D+ B6 600 -200 200 L 50 50 1 1 B 75 | X D- B7 600 0 200 L 50 50 1 1 B 76 | X SBU2 B8 600 -600 200 L 50 50 1 1 B 77 | X VBUS B9 600 600 200 L 50 50 1 1 P N 78 | X SHIELD S1 -300 -900 200 U 50 50 1 1 P 79 | ENDDRAW 80 | ENDDEF 81 | # 82 | # Device_C_Small 83 | # 84 | DEF Device_C_Small C 0 10 N N 1 F N 85 | F0 "C" 10 70 50 H V L CNN 86 | F1 "Device_C_Small" 10 -80 50 H V L CNN 87 | F2 "" 0 0 50 H I C CNN 88 | F3 "" 0 0 50 H I C CNN 89 | $FPLIST 90 | C_* 91 | $ENDFPLIST 92 | DRAW 93 | P 2 0 1 13 -60 -20 60 -20 N 94 | P 2 0 1 12 -60 20 60 20 N 95 | X ~ 1 0 100 80 D 50 50 1 1 P 96 | X ~ 2 0 -100 80 U 50 50 1 1 P 97 | ENDDRAW 98 | ENDDEF 99 | # 100 | # Device_Fuse 101 | # 102 | DEF Device_Fuse F 0 0 N Y 1 F N 103 | F0 "F" 80 0 50 V V C CNN 104 | F1 "Device_Fuse" -75 0 50 V V C CNN 105 | F2 "" -70 0 50 V I C CNN 106 | F3 "" 0 0 50 H I C CNN 107 | $FPLIST 108 | *Fuse* 109 | $ENDFPLIST 110 | DRAW 111 | S -30 -100 30 100 0 1 10 N 112 | P 2 0 1 0 0 100 0 -100 N 113 | X ~ 1 0 150 50 D 50 50 1 1 P 114 | X ~ 2 0 -150 50 U 50 50 1 1 P 115 | ENDDRAW 116 | ENDDEF 117 | # 118 | # Device_LED 119 | # 120 | DEF Device_LED D 0 40 N N 1 F N 121 | F0 "D" 0 100 50 H V C CNN 122 | F1 "Device_LED" 0 -100 50 H V C CNN 123 | F2 "" 0 0 50 H I C CNN 124 | F3 "" 0 0 50 H I C CNN 125 | $FPLIST 126 | LED* 127 | LED_SMD:* 128 | LED_THT:* 129 | $ENDFPLIST 130 | DRAW 131 | P 2 0 1 10 -50 -50 -50 50 N 132 | P 2 0 1 0 -50 0 50 0 N 133 | P 4 0 1 10 50 -50 50 50 -50 0 50 -50 N 134 | P 5 0 1 0 -120 -30 -180 -90 -150 -90 -180 -90 -180 -60 N 135 | P 5 0 1 0 -70 -30 -130 -90 -100 -90 -130 -90 -130 -60 N 136 | X K 1 -150 0 100 R 50 50 1 1 P 137 | X A 2 150 0 100 L 50 50 1 1 P 138 | ENDDRAW 139 | ENDDEF 140 | # 141 | # Device_R_Small 142 | # 143 | DEF Device_R_Small R 0 10 N N 1 F N 144 | F0 "R" 30 20 50 H V L CNN 145 | F1 "Device_R_Small" 30 -40 50 H V L CNN 146 | F2 "" 0 0 50 H I C CNN 147 | F3 "" 0 0 50 H I C CNN 148 | $FPLIST 149 | R_* 150 | $ENDFPLIST 151 | DRAW 152 | S -30 70 30 -70 0 1 8 N 153 | X ~ 1 0 100 30 D 50 50 1 1 P 154 | X ~ 2 0 -100 30 U 50 50 1 1 P 155 | ENDDRAW 156 | ENDDEF 157 | # 158 | # MCU_Module_WCH-Link 159 | # 160 | DEF MCU_Module_WCH-Link U 0 40 Y Y 1 F N 161 | F0 "U" 0 0 50 H V C CNN 162 | F1 "MCU_Module_WCH-Link" 0 0 50 H V C CNN 163 | F2 "" 0 0 50 H I C CNN 164 | F3 "" 0 0 50 H I C CNN 165 | DRAW 166 | S 0 -50 200 -150 0 1 0 N 167 | S 0 0 1000 -500 0 1 0 f 168 | S 200 -350 0 -450 0 1 0 N 169 | S 200 -300 300 -500 0 1 0 N 170 | S 200 -250 0 -350 0 1 0 N 171 | S 200 -150 0 -250 0 1 0 N 172 | S 300 -300 400 -500 0 1 0 N 173 | S 400 -300 500 -500 0 1 0 N 174 | S 500 -300 600 -500 0 1 0 N 175 | S 600 -300 700 -500 0 1 0 N 176 | S 700 -300 800 -500 0 1 0 N 177 | S 800 -350 1000 -450 0 1 0 N 178 | S 800 -250 1000 -350 0 1 0 N 179 | S 800 -150 1000 -250 0 1 0 N 180 | S 800 -50 1000 -150 0 1 0 N 181 | X 5V 1 -100 -100 100 R 50 50 1 1 O 182 | X 3V3 10 750 -600 100 U 50 50 1 1 w 183 | X GND 11 1100 -400 100 L 50 50 1 1 w 184 | X RX 12 1100 -300 100 L 50 50 1 1 O 185 | X TX 13 1100 -200 100 L 50 50 1 1 I 186 | X 3V3 14 1100 -100 100 L 50 50 1 1 w 187 | X DIO 2 -100 -200 100 R 50 50 1 1 O 188 | X CLK 3 -100 -300 100 R 50 50 1 1 O 189 | X GND 4 -100 -400 100 R 50 50 1 1 w 190 | X GND 5 250 -600 100 U 50 50 1 1 w 191 | X CLK 6 350 -600 100 U 50 50 1 1 O 192 | X DIO 7 450 -600 100 U 50 50 1 1 O 193 | X TX 8 550 -600 100 U 50 50 1 1 I 194 | X RX 9 650 -600 100 U 50 50 1 1 O 195 | ENDDRAW 196 | ENDDEF 197 | # 198 | # MCU_WCH_CH549N 199 | # 200 | DEF MCU_WCH_CH549N U 0 40 Y Y 1 F N 201 | F0 "U" 0 0 50 H V C CNN 202 | F1 "MCU_WCH_CH549N" 0 0 50 H V C CNN 203 | F2 "" 0 0 50 H I C CNN 204 | F3 "" 0 0 50 H I C CNN 205 | DRAW 206 | S 0 -50 1650 -950 0 1 0 f 207 | X P1.1/T2EX/CAP2/AIN1 1 -100 -150 100 R 50 50 1 1 B 208 | X P2.2/PWM3/INT0 10 1750 -750 100 L 50 50 1 1 B 209 | X P2.4/PWM1/T2/CAP1 11 1750 -650 100 L 50 50 1 1 B 210 | X P5.1/DP 12 1750 -550 100 L 50 50 1 1 B 211 | X P5.0/DM 13 1750 -450 100 L 50 50 1 1 B 212 | X GND 14 1750 -350 100 L 50 50 1 1 W 213 | X VDD 15 1750 -250 100 L 50 50 1 1 W 214 | X V33 16 1750 -150 100 L 50 50 1 1 W 215 | X P1.4/SCS/UCC1/AIN4 2 -100 -250 100 R 50 50 1 1 B 216 | X P1.5/MOSI/PWM0/UCC2/AIN5 3 -100 -350 100 R 50 50 1 1 B 217 | X P1.6/MISO/RXD/VBUS/AIN6 4 -100 -450 100 R 50 50 1 1 B 218 | X P1.7/SCK/TXD/AIN7 5 -100 -550 100 R 50 50 1 1 B 219 | X P5.7/RST 6 -100 -650 100 R 50 50 1 1 B 220 | X P3.0/RXD 7 -100 -750 100 R 50 50 1 1 B 221 | X P3.1/TXD 8 -100 -850 100 R 50 50 1 1 B 222 | X P3.4/T0 9 1750 -850 100 L 50 50 1 1 B 223 | ENDDRAW 224 | ENDDEF 225 | # 226 | # Regulator_Linear_AMS1117-3.3 227 | # 228 | DEF Regulator_Linear_AMS1117-3.3 U 0 10 Y Y 1 F N 229 | F0 "U" -150 125 50 H V C CNN 230 | F1 "Regulator_Linear_AMS1117-3.3" 0 125 50 H V L CNN 231 | F2 "Package_TO_SOT_SMD:SOT-223-3_TabPin2" 0 200 50 H I C CNN 232 | F3 "" 100 -250 50 H I C CNN 233 | ALIAS AP1117-18 AP1117-25 AP1117-33 AP1117-50 LD1117S33TR_SOT223 LD1117S12TR_SOT223 LD1117S18TR_SOT223 LD1117S25TR_SOT223 LD1117S50TR_SOT223 NCP1117-12_SOT223 NCP1117-1.5_SOT223 NCP1117-1.8_SOT223 NCP1117-2.0_SOT223 NCP1117-2.5_SOT223 NCP1117-2.85_SOT223 NCP1117-3.3_SOT223 NCP1117-5.0_SOT223 AMS1117-1.5 AMS1117-1.8 AMS1117-2.5 AMS1117-2.85 AMS1117-3.3 AMS1117-5.0 234 | $FPLIST 235 | SOT?223*TabPin2* 236 | $ENDFPLIST 237 | DRAW 238 | S -200 -200 200 75 0 1 10 f 239 | X GND 1 0 -300 100 U 50 50 1 1 W 240 | X VO 2 300 0 100 L 50 50 1 1 w 241 | X VI 3 -300 0 100 R 50 50 1 1 W 242 | ENDDRAW 243 | ENDDEF 244 | # 245 | # power_+3V3 246 | # 247 | DEF power_+3V3 #PWR 0 0 Y Y 1 F P 248 | F0 "#PWR" 0 -150 50 H I C CNN 249 | F1 "power_+3V3" 0 140 50 H V C CNN 250 | F2 "" 0 0 50 H I C CNN 251 | F3 "" 0 0 50 H I C CNN 252 | ALIAS +3.3V 253 | DRAW 254 | P 2 0 1 0 -30 50 0 100 N 255 | P 2 0 1 0 0 0 0 100 N 256 | P 2 0 1 0 0 100 30 50 N 257 | X +3V3 1 0 0 0 U 50 50 1 1 W N 258 | ENDDRAW 259 | ENDDEF 260 | # 261 | # power_+5V 262 | # 263 | DEF power_+5V #PWR 0 0 Y Y 1 F P 264 | F0 "#PWR" 0 -150 50 H I C CNN 265 | F1 "power_+5V" 0 140 50 H V C CNN 266 | F2 "" 0 0 50 H I C CNN 267 | F3 "" 0 0 50 H I C CNN 268 | DRAW 269 | P 2 0 1 0 -30 50 0 100 N 270 | P 2 0 1 0 0 0 0 100 N 271 | P 2 0 1 0 0 100 30 50 N 272 | X +5V 1 0 0 0 U 50 50 1 1 W N 273 | ENDDRAW 274 | ENDDEF 275 | # 276 | # power_GND 277 | # 278 | DEF power_GND #PWR 0 0 Y Y 1 F P 279 | F0 "#PWR" 0 -250 50 H I C CNN 280 | F1 "power_GND" 0 -150 50 H V C CNN 281 | F2 "" 0 0 50 H I C CNN 282 | F3 "" 0 0 50 H I C CNN 283 | DRAW 284 | P 6 0 1 0 0 0 0 -50 50 -50 0 -100 -50 -50 0 -50 N 285 | X GND 1 0 0 0 D 50 50 1 1 W N 286 | ENDDRAW 287 | ENDDEF 288 | # 289 | #End Library 290 | -------------------------------------------------------------------------------- /hardware/WCH_Linkv0.1/WCH_Link-job.gbrjob: -------------------------------------------------------------------------------- 1 | { 2 | "Header": 3 | { 4 | "GenerationSoftware": 5 | { 6 | "Vendor": "KiCad", 7 | "Application": "Pcbnew", 8 | "Version": "(5.1.9-0-10_14)" 9 | }, 10 | "CreationDate": "2021-02-02T14:33:23+08:00" 11 | }, 12 | "GeneralSpecs": 13 | { 14 | "ProjectId": 15 | { 16 | "Name": "WCH_Link", 17 | "GUID": "5743485f-4c69-46e6-9b2e-6b696361645f", 18 | "Revision": "rev?" 19 | }, 20 | "Size": 21 | { 22 | "X": 21.640, 23 | "Y": 33.451 24 | }, 25 | "LayerNumber": 2, 26 | "BoardThickness": 1.600 27 | }, 28 | "DesignRules": 29 | [ 30 | { 31 | "Layers": "Outer", 32 | "PadToPad": 0.200, 33 | "PadToTrack": 0.200, 34 | "TrackToTrack": 0.200, 35 | "MinLineWidth": 0.152, 36 | "TrackToRegion": 0.508, 37 | "RegionToRegion": 0.508 38 | } 39 | ], 40 | "FilesAttributes": 41 | [ 42 | { 43 | "Path": "WCH_Link-F_Cu.gbr", 44 | "FileFunction": "Copper,L1,Top", 45 | "FilePolarity": "Positive" 46 | }, 47 | { 48 | "Path": "WCH_Link-B_Cu.gbr", 49 | "FileFunction": "Copper,L2,Bot", 50 | "FilePolarity": "Positive" 51 | }, 52 | { 53 | "Path": "WCH_Link-F_Paste.gbr", 54 | "FileFunction": "SolderPaste,Top", 55 | "FilePolarity": "Positive" 56 | }, 57 | { 58 | "Path": "WCH_Link-B_Paste.gbr", 59 | "FileFunction": "SolderPaste,Bot", 60 | "FilePolarity": "Positive" 61 | }, 62 | { 63 | "Path": "WCH_Link-F_SilkS.gbr", 64 | "FileFunction": "Legend,Top", 65 | "FilePolarity": "Positive" 66 | }, 67 | { 68 | "Path": "WCH_Link-B_SilkS.gbr", 69 | "FileFunction": "Legend,Bot", 70 | "FilePolarity": "Positive" 71 | }, 72 | { 73 | "Path": "WCH_Link-F_Mask.gbr", 74 | "FileFunction": "SolderMask,Top", 75 | "FilePolarity": "Negative" 76 | }, 77 | { 78 | "Path": "WCH_Link-B_Mask.gbr", 79 | "FileFunction": "SolderMask,Bot", 80 | "FilePolarity": "Negative" 81 | }, 82 | { 83 | "Path": "WCH_Link-Edge_Cuts.gbr", 84 | "FileFunction": "Profile", 85 | "FilePolarity": "Positive" 86 | } 87 | ], 88 | "MaterialStackup": 89 | [ 90 | { 91 | "Type": "Legend", 92 | "Notes": "Layer F.SilkS" 93 | }, 94 | { 95 | "Type": "SolderPaste", 96 | "Notes": "Layer F.Paste" 97 | }, 98 | { 99 | "Type": "SolderMask", 100 | "Notes": "Layer F.Mask" 101 | }, 102 | { 103 | "Type": "Copper", 104 | "Notes": "Layer F.Cu" 105 | }, 106 | { 107 | "Type": "Dielectric", 108 | "Material": "FR4", 109 | "Notes": "Layers L1/L2" 110 | }, 111 | { 112 | "Type": "Copper", 113 | "Notes": "Layer B.Cu" 114 | }, 115 | { 116 | "Type": "SolderMask", 117 | "Notes": "Layer B.Mask" 118 | }, 119 | { 120 | "Type": "SolderPaste", 121 | "Notes": "Layer B.Paste" 122 | }, 123 | { 124 | "Type": "Legend", 125 | "Notes": "Layer B.SilkS" 126 | } 127 | ] 128 | } 129 | -------------------------------------------------------------------------------- /hardware/WCH_Linkv0.1/WCH_Link.pro: -------------------------------------------------------------------------------- 1 | update=2021 February 02, Tuesday 13:55:25 2 | version=1 3 | last_client=kicad 4 | [general] 5 | version=1 6 | RootSch= 7 | BoardNm= 8 | [cvpcb] 9 | version=1 10 | NetIExt=net 11 | [eeschema] 12 | version=1 13 | LibDir= 14 | [eeschema/libraries] 15 | [pcbnew] 16 | version=1 17 | PageLayoutDescrFile= 18 | LastNetListRead= 19 | CopperLayerCount=2 20 | BoardThickness=1.6 21 | AllowMicroVias=0 22 | AllowBlindVias=0 23 | RequireCourtyardDefinitions=0 24 | ProhibitOverlappingCourtyards=1 25 | MinTrackWidth=0.2 26 | MinViaDiameter=0.4 27 | MinViaDrill=0.3 28 | MinMicroViaDiameter=0.2 29 | MinMicroViaDrill=0.09999999999999999 30 | MinHoleToHole=0.25 31 | TrackWidth1=0.25 32 | TrackWidth2=0.1524 33 | TrackWidth3=0.508 34 | ViaDiameter1=0.8 35 | ViaDrill1=0.4 36 | dPairWidth1=0.2 37 | dPairGap1=0.25 38 | dPairViaGap1=0.25 39 | SilkLineWidth=0.12 40 | SilkTextSizeV=1 41 | SilkTextSizeH=1 42 | SilkTextSizeThickness=0.15 43 | SilkTextItalic=0 44 | SilkTextUpright=1 45 | CopperLineWidth=0.2 46 | CopperTextSizeV=1.5 47 | CopperTextSizeH=1.5 48 | CopperTextThickness=0.3 49 | CopperTextItalic=0 50 | CopperTextUpright=1 51 | EdgeCutLineWidth=0.05 52 | CourtyardLineWidth=0.05 53 | OthersLineWidth=0.15 54 | OthersTextSizeV=1 55 | OthersTextSizeH=1 56 | OthersTextSizeThickness=0.15 57 | OthersTextItalic=0 58 | OthersTextUpright=1 59 | SolderMaskClearance=0 60 | SolderMaskMinWidth=0 61 | SolderPasteClearance=0 62 | SolderPasteRatio=-0 63 | [pcbnew/Layer.F.Cu] 64 | Name=F.Cu 65 | Type=0 66 | Enabled=1 67 | [pcbnew/Layer.In1.Cu] 68 | Name=In1.Cu 69 | Type=0 70 | Enabled=0 71 | [pcbnew/Layer.In2.Cu] 72 | Name=In2.Cu 73 | Type=0 74 | Enabled=0 75 | [pcbnew/Layer.In3.Cu] 76 | Name=In3.Cu 77 | Type=0 78 | Enabled=0 79 | [pcbnew/Layer.In4.Cu] 80 | Name=In4.Cu 81 | Type=0 82 | Enabled=0 83 | [pcbnew/Layer.In5.Cu] 84 | Name=In5.Cu 85 | Type=0 86 | Enabled=0 87 | [pcbnew/Layer.In6.Cu] 88 | Name=In6.Cu 89 | Type=0 90 | Enabled=0 91 | [pcbnew/Layer.In7.Cu] 92 | Name=In7.Cu 93 | Type=0 94 | Enabled=0 95 | [pcbnew/Layer.In8.Cu] 96 | Name=In8.Cu 97 | Type=0 98 | Enabled=0 99 | [pcbnew/Layer.In9.Cu] 100 | Name=In9.Cu 101 | Type=0 102 | Enabled=0 103 | [pcbnew/Layer.In10.Cu] 104 | Name=In10.Cu 105 | Type=0 106 | Enabled=0 107 | [pcbnew/Layer.In11.Cu] 108 | Name=In11.Cu 109 | Type=0 110 | Enabled=0 111 | [pcbnew/Layer.In12.Cu] 112 | Name=In12.Cu 113 | Type=0 114 | Enabled=0 115 | [pcbnew/Layer.In13.Cu] 116 | Name=In13.Cu 117 | Type=0 118 | Enabled=0 119 | [pcbnew/Layer.In14.Cu] 120 | Name=In14.Cu 121 | Type=0 122 | Enabled=0 123 | [pcbnew/Layer.In15.Cu] 124 | Name=In15.Cu 125 | Type=0 126 | Enabled=0 127 | [pcbnew/Layer.In16.Cu] 128 | Name=In16.Cu 129 | Type=0 130 | Enabled=0 131 | [pcbnew/Layer.In17.Cu] 132 | Name=In17.Cu 133 | Type=0 134 | Enabled=0 135 | [pcbnew/Layer.In18.Cu] 136 | Name=In18.Cu 137 | Type=0 138 | Enabled=0 139 | [pcbnew/Layer.In19.Cu] 140 | Name=In19.Cu 141 | Type=0 142 | Enabled=0 143 | [pcbnew/Layer.In20.Cu] 144 | Name=In20.Cu 145 | Type=0 146 | Enabled=0 147 | [pcbnew/Layer.In21.Cu] 148 | Name=In21.Cu 149 | Type=0 150 | Enabled=0 151 | [pcbnew/Layer.In22.Cu] 152 | Name=In22.Cu 153 | Type=0 154 | Enabled=0 155 | [pcbnew/Layer.In23.Cu] 156 | Name=In23.Cu 157 | Type=0 158 | Enabled=0 159 | [pcbnew/Layer.In24.Cu] 160 | Name=In24.Cu 161 | Type=0 162 | Enabled=0 163 | [pcbnew/Layer.In25.Cu] 164 | Name=In25.Cu 165 | Type=0 166 | Enabled=0 167 | [pcbnew/Layer.In26.Cu] 168 | Name=In26.Cu 169 | Type=0 170 | Enabled=0 171 | [pcbnew/Layer.In27.Cu] 172 | Name=In27.Cu 173 | Type=0 174 | Enabled=0 175 | [pcbnew/Layer.In28.Cu] 176 | Name=In28.Cu 177 | Type=0 178 | Enabled=0 179 | [pcbnew/Layer.In29.Cu] 180 | Name=In29.Cu 181 | Type=0 182 | Enabled=0 183 | [pcbnew/Layer.In30.Cu] 184 | Name=In30.Cu 185 | Type=0 186 | Enabled=0 187 | [pcbnew/Layer.B.Cu] 188 | Name=B.Cu 189 | Type=0 190 | Enabled=1 191 | [pcbnew/Layer.B.Adhes] 192 | Enabled=1 193 | [pcbnew/Layer.F.Adhes] 194 | Enabled=1 195 | [pcbnew/Layer.B.Paste] 196 | Enabled=1 197 | [pcbnew/Layer.F.Paste] 198 | Enabled=1 199 | [pcbnew/Layer.B.SilkS] 200 | Enabled=1 201 | [pcbnew/Layer.F.SilkS] 202 | Enabled=1 203 | [pcbnew/Layer.B.Mask] 204 | Enabled=1 205 | [pcbnew/Layer.F.Mask] 206 | Enabled=1 207 | [pcbnew/Layer.Dwgs.User] 208 | Enabled=1 209 | [pcbnew/Layer.Cmts.User] 210 | Enabled=1 211 | [pcbnew/Layer.Eco1.User] 212 | Enabled=1 213 | [pcbnew/Layer.Eco2.User] 214 | Enabled=1 215 | [pcbnew/Layer.Edge.Cuts] 216 | Enabled=1 217 | [pcbnew/Layer.Margin] 218 | Enabled=1 219 | [pcbnew/Layer.B.CrtYd] 220 | Enabled=1 221 | [pcbnew/Layer.F.CrtYd] 222 | Enabled=1 223 | [pcbnew/Layer.B.Fab] 224 | Enabled=1 225 | [pcbnew/Layer.F.Fab] 226 | Enabled=1 227 | [pcbnew/Layer.Rescue] 228 | Enabled=0 229 | [pcbnew/Netclasses] 230 | [pcbnew/Netclasses/Default] 231 | Name=Default 232 | Clearance=0.2 233 | TrackWidth=0.25 234 | ViaDiameter=0.8 235 | ViaDrill=0.4 236 | uViaDiameter=0.3 237 | uViaDrill=0.1 238 | dPairWidth=0.2 239 | dPairGap=0.25 240 | dPairViaGap=0.25 241 | -------------------------------------------------------------------------------- /hardware/WCH_Linkv0.1/WCH_Link.sch: -------------------------------------------------------------------------------- 1 | EESchema Schematic File Version 4 2 | EELAYER 30 0 3 | EELAYER END 4 | $Descr A4 11693 8268 5 | encoding utf-8 6 | Sheet 1 1 7 | Title "" 8 | Date "" 9 | Rev "" 10 | Comp "" 11 | Comment1 "" 12 | Comment2 "" 13 | Comment3 "" 14 | Comment4 "" 15 | $EndDescr 16 | $Comp 17 | L MCU_WCH:CH549N U1 18 | U 1 1 601805BB 19 | P 3100 1750 20 | F 0 "U1" H 3925 1865 50 0000 C CNN 21 | F 1 "CH549N" H 3925 1774 50 0000 C CNN 22 | F 2 "Package_SO:SOP-16_3.9x9.9mm_P1.27mm" H 3100 1750 50 0001 C CNN 23 | F 3 "" H 3100 1750 50 0001 C CNN 24 | 1 3100 1750 25 | 1 0 0 -1 26 | $EndComp 27 | Text Label 2550 1900 0 50 ~ 0 28 | T_SWDIO 29 | Text Label 2550 2000 0 50 ~ 0 30 | T_SWCLK 31 | Wire Wire Line 32 | 2550 1900 3000 1900 33 | Wire Wire Line 34 | 3000 2000 2550 2000 35 | NoConn ~ 3000 2100 36 | Text Label 2550 2200 0 50 ~ 0 37 | LED_RUN 38 | Text Label 2550 2300 0 50 ~ 0 39 | LED_CON 40 | Wire Wire Line 41 | 2550 2200 3000 2200 42 | Wire Wire Line 43 | 3000 2300 2550 2300 44 | NoConn ~ 3000 2400 45 | Text Label 2550 2500 0 50 ~ 0 46 | RX 47 | Text Label 2550 2600 0 50 ~ 0 48 | TX 49 | Wire Wire Line 50 | 2550 2500 3000 2500 51 | Wire Wire Line 52 | 3000 2600 2550 2600 53 | Wire Wire Line 54 | 4850 1900 5300 1900 55 | Wire Wire Line 56 | 5300 2000 4850 2000 57 | Wire Wire Line 58 | 4850 2200 5300 2200 59 | Wire Wire Line 60 | 5300 2300 4850 2300 61 | Text Label 5300 1900 2 50 ~ 0 62 | V33 63 | $Comp 64 | L power:+5V #PWR0101 65 | U 1 1 6018232E 66 | P 5300 2000 67 | F 0 "#PWR0101" H 5300 1850 50 0001 C CNN 68 | F 1 "+5V" V 5315 2128 50 0000 L CNN 69 | F 2 "" H 5300 2000 50 0001 C CNN 70 | F 3 "" H 5300 2000 50 0001 C CNN 71 | 1 5300 2000 72 | 0 1 1 0 73 | $EndComp 74 | $Comp 75 | L power:GND #PWR0102 76 | U 1 1 60182F44 77 | P 5300 2100 78 | F 0 "#PWR0102" H 5300 1850 50 0001 C CNN 79 | F 1 "GND" V 5305 1972 50 0000 R CNN 80 | F 2 "" H 5300 2100 50 0001 C CNN 81 | F 3 "" H 5300 2100 50 0001 C CNN 82 | 1 5300 2100 83 | 0 -1 -1 0 84 | $EndComp 85 | Wire Wire Line 86 | 5300 2100 4850 2100 87 | Text Label 5300 2200 2 50 ~ 0 88 | USB_N 89 | Text Label 5300 2300 2 50 ~ 0 90 | USB_P 91 | NoConn ~ 4850 2400 92 | NoConn ~ 4850 2500 93 | NoConn ~ 4850 2600 94 | $Comp 95 | L Connector:Conn_01x02_Female J2 96 | U 1 1 60183D0F 97 | P 2100 3250 98 | F 0 "J2" H 2128 3226 50 0000 L CNN 99 | F 1 "DOWNLOAD" H 2128 3135 50 0000 L CNN 100 | F 2 "Connector_PinHeader_1.27mm:PinHeader_1x02_P1.27mm_Horizontal" H 2100 3250 50 0001 C CNN 101 | F 3 "~" H 2100 3250 50 0001 C CNN 102 | 1 2100 3250 103 | 1 0 0 -1 104 | $EndComp 105 | Text Label 1550 3250 0 50 ~ 0 106 | USB_P 107 | Wire Wire Line 108 | 1550 3250 1900 3250 109 | $Comp 110 | L Device:R_Small R1 111 | U 1 1 60186730 112 | P 1650 3350 113 | F 0 "R1" V 1600 3250 50 0000 C CNN 114 | F 1 "4K7" V 1600 3500 50 0000 C CNN 115 | F 2 "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" H 1650 3350 50 0001 C CNN 116 | F 3 "~" H 1650 3350 50 0001 C CNN 117 | 1 1650 3350 118 | 0 1 1 0 119 | $EndComp 120 | Wire Wire Line 121 | 1750 3350 1900 3350 122 | Text Label 1250 3350 0 50 ~ 0 123 | V33 124 | Wire Wire Line 125 | 1250 3350 1550 3350 126 | $Comp 127 | L power:+5V #PWR0103 128 | U 1 1 60188A8D 129 | P 5850 2050 130 | F 0 "#PWR0103" H 5850 1900 50 0001 C CNN 131 | F 1 "+5V" H 5865 2223 50 0000 C CNN 132 | F 2 "" H 5850 2050 50 0001 C CNN 133 | F 3 "" H 5850 2050 50 0001 C CNN 134 | 1 5850 2050 135 | 1 0 0 -1 136 | $EndComp 137 | $Comp 138 | L power:GND #PWR0104 139 | U 1 1 60188A93 140 | P 5850 2450 141 | F 0 "#PWR0104" H 5850 2200 50 0001 C CNN 142 | F 1 "GND" H 5855 2277 50 0000 C CNN 143 | F 2 "" H 5850 2450 50 0001 C CNN 144 | F 3 "" H 5850 2450 50 0001 C CNN 145 | 1 5850 2450 146 | 1 0 0 -1 147 | $EndComp 148 | $Comp 149 | L Device:C_Small C4 150 | U 1 1 60189B59 151 | P 5850 2250 152 | F 0 "C4" H 5942 2296 50 0000 L CNN 153 | F 1 "104" H 5942 2205 50 0000 L CNN 154 | F 2 "Capacitor_SMD:C_0603_1608Metric_Pad1.05x0.95mm_HandSolder" H 5850 2250 50 0001 C CNN 155 | F 3 "~" H 5850 2250 50 0001 C CNN 156 | 1 5850 2250 157 | 1 0 0 -1 158 | $EndComp 159 | Wire Wire Line 160 | 5850 2050 5850 2150 161 | Wire Wire Line 162 | 5850 2350 5850 2450 163 | $Comp 164 | L power:GND #PWR0105 165 | U 1 1 6018AEF2 166 | P 6200 2450 167 | F 0 "#PWR0105" H 6200 2200 50 0001 C CNN 168 | F 1 "GND" H 6205 2277 50 0000 C CNN 169 | F 2 "" H 6200 2450 50 0001 C CNN 170 | F 3 "" H 6200 2450 50 0001 C CNN 171 | 1 6200 2450 172 | 1 0 0 -1 173 | $EndComp 174 | $Comp 175 | L Device:C_Small C5 176 | U 1 1 6018AEF8 177 | P 6200 2250 178 | F 0 "C5" H 6292 2296 50 0000 L CNN 179 | F 1 "104" H 6292 2205 50 0000 L CNN 180 | F 2 "Capacitor_SMD:C_0603_1608Metric_Pad1.05x0.95mm_HandSolder" H 6200 2250 50 0001 C CNN 181 | F 3 "~" H 6200 2250 50 0001 C CNN 182 | 1 6200 2250 183 | 1 0 0 -1 184 | $EndComp 185 | Wire Wire Line 186 | 6200 2350 6200 2450 187 | Text Label 6200 1950 3 50 ~ 0 188 | V33 189 | Wire Wire Line 190 | 6200 1950 6200 2150 191 | $Comp 192 | L Device:LED D1 193 | U 1 1 6018D665 194 | P 7150 2050 195 | F 0 "D1" V 7189 1932 50 0000 R CNN 196 | F 1 "LED" V 7098 1932 50 0000 R CNN 197 | F 2 "Diode_SMD:D_0603_1608Metric_Pad1.05x0.95mm_HandSolder" H 7150 2050 50 0001 C CNN 198 | F 3 "~" H 7150 2050 50 0001 C CNN 199 | 1 7150 2050 200 | 0 -1 -1 0 201 | $EndComp 202 | $Comp 203 | L Device:R_Small R5 204 | U 1 1 6018F34D 205 | P 7150 2500 206 | F 0 "R5" H 7209 2546 50 0000 L CNN 207 | F 1 "1K" H 7209 2455 50 0000 L CNN 208 | F 2 "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" H 7150 2500 50 0001 C CNN 209 | F 3 "~" H 7150 2500 50 0001 C CNN 210 | 1 7150 2500 211 | 1 0 0 -1 212 | $EndComp 213 | Text Label 7150 3050 1 50 ~ 0 214 | LED_RUN 215 | Text Label 7550 3050 1 50 ~ 0 216 | LED_CON 217 | Wire Wire Line 218 | 7150 2600 7150 3050 219 | Wire Wire Line 220 | 7150 2200 7150 2400 221 | $Comp 222 | L power:+5V #PWR0106 223 | U 1 1 6018FFFC 224 | P 7150 1700 225 | F 0 "#PWR0106" H 7150 1550 50 0001 C CNN 226 | F 1 "+5V" H 7165 1873 50 0000 C CNN 227 | F 2 "" H 7150 1700 50 0001 C CNN 228 | F 3 "" H 7150 1700 50 0001 C CNN 229 | 1 7150 1700 230 | 1 0 0 -1 231 | $EndComp 232 | Wire Wire Line 233 | 7150 1700 7150 1900 234 | $Comp 235 | L Device:LED D2 236 | U 1 1 60192268 237 | P 7550 2050 238 | F 0 "D2" V 7589 1932 50 0000 R CNN 239 | F 1 "LED" V 7498 1932 50 0000 R CNN 240 | F 2 "Diode_SMD:D_0603_1608Metric_Pad1.05x0.95mm_HandSolder" H 7550 2050 50 0001 C CNN 241 | F 3 "~" H 7550 2050 50 0001 C CNN 242 | 1 7550 2050 243 | 0 -1 -1 0 244 | $EndComp 245 | $Comp 246 | L Device:R_Small R6 247 | U 1 1 6019226E 248 | P 7550 2500 249 | F 0 "R6" H 7609 2546 50 0000 L CNN 250 | F 1 "1K" H 7609 2455 50 0000 L CNN 251 | F 2 "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" H 7550 2500 50 0001 C CNN 252 | F 3 "~" H 7550 2500 50 0001 C CNN 253 | 1 7550 2500 254 | 1 0 0 -1 255 | $EndComp 256 | Wire Wire Line 257 | 7550 2600 7550 3050 258 | Wire Wire Line 259 | 7550 2200 7550 2400 260 | $Comp 261 | L power:+5V #PWR0107 262 | U 1 1 60192276 263 | P 7550 1700 264 | F 0 "#PWR0107" H 7550 1550 50 0001 C CNN 265 | F 1 "+5V" H 7565 1873 50 0000 C CNN 266 | F 2 "" H 7550 1700 50 0001 C CNN 267 | F 3 "" H 7550 1700 50 0001 C CNN 268 | 1 7550 1700 269 | 1 0 0 -1 270 | $EndComp 271 | Wire Wire Line 272 | 7550 1700 7550 1900 273 | $Comp 274 | L Connector:USB_C_Receptacle_USB2.0 J1 275 | U 1 1 60192EC4 276 | P 1950 4900 277 | F 0 "J1" H 2057 5767 50 0000 C CNN 278 | F 1 "USB_C_Receptacle_USB2.0" H 2057 5676 50 0000 C CNN 279 | F 2 "Connector_USB:USB_C_Receptacle_HRO_TYPE-C-31-M-12" H 2100 4900 50 0001 C CNN 280 | F 3 "https://www.usb.org/sites/default/files/documents/usb_type-c.zip" H 2100 4900 50 0001 C CNN 281 | 1 1950 4900 282 | 1 0 0 -1 283 | $EndComp 284 | $Comp 285 | L Device:Fuse F1 286 | U 1 1 60194729 287 | P 2900 4300 288 | F 0 "F1" V 2703 4300 50 0000 C CNN 289 | F 1 "Fuse" V 2794 4300 50 0000 C CNN 290 | F 2 "Fuse:Fuse_0805_2012Metric_Pad1.15x1.40mm_HandSolder" V 2830 4300 50 0001 C CNN 291 | F 3 "~" H 2900 4300 50 0001 C CNN 292 | 1 2900 4300 293 | 0 1 1 0 294 | $EndComp 295 | $Comp 296 | L power:+5V #PWR0108 297 | U 1 1 60194979 298 | P 3300 4300 299 | F 0 "#PWR0108" H 3300 4150 50 0001 C CNN 300 | F 1 "+5V" H 3315 4473 50 0000 C CNN 301 | F 2 "" H 3300 4300 50 0001 C CNN 302 | F 3 "" H 3300 4300 50 0001 C CNN 303 | 1 3300 4300 304 | 1 0 0 -1 305 | $EndComp 306 | Wire Wire Line 307 | 2550 4300 2750 4300 308 | Wire Wire Line 309 | 3050 4300 3300 4300 310 | $Comp 311 | L Device:R_Small R3 312 | U 1 1 60195BF4 313 | P 2900 4500 314 | F 0 "R3" V 2850 4400 50 0000 C CNN 315 | F 1 "5K1" V 2850 4650 50 0000 C CNN 316 | F 2 "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" H 2900 4500 50 0001 C CNN 317 | F 3 "~" H 2900 4500 50 0001 C CNN 318 | 1 2900 4500 319 | 0 1 1 0 320 | $EndComp 321 | Wire Wire Line 322 | 2550 4500 2800 4500 323 | $Comp 324 | L power:GND #PWR0109 325 | U 1 1 60196C67 326 | P 3300 4600 327 | F 0 "#PWR0109" H 3300 4350 50 0001 C CNN 328 | F 1 "GND" H 3305 4427 50 0000 C CNN 329 | F 2 "" H 3300 4600 50 0001 C CNN 330 | F 3 "" H 3300 4600 50 0001 C CNN 331 | 1 3300 4600 332 | 1 0 0 -1 333 | $EndComp 334 | Wire Wire Line 335 | 3000 4500 3300 4500 336 | Wire Wire Line 337 | 3300 4500 3300 4600 338 | $Comp 339 | L Device:R_Small R4 340 | U 1 1 601981A8 341 | P 2900 4600 342 | F 0 "R4" V 2850 4500 50 0000 C CNN 343 | F 1 "5K1" V 2850 4750 50 0000 C CNN 344 | F 2 "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" H 2900 4600 50 0001 C CNN 345 | F 3 "~" H 2900 4600 50 0001 C CNN 346 | 1 2900 4600 347 | 0 1 1 0 348 | $EndComp 349 | Wire Wire Line 350 | 2550 4600 2800 4600 351 | Wire Wire Line 352 | 3000 4600 3300 4600 353 | Text Label 2800 4900 2 50 ~ 0 354 | USB_N 355 | Wire Wire Line 356 | 2800 4900 2550 4900 357 | Wire Wire Line 358 | 2550 4900 2550 4800 359 | Connection ~ 2550 4900 360 | Text Label 2800 5100 2 50 ~ 0 361 | USB_P 362 | Wire Wire Line 363 | 2800 5100 2550 5100 364 | Wire Wire Line 365 | 2550 5100 2550 5000 366 | Connection ~ 2550 5100 367 | NoConn ~ 2550 5500 368 | NoConn ~ 2550 5400 369 | $Comp 370 | L power:GND #PWR0110 371 | U 1 1 6019A713 372 | P 1950 6150 373 | F 0 "#PWR0110" H 1950 5900 50 0001 C CNN 374 | F 1 "GND" H 1955 5977 50 0000 C CNN 375 | F 2 "" H 1950 6150 50 0001 C CNN 376 | F 3 "" H 1950 6150 50 0001 C CNN 377 | 1 1950 6150 378 | 1 0 0 -1 379 | $EndComp 380 | $Comp 381 | L Device:C_Small C1 382 | U 1 1 6019CB4B 383 | P 1650 5950 384 | F 0 "C1" H 1550 6000 50 0000 L CNN 385 | F 1 "104" H 1500 5900 50 0000 L CNN 386 | F 2 "Capacitor_SMD:C_0603_1608Metric_Pad1.05x0.95mm_HandSolder" H 1650 5950 50 0001 C CNN 387 | F 3 "~" H 1650 5950 50 0001 C CNN 388 | 1 1650 5950 389 | 1 0 0 -1 390 | $EndComp 391 | $Comp 392 | L Device:R_Small R2 393 | U 1 1 6019F884 394 | P 1800 5950 395 | F 0 "R2" H 1859 5996 50 0000 L CNN 396 | F 1 "1M" H 1859 5905 50 0000 L CNN 397 | F 2 "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" H 1800 5950 50 0001 C CNN 398 | F 3 "~" H 1800 5950 50 0001 C CNN 399 | 1 1800 5950 400 | 1 0 0 -1 401 | $EndComp 402 | Wire Wire Line 403 | 1650 5800 1650 5850 404 | Wire Wire Line 405 | 1650 5850 1800 5850 406 | Connection ~ 1650 5850 407 | Wire Wire Line 408 | 1650 6050 1800 6050 409 | Wire Wire Line 410 | 1800 6050 1800 6150 411 | Wire Wire Line 412 | 1800 6150 1950 6150 413 | Connection ~ 1800 6050 414 | Wire Wire Line 415 | 1950 5800 1950 6150 416 | Connection ~ 1950 6150 417 | $Comp 418 | L Regulator_Linear:AMS1117-3.3 U2 419 | U 1 1 601A3EEC 420 | P 6100 4400 421 | F 0 "U2" H 6100 4642 50 0000 C CNN 422 | F 1 "AMS1117-3.3" H 6100 4551 50 0000 C CNN 423 | F 2 "Package_TO_SOT_SMD:SOT-223-3_TabPin2" H 6100 4600 50 0001 C CNN 424 | F 3 "http://www.advanced-monolithic.com/pdf/ds1117.pdf" H 6200 4150 50 0001 C CNN 425 | 1 6100 4400 426 | 1 0 0 -1 427 | $EndComp 428 | $Comp 429 | L power:+5V #PWR0111 430 | U 1 1 601A4E09 431 | P 5400 4400 432 | F 0 "#PWR0111" H 5400 4250 50 0001 C CNN 433 | F 1 "+5V" H 5415 4573 50 0000 C CNN 434 | F 2 "" H 5400 4400 50 0001 C CNN 435 | F 3 "" H 5400 4400 50 0001 C CNN 436 | 1 5400 4400 437 | 1 0 0 -1 438 | $EndComp 439 | Wire Wire Line 440 | 5400 4400 5500 4400 441 | $Comp 442 | L power:GND #PWR0112 443 | U 1 1 601A613B 444 | P 6100 4900 445 | F 0 "#PWR0112" H 6100 4650 50 0001 C CNN 446 | F 1 "GND" H 6105 4727 50 0000 C CNN 447 | F 2 "" H 6100 4900 50 0001 C CNN 448 | F 3 "" H 6100 4900 50 0001 C CNN 449 | 1 6100 4900 450 | 1 0 0 -1 451 | $EndComp 452 | Wire Wire Line 453 | 6100 4700 6100 4850 454 | $Comp 455 | L Device:C_Small C2 456 | U 1 1 601A7419 457 | P 5500 4650 458 | F 0 "C2" V 5450 4500 50 0000 L CNN 459 | F 1 "104" V 5450 4650 50 0000 L CNN 460 | F 2 "Capacitor_SMD:C_0603_1608Metric_Pad1.05x0.95mm_HandSolder" H 5500 4650 50 0001 C CNN 461 | F 3 "~" H 5500 4650 50 0001 C CNN 462 | 1 5500 4650 463 | 1 0 0 -1 464 | $EndComp 465 | $Comp 466 | L Device:C_Small C3 467 | U 1 1 601A7B49 468 | P 5750 4650 469 | F 0 "C3" V 5700 4500 50 0000 L CNN 470 | F 1 "106" V 5700 4650 50 0000 L CNN 471 | F 2 "Capacitor_SMD:C_0603_1608Metric_Pad1.05x0.95mm_HandSolder" H 5750 4650 50 0001 C CNN 472 | F 3 "~" H 5750 4650 50 0001 C CNN 473 | 1 5750 4650 474 | 1 0 0 -1 475 | $EndComp 476 | Wire Wire Line 477 | 5500 4550 5500 4400 478 | Connection ~ 5500 4400 479 | Wire Wire Line 480 | 5500 4400 5750 4400 481 | Wire Wire Line 482 | 5750 4550 5750 4400 483 | Connection ~ 5750 4400 484 | Wire Wire Line 485 | 5750 4400 5800 4400 486 | Wire Wire Line 487 | 5500 4750 5500 4850 488 | Wire Wire Line 489 | 5500 4850 5750 4850 490 | Connection ~ 6100 4850 491 | Wire Wire Line 492 | 6100 4850 6100 4900 493 | Wire Wire Line 494 | 5750 4750 5750 4850 495 | Connection ~ 5750 4850 496 | Wire Wire Line 497 | 5750 4850 6100 4850 498 | $Comp 499 | L power:+3V3 #PWR0113 500 | U 1 1 601ACAC5 501 | P 6800 4400 502 | F 0 "#PWR0113" H 6800 4250 50 0001 C CNN 503 | F 1 "+3V3" H 6815 4573 50 0000 C CNN 504 | F 2 "" H 6800 4400 50 0001 C CNN 505 | F 3 "" H 6800 4400 50 0001 C CNN 506 | 1 6800 4400 507 | 1 0 0 -1 508 | $EndComp 509 | $Comp 510 | L Device:C_Small C6 511 | U 1 1 601ADCE3 512 | P 6500 4650 513 | F 0 "C6" V 6450 4500 50 0000 L CNN 514 | F 1 "104" V 6450 4650 50 0000 L CNN 515 | F 2 "Capacitor_SMD:C_0603_1608Metric_Pad1.05x0.95mm_HandSolder" H 6500 4650 50 0001 C CNN 516 | F 3 "~" H 6500 4650 50 0001 C CNN 517 | 1 6500 4650 518 | 1 0 0 -1 519 | $EndComp 520 | Wire Wire Line 521 | 6500 4400 6500 4550 522 | Connection ~ 6500 4400 523 | Wire Wire Line 524 | 6500 4400 6400 4400 525 | Wire Wire Line 526 | 6500 4750 6500 4850 527 | Wire Wire Line 528 | 6500 4850 6100 4850 529 | $Comp 530 | L Device:C_Small C7 531 | U 1 1 601B0151 532 | P 6700 4650 533 | F 0 "C7" V 6650 4500 50 0000 L CNN 534 | F 1 "106" V 6650 4650 50 0000 L CNN 535 | F 2 "Capacitor_SMD:C_0603_1608Metric_Pad1.05x0.95mm_HandSolder" H 6700 4650 50 0001 C CNN 536 | F 3 "~" H 6700 4650 50 0001 C CNN 537 | 1 6700 4650 538 | 1 0 0 -1 539 | $EndComp 540 | Wire Wire Line 541 | 6500 4400 6700 4400 542 | Wire Wire Line 543 | 6700 4550 6700 4400 544 | Connection ~ 6700 4400 545 | Wire Wire Line 546 | 6700 4400 6800 4400 547 | Wire Wire Line 548 | 6700 4750 6700 4850 549 | Wire Wire Line 550 | 6700 4850 6500 4850 551 | Connection ~ 6500 4850 552 | $Comp 553 | L MCU_Module:WCH-Link U3 554 | U 1 1 601BBD0B 555 | P 8100 4500 556 | F 0 "U3" H 8600 4665 50 0000 C CNN 557 | F 1 "WCH-Link" H 8600 4574 50 0000 C CNN 558 | F 2 "" H 8100 4500 50 0001 C CNN 559 | F 3 "" H 8100 4500 50 0001 C CNN 560 | 1 8100 4500 561 | 1 0 0 -1 562 | $EndComp 563 | $Comp 564 | L power:+5V #PWR0114 565 | U 1 1 601BC93A 566 | P 7600 4600 567 | F 0 "#PWR0114" H 7600 4450 50 0001 C CNN 568 | F 1 "+5V" V 7615 4728 50 0000 L CNN 569 | F 2 "" H 7600 4600 50 0001 C CNN 570 | F 3 "" H 7600 4600 50 0001 C CNN 571 | 1 7600 4600 572 | 0 -1 -1 0 573 | $EndComp 574 | Wire Wire Line 575 | 7600 4600 8000 4600 576 | Text Label 9600 4700 2 50 ~ 0 577 | TX 578 | Wire Wire Line 579 | 9200 4700 9600 4700 580 | Text Label 9600 4800 2 50 ~ 0 581 | RX 582 | Wire Wire Line 583 | 9200 4800 9600 4800 584 | $Comp 585 | L power:GND #PWR0115 586 | U 1 1 601C162C 587 | P 7600 4900 588 | F 0 "#PWR0115" H 7600 4650 50 0001 C CNN 589 | F 1 "GND" V 7605 4772 50 0000 R CNN 590 | F 2 "" H 7600 4900 50 0001 C CNN 591 | F 3 "" H 7600 4900 50 0001 C CNN 592 | 1 7600 4900 593 | 0 1 1 0 594 | $EndComp 595 | Wire Wire Line 596 | 7600 4900 8000 4900 597 | Wire Wire Line 598 | 8350 5500 8350 5100 599 | Wire Wire Line 600 | 8850 5500 8850 5400 601 | Wire Wire Line 602 | 9600 4900 9200 4900 603 | Wire Wire Line 604 | 7600 4700 8000 4700 605 | Wire Wire Line 606 | 7600 4800 8000 4800 607 | Wire Wire Line 608 | 9600 4600 9200 4600 609 | $Comp 610 | L power:GND #PWR0116 611 | U 1 1 601C9639 612 | P 8350 5500 613 | F 0 "#PWR0116" H 8350 5250 50 0001 C CNN 614 | F 1 "GND" H 8355 5327 50 0000 C CNN 615 | F 2 "" H 8350 5500 50 0001 C CNN 616 | F 3 "" H 8350 5500 50 0001 C CNN 617 | 1 8350 5500 618 | 1 0 0 -1 619 | $EndComp 620 | $Comp 621 | L power:+3V3 #PWR0117 622 | U 1 1 601CA61F 623 | P 8850 5400 624 | F 0 "#PWR0117" H 8850 5250 50 0001 C CNN 625 | F 1 "+3V3" H 8865 5573 50 0000 C CNN 626 | F 2 "" H 8850 5400 50 0001 C CNN 627 | F 3 "" H 8850 5400 50 0001 C CNN 628 | 1 8850 5400 629 | -1 0 0 1 630 | $EndComp 631 | $Comp 632 | L power:GND #PWR0118 633 | U 1 1 601CA83A 634 | P 9600 4900 635 | F 0 "#PWR0118" H 9600 4650 50 0001 C CNN 636 | F 1 "GND" V 9605 4772 50 0000 R CNN 637 | F 2 "" H 9600 4900 50 0001 C CNN 638 | F 3 "" H 9600 4900 50 0001 C CNN 639 | 1 9600 4900 640 | 0 -1 -1 0 641 | $EndComp 642 | Text Label 7600 4700 0 50 ~ 0 643 | T_SWDIO 644 | Text Label 7600 4800 0 50 ~ 0 645 | T_SWCLK 646 | $Comp 647 | L power:+3V3 #PWR0119 648 | U 1 1 601CB1EE 649 | P 9600 4600 650 | F 0 "#PWR0119" H 9600 4450 50 0001 C CNN 651 | F 1 "+3V3" V 9615 4728 50 0000 L CNN 652 | F 2 "" H 9600 4600 50 0001 C CNN 653 | F 3 "" H 9600 4600 50 0001 C CNN 654 | 1 9600 4600 655 | 0 1 1 0 656 | $EndComp 657 | Text Label 8450 5500 1 50 ~ 0 658 | T_SWCLK 659 | Text Label 8550 5500 1 50 ~ 0 660 | T_SWDIO 661 | Text Label 8650 5500 1 50 ~ 0 662 | TX 663 | Text Label 8750 5500 1 50 ~ 0 664 | RX 665 | Wire Wire Line 666 | 8550 5500 8550 5100 667 | Wire Wire Line 668 | 8450 5100 8450 5500 669 | Wire Wire Line 670 | 8650 5100 8650 5500 671 | Wire Wire Line 672 | 8750 5100 8750 5500 673 | Connection ~ 8850 5400 674 | Wire Wire Line 675 | 8850 5400 8850 5100 676 | $EndSCHEMATC 677 | -------------------------------------------------------------------------------- /hardware/WCH_Linkv0.1/WCH_Link.sch-bak: -------------------------------------------------------------------------------- 1 | EESchema Schematic File Version 4 2 | EELAYER 30 0 3 | EELAYER END 4 | $Descr A4 11693 8268 5 | encoding utf-8 6 | Sheet 1 1 7 | Title "" 8 | Date "" 9 | Rev "" 10 | Comp "" 11 | Comment1 "" 12 | Comment2 "" 13 | Comment3 "" 14 | Comment4 "" 15 | $EndDescr 16 | $Comp 17 | L MCU_WCH:CH549N U1 18 | U 1 1 601805BB 19 | P 3100 1750 20 | F 0 "U1" H 3925 1865 50 0000 C CNN 21 | F 1 "CH549N" H 3925 1774 50 0000 C CNN 22 | F 2 "Package_SO:SOP-16_3.9x9.9mm_P1.27mm" H 3100 1750 50 0001 C CNN 23 | F 3 "" H 3100 1750 50 0001 C CNN 24 | 1 3100 1750 25 | 1 0 0 -1 26 | $EndComp 27 | Text Label 2550 1900 0 50 ~ 0 28 | T_SWDIO 29 | Text Label 2550 2000 0 50 ~ 0 30 | T_SWCLK 31 | Wire Wire Line 32 | 2550 1900 3000 1900 33 | Wire Wire Line 34 | 3000 2000 2550 2000 35 | NoConn ~ 3000 2100 36 | Text Label 2550 2200 0 50 ~ 0 37 | LED_RUN 38 | Text Label 2550 2300 0 50 ~ 0 39 | LED_CON 40 | Wire Wire Line 41 | 2550 2200 3000 2200 42 | Wire Wire Line 43 | 3000 2300 2550 2300 44 | NoConn ~ 3000 2400 45 | Text Label 2550 2500 0 50 ~ 0 46 | RX 47 | Text Label 2550 2600 0 50 ~ 0 48 | TX 49 | Wire Wire Line 50 | 2550 2500 3000 2500 51 | Wire Wire Line 52 | 3000 2600 2550 2600 53 | Wire Wire Line 54 | 4850 1900 5300 1900 55 | Wire Wire Line 56 | 5300 2000 4850 2000 57 | Wire Wire Line 58 | 4850 2200 5300 2200 59 | Wire Wire Line 60 | 5300 2300 4850 2300 61 | Text Label 5300 1900 2 50 ~ 0 62 | V33 63 | $Comp 64 | L power:+5V #PWR0101 65 | U 1 1 6018232E 66 | P 5300 2000 67 | F 0 "#PWR0101" H 5300 1850 50 0001 C CNN 68 | F 1 "+5V" V 5315 2128 50 0000 L CNN 69 | F 2 "" H 5300 2000 50 0001 C CNN 70 | F 3 "" H 5300 2000 50 0001 C CNN 71 | 1 5300 2000 72 | 0 1 1 0 73 | $EndComp 74 | $Comp 75 | L power:GND #PWR0102 76 | U 1 1 60182F44 77 | P 5300 2100 78 | F 0 "#PWR0102" H 5300 1850 50 0001 C CNN 79 | F 1 "GND" V 5305 1972 50 0000 R CNN 80 | F 2 "" H 5300 2100 50 0001 C CNN 81 | F 3 "" H 5300 2100 50 0001 C CNN 82 | 1 5300 2100 83 | 0 -1 -1 0 84 | $EndComp 85 | Wire Wire Line 86 | 5300 2100 4850 2100 87 | Text Label 5300 2200 2 50 ~ 0 88 | USB_N 89 | Text Label 5300 2300 2 50 ~ 0 90 | USB_P 91 | NoConn ~ 4850 2400 92 | NoConn ~ 4850 2500 93 | NoConn ~ 4850 2600 94 | $Comp 95 | L Connector:Conn_01x02_Female J2 96 | U 1 1 60183D0F 97 | P 2100 3250 98 | F 0 "J2" H 2128 3226 50 0000 L CNN 99 | F 1 "DOWNLOAD" H 2128 3135 50 0000 L CNN 100 | F 2 "Connector_PinHeader_1.27mm:PinHeader_1x02_P1.27mm_Horizontal" H 2100 3250 50 0001 C CNN 101 | F 3 "~" H 2100 3250 50 0001 C CNN 102 | 1 2100 3250 103 | 1 0 0 -1 104 | $EndComp 105 | Text Label 1550 3250 0 50 ~ 0 106 | USB_P 107 | Wire Wire Line 108 | 1550 3250 1900 3250 109 | $Comp 110 | L Device:R_Small R1 111 | U 1 1 60186730 112 | P 1650 3350 113 | F 0 "R1" V 1600 3250 50 0000 C CNN 114 | F 1 "4K7" V 1600 3500 50 0000 C CNN 115 | F 2 "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" H 1650 3350 50 0001 C CNN 116 | F 3 "~" H 1650 3350 50 0001 C CNN 117 | 1 1650 3350 118 | 0 1 1 0 119 | $EndComp 120 | Wire Wire Line 121 | 1750 3350 1900 3350 122 | Text Label 1250 3350 0 50 ~ 0 123 | V33 124 | Wire Wire Line 125 | 1250 3350 1550 3350 126 | $Comp 127 | L power:+5V #PWR0103 128 | U 1 1 60188A8D 129 | P 5850 2050 130 | F 0 "#PWR0103" H 5850 1900 50 0001 C CNN 131 | F 1 "+5V" H 5865 2223 50 0000 C CNN 132 | F 2 "" H 5850 2050 50 0001 C CNN 133 | F 3 "" H 5850 2050 50 0001 C CNN 134 | 1 5850 2050 135 | 1 0 0 -1 136 | $EndComp 137 | $Comp 138 | L power:GND #PWR0104 139 | U 1 1 60188A93 140 | P 5850 2450 141 | F 0 "#PWR0104" H 5850 2200 50 0001 C CNN 142 | F 1 "GND" H 5855 2277 50 0000 C CNN 143 | F 2 "" H 5850 2450 50 0001 C CNN 144 | F 3 "" H 5850 2450 50 0001 C CNN 145 | 1 5850 2450 146 | 1 0 0 -1 147 | $EndComp 148 | $Comp 149 | L Device:C_Small C4 150 | U 1 1 60189B59 151 | P 5850 2250 152 | F 0 "C4" H 5942 2296 50 0000 L CNN 153 | F 1 "104" H 5942 2205 50 0000 L CNN 154 | F 2 "Capacitor_SMD:C_0603_1608Metric_Pad1.05x0.95mm_HandSolder" H 5850 2250 50 0001 C CNN 155 | F 3 "~" H 5850 2250 50 0001 C CNN 156 | 1 5850 2250 157 | 1 0 0 -1 158 | $EndComp 159 | Wire Wire Line 160 | 5850 2050 5850 2150 161 | Wire Wire Line 162 | 5850 2350 5850 2450 163 | $Comp 164 | L power:GND #PWR0105 165 | U 1 1 6018AEF2 166 | P 6200 2450 167 | F 0 "#PWR0105" H 6200 2200 50 0001 C CNN 168 | F 1 "GND" H 6205 2277 50 0000 C CNN 169 | F 2 "" H 6200 2450 50 0001 C CNN 170 | F 3 "" H 6200 2450 50 0001 C CNN 171 | 1 6200 2450 172 | 1 0 0 -1 173 | $EndComp 174 | $Comp 175 | L Device:C_Small C5 176 | U 1 1 6018AEF8 177 | P 6200 2250 178 | F 0 "C5" H 6292 2296 50 0000 L CNN 179 | F 1 "104" H 6292 2205 50 0000 L CNN 180 | F 2 "Capacitor_SMD:C_0603_1608Metric_Pad1.05x0.95mm_HandSolder" H 6200 2250 50 0001 C CNN 181 | F 3 "~" H 6200 2250 50 0001 C CNN 182 | 1 6200 2250 183 | 1 0 0 -1 184 | $EndComp 185 | Wire Wire Line 186 | 6200 2350 6200 2450 187 | Text Label 6200 1950 3 50 ~ 0 188 | V33 189 | Wire Wire Line 190 | 6200 1950 6200 2150 191 | $Comp 192 | L Device:LED D1 193 | U 1 1 6018D665 194 | P 7150 2050 195 | F 0 "D1" V 7189 1932 50 0000 R CNN 196 | F 1 "LED" V 7098 1932 50 0000 R CNN 197 | F 2 "Diode_SMD:D_0603_1608Metric_Pad1.05x0.95mm_HandSolder" H 7150 2050 50 0001 C CNN 198 | F 3 "~" H 7150 2050 50 0001 C CNN 199 | 1 7150 2050 200 | 0 -1 -1 0 201 | $EndComp 202 | $Comp 203 | L Device:R_Small R5 204 | U 1 1 6018F34D 205 | P 7150 2500 206 | F 0 "R5" H 7209 2546 50 0000 L CNN 207 | F 1 "1K" H 7209 2455 50 0000 L CNN 208 | F 2 "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" H 7150 2500 50 0001 C CNN 209 | F 3 "~" H 7150 2500 50 0001 C CNN 210 | 1 7150 2500 211 | 1 0 0 -1 212 | $EndComp 213 | Text Label 7150 3050 1 50 ~ 0 214 | LED_RUN 215 | Text Label 7550 3050 1 50 ~ 0 216 | LED_CON 217 | Wire Wire Line 218 | 7150 2600 7150 3050 219 | Wire Wire Line 220 | 7150 2200 7150 2400 221 | $Comp 222 | L power:+5V #PWR0106 223 | U 1 1 6018FFFC 224 | P 7150 1700 225 | F 0 "#PWR0106" H 7150 1550 50 0001 C CNN 226 | F 1 "+5V" H 7165 1873 50 0000 C CNN 227 | F 2 "" H 7150 1700 50 0001 C CNN 228 | F 3 "" H 7150 1700 50 0001 C CNN 229 | 1 7150 1700 230 | 1 0 0 -1 231 | $EndComp 232 | Wire Wire Line 233 | 7150 1700 7150 1900 234 | $Comp 235 | L Device:LED D2 236 | U 1 1 60192268 237 | P 7550 2050 238 | F 0 "D2" V 7589 1932 50 0000 R CNN 239 | F 1 "LED" V 7498 1932 50 0000 R CNN 240 | F 2 "Diode_SMD:D_0603_1608Metric_Pad1.05x0.95mm_HandSolder" H 7550 2050 50 0001 C CNN 241 | F 3 "~" H 7550 2050 50 0001 C CNN 242 | 1 7550 2050 243 | 0 -1 -1 0 244 | $EndComp 245 | $Comp 246 | L Device:R_Small R6 247 | U 1 1 6019226E 248 | P 7550 2500 249 | F 0 "R6" H 7609 2546 50 0000 L CNN 250 | F 1 "1K" H 7609 2455 50 0000 L CNN 251 | F 2 "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" H 7550 2500 50 0001 C CNN 252 | F 3 "~" H 7550 2500 50 0001 C CNN 253 | 1 7550 2500 254 | 1 0 0 -1 255 | $EndComp 256 | Wire Wire Line 257 | 7550 2600 7550 3050 258 | Wire Wire Line 259 | 7550 2200 7550 2400 260 | $Comp 261 | L power:+5V #PWR0107 262 | U 1 1 60192276 263 | P 7550 1700 264 | F 0 "#PWR0107" H 7550 1550 50 0001 C CNN 265 | F 1 "+5V" H 7565 1873 50 0000 C CNN 266 | F 2 "" H 7550 1700 50 0001 C CNN 267 | F 3 "" H 7550 1700 50 0001 C CNN 268 | 1 7550 1700 269 | 1 0 0 -1 270 | $EndComp 271 | Wire Wire Line 272 | 7550 1700 7550 1900 273 | $Comp 274 | L Connector:USB_C_Receptacle_USB2.0 J1 275 | U 1 1 60192EC4 276 | P 1950 4900 277 | F 0 "J1" H 2057 5767 50 0000 C CNN 278 | F 1 "USB_C_Receptacle_USB2.0" H 2057 5676 50 0000 C CNN 279 | F 2 "Connector_USB:USB_C_Receptacle_HRO_TYPE-C-31-M-12" H 2100 4900 50 0001 C CNN 280 | F 3 "https://www.usb.org/sites/default/files/documents/usb_type-c.zip" H 2100 4900 50 0001 C CNN 281 | 1 1950 4900 282 | 1 0 0 -1 283 | $EndComp 284 | $Comp 285 | L Device:Fuse F1 286 | U 1 1 60194729 287 | P 2900 4300 288 | F 0 "F1" V 2703 4300 50 0000 C CNN 289 | F 1 "Fuse" V 2794 4300 50 0000 C CNN 290 | F 2 "Fuse:Fuse_0805_2012Metric_Pad1.15x1.40mm_HandSolder" V 2830 4300 50 0001 C CNN 291 | F 3 "~" H 2900 4300 50 0001 C CNN 292 | 1 2900 4300 293 | 0 1 1 0 294 | $EndComp 295 | $Comp 296 | L power:+5V #PWR0108 297 | U 1 1 60194979 298 | P 3300 4300 299 | F 0 "#PWR0108" H 3300 4150 50 0001 C CNN 300 | F 1 "+5V" H 3315 4473 50 0000 C CNN 301 | F 2 "" H 3300 4300 50 0001 C CNN 302 | F 3 "" H 3300 4300 50 0001 C CNN 303 | 1 3300 4300 304 | 1 0 0 -1 305 | $EndComp 306 | Wire Wire Line 307 | 2550 4300 2750 4300 308 | Wire Wire Line 309 | 3050 4300 3300 4300 310 | $Comp 311 | L Device:R_Small R3 312 | U 1 1 60195BF4 313 | P 2900 4500 314 | F 0 "R3" V 2850 4400 50 0000 C CNN 315 | F 1 "5K1" V 2850 4650 50 0000 C CNN 316 | F 2 "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" H 2900 4500 50 0001 C CNN 317 | F 3 "~" H 2900 4500 50 0001 C CNN 318 | 1 2900 4500 319 | 0 1 1 0 320 | $EndComp 321 | Wire Wire Line 322 | 2550 4500 2800 4500 323 | $Comp 324 | L power:GND #PWR0109 325 | U 1 1 60196C67 326 | P 3300 4600 327 | F 0 "#PWR0109" H 3300 4350 50 0001 C CNN 328 | F 1 "GND" H 3305 4427 50 0000 C CNN 329 | F 2 "" H 3300 4600 50 0001 C CNN 330 | F 3 "" H 3300 4600 50 0001 C CNN 331 | 1 3300 4600 332 | 1 0 0 -1 333 | $EndComp 334 | Wire Wire Line 335 | 3000 4500 3300 4500 336 | Wire Wire Line 337 | 3300 4500 3300 4600 338 | $Comp 339 | L Device:R_Small R4 340 | U 1 1 601981A8 341 | P 2900 4600 342 | F 0 "R4" V 2850 4500 50 0000 C CNN 343 | F 1 "5K1" V 2850 4750 50 0000 C CNN 344 | F 2 "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" H 2900 4600 50 0001 C CNN 345 | F 3 "~" H 2900 4600 50 0001 C CNN 346 | 1 2900 4600 347 | 0 1 1 0 348 | $EndComp 349 | Wire Wire Line 350 | 2550 4600 2800 4600 351 | Wire Wire Line 352 | 3000 4600 3300 4600 353 | Text Label 2800 4900 2 50 ~ 0 354 | USB_N 355 | Wire Wire Line 356 | 2800 4900 2550 4900 357 | Wire Wire Line 358 | 2550 4900 2550 4800 359 | Connection ~ 2550 4900 360 | Text Label 2800 5100 2 50 ~ 0 361 | USB_P 362 | Wire Wire Line 363 | 2800 5100 2550 5100 364 | Wire Wire Line 365 | 2550 5100 2550 5000 366 | Connection ~ 2550 5100 367 | NoConn ~ 2550 5500 368 | NoConn ~ 2550 5400 369 | $Comp 370 | L power:GND #PWR0110 371 | U 1 1 6019A713 372 | P 1950 6150 373 | F 0 "#PWR0110" H 1950 5900 50 0001 C CNN 374 | F 1 "GND" H 1955 5977 50 0000 C CNN 375 | F 2 "" H 1950 6150 50 0001 C CNN 376 | F 3 "" H 1950 6150 50 0001 C CNN 377 | 1 1950 6150 378 | 1 0 0 -1 379 | $EndComp 380 | $Comp 381 | L Device:C_Small C1 382 | U 1 1 6019CB4B 383 | P 1650 5950 384 | F 0 "C1" H 1550 6000 50 0000 L CNN 385 | F 1 "104" H 1500 5900 50 0000 L CNN 386 | F 2 "Capacitor_SMD:C_0603_1608Metric_Pad1.05x0.95mm_HandSolder" H 1650 5950 50 0001 C CNN 387 | F 3 "~" H 1650 5950 50 0001 C CNN 388 | 1 1650 5950 389 | 1 0 0 -1 390 | $EndComp 391 | $Comp 392 | L Device:R_Small R2 393 | U 1 1 6019F884 394 | P 1800 5950 395 | F 0 "R2" H 1859 5996 50 0000 L CNN 396 | F 1 "1M" H 1859 5905 50 0000 L CNN 397 | F 2 "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" H 1800 5950 50 0001 C CNN 398 | F 3 "~" H 1800 5950 50 0001 C CNN 399 | 1 1800 5950 400 | 1 0 0 -1 401 | $EndComp 402 | Wire Wire Line 403 | 1650 5800 1650 5850 404 | Wire Wire Line 405 | 1650 5850 1800 5850 406 | Connection ~ 1650 5850 407 | Wire Wire Line 408 | 1650 6050 1800 6050 409 | Wire Wire Line 410 | 1800 6050 1800 6150 411 | Wire Wire Line 412 | 1800 6150 1950 6150 413 | Connection ~ 1800 6050 414 | Wire Wire Line 415 | 1950 5800 1950 6150 416 | Connection ~ 1950 6150 417 | $Comp 418 | L Regulator_Linear:AMS1117-3.3 U2 419 | U 1 1 601A3EEC 420 | P 6100 4400 421 | F 0 "U2" H 6100 4642 50 0000 C CNN 422 | F 1 "AMS1117-3.3" H 6100 4551 50 0000 C CNN 423 | F 2 "Package_TO_SOT_SMD:SOT-223-3_TabPin2" H 6100 4600 50 0001 C CNN 424 | F 3 "http://www.advanced-monolithic.com/pdf/ds1117.pdf" H 6200 4150 50 0001 C CNN 425 | 1 6100 4400 426 | 1 0 0 -1 427 | $EndComp 428 | $Comp 429 | L power:+5V #PWR0111 430 | U 1 1 601A4E09 431 | P 5400 4400 432 | F 0 "#PWR0111" H 5400 4250 50 0001 C CNN 433 | F 1 "+5V" H 5415 4573 50 0000 C CNN 434 | F 2 "" H 5400 4400 50 0001 C CNN 435 | F 3 "" H 5400 4400 50 0001 C CNN 436 | 1 5400 4400 437 | 1 0 0 -1 438 | $EndComp 439 | Wire Wire Line 440 | 5400 4400 5500 4400 441 | $Comp 442 | L power:GND #PWR0112 443 | U 1 1 601A613B 444 | P 6100 4900 445 | F 0 "#PWR0112" H 6100 4650 50 0001 C CNN 446 | F 1 "GND" H 6105 4727 50 0000 C CNN 447 | F 2 "" H 6100 4900 50 0001 C CNN 448 | F 3 "" H 6100 4900 50 0001 C CNN 449 | 1 6100 4900 450 | 1 0 0 -1 451 | $EndComp 452 | Wire Wire Line 453 | 6100 4700 6100 4850 454 | $Comp 455 | L Device:C_Small C2 456 | U 1 1 601A7419 457 | P 5500 4650 458 | F 0 "C2" V 5450 4500 50 0000 L CNN 459 | F 1 "104" V 5450 4650 50 0000 L CNN 460 | F 2 "Capacitor_SMD:C_0603_1608Metric_Pad1.05x0.95mm_HandSolder" H 5500 4650 50 0001 C CNN 461 | F 3 "~" H 5500 4650 50 0001 C CNN 462 | 1 5500 4650 463 | 1 0 0 -1 464 | $EndComp 465 | $Comp 466 | L Device:C_Small C3 467 | U 1 1 601A7B49 468 | P 5750 4650 469 | F 0 "C3" V 5700 4500 50 0000 L CNN 470 | F 1 "106" V 5700 4650 50 0000 L CNN 471 | F 2 "Capacitor_SMD:C_0603_1608Metric_Pad1.05x0.95mm_HandSolder" H 5750 4650 50 0001 C CNN 472 | F 3 "~" H 5750 4650 50 0001 C CNN 473 | 1 5750 4650 474 | 1 0 0 -1 475 | $EndComp 476 | Wire Wire Line 477 | 5500 4550 5500 4400 478 | Connection ~ 5500 4400 479 | Wire Wire Line 480 | 5500 4400 5750 4400 481 | Wire Wire Line 482 | 5750 4550 5750 4400 483 | Connection ~ 5750 4400 484 | Wire Wire Line 485 | 5750 4400 5800 4400 486 | Wire Wire Line 487 | 5500 4750 5500 4850 488 | Wire Wire Line 489 | 5500 4850 5750 4850 490 | Connection ~ 6100 4850 491 | Wire Wire Line 492 | 6100 4850 6100 4900 493 | Wire Wire Line 494 | 5750 4750 5750 4850 495 | Connection ~ 5750 4850 496 | Wire Wire Line 497 | 5750 4850 6100 4850 498 | $Comp 499 | L power:+3V3 #PWR0113 500 | U 1 1 601ACAC5 501 | P 6800 4400 502 | F 0 "#PWR0113" H 6800 4250 50 0001 C CNN 503 | F 1 "+3V3" H 6815 4573 50 0000 C CNN 504 | F 2 "" H 6800 4400 50 0001 C CNN 505 | F 3 "" H 6800 4400 50 0001 C CNN 506 | 1 6800 4400 507 | 1 0 0 -1 508 | $EndComp 509 | $Comp 510 | L Device:C_Small C6 511 | U 1 1 601ADCE3 512 | P 6500 4650 513 | F 0 "C6" V 6450 4500 50 0000 L CNN 514 | F 1 "104" V 6450 4650 50 0000 L CNN 515 | F 2 "Capacitor_SMD:C_0603_1608Metric_Pad1.05x0.95mm_HandSolder" H 6500 4650 50 0001 C CNN 516 | F 3 "~" H 6500 4650 50 0001 C CNN 517 | 1 6500 4650 518 | 1 0 0 -1 519 | $EndComp 520 | Wire Wire Line 521 | 6500 4400 6500 4550 522 | Connection ~ 6500 4400 523 | Wire Wire Line 524 | 6500 4400 6400 4400 525 | Wire Wire Line 526 | 6500 4750 6500 4850 527 | Wire Wire Line 528 | 6500 4850 6100 4850 529 | $Comp 530 | L Device:C_Small C7 531 | U 1 1 601B0151 532 | P 6700 4650 533 | F 0 "C7" V 6650 4500 50 0000 L CNN 534 | F 1 "106" V 6650 4650 50 0000 L CNN 535 | F 2 "Capacitor_SMD:C_0603_1608Metric_Pad1.05x0.95mm_HandSolder" H 6700 4650 50 0001 C CNN 536 | F 3 "~" H 6700 4650 50 0001 C CNN 537 | 1 6700 4650 538 | 1 0 0 -1 539 | $EndComp 540 | Wire Wire Line 541 | 6500 4400 6700 4400 542 | Wire Wire Line 543 | 6700 4550 6700 4400 544 | Connection ~ 6700 4400 545 | Wire Wire Line 546 | 6700 4400 6800 4400 547 | Wire Wire Line 548 | 6700 4750 6700 4850 549 | Wire Wire Line 550 | 6700 4850 6500 4850 551 | Connection ~ 6500 4850 552 | $Comp 553 | L MCU_Module:WCH-Link U3 554 | U 1 1 601BBD0B 555 | P 8100 4500 556 | F 0 "U3" H 8600 4665 50 0000 C CNN 557 | F 1 "WCH-Link" H 8600 4574 50 0000 C CNN 558 | F 2 "" H 8100 4500 50 0001 C CNN 559 | F 3 "" H 8100 4500 50 0001 C CNN 560 | 1 8100 4500 561 | 1 0 0 -1 562 | $EndComp 563 | $Comp 564 | L power:+5V #PWR0114 565 | U 1 1 601BC93A 566 | P 7600 4600 567 | F 0 "#PWR0114" H 7600 4450 50 0001 C CNN 568 | F 1 "+5V" V 7615 4728 50 0000 L CNN 569 | F 2 "" H 7600 4600 50 0001 C CNN 570 | F 3 "" H 7600 4600 50 0001 C CNN 571 | 1 7600 4600 572 | 0 -1 -1 0 573 | $EndComp 574 | Wire Wire Line 575 | 7600 4600 8000 4600 576 | Text Label 9600 4800 2 50 ~ 0 577 | TX 578 | Wire Wire Line 579 | 9600 4800 9200 4800 580 | Text Label 9600 4700 2 50 ~ 0 581 | RX 582 | Wire Wire Line 583 | 9600 4700 9200 4700 584 | $Comp 585 | L power:GND #PWR0115 586 | U 1 1 601C162C 587 | P 7600 4900 588 | F 0 "#PWR0115" H 7600 4650 50 0001 C CNN 589 | F 1 "GND" V 7605 4772 50 0000 R CNN 590 | F 2 "" H 7600 4900 50 0001 C CNN 591 | F 3 "" H 7600 4900 50 0001 C CNN 592 | 1 7600 4900 593 | 0 1 1 0 594 | $EndComp 595 | Wire Wire Line 596 | 7600 4900 8000 4900 597 | Wire Wire Line 598 | 8350 5500 8350 5100 599 | Wire Wire Line 600 | 8850 5500 8850 5100 601 | Wire Wire Line 602 | 9600 4900 9200 4900 603 | Wire Wire Line 604 | 7600 4700 8000 4700 605 | Wire Wire Line 606 | 7600 4800 8000 4800 607 | Wire Wire Line 608 | 9600 4600 9200 4600 609 | $Comp 610 | L power:GND #PWR0116 611 | U 1 1 601C9639 612 | P 8350 5500 613 | F 0 "#PWR0116" H 8350 5250 50 0001 C CNN 614 | F 1 "GND" H 8355 5327 50 0000 C CNN 615 | F 2 "" H 8350 5500 50 0001 C CNN 616 | F 3 "" H 8350 5500 50 0001 C CNN 617 | 1 8350 5500 618 | 1 0 0 -1 619 | $EndComp 620 | $Comp 621 | L power:+3V3 #PWR0117 622 | U 1 1 601CA61F 623 | P 8850 5500 624 | F 0 "#PWR0117" H 8850 5350 50 0001 C CNN 625 | F 1 "+3V3" H 8865 5673 50 0000 C CNN 626 | F 2 "" H 8850 5500 50 0001 C CNN 627 | F 3 "" H 8850 5500 50 0001 C CNN 628 | 1 8850 5500 629 | -1 0 0 1 630 | $EndComp 631 | $Comp 632 | L power:GND #PWR0118 633 | U 1 1 601CA83A 634 | P 9600 4900 635 | F 0 "#PWR0118" H 9600 4650 50 0001 C CNN 636 | F 1 "GND" V 9605 4772 50 0000 R CNN 637 | F 2 "" H 9600 4900 50 0001 C CNN 638 | F 3 "" H 9600 4900 50 0001 C CNN 639 | 1 9600 4900 640 | 0 -1 -1 0 641 | $EndComp 642 | Text Label 7600 4700 0 50 ~ 0 643 | T_SWDIO 644 | Text Label 7600 4800 0 50 ~ 0 645 | T_SWCLK 646 | $Comp 647 | L power:+3V3 #PWR0119 648 | U 1 1 601CB1EE 649 | P 9600 4600 650 | F 0 "#PWR0119" H 9600 4450 50 0001 C CNN 651 | F 1 "+3V3" V 9615 4728 50 0000 L CNN 652 | F 2 "" H 9600 4600 50 0001 C CNN 653 | F 3 "" H 9600 4600 50 0001 C CNN 654 | 1 9600 4600 655 | 0 1 1 0 656 | $EndComp 657 | Text Label 8550 5500 1 50 ~ 0 658 | T_SWCLK 659 | Text Label 8450 5500 1 50 ~ 0 660 | T_SWDIO 661 | Text Label 8750 5500 1 50 ~ 0 662 | TX 663 | Text Label 8650 5500 1 50 ~ 0 664 | RX 665 | Wire Wire Line 666 | 8550 5500 8550 5100 667 | Wire Wire Line 668 | 8450 5500 8450 5100 669 | Wire Wire Line 670 | 8750 5500 8750 5100 671 | Wire Wire Line 672 | 8650 5500 8650 5100 673 | $EndSCHEMATC 674 | -------------------------------------------------------------------------------- /image/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaidegit/CMSIS-DAPbyWCH/7730b6388bb46ca279a42af0a29932ae8b32287a/image/.DS_Store -------------------------------------------------------------------------------- /image/MDK-ARM.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaidegit/CMSIS-DAPbyWCH/7730b6388bb46ca279a42af0a29932ae8b32287a/image/MDK-ARM.jpg -------------------------------------------------------------------------------- /image/openocd.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaidegit/CMSIS-DAPbyWCH/7730b6388bb46ca279a42af0a29932ae8b32287a/image/openocd.jpg -------------------------------------------------------------------------------- /image/size.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaidegit/CMSIS-DAPbyWCH/7730b6388bb46ca279a42af0a29932ae8b32287a/image/size.png -------------------------------------------------------------------------------- /tools/WCHISPTool_Setup.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaidegit/CMSIS-DAPbyWCH/7730b6388bb46ca279a42af0a29932ae8b32287a/tools/WCHISPTool_Setup.exe --------------------------------------------------------------------------------