├── .gitignore
├── LICENSE
├── README.md
├── emmc-adapter-cache.lib
├── emmc-adapter.kicad_pcb
├── emmc-adapter.kicad_pro
├── emmc-adapter.kicad_sch
├── emmc_adapter_populated_revA.jpg
└── gerbers
├── .DS_Store
└── gerbers_emmc_revB.zip
/.gitignore:
--------------------------------------------------------------------------------
1 | # For PCBs designed using KiCad: http://www.kicad-pcb.org/
2 | # Format documentation: http://kicad-pcb.org/help/file-formats/
3 |
4 | # Temporary files
5 | *.000
6 | *.bak
7 | *.bck
8 | *.kicad_pcb-bak
9 | *.sch-bak
10 | *~
11 | _autosave-*
12 | *.tmp
13 | *-save.pro
14 | *-save.kicad_pcb
15 | fp-info-cache
16 |
17 | # Netlist files (exported from Eeschema)
18 | *.net
19 |
20 | # Autorouter files (exported from Pcbnew)
21 | *.dsn
22 | *.ses
23 |
24 | # Exported BOM files
25 | *.xml
26 | *.csv
27 |
--------------------------------------------------------------------------------
/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 | # eMMC WFBGA153 to microSD card adapter PCB
2 | This adapter can be used for data recovery purposes by soldering a WFBGA eMMC chip and connecting to a standard microSD card reader for read/write operations or if you would like to build an inexpensive storage device using cheap memory chips obtained from Ebay/Aliexpress or salvaged from other devices. Image below shows the adapter assembled with a Toshiba 4GB eMMC chip.
3 |
4 | ### What else do you need?
5 | Besides this custom designed PCB you will need a couple of bypass capacitors (0.1-1uF 10V or above in 0603 package) and the eMMC memory chip. eMMC chips in WFBGA153 package are available from every big distributor but if you would like to try your luck with some inexpensive options, check out [this link.](https://voltlog.com/y/pg8ny)
6 |
7 | Alternatively you can order this PCB adapter from my [Tindie store](https://www.tindie.com/products/voltlog/emmc-wfbga153-to-microsd-card-adapter-set-of-2/).
8 |
9 | More info about this project in [Voltlog #351](https://youtu.be/pFo1xvBqbqs).
10 |
11 | 
12 |
13 |
--------------------------------------------------------------------------------
/emmc-adapter-cache.lib:
--------------------------------------------------------------------------------
1 | EESchema-LIBRARY Version 2.4
2 | #encoding utf-8
3 | #
4 | # Connector_Micro_SD_Card
5 | #
6 | DEF Connector_Micro_SD_Card J 0 40 Y Y 1 F N
7 | F0 "J" -650 600 50 H V C CNN
8 | F1 "Connector_Micro_SD_Card" 650 600 50 H V R CNN
9 | F2 "" 1150 300 50 H I C CNN
10 | F3 "" 0 0 50 H I C CNN
11 | $FPLIST
12 | microSD*
13 | $ENDFPLIST
14 | DRAW
15 | S -300 -375 -200 -425 0 1 0 F
16 | S -300 -275 -200 -325 0 1 0 F
17 | S -300 -175 -200 -225 0 1 0 F
18 | S -300 -75 -200 -125 0 1 0 F
19 | S -300 25 -200 -25 0 1 0 F
20 | S -300 125 -200 75 0 1 0 F
21 | S -300 225 -200 175 0 1 0 F
22 | S -300 325 -200 275 0 1 0 F
23 | P 6 0 1 10 650 500 650 550 -750 550 -750 -650 650 -650 650 -450 N
24 | P 11 0 1 10 -350 -450 -350 350 -50 350 100 500 150 500 150 450 250 450 300 500 800 500 800 -450 -350 -450 f
25 | X DAT2 1 -900 300 150 R 50 50 1 1 B
26 | X DAT3/CD 2 -900 200 150 R 50 50 1 1 B
27 | X CMD 3 -900 100 150 R 50 50 1 1 I
28 | X VDD 4 -900 0 150 R 50 50 1 1 W
29 | X CLK 5 -900 -100 150 R 50 50 1 1 I
30 | X VSS 6 -900 -200 150 R 50 50 1 1 W
31 | X DAT0 7 -900 -300 150 R 50 50 1 1 B
32 | X DAT1 8 -900 -400 150 R 50 50 1 1 B
33 | X SHIELD 9 800 -600 150 L 50 50 1 1 P
34 | ENDDRAW
35 | ENDDEF
36 | #
37 | # Device_C
38 | #
39 | DEF Device_C C 0 10 N Y 1 F N
40 | F0 "C" 25 100 50 H V L CNN
41 | F1 "Device_C" 25 -100 50 H V L CNN
42 | F2 "" 38 -150 50 H I C CNN
43 | F3 "" 0 0 50 H I C CNN
44 | $FPLIST
45 | C_*
46 | $ENDFPLIST
47 | DRAW
48 | P 2 0 1 20 -80 -30 80 -30 N
49 | P 2 0 1 20 -80 30 80 30 N
50 | X ~ 1 0 150 110 D 50 50 1 1 P
51 | X ~ 2 0 -150 110 U 50 50 1 1 P
52 | ENDDRAW
53 | ENDDEF
54 | #
55 | # Mechanical_Fiducial
56 | #
57 | DEF Mechanical_Fiducial FID 0 20 Y Y 1 F N
58 | F0 "FID" 0 200 50 H V C CNN
59 | F1 "Mechanical_Fiducial" 0 125 50 H V C CNN
60 | F2 "" 0 0 50 H I C CNN
61 | F3 "" 0 0 50 H I C CNN
62 | $FPLIST
63 | Fiducial*
64 | $ENDFPLIST
65 | DRAW
66 | C 0 0 50 0 1 20 f
67 | ENDDRAW
68 | ENDDEF
69 | #
70 | # power_GND
71 | #
72 | DEF power_GND #PWR 0 0 Y Y 1 F P
73 | F0 "#PWR" 0 -250 50 H I C CNN
74 | F1 "power_GND" 0 -150 50 H V C CNN
75 | F2 "" 0 0 50 H I C CNN
76 | F3 "" 0 0 50 H I C CNN
77 | DRAW
78 | P 6 0 1 0 0 0 0 -50 50 -50 0 -100 -50 -50 0 -50 N
79 | X GND 1 0 0 0 D 50 50 1 1 W N
80 | ENDDRAW
81 | ENDDEF
82 | #
83 | # power_VCC
84 | #
85 | DEF power_VCC #PWR 0 0 Y Y 1 F P
86 | F0 "#PWR" 0 -150 50 H I C CNN
87 | F1 "power_VCC" 0 150 50 H V C CNN
88 | F2 "" 0 0 50 H I C CNN
89 | F3 "" 0 0 50 H I C CNN
90 | DRAW
91 | P 2 0 1 0 -30 50 0 100 N
92 | P 2 0 1 0 0 0 0 100 N
93 | P 2 0 1 0 0 100 30 50 N
94 | X VCC 1 0 0 0 U 50 50 1 1 W N
95 | ENDDRAW
96 | ENDDEF
97 | #
98 | # voltlog_THGBMNG5D1LBAIL
99 | #
100 | DEF voltlog_THGBMNG5D1LBAIL U 0 40 Y Y 1 F N
101 | F0 "U" -300 1050 50 H V C CNN
102 | F1 "voltlog_THGBMNG5D1LBAIL" 300 1050 50 H V C CNN
103 | F2 "Voltlog:WFBGA153" 0 -1200 50 H I C CNN
104 | F3 "" -50 -850 50 H I C CNN
105 | DRAW
106 | S -350 1000 350 -1100 0 1 0 f
107 | X VSS A6 450 -500 100 L 50 50 0 0 W
108 | X DAT0 A3 -450 250 100 R 50 50 1 1 B
109 | X DAT1 A4 -450 150 100 R 50 50 1 1 B
110 | X DAT2 A5 -450 50 100 R 50 50 1 1 B
111 | X DAT3 B2 -450 -50 100 R 50 50 1 1 B
112 | X DAT4 B3 -450 -150 100 R 50 50 1 1 B
113 | X DAT5 B4 -450 -250 100 R 50 50 1 1 B
114 | X DAT6 B5 -450 -350 100 R 50 50 1 1 B
115 | X DAT7 B6 -450 -450 100 R 50 50 1 1 B
116 | X VDDI C2 -450 -900 100 R 50 50 1 1 W
117 | X VSSQ C4 450 -1000 100 L 50 50 1 1 W
118 | X VCCQ C6 450 900 100 L 50 50 1 1 W
119 | X VCC E6 450 100 100 L 50 50 1 1 W
120 | X VSS E7 450 -400 100 L 50 50 1 1 W
121 | X VCC F5 450 200 100 L 50 50 1 1 W
122 | X VSS G5 450 -300 100 L 50 50 1 1 W
123 | X VSS H10 450 -200 100 L 50 50 1 1 W
124 | X DS H5 -450 600 100 R 50 50 1 1 P
125 | X VCC J10 450 300 100 L 50 50 1 1 W
126 | X VSS J5 450 -100 100 L 50 50 1 1 W
127 | X RST_N K5 -450 900 100 R 50 50 1 1 P
128 | X VSS K8 450 0 100 L 50 50 1 1 W
129 | X VCC K9 450 400 100 L 50 50 1 1 W
130 | X VCCQ M4 450 800 100 L 50 50 1 1 W
131 | X CMD M5 -450 700 100 R 50 50 1 1 I
132 | X CLK M6 -450 800 100 R 50 50 1 1 I
133 | X VSSQ N2 450 -900 100 L 50 50 1 1 W
134 | X VCCQ N4 450 600 100 L 50 50 1 1 W
135 | X VSSQ N5 450 -800 100 L 50 50 1 1 W
136 | X VCCQ P3 450 700 100 L 50 50 1 1 W
137 | X VSSQ P4 450 -700 100 L 50 50 1 1 W
138 | X VCCQ P5 450 500 100 L 50 50 1 1 W
139 | X VSSQ P6 450 -600 100 L 50 50 1 1 W
140 | ENDDRAW
141 | ENDDEF
142 | #
143 | # voltlog_VOLTLOG_LOGO
144 | #
145 | DEF voltlog_VOLTLOG_LOGO V 0 0 N N 1 F N
146 | F0 "V" 0 -130 60 H I C CNN
147 | F1 "voltlog_VOLTLOG_LOGO" 0 130 60 H I C CNN
148 | F2 "" 0 0 50 H I C CNN
149 | F3 "" 0 0 50 H I C CNN
150 | DRAW
151 | P 208 0 0 1 -16 -122 -16 -121 -9 -114 -7 -111 -1 -105 2 -101 8 -95 11 -91 17 -85 21 -79 29 -71 60 -71 63 -70 67 -70 72 -69 77 -67 81 -64 88 -57 90 -53 93 -48 94 -43 95 -41 95 -37 96 -33 96 -29 97 -24 97 24 96 27 96 30 95 33 95 37 93 45 91 51 89 54 87 56 85 59 83 60 81 62 78 64 74 66 68 68 64 69 60 69 55 70 50 70 44 71 24 71 17 72 -19 72 -26 71 -45 71 -51 70 -56 70 -61 69 -65 69 -68 68 -71 68 -76 66 -80 64 -84 61 -88 57 -89 55 -93 51 -95 45 -97 37 -97 33 -98 28 -99 22 -99 -25 -97 -35 -97 -39 -96 -43 -94 -49 -90 -57 -86 -61 -78 -67 -73 -69 -69 -71 -47 -71 -44 -70 -22 -70 -16 -67 -13 -65 -7 -59 -7 -58 -5 -54 -2 -45 -1 -43 0 -40 1 -36 3 -32 4 -28 6 -23 7 -19 9 -14 9 -13 10 -10 12 -6 14 0 14 2 15 4 15 5 16 5 14 7 13 7 13 6 12 6 7 1 6 -1 2 -5 0 -8 -6 -14 -9 -18 -16 -25 -19 -29 -21 -32 -24 -34 -26 -37 -32 -43 -34 -46 -56 -46 -59 -45 -64 -45 -65 -44 -68 -43 -70 -39 -71 -38 -71 -35 -72 -31 -72 -27 -73 -22 -73 18 -72 23 -72 28 -71 32 -71 34 -70 36 -70 38 -69 40 -68 41 -64 43 -62 43 -59 44 -51 44 -46 45 -34 45 -27 46 22 46 29 45 46 45 51 44 55 44 59 43 62 43 66 41 67 40 68 38 69 35 69 32 70 31 70 27 71 22 71 11 72 5 72 -7 71 -13 71 -23 70 -28 70 -32 69 -36 69 -39 68 -40 67 -42 65 -44 63 -45 62 -45 60 -46 21 -46 19 -47 15 -47 14 -48 13 -48 11 -49 9 -51 6 -53 2 -59 1 -60 0 -62 0 -64 -1 -66 -2 -69 -3 -70 -3 -72 -5 -78 -7 -82 -8 -86 -10 -90 -11 -95 -13 -99 -14 -103 -15 -106 -17 -110 -19 -116 -19 -118 -20 -120 -20 -123 -17 -123 -16 -122 F
152 | ENDDRAW
153 | ENDDEF
154 | #
155 | #End Library
156 |
--------------------------------------------------------------------------------
/emmc-adapter.kicad_pro:
--------------------------------------------------------------------------------
1 | {
2 | "board": {
3 | "3dviewports": [],
4 | "design_settings": {
5 | "defaults": {
6 | "apply_defaults_to_fp_fields": false,
7 | "apply_defaults_to_fp_shapes": false,
8 | "apply_defaults_to_fp_text": false,
9 | "board_outline_line_width": 0.05,
10 | "copper_line_width": 0.2,
11 | "copper_text_italic": false,
12 | "copper_text_size_h": 1.5,
13 | "copper_text_size_v": 1.5,
14 | "copper_text_thickness": 0.3,
15 | "copper_text_upright": false,
16 | "courtyard_line_width": 0.05,
17 | "dimension_precision": 4,
18 | "dimension_units": 3,
19 | "dimensions": {
20 | "arrow_length": 1270000,
21 | "extension_offset": 500000,
22 | "keep_text_aligned": true,
23 | "suppress_zeroes": false,
24 | "text_position": 0,
25 | "units_format": 1
26 | },
27 | "fab_line_width": 0.1,
28 | "fab_text_italic": false,
29 | "fab_text_size_h": 1.0,
30 | "fab_text_size_v": 1.0,
31 | "fab_text_thickness": 0.15,
32 | "fab_text_upright": false,
33 | "other_line_width": 0.1,
34 | "other_text_italic": false,
35 | "other_text_size_h": 1.0,
36 | "other_text_size_v": 1.0,
37 | "other_text_thickness": 0.15,
38 | "other_text_upright": false,
39 | "pads": {
40 | "drill": 0.0,
41 | "height": 3.2,
42 | "width": 0.8
43 | },
44 | "silk_line_width": 0.12,
45 | "silk_text_italic": false,
46 | "silk_text_size_h": 1.0,
47 | "silk_text_size_v": 1.0,
48 | "silk_text_thickness": 0.15,
49 | "silk_text_upright": false,
50 | "zones": {
51 | "min_clearance": 0.508
52 | }
53 | },
54 | "diff_pair_dimensions": [],
55 | "drc_exclusions": [],
56 | "meta": {
57 | "filename": "board_design_settings.json",
58 | "version": 2
59 | },
60 | "rule_severities": {
61 | "annular_width": "error",
62 | "clearance": "error",
63 | "connection_width": "warning",
64 | "copper_edge_clearance": "error",
65 | "copper_sliver": "warning",
66 | "courtyards_overlap": "error",
67 | "diff_pair_gap_out_of_range": "error",
68 | "diff_pair_uncoupled_length_too_long": "error",
69 | "drill_out_of_range": "error",
70 | "duplicate_footprints": "warning",
71 | "extra_footprint": "warning",
72 | "footprint": "error",
73 | "footprint_symbol_mismatch": "warning",
74 | "footprint_type_mismatch": "ignore",
75 | "hole_clearance": "error",
76 | "hole_near_hole": "error",
77 | "invalid_outline": "error",
78 | "isolated_copper": "warning",
79 | "item_on_disabled_layer": "error",
80 | "items_not_allowed": "error",
81 | "length_out_of_range": "error",
82 | "lib_footprint_issues": "warning",
83 | "lib_footprint_mismatch": "warning",
84 | "malformed_courtyard": "error",
85 | "microvia_drill_out_of_range": "error",
86 | "missing_courtyard": "ignore",
87 | "missing_footprint": "warning",
88 | "net_conflict": "warning",
89 | "npth_inside_courtyard": "ignore",
90 | "padstack": "warning",
91 | "pth_inside_courtyard": "ignore",
92 | "shorting_items": "error",
93 | "silk_edge_clearance": "warning",
94 | "silk_over_copper": "warning",
95 | "silk_overlap": "warning",
96 | "skew_out_of_range": "error",
97 | "solder_mask_bridge": "error",
98 | "starved_thermal": "error",
99 | "text_height": "warning",
100 | "text_thickness": "warning",
101 | "through_hole_pad_without_hole": "error",
102 | "too_many_vias": "error",
103 | "track_dangling": "warning",
104 | "track_width": "error",
105 | "tracks_crossing": "error",
106 | "unconnected_items": "error",
107 | "unresolved_variable": "error",
108 | "via_dangling": "warning",
109 | "zones_intersect": "error"
110 | },
111 | "rule_severitieslegacy_courtyards_overlap": true,
112 | "rule_severitieslegacy_no_courtyard_defined": false,
113 | "rules": {
114 | "max_error": 0.005,
115 | "min_clearance": 0.0,
116 | "min_connection": 0.0,
117 | "min_copper_edge_clearance": 0.025,
118 | "min_hole_clearance": 0.25,
119 | "min_hole_to_hole": 0.25,
120 | "min_microvia_diameter": 0.2,
121 | "min_microvia_drill": 0.1,
122 | "min_resolved_spokes": 2,
123 | "min_silk_clearance": 0.0,
124 | "min_text_height": 0.8,
125 | "min_text_thickness": 0.08,
126 | "min_through_hole_diameter": 0.3,
127 | "min_track_width": 0.15,
128 | "min_via_annular_width": 0.1,
129 | "min_via_diameter": 0.4,
130 | "solder_mask_to_copper_clearance": 0.0,
131 | "use_height_for_length_calcs": true
132 | },
133 | "teardrop_options": [
134 | {
135 | "td_onpadsmd": true,
136 | "td_onroundshapesonly": false,
137 | "td_ontrackend": false,
138 | "td_onviapad": true
139 | }
140 | ],
141 | "teardrop_parameters": [
142 | {
143 | "td_allow_use_two_tracks": true,
144 | "td_curve_segcount": 0,
145 | "td_height_ratio": 1.0,
146 | "td_length_ratio": 0.5,
147 | "td_maxheight": 2.0,
148 | "td_maxlen": 1.0,
149 | "td_on_pad_in_zone": false,
150 | "td_target_name": "td_round_shape",
151 | "td_width_to_size_filter_ratio": 0.9
152 | },
153 | {
154 | "td_allow_use_two_tracks": true,
155 | "td_curve_segcount": 0,
156 | "td_height_ratio": 1.0,
157 | "td_length_ratio": 0.5,
158 | "td_maxheight": 2.0,
159 | "td_maxlen": 1.0,
160 | "td_on_pad_in_zone": false,
161 | "td_target_name": "td_rect_shape",
162 | "td_width_to_size_filter_ratio": 0.9
163 | },
164 | {
165 | "td_allow_use_two_tracks": true,
166 | "td_curve_segcount": 0,
167 | "td_height_ratio": 1.0,
168 | "td_length_ratio": 0.5,
169 | "td_maxheight": 2.0,
170 | "td_maxlen": 1.0,
171 | "td_on_pad_in_zone": false,
172 | "td_target_name": "td_track_end",
173 | "td_width_to_size_filter_ratio": 0.9
174 | }
175 | ],
176 | "track_widths": [
177 | 0.0,
178 | 0.15,
179 | 0.2,
180 | 0.3,
181 | 0.4,
182 | 0.5
183 | ],
184 | "tuning_pattern_settings": {
185 | "diff_pair_defaults": {
186 | "corner_radius_percentage": 80,
187 | "corner_style": 1,
188 | "max_amplitude": 1.0,
189 | "min_amplitude": 0.2,
190 | "single_sided": false,
191 | "spacing": 1.0
192 | },
193 | "diff_pair_skew_defaults": {
194 | "corner_radius_percentage": 80,
195 | "corner_style": 1,
196 | "max_amplitude": 1.0,
197 | "min_amplitude": 0.2,
198 | "single_sided": false,
199 | "spacing": 0.6
200 | },
201 | "single_track_defaults": {
202 | "corner_radius_percentage": 80,
203 | "corner_style": 1,
204 | "max_amplitude": 1.0,
205 | "min_amplitude": 0.2,
206 | "single_sided": false,
207 | "spacing": 0.6
208 | }
209 | },
210 | "via_dimensions": [
211 | {
212 | "diameter": 0.0,
213 | "drill": 0.0
214 | },
215 | {
216 | "diameter": 0.6,
217 | "drill": 0.3
218 | }
219 | ],
220 | "zones_allow_external_fillets": false
221 | },
222 | "ipc2581": {
223 | "dist": "",
224 | "distpn": "",
225 | "internal_id": "",
226 | "mfg": "",
227 | "mpn": ""
228 | },
229 | "layer_presets": [],
230 | "viewports": []
231 | },
232 | "boards": [],
233 | "cvpcb": {
234 | "equivalence_files": []
235 | },
236 | "erc": {
237 | "erc_exclusions": [],
238 | "meta": {
239 | "version": 0
240 | },
241 | "pin_map": [
242 | [
243 | 0,
244 | 0,
245 | 0,
246 | 0,
247 | 0,
248 | 0,
249 | 1,
250 | 0,
251 | 0,
252 | 0,
253 | 0,
254 | 2
255 | ],
256 | [
257 | 0,
258 | 2,
259 | 0,
260 | 1,
261 | 0,
262 | 0,
263 | 1,
264 | 0,
265 | 2,
266 | 2,
267 | 2,
268 | 2
269 | ],
270 | [
271 | 0,
272 | 0,
273 | 0,
274 | 0,
275 | 0,
276 | 0,
277 | 1,
278 | 0,
279 | 1,
280 | 0,
281 | 1,
282 | 2
283 | ],
284 | [
285 | 0,
286 | 1,
287 | 0,
288 | 0,
289 | 0,
290 | 0,
291 | 1,
292 | 1,
293 | 2,
294 | 1,
295 | 1,
296 | 2
297 | ],
298 | [
299 | 0,
300 | 0,
301 | 0,
302 | 0,
303 | 0,
304 | 0,
305 | 1,
306 | 0,
307 | 0,
308 | 0,
309 | 0,
310 | 2
311 | ],
312 | [
313 | 0,
314 | 0,
315 | 0,
316 | 0,
317 | 0,
318 | 0,
319 | 0,
320 | 0,
321 | 0,
322 | 0,
323 | 0,
324 | 2
325 | ],
326 | [
327 | 1,
328 | 1,
329 | 1,
330 | 1,
331 | 1,
332 | 0,
333 | 1,
334 | 1,
335 | 1,
336 | 1,
337 | 1,
338 | 2
339 | ],
340 | [
341 | 0,
342 | 0,
343 | 0,
344 | 1,
345 | 0,
346 | 0,
347 | 1,
348 | 0,
349 | 0,
350 | 0,
351 | 0,
352 | 2
353 | ],
354 | [
355 | 0,
356 | 2,
357 | 1,
358 | 2,
359 | 0,
360 | 0,
361 | 1,
362 | 0,
363 | 2,
364 | 2,
365 | 2,
366 | 2
367 | ],
368 | [
369 | 0,
370 | 2,
371 | 0,
372 | 1,
373 | 0,
374 | 0,
375 | 1,
376 | 0,
377 | 2,
378 | 0,
379 | 0,
380 | 2
381 | ],
382 | [
383 | 0,
384 | 2,
385 | 1,
386 | 1,
387 | 0,
388 | 0,
389 | 1,
390 | 0,
391 | 2,
392 | 0,
393 | 0,
394 | 2
395 | ],
396 | [
397 | 2,
398 | 2,
399 | 2,
400 | 2,
401 | 2,
402 | 2,
403 | 2,
404 | 2,
405 | 2,
406 | 2,
407 | 2,
408 | 2
409 | ]
410 | ],
411 | "rule_severities": {
412 | "bus_definition_conflict": "error",
413 | "bus_entry_needed": "error",
414 | "bus_to_bus_conflict": "error",
415 | "bus_to_net_conflict": "error",
416 | "conflicting_netclasses": "error",
417 | "different_unit_footprint": "error",
418 | "different_unit_net": "error",
419 | "duplicate_reference": "error",
420 | "duplicate_sheet_names": "error",
421 | "endpoint_off_grid": "warning",
422 | "extra_units": "error",
423 | "global_label_dangling": "warning",
424 | "hier_label_mismatch": "error",
425 | "label_dangling": "error",
426 | "lib_symbol_issues": "warning",
427 | "missing_bidi_pin": "warning",
428 | "missing_input_pin": "warning",
429 | "missing_power_pin": "error",
430 | "missing_unit": "warning",
431 | "multiple_net_names": "warning",
432 | "net_not_bus_member": "warning",
433 | "no_connect_connected": "warning",
434 | "no_connect_dangling": "warning",
435 | "pin_not_connected": "error",
436 | "pin_not_driven": "error",
437 | "pin_to_pin": "warning",
438 | "power_pin_not_driven": "error",
439 | "similar_labels": "warning",
440 | "simulation_model_issue": "ignore",
441 | "unannotated": "error",
442 | "unit_value_mismatch": "error",
443 | "unresolved_variable": "error",
444 | "wire_dangling": "error"
445 | }
446 | },
447 | "libraries": {
448 | "pinned_footprint_libs": [],
449 | "pinned_symbol_libs": []
450 | },
451 | "meta": {
452 | "filename": "emmc-adapter.kicad_pro",
453 | "version": 1
454 | },
455 | "net_settings": {
456 | "classes": [
457 | {
458 | "bus_width": 12,
459 | "clearance": 0.1,
460 | "diff_pair_gap": 0.25,
461 | "diff_pair_via_gap": 0.25,
462 | "diff_pair_width": 0.2,
463 | "line_style": 0,
464 | "microvia_diameter": 0.3,
465 | "microvia_drill": 0.1,
466 | "name": "Default",
467 | "pcb_color": "rgba(0, 0, 0, 0.000)",
468 | "schematic_color": "rgba(0, 0, 0, 0.000)",
469 | "track_width": 0.2,
470 | "via_diameter": 0.6,
471 | "via_drill": 0.3,
472 | "wire_width": 6
473 | }
474 | ],
475 | "meta": {
476 | "version": 3
477 | },
478 | "net_colors": null,
479 | "netclass_assignments": null,
480 | "netclass_patterns": [
481 | {
482 | "netclass": "Default",
483 | "pattern": "/CLK"
484 | },
485 | {
486 | "netclass": "Default",
487 | "pattern": "/CMD"
488 | },
489 | {
490 | "netclass": "Default",
491 | "pattern": "/DAT0"
492 | },
493 | {
494 | "netclass": "Default",
495 | "pattern": "/DAT1"
496 | },
497 | {
498 | "netclass": "Default",
499 | "pattern": "/DAT2"
500 | },
501 | {
502 | "netclass": "Default",
503 | "pattern": "/DAT3"
504 | },
505 | {
506 | "netclass": "Default",
507 | "pattern": "/VDDI"
508 | },
509 | {
510 | "netclass": "Default",
511 | "pattern": "GND"
512 | },
513 | {
514 | "netclass": "Default",
515 | "pattern": "Net-(U1-PadB3)"
516 | },
517 | {
518 | "netclass": "Default",
519 | "pattern": "Net-(U1-PadB4)"
520 | },
521 | {
522 | "netclass": "Default",
523 | "pattern": "Net-(U1-PadB5)"
524 | },
525 | {
526 | "netclass": "Default",
527 | "pattern": "Net-(U1-PadB6)"
528 | },
529 | {
530 | "netclass": "Default",
531 | "pattern": "Net-(U1-PadH5)"
532 | },
533 | {
534 | "netclass": "Default",
535 | "pattern": "VCC"
536 | }
537 | ]
538 | },
539 | "pcbnew": {
540 | "last_paths": {
541 | "gencad": "",
542 | "idf": "",
543 | "netlist": "",
544 | "plot": "",
545 | "pos_files": "",
546 | "specctra_dsn": "",
547 | "step": "",
548 | "svg": "",
549 | "vrml": ""
550 | },
551 | "page_layout_descr_file": ""
552 | },
553 | "schematic": {
554 | "annotate_start_num": 0,
555 | "bom_fmt_presets": [],
556 | "bom_fmt_settings": {
557 | "field_delimiter": ",",
558 | "keep_line_breaks": false,
559 | "keep_tabs": false,
560 | "name": "CSV",
561 | "ref_delimiter": ",",
562 | "ref_range_delimiter": "",
563 | "string_delimiter": "\""
564 | },
565 | "bom_presets": [],
566 | "bom_settings": {
567 | "exclude_dnp": false,
568 | "fields_ordered": [
569 | {
570 | "group_by": false,
571 | "label": "Reference",
572 | "name": "Reference",
573 | "show": true
574 | },
575 | {
576 | "group_by": true,
577 | "label": "Value",
578 | "name": "Value",
579 | "show": true
580 | },
581 | {
582 | "group_by": false,
583 | "label": "Datasheet",
584 | "name": "Datasheet",
585 | "show": true
586 | },
587 | {
588 | "group_by": false,
589 | "label": "Footprint",
590 | "name": "Footprint",
591 | "show": true
592 | },
593 | {
594 | "group_by": false,
595 | "label": "Qty",
596 | "name": "${QUANTITY}",
597 | "show": true
598 | },
599 | {
600 | "group_by": true,
601 | "label": "DNP",
602 | "name": "${DNP}",
603 | "show": true
604 | }
605 | ],
606 | "filter_string": "",
607 | "group_symbols": true,
608 | "name": "Grouped By Value",
609 | "sort_asc": true,
610 | "sort_field": "Reference"
611 | },
612 | "connection_grid_size": 50.0,
613 | "drawing": {
614 | "dashed_lines_dash_length_ratio": 12.0,
615 | "dashed_lines_gap_length_ratio": 3.0,
616 | "default_line_thickness": 6.0,
617 | "default_text_size": 50.0,
618 | "field_names": [],
619 | "intersheets_ref_own_page": false,
620 | "intersheets_ref_prefix": "",
621 | "intersheets_ref_short": false,
622 | "intersheets_ref_show": false,
623 | "intersheets_ref_suffix": "",
624 | "junction_size_choice": 3,
625 | "label_size_ratio": 0.25,
626 | "operating_point_overlay_i_precision": 3,
627 | "operating_point_overlay_i_range": "~A",
628 | "operating_point_overlay_v_precision": 3,
629 | "operating_point_overlay_v_range": "~V",
630 | "overbar_offset_ratio": 1.23,
631 | "pin_symbol_size": 0.0,
632 | "text_offset_ratio": 0.08
633 | },
634 | "legacy_lib_dir": "",
635 | "legacy_lib_list": [],
636 | "meta": {
637 | "version": 1
638 | },
639 | "net_format_name": "",
640 | "page_layout_descr_file": "",
641 | "plot_directory": "",
642 | "spice_current_sheet_as_root": false,
643 | "spice_external_command": "spice \"%I\"",
644 | "spice_model_current_sheet_as_root": true,
645 | "spice_save_all_currents": false,
646 | "spice_save_all_dissipations": false,
647 | "spice_save_all_voltages": false,
648 | "subpart_first_id": 65,
649 | "subpart_id_separator": 0
650 | },
651 | "sheets": [
652 | [
653 | "68663db6-c703-4253-b388-4008f4be15fd",
654 | "Root"
655 | ]
656 | ],
657 | "text_variables": {}
658 | }
659 |
--------------------------------------------------------------------------------
/emmc-adapter.kicad_sch:
--------------------------------------------------------------------------------
1 | (kicad_sch
2 | (version 20231120)
3 | (generator "eeschema")
4 | (generator_version "8.0")
5 | (uuid "68663db6-c703-4253-b388-4008f4be15fd")
6 | (paper "A4")
7 | (title_block
8 | (title "Voltlog eMMC to microSD Adapter")
9 | (date "2021-07-06")
10 | (rev "A")
11 | )
12 | (lib_symbols
13 | (symbol "Connector:Micro_SD_Card"
14 | (pin_names
15 | (offset 1.016)
16 | )
17 | (exclude_from_sim no)
18 | (in_bom yes)
19 | (on_board yes)
20 | (property "Reference" "J"
21 | (at -16.51 15.24 0)
22 | (effects
23 | (font
24 | (size 1.27 1.27)
25 | )
26 | )
27 | )
28 | (property "Value" "Micro_SD_Card"
29 | (at 16.51 15.24 0)
30 | (effects
31 | (font
32 | (size 1.27 1.27)
33 | )
34 | (justify right)
35 | )
36 | )
37 | (property "Footprint" ""
38 | (at 29.21 7.62 0)
39 | (effects
40 | (font
41 | (size 1.27 1.27)
42 | )
43 | (hide yes)
44 | )
45 | )
46 | (property "Datasheet" "http://katalog.we-online.de/em/datasheet/693072010801.pdf"
47 | (at 0 0 0)
48 | (effects
49 | (font
50 | (size 1.27 1.27)
51 | )
52 | (hide yes)
53 | )
54 | )
55 | (property "Description" "Micro SD Card Socket"
56 | (at 0 0 0)
57 | (effects
58 | (font
59 | (size 1.27 1.27)
60 | )
61 | (hide yes)
62 | )
63 | )
64 | (property "ki_keywords" "connector SD microsd"
65 | (at 0 0 0)
66 | (effects
67 | (font
68 | (size 1.27 1.27)
69 | )
70 | (hide yes)
71 | )
72 | )
73 | (property "ki_fp_filters" "microSD*"
74 | (at 0 0 0)
75 | (effects
76 | (font
77 | (size 1.27 1.27)
78 | )
79 | (hide yes)
80 | )
81 | )
82 | (symbol "Micro_SD_Card_0_1"
83 | (rectangle
84 | (start -7.62 -9.525)
85 | (end -5.08 -10.795)
86 | (stroke
87 | (width 0)
88 | (type default)
89 | )
90 | (fill
91 | (type outline)
92 | )
93 | )
94 | (rectangle
95 | (start -7.62 -6.985)
96 | (end -5.08 -8.255)
97 | (stroke
98 | (width 0)
99 | (type default)
100 | )
101 | (fill
102 | (type outline)
103 | )
104 | )
105 | (rectangle
106 | (start -7.62 -4.445)
107 | (end -5.08 -5.715)
108 | (stroke
109 | (width 0)
110 | (type default)
111 | )
112 | (fill
113 | (type outline)
114 | )
115 | )
116 | (rectangle
117 | (start -7.62 -1.905)
118 | (end -5.08 -3.175)
119 | (stroke
120 | (width 0)
121 | (type default)
122 | )
123 | (fill
124 | (type outline)
125 | )
126 | )
127 | (rectangle
128 | (start -7.62 0.635)
129 | (end -5.08 -0.635)
130 | (stroke
131 | (width 0)
132 | (type default)
133 | )
134 | (fill
135 | (type outline)
136 | )
137 | )
138 | (rectangle
139 | (start -7.62 3.175)
140 | (end -5.08 1.905)
141 | (stroke
142 | (width 0)
143 | (type default)
144 | )
145 | (fill
146 | (type outline)
147 | )
148 | )
149 | (rectangle
150 | (start -7.62 5.715)
151 | (end -5.08 4.445)
152 | (stroke
153 | (width 0)
154 | (type default)
155 | )
156 | (fill
157 | (type outline)
158 | )
159 | )
160 | (rectangle
161 | (start -7.62 8.255)
162 | (end -5.08 6.985)
163 | (stroke
164 | (width 0)
165 | (type default)
166 | )
167 | (fill
168 | (type outline)
169 | )
170 | )
171 | (polyline
172 | (pts
173 | (xy 16.51 12.7) (xy 16.51 13.97) (xy -19.05 13.97) (xy -19.05 -16.51) (xy 16.51 -16.51) (xy 16.51 -11.43)
174 | )
175 | (stroke
176 | (width 0.254)
177 | (type default)
178 | )
179 | (fill
180 | (type none)
181 | )
182 | )
183 | (polyline
184 | (pts
185 | (xy -8.89 -11.43) (xy -8.89 8.89) (xy -1.27 8.89) (xy 2.54 12.7) (xy 3.81 12.7) (xy 3.81 11.43)
186 | (xy 6.35 11.43) (xy 7.62 12.7) (xy 20.32 12.7) (xy 20.32 -11.43) (xy -8.89 -11.43)
187 | )
188 | (stroke
189 | (width 0.254)
190 | (type default)
191 | )
192 | (fill
193 | (type background)
194 | )
195 | )
196 | )
197 | (symbol "Micro_SD_Card_1_1"
198 | (pin bidirectional line
199 | (at -22.86 7.62 0)
200 | (length 3.81)
201 | (name "DAT2"
202 | (effects
203 | (font
204 | (size 1.27 1.27)
205 | )
206 | )
207 | )
208 | (number "1"
209 | (effects
210 | (font
211 | (size 1.27 1.27)
212 | )
213 | )
214 | )
215 | )
216 | (pin bidirectional line
217 | (at -22.86 5.08 0)
218 | (length 3.81)
219 | (name "DAT3/CD"
220 | (effects
221 | (font
222 | (size 1.27 1.27)
223 | )
224 | )
225 | )
226 | (number "2"
227 | (effects
228 | (font
229 | (size 1.27 1.27)
230 | )
231 | )
232 | )
233 | )
234 | (pin input line
235 | (at -22.86 2.54 0)
236 | (length 3.81)
237 | (name "CMD"
238 | (effects
239 | (font
240 | (size 1.27 1.27)
241 | )
242 | )
243 | )
244 | (number "3"
245 | (effects
246 | (font
247 | (size 1.27 1.27)
248 | )
249 | )
250 | )
251 | )
252 | (pin power_in line
253 | (at -22.86 0 0)
254 | (length 3.81)
255 | (name "VDD"
256 | (effects
257 | (font
258 | (size 1.27 1.27)
259 | )
260 | )
261 | )
262 | (number "4"
263 | (effects
264 | (font
265 | (size 1.27 1.27)
266 | )
267 | )
268 | )
269 | )
270 | (pin input line
271 | (at -22.86 -2.54 0)
272 | (length 3.81)
273 | (name "CLK"
274 | (effects
275 | (font
276 | (size 1.27 1.27)
277 | )
278 | )
279 | )
280 | (number "5"
281 | (effects
282 | (font
283 | (size 1.27 1.27)
284 | )
285 | )
286 | )
287 | )
288 | (pin power_in line
289 | (at -22.86 -5.08 0)
290 | (length 3.81)
291 | (name "VSS"
292 | (effects
293 | (font
294 | (size 1.27 1.27)
295 | )
296 | )
297 | )
298 | (number "6"
299 | (effects
300 | (font
301 | (size 1.27 1.27)
302 | )
303 | )
304 | )
305 | )
306 | (pin bidirectional line
307 | (at -22.86 -7.62 0)
308 | (length 3.81)
309 | (name "DAT0"
310 | (effects
311 | (font
312 | (size 1.27 1.27)
313 | )
314 | )
315 | )
316 | (number "7"
317 | (effects
318 | (font
319 | (size 1.27 1.27)
320 | )
321 | )
322 | )
323 | )
324 | (pin bidirectional line
325 | (at -22.86 -10.16 0)
326 | (length 3.81)
327 | (name "DAT1"
328 | (effects
329 | (font
330 | (size 1.27 1.27)
331 | )
332 | )
333 | )
334 | (number "8"
335 | (effects
336 | (font
337 | (size 1.27 1.27)
338 | )
339 | )
340 | )
341 | )
342 | (pin passive line
343 | (at 20.32 -15.24 180)
344 | (length 3.81)
345 | (name "SHIELD"
346 | (effects
347 | (font
348 | (size 1.27 1.27)
349 | )
350 | )
351 | )
352 | (number "9"
353 | (effects
354 | (font
355 | (size 1.27 1.27)
356 | )
357 | )
358 | )
359 | )
360 | )
361 | )
362 | (symbol "Device:C"
363 | (pin_numbers hide)
364 | (pin_names
365 | (offset 0.254)
366 | )
367 | (exclude_from_sim no)
368 | (in_bom yes)
369 | (on_board yes)
370 | (property "Reference" "C"
371 | (at 0.635 2.54 0)
372 | (effects
373 | (font
374 | (size 1.27 1.27)
375 | )
376 | (justify left)
377 | )
378 | )
379 | (property "Value" "C"
380 | (at 0.635 -2.54 0)
381 | (effects
382 | (font
383 | (size 1.27 1.27)
384 | )
385 | (justify left)
386 | )
387 | )
388 | (property "Footprint" ""
389 | (at 0.9652 -3.81 0)
390 | (effects
391 | (font
392 | (size 1.27 1.27)
393 | )
394 | (hide yes)
395 | )
396 | )
397 | (property "Datasheet" "~"
398 | (at 0 0 0)
399 | (effects
400 | (font
401 | (size 1.27 1.27)
402 | )
403 | (hide yes)
404 | )
405 | )
406 | (property "Description" "Unpolarized capacitor"
407 | (at 0 0 0)
408 | (effects
409 | (font
410 | (size 1.27 1.27)
411 | )
412 | (hide yes)
413 | )
414 | )
415 | (property "ki_keywords" "cap capacitor"
416 | (at 0 0 0)
417 | (effects
418 | (font
419 | (size 1.27 1.27)
420 | )
421 | (hide yes)
422 | )
423 | )
424 | (property "ki_fp_filters" "C_*"
425 | (at 0 0 0)
426 | (effects
427 | (font
428 | (size 1.27 1.27)
429 | )
430 | (hide yes)
431 | )
432 | )
433 | (symbol "C_0_1"
434 | (polyline
435 | (pts
436 | (xy -2.032 -0.762) (xy 2.032 -0.762)
437 | )
438 | (stroke
439 | (width 0.508)
440 | (type default)
441 | )
442 | (fill
443 | (type none)
444 | )
445 | )
446 | (polyline
447 | (pts
448 | (xy -2.032 0.762) (xy 2.032 0.762)
449 | )
450 | (stroke
451 | (width 0.508)
452 | (type default)
453 | )
454 | (fill
455 | (type none)
456 | )
457 | )
458 | )
459 | (symbol "C_1_1"
460 | (pin passive line
461 | (at 0 3.81 270)
462 | (length 2.794)
463 | (name "~"
464 | (effects
465 | (font
466 | (size 1.27 1.27)
467 | )
468 | )
469 | )
470 | (number "1"
471 | (effects
472 | (font
473 | (size 1.27 1.27)
474 | )
475 | )
476 | )
477 | )
478 | (pin passive line
479 | (at 0 -3.81 90)
480 | (length 2.794)
481 | (name "~"
482 | (effects
483 | (font
484 | (size 1.27 1.27)
485 | )
486 | )
487 | )
488 | (number "2"
489 | (effects
490 | (font
491 | (size 1.27 1.27)
492 | )
493 | )
494 | )
495 | )
496 | )
497 | )
498 | (symbol "Mechanical:Fiducial"
499 | (exclude_from_sim yes)
500 | (in_bom no)
501 | (on_board yes)
502 | (property "Reference" "FID"
503 | (at 0 5.08 0)
504 | (effects
505 | (font
506 | (size 1.27 1.27)
507 | )
508 | )
509 | )
510 | (property "Value" "Fiducial"
511 | (at 0 3.175 0)
512 | (effects
513 | (font
514 | (size 1.27 1.27)
515 | )
516 | )
517 | )
518 | (property "Footprint" ""
519 | (at 0 0 0)
520 | (effects
521 | (font
522 | (size 1.27 1.27)
523 | )
524 | (hide yes)
525 | )
526 | )
527 | (property "Datasheet" "~"
528 | (at 0 0 0)
529 | (effects
530 | (font
531 | (size 1.27 1.27)
532 | )
533 | (hide yes)
534 | )
535 | )
536 | (property "Description" "Fiducial Marker"
537 | (at 0 0 0)
538 | (effects
539 | (font
540 | (size 1.27 1.27)
541 | )
542 | (hide yes)
543 | )
544 | )
545 | (property "ki_keywords" "fiducial marker"
546 | (at 0 0 0)
547 | (effects
548 | (font
549 | (size 1.27 1.27)
550 | )
551 | (hide yes)
552 | )
553 | )
554 | (property "ki_fp_filters" "Fiducial*"
555 | (at 0 0 0)
556 | (effects
557 | (font
558 | (size 1.27 1.27)
559 | )
560 | (hide yes)
561 | )
562 | )
563 | (symbol "Fiducial_0_1"
564 | (circle
565 | (center 0 0)
566 | (radius 1.27)
567 | (stroke
568 | (width 0.508)
569 | (type default)
570 | )
571 | (fill
572 | (type background)
573 | )
574 | )
575 | )
576 | )
577 | (symbol "emmc-adapter-rescue:GND-power"
578 | (power)
579 | (pin_names
580 | (offset 0)
581 | )
582 | (exclude_from_sim no)
583 | (in_bom yes)
584 | (on_board yes)
585 | (property "Reference" "#PWR"
586 | (at 0 -6.35 0)
587 | (effects
588 | (font
589 | (size 1.27 1.27)
590 | )
591 | (hide yes)
592 | )
593 | )
594 | (property "Value" "power_GND"
595 | (at 0 -3.81 0)
596 | (effects
597 | (font
598 | (size 1.27 1.27)
599 | )
600 | )
601 | )
602 | (property "Footprint" ""
603 | (at 0 0 0)
604 | (effects
605 | (font
606 | (size 1.27 1.27)
607 | )
608 | (hide yes)
609 | )
610 | )
611 | (property "Datasheet" ""
612 | (at 0 0 0)
613 | (effects
614 | (font
615 | (size 1.27 1.27)
616 | )
617 | (hide yes)
618 | )
619 | )
620 | (property "Description" ""
621 | (at 0 0 0)
622 | (effects
623 | (font
624 | (size 1.27 1.27)
625 | )
626 | (hide yes)
627 | )
628 | )
629 | (symbol "GND-power_0_1"
630 | (polyline
631 | (pts
632 | (xy 0 0) (xy 0 -1.27) (xy 1.27 -1.27) (xy 0 -2.54) (xy -1.27 -1.27) (xy 0 -1.27)
633 | )
634 | (stroke
635 | (width 0)
636 | (type solid)
637 | )
638 | (fill
639 | (type none)
640 | )
641 | )
642 | )
643 | (symbol "GND-power_1_1"
644 | (pin power_in line
645 | (at 0 0 270)
646 | (length 0) hide
647 | (name "GND"
648 | (effects
649 | (font
650 | (size 1.27 1.27)
651 | )
652 | )
653 | )
654 | (number "1"
655 | (effects
656 | (font
657 | (size 1.27 1.27)
658 | )
659 | )
660 | )
661 | )
662 | )
663 | )
664 | (symbol "emmc-adapter-rescue:THGBMNG5D1LBAIL-voltlog"
665 | (pin_names
666 | (offset 1.016)
667 | )
668 | (exclude_from_sim no)
669 | (in_bom yes)
670 | (on_board yes)
671 | (property "Reference" "U"
672 | (at -7.62 26.67 0)
673 | (effects
674 | (font
675 | (size 1.27 1.27)
676 | )
677 | )
678 | )
679 | (property "Value" "voltlog_THGBMNG5D1LBAIL"
680 | (at 7.62 26.67 0)
681 | (effects
682 | (font
683 | (size 1.27 1.27)
684 | )
685 | )
686 | )
687 | (property "Footprint" "Voltlog:WFBGA153"
688 | (at 0 -30.48 0)
689 | (effects
690 | (font
691 | (size 1.27 1.27)
692 | )
693 | (hide yes)
694 | )
695 | )
696 | (property "Datasheet" ""
697 | (at -1.27 -21.59 0)
698 | (effects
699 | (font
700 | (size 1.27 1.27)
701 | )
702 | (hide yes)
703 | )
704 | )
705 | (property "Description" ""
706 | (at 0 0 0)
707 | (effects
708 | (font
709 | (size 1.27 1.27)
710 | )
711 | (hide yes)
712 | )
713 | )
714 | (symbol "THGBMNG5D1LBAIL-voltlog_0_0"
715 | (pin power_in line
716 | (at 11.43 -12.7 180)
717 | (length 2.54)
718 | (name "VSS"
719 | (effects
720 | (font
721 | (size 1.27 1.27)
722 | )
723 | )
724 | )
725 | (number "A6"
726 | (effects
727 | (font
728 | (size 1.27 1.27)
729 | )
730 | )
731 | )
732 | )
733 | )
734 | (symbol "THGBMNG5D1LBAIL-voltlog_0_1"
735 | (rectangle
736 | (start -8.89 25.4)
737 | (end 8.89 -27.94)
738 | (stroke
739 | (width 0)
740 | (type solid)
741 | )
742 | (fill
743 | (type background)
744 | )
745 | )
746 | )
747 | (symbol "THGBMNG5D1LBAIL-voltlog_1_1"
748 | (pin bidirectional line
749 | (at -11.43 6.35 0)
750 | (length 2.54)
751 | (name "DAT0"
752 | (effects
753 | (font
754 | (size 1.27 1.27)
755 | )
756 | )
757 | )
758 | (number "A3"
759 | (effects
760 | (font
761 | (size 1.27 1.27)
762 | )
763 | )
764 | )
765 | )
766 | (pin bidirectional line
767 | (at -11.43 3.81 0)
768 | (length 2.54)
769 | (name "DAT1"
770 | (effects
771 | (font
772 | (size 1.27 1.27)
773 | )
774 | )
775 | )
776 | (number "A4"
777 | (effects
778 | (font
779 | (size 1.27 1.27)
780 | )
781 | )
782 | )
783 | )
784 | (pin bidirectional line
785 | (at -11.43 1.27 0)
786 | (length 2.54)
787 | (name "DAT2"
788 | (effects
789 | (font
790 | (size 1.27 1.27)
791 | )
792 | )
793 | )
794 | (number "A5"
795 | (effects
796 | (font
797 | (size 1.27 1.27)
798 | )
799 | )
800 | )
801 | )
802 | (pin bidirectional line
803 | (at -11.43 -1.27 0)
804 | (length 2.54)
805 | (name "DAT3"
806 | (effects
807 | (font
808 | (size 1.27 1.27)
809 | )
810 | )
811 | )
812 | (number "B2"
813 | (effects
814 | (font
815 | (size 1.27 1.27)
816 | )
817 | )
818 | )
819 | )
820 | (pin bidirectional line
821 | (at -11.43 -3.81 0)
822 | (length 2.54)
823 | (name "DAT4"
824 | (effects
825 | (font
826 | (size 1.27 1.27)
827 | )
828 | )
829 | )
830 | (number "B3"
831 | (effects
832 | (font
833 | (size 1.27 1.27)
834 | )
835 | )
836 | )
837 | )
838 | (pin bidirectional line
839 | (at -11.43 -6.35 0)
840 | (length 2.54)
841 | (name "DAT5"
842 | (effects
843 | (font
844 | (size 1.27 1.27)
845 | )
846 | )
847 | )
848 | (number "B4"
849 | (effects
850 | (font
851 | (size 1.27 1.27)
852 | )
853 | )
854 | )
855 | )
856 | (pin bidirectional line
857 | (at -11.43 -8.89 0)
858 | (length 2.54)
859 | (name "DAT6"
860 | (effects
861 | (font
862 | (size 1.27 1.27)
863 | )
864 | )
865 | )
866 | (number "B5"
867 | (effects
868 | (font
869 | (size 1.27 1.27)
870 | )
871 | )
872 | )
873 | )
874 | (pin bidirectional line
875 | (at -11.43 -11.43 0)
876 | (length 2.54)
877 | (name "DAT7"
878 | (effects
879 | (font
880 | (size 1.27 1.27)
881 | )
882 | )
883 | )
884 | (number "B6"
885 | (effects
886 | (font
887 | (size 1.27 1.27)
888 | )
889 | )
890 | )
891 | )
892 | (pin power_in line
893 | (at -11.43 -22.86 0)
894 | (length 2.54)
895 | (name "VDDI"
896 | (effects
897 | (font
898 | (size 1.27 1.27)
899 | )
900 | )
901 | )
902 | (number "C2"
903 | (effects
904 | (font
905 | (size 1.27 1.27)
906 | )
907 | )
908 | )
909 | )
910 | (pin power_in line
911 | (at 11.43 -25.4 180)
912 | (length 2.54)
913 | (name "VSSQ"
914 | (effects
915 | (font
916 | (size 1.27 1.27)
917 | )
918 | )
919 | )
920 | (number "C4"
921 | (effects
922 | (font
923 | (size 1.27 1.27)
924 | )
925 | )
926 | )
927 | )
928 | (pin power_in line
929 | (at 11.43 22.86 180)
930 | (length 2.54)
931 | (name "VCCQ"
932 | (effects
933 | (font
934 | (size 1.27 1.27)
935 | )
936 | )
937 | )
938 | (number "C6"
939 | (effects
940 | (font
941 | (size 1.27 1.27)
942 | )
943 | )
944 | )
945 | )
946 | (pin power_in line
947 | (at 11.43 2.54 180)
948 | (length 2.54)
949 | (name "VCC"
950 | (effects
951 | (font
952 | (size 1.27 1.27)
953 | )
954 | )
955 | )
956 | (number "E6"
957 | (effects
958 | (font
959 | (size 1.27 1.27)
960 | )
961 | )
962 | )
963 | )
964 | (pin power_in line
965 | (at 11.43 -10.16 180)
966 | (length 2.54)
967 | (name "VSS"
968 | (effects
969 | (font
970 | (size 1.27 1.27)
971 | )
972 | )
973 | )
974 | (number "E7"
975 | (effects
976 | (font
977 | (size 1.27 1.27)
978 | )
979 | )
980 | )
981 | )
982 | (pin power_in line
983 | (at 11.43 5.08 180)
984 | (length 2.54)
985 | (name "VCC"
986 | (effects
987 | (font
988 | (size 1.27 1.27)
989 | )
990 | )
991 | )
992 | (number "F5"
993 | (effects
994 | (font
995 | (size 1.27 1.27)
996 | )
997 | )
998 | )
999 | )
1000 | (pin power_in line
1001 | (at 11.43 -7.62 180)
1002 | (length 2.54)
1003 | (name "VSS"
1004 | (effects
1005 | (font
1006 | (size 1.27 1.27)
1007 | )
1008 | )
1009 | )
1010 | (number "G5"
1011 | (effects
1012 | (font
1013 | (size 1.27 1.27)
1014 | )
1015 | )
1016 | )
1017 | )
1018 | (pin power_in line
1019 | (at 11.43 -5.08 180)
1020 | (length 2.54)
1021 | (name "VSS"
1022 | (effects
1023 | (font
1024 | (size 1.27 1.27)
1025 | )
1026 | )
1027 | )
1028 | (number "H10"
1029 | (effects
1030 | (font
1031 | (size 1.27 1.27)
1032 | )
1033 | )
1034 | )
1035 | )
1036 | (pin passive line
1037 | (at -11.43 15.24 0)
1038 | (length 2.54)
1039 | (name "DS"
1040 | (effects
1041 | (font
1042 | (size 1.27 1.27)
1043 | )
1044 | )
1045 | )
1046 | (number "H5"
1047 | (effects
1048 | (font
1049 | (size 1.27 1.27)
1050 | )
1051 | )
1052 | )
1053 | )
1054 | (pin power_in line
1055 | (at 11.43 7.62 180)
1056 | (length 2.54)
1057 | (name "VCC"
1058 | (effects
1059 | (font
1060 | (size 1.27 1.27)
1061 | )
1062 | )
1063 | )
1064 | (number "J10"
1065 | (effects
1066 | (font
1067 | (size 1.27 1.27)
1068 | )
1069 | )
1070 | )
1071 | )
1072 | (pin power_in line
1073 | (at 11.43 -2.54 180)
1074 | (length 2.54)
1075 | (name "VSS"
1076 | (effects
1077 | (font
1078 | (size 1.27 1.27)
1079 | )
1080 | )
1081 | )
1082 | (number "J5"
1083 | (effects
1084 | (font
1085 | (size 1.27 1.27)
1086 | )
1087 | )
1088 | )
1089 | )
1090 | (pin passive line
1091 | (at -11.43 22.86 0)
1092 | (length 2.54)
1093 | (name "RST_N"
1094 | (effects
1095 | (font
1096 | (size 1.27 1.27)
1097 | )
1098 | )
1099 | )
1100 | (number "K5"
1101 | (effects
1102 | (font
1103 | (size 1.27 1.27)
1104 | )
1105 | )
1106 | )
1107 | )
1108 | (pin power_in line
1109 | (at 11.43 0 180)
1110 | (length 2.54)
1111 | (name "VSS"
1112 | (effects
1113 | (font
1114 | (size 1.27 1.27)
1115 | )
1116 | )
1117 | )
1118 | (number "K8"
1119 | (effects
1120 | (font
1121 | (size 1.27 1.27)
1122 | )
1123 | )
1124 | )
1125 | )
1126 | (pin power_in line
1127 | (at 11.43 10.16 180)
1128 | (length 2.54)
1129 | (name "VCC"
1130 | (effects
1131 | (font
1132 | (size 1.27 1.27)
1133 | )
1134 | )
1135 | )
1136 | (number "K9"
1137 | (effects
1138 | (font
1139 | (size 1.27 1.27)
1140 | )
1141 | )
1142 | )
1143 | )
1144 | (pin power_in line
1145 | (at 11.43 20.32 180)
1146 | (length 2.54)
1147 | (name "VCCQ"
1148 | (effects
1149 | (font
1150 | (size 1.27 1.27)
1151 | )
1152 | )
1153 | )
1154 | (number "M4"
1155 | (effects
1156 | (font
1157 | (size 1.27 1.27)
1158 | )
1159 | )
1160 | )
1161 | )
1162 | (pin input line
1163 | (at -11.43 17.78 0)
1164 | (length 2.54)
1165 | (name "CMD"
1166 | (effects
1167 | (font
1168 | (size 1.27 1.27)
1169 | )
1170 | )
1171 | )
1172 | (number "M5"
1173 | (effects
1174 | (font
1175 | (size 1.27 1.27)
1176 | )
1177 | )
1178 | )
1179 | )
1180 | (pin input line
1181 | (at -11.43 20.32 0)
1182 | (length 2.54)
1183 | (name "CLK"
1184 | (effects
1185 | (font
1186 | (size 1.27 1.27)
1187 | )
1188 | )
1189 | )
1190 | (number "M6"
1191 | (effects
1192 | (font
1193 | (size 1.27 1.27)
1194 | )
1195 | )
1196 | )
1197 | )
1198 | (pin power_in line
1199 | (at 11.43 -22.86 180)
1200 | (length 2.54)
1201 | (name "VSSQ"
1202 | (effects
1203 | (font
1204 | (size 1.27 1.27)
1205 | )
1206 | )
1207 | )
1208 | (number "N2"
1209 | (effects
1210 | (font
1211 | (size 1.27 1.27)
1212 | )
1213 | )
1214 | )
1215 | )
1216 | (pin power_in line
1217 | (at 11.43 15.24 180)
1218 | (length 2.54)
1219 | (name "VCCQ"
1220 | (effects
1221 | (font
1222 | (size 1.27 1.27)
1223 | )
1224 | )
1225 | )
1226 | (number "N4"
1227 | (effects
1228 | (font
1229 | (size 1.27 1.27)
1230 | )
1231 | )
1232 | )
1233 | )
1234 | (pin power_in line
1235 | (at 11.43 -20.32 180)
1236 | (length 2.54)
1237 | (name "VSSQ"
1238 | (effects
1239 | (font
1240 | (size 1.27 1.27)
1241 | )
1242 | )
1243 | )
1244 | (number "N5"
1245 | (effects
1246 | (font
1247 | (size 1.27 1.27)
1248 | )
1249 | )
1250 | )
1251 | )
1252 | (pin power_in line
1253 | (at 11.43 17.78 180)
1254 | (length 2.54)
1255 | (name "VCCQ"
1256 | (effects
1257 | (font
1258 | (size 1.27 1.27)
1259 | )
1260 | )
1261 | )
1262 | (number "P3"
1263 | (effects
1264 | (font
1265 | (size 1.27 1.27)
1266 | )
1267 | )
1268 | )
1269 | )
1270 | (pin power_in line
1271 | (at 11.43 -17.78 180)
1272 | (length 2.54)
1273 | (name "VSSQ"
1274 | (effects
1275 | (font
1276 | (size 1.27 1.27)
1277 | )
1278 | )
1279 | )
1280 | (number "P4"
1281 | (effects
1282 | (font
1283 | (size 1.27 1.27)
1284 | )
1285 | )
1286 | )
1287 | )
1288 | (pin power_in line
1289 | (at 11.43 12.7 180)
1290 | (length 2.54)
1291 | (name "VCCQ"
1292 | (effects
1293 | (font
1294 | (size 1.27 1.27)
1295 | )
1296 | )
1297 | )
1298 | (number "P5"
1299 | (effects
1300 | (font
1301 | (size 1.27 1.27)
1302 | )
1303 | )
1304 | )
1305 | )
1306 | (pin power_in line
1307 | (at 11.43 -15.24 180)
1308 | (length 2.54)
1309 | (name "VSSQ"
1310 | (effects
1311 | (font
1312 | (size 1.27 1.27)
1313 | )
1314 | )
1315 | )
1316 | (number "P6"
1317 | (effects
1318 | (font
1319 | (size 1.27 1.27)
1320 | )
1321 | )
1322 | )
1323 | )
1324 | )
1325 | )
1326 | (symbol "emmc-adapter-rescue:VCC-power"
1327 | (power)
1328 | (pin_names
1329 | (offset 0)
1330 | )
1331 | (exclude_from_sim no)
1332 | (in_bom yes)
1333 | (on_board yes)
1334 | (property "Reference" "#PWR"
1335 | (at 0 -3.81 0)
1336 | (effects
1337 | (font
1338 | (size 1.27 1.27)
1339 | )
1340 | (hide yes)
1341 | )
1342 | )
1343 | (property "Value" "power_VCC"
1344 | (at 0 3.81 0)
1345 | (effects
1346 | (font
1347 | (size 1.27 1.27)
1348 | )
1349 | )
1350 | )
1351 | (property "Footprint" ""
1352 | (at 0 0 0)
1353 | (effects
1354 | (font
1355 | (size 1.27 1.27)
1356 | )
1357 | (hide yes)
1358 | )
1359 | )
1360 | (property "Datasheet" ""
1361 | (at 0 0 0)
1362 | (effects
1363 | (font
1364 | (size 1.27 1.27)
1365 | )
1366 | (hide yes)
1367 | )
1368 | )
1369 | (property "Description" ""
1370 | (at 0 0 0)
1371 | (effects
1372 | (font
1373 | (size 1.27 1.27)
1374 | )
1375 | (hide yes)
1376 | )
1377 | )
1378 | (symbol "VCC-power_0_1"
1379 | (polyline
1380 | (pts
1381 | (xy -0.762 1.27) (xy 0 2.54)
1382 | )
1383 | (stroke
1384 | (width 0)
1385 | (type solid)
1386 | )
1387 | (fill
1388 | (type none)
1389 | )
1390 | )
1391 | (polyline
1392 | (pts
1393 | (xy 0 0) (xy 0 2.54)
1394 | )
1395 | (stroke
1396 | (width 0)
1397 | (type solid)
1398 | )
1399 | (fill
1400 | (type none)
1401 | )
1402 | )
1403 | (polyline
1404 | (pts
1405 | (xy 0 2.54) (xy 0.762 1.27)
1406 | )
1407 | (stroke
1408 | (width 0)
1409 | (type solid)
1410 | )
1411 | (fill
1412 | (type none)
1413 | )
1414 | )
1415 | )
1416 | (symbol "VCC-power_1_1"
1417 | (pin power_in line
1418 | (at 0 0 90)
1419 | (length 0) hide
1420 | (name "VCC"
1421 | (effects
1422 | (font
1423 | (size 1.27 1.27)
1424 | )
1425 | )
1426 | )
1427 | (number "1"
1428 | (effects
1429 | (font
1430 | (size 1.27 1.27)
1431 | )
1432 | )
1433 | )
1434 | )
1435 | )
1436 | )
1437 | (symbol "emmc-adapter-rescue:VOLTLOG_LOGO-voltlog"
1438 | (pin_numbers hide)
1439 | (pin_names
1440 | (offset 0) hide)
1441 | (exclude_from_sim no)
1442 | (in_bom yes)
1443 | (on_board yes)
1444 | (property "Reference" "V"
1445 | (at 0 -3.302 0)
1446 | (effects
1447 | (font
1448 | (size 1.524 1.524)
1449 | )
1450 | (hide yes)
1451 | )
1452 | )
1453 | (property "Value" "voltlog_VOLTLOG_LOGO"
1454 | (at 0 3.302 0)
1455 | (effects
1456 | (font
1457 | (size 1.524 1.524)
1458 | )
1459 | (hide yes)
1460 | )
1461 | )
1462 | (property "Footprint" ""
1463 | (at 0 0 0)
1464 | (effects
1465 | (font
1466 | (size 1.27 1.27)
1467 | )
1468 | (hide yes)
1469 | )
1470 | )
1471 | (property "Datasheet" ""
1472 | (at 0 0 0)
1473 | (effects
1474 | (font
1475 | (size 1.27 1.27)
1476 | )
1477 | (hide yes)
1478 | )
1479 | )
1480 | (property "Description" ""
1481 | (at 0 0 0)
1482 | (effects
1483 | (font
1484 | (size 1.27 1.27)
1485 | )
1486 | (hide yes)
1487 | )
1488 | )
1489 | (symbol "VOLTLOG_LOGO-voltlog_0_0"
1490 | (polyline
1491 | (pts
1492 | (xy -0.4064 -3.0988) (xy -0.4064 -3.0734) (xy -0.2286 -2.8956) (xy -0.1778 -2.8194) (xy -0.0254 -2.667)
1493 | (xy 0.0508 -2.5654) (xy 0.2032 -2.413) (xy 0.2794 -2.3114) (xy 0.4318 -2.159) (xy 0.5334 -2.0066)
1494 | (xy 0.7366 -1.8034) (xy 1.524 -1.8034) (xy 1.6002 -1.778) (xy 1.7018 -1.778) (xy 1.8288 -1.7526)
1495 | (xy 1.9558 -1.7018) (xy 2.0574 -1.6256) (xy 2.2352 -1.4478) (xy 2.286 -1.3462) (xy 2.3622 -1.2192)
1496 | (xy 2.3876 -1.0922) (xy 2.413 -1.0414) (xy 2.413 -0.9398) (xy 2.4384 -0.8382) (xy 2.4384 -0.7366)
1497 | (xy 2.4638 -0.6096) (xy 2.4638 0.6096) (xy 2.4384 0.6858) (xy 2.4384 0.762) (xy 2.413 0.8382)
1498 | (xy 2.413 0.9398) (xy 2.3622 1.143) (xy 2.3114 1.2954) (xy 2.2606 1.3716) (xy 2.2098 1.4224) (xy 2.159 1.4986)
1499 | (xy 2.1082 1.524) (xy 2.0574 1.5748) (xy 1.9812 1.6256) (xy 1.8796 1.6764) (xy 1.7272 1.7272)
1500 | (xy 1.6256 1.7526) (xy 1.524 1.7526) (xy 1.397 1.778) (xy 1.27 1.778) (xy 1.1176 1.8034) (xy 0.6096 1.8034)
1501 | (xy 0.4318 1.8288) (xy -0.4826 1.8288) (xy -0.6604 1.8034) (xy -1.143 1.8034) (xy -1.2954 1.778)
1502 | (xy -1.4224 1.778) (xy -1.5494 1.7526) (xy -1.651 1.7526) (xy -1.7272 1.7272) (xy -1.8034 1.7272)
1503 | (xy -1.9304 1.6764) (xy -2.032 1.6256) (xy -2.1336 1.5494) (xy -2.2352 1.4478) (xy -2.2606 1.397)
1504 | (xy -2.3622 1.2954) (xy -2.413 1.143) (xy -2.4638 0.9398) (xy -2.4638 0.8382) (xy -2.4892 0.7112)
1505 | (xy -2.5146 0.5588) (xy -2.5146 -0.635) (xy -2.4638 -0.889) (xy -2.4638 -0.9906) (xy -2.4384 -1.0922)
1506 | (xy -2.3876 -1.2446) (xy -2.286 -1.4478) (xy -2.1844 -1.5494) (xy -1.9812 -1.7018) (xy -1.8542 -1.7526)
1507 | (xy -1.7526 -1.8034) (xy -1.1938 -1.8034) (xy -1.1176 -1.778) (xy -0.5588 -1.778) (xy -0.4064 -1.7018)
1508 | (xy -0.3302 -1.651) (xy -0.1778 -1.4986) (xy -0.1778 -1.4732) (xy -0.127 -1.3716) (xy -0.0508 -1.143)
1509 | (xy -0.0254 -1.0922) (xy 0 -1.016) (xy 0.0254 -0.9144) (xy 0.0762 -0.8128) (xy 0.1016 -0.7112)
1510 | (xy 0.1524 -0.5842) (xy 0.1778 -0.4826) (xy 0.2286 -0.3556) (xy 0.2286 -0.3302) (xy 0.254 -0.254)
1511 | (xy 0.3048 -0.1524) (xy 0.3556 0) (xy 0.3556 0.0508) (xy 0.381 0.1016) (xy 0.381 0.127) (xy 0.4064 0.127)
1512 | (xy 0.3556 0.1778) (xy 0.3302 0.1778) (xy 0.3302 0.1524) (xy 0.3048 0.1524) (xy 0.1778 0.0254)
1513 | (xy 0.1524 -0.0254) (xy 0.0508 -0.127) (xy 0 -0.2032) (xy -0.1524 -0.3556) (xy -0.2286 -0.4572)
1514 | (xy -0.4064 -0.635) (xy -0.4826 -0.7366) (xy -0.5334 -0.8128) (xy -0.6096 -0.8636) (xy -0.6604 -0.9398)
1515 | (xy -0.8128 -1.0922) (xy -0.8636 -1.1684) (xy -1.4224 -1.1684) (xy -1.4986 -1.143) (xy -1.6256 -1.143)
1516 | (xy -1.651 -1.1176) (xy -1.7272 -1.0922) (xy -1.778 -0.9906) (xy -1.8034 -0.9652) (xy -1.8034 -0.889)
1517 | (xy -1.8288 -0.7874) (xy -1.8288 -0.6858) (xy -1.8542 -0.5588) (xy -1.8542 0.4572) (xy -1.8288 0.5842)
1518 | (xy -1.8288 0.7112) (xy -1.8034 0.8128) (xy -1.8034 0.8636) (xy -1.778 0.9144) (xy -1.778 0.9652)
1519 | (xy -1.7526 1.016) (xy -1.7272 1.0414) (xy -1.6256 1.0922) (xy -1.5748 1.0922) (xy -1.4986 1.1176)
1520 | (xy -1.2954 1.1176) (xy -1.1684 1.143) (xy -0.8636 1.143) (xy -0.6858 1.1684) (xy 0.5588 1.1684)
1521 | (xy 0.7366 1.143) (xy 1.1684 1.143) (xy 1.2954 1.1176) (xy 1.397 1.1176) (xy 1.4986 1.0922) (xy 1.5748 1.0922)
1522 | (xy 1.6764 1.0414) (xy 1.7018 1.016) (xy 1.7272 0.9652) (xy 1.7526 0.889) (xy 1.7526 0.8128) (xy 1.778 0.7874)
1523 | (xy 1.778 0.6858) (xy 1.8034 0.5588) (xy 1.8034 0.2794) (xy 1.8288 0.127) (xy 1.8288 -0.1778)
1524 | (xy 1.8034 -0.3302) (xy 1.8034 -0.5842) (xy 1.778 -0.7112) (xy 1.778 -0.8128) (xy 1.7526 -0.9144)
1525 | (xy 1.7526 -0.9906) (xy 1.7272 -1.016) (xy 1.7018 -1.0668) (xy 1.651 -1.1176) (xy 1.6002 -1.143)
1526 | (xy 1.5748 -1.143) (xy 1.524 -1.1684) (xy 0.5334 -1.1684) (xy 0.4826 -1.1938) (xy 0.381 -1.1938)
1527 | (xy 0.3556 -1.2192) (xy 0.3302 -1.2192) (xy 0.2794 -1.2446) (xy 0.2286 -1.2954) (xy 0.1524 -1.3462)
1528 | (xy 0.0508 -1.4986) (xy 0.0254 -1.524) (xy 0 -1.5748) (xy 0 -1.6256) (xy -0.0254 -1.6764) (xy -0.0508 -1.7526)
1529 | (xy -0.0762 -1.778) (xy -0.0762 -1.8288) (xy -0.127 -1.9812) (xy -0.1778 -2.0828) (xy -0.2032 -2.1844)
1530 | (xy -0.254 -2.286) (xy -0.2794 -2.413) (xy -0.3302 -2.5146) (xy -0.3556 -2.6162) (xy -0.381 -2.6924)
1531 | (xy -0.4318 -2.794) (xy -0.4826 -2.9464) (xy -0.4826 -2.9972) (xy -0.508 -3.048) (xy -0.508 -3.1242)
1532 | (xy -0.4318 -3.1242) (xy -0.4064 -3.0988)
1533 | )
1534 | (stroke
1535 | (width 0.0254)
1536 | (type solid)
1537 | )
1538 | (fill
1539 | (type outline)
1540 | )
1541 | )
1542 | )
1543 | )
1544 | )
1545 | (junction
1546 | (at 151.13 92.71)
1547 | (diameter 0)
1548 | (color 0 0 0 0)
1549 | (uuid "0bf9a174-ba98-4203-98d7-67d28aa9a2d4")
1550 | )
1551 | (junction
1552 | (at 151.13 95.25)
1553 | (diameter 0)
1554 | (color 0 0 0 0)
1555 | (uuid "1d44d3de-1cad-4f4e-b6e4-ba9c25c58976")
1556 | )
1557 | (junction
1558 | (at 157.48 74.93)
1559 | (diameter 0)
1560 | (color 0 0 0 0)
1561 | (uuid "1ef08721-8ed4-42fe-88d1-b3c538ecd692")
1562 | )
1563 | (junction
1564 | (at 151.13 90.17)
1565 | (diameter 0)
1566 | (color 0 0 0 0)
1567 | (uuid "20424f9a-6e8c-4d6d-a480-7f147dada979")
1568 | )
1569 | (junction
1570 | (at 151.13 85.09)
1571 | (diameter 0)
1572 | (color 0 0 0 0)
1573 | (uuid "2f58b14c-2de9-4158-9665-a6315ffe6311")
1574 | )
1575 | (junction
1576 | (at 151.13 64.77)
1577 | (diameter 0)
1578 | (color 0 0 0 0)
1579 | (uuid "3e80bc81-e0d3-436d-9a56-8a83ac629fe5")
1580 | )
1581 | (junction
1582 | (at 151.13 52.07)
1583 | (diameter 0)
1584 | (color 0 0 0 0)
1585 | (uuid "7d5ba3b4-64c0-4d64-99af-644bcdd6df1a")
1586 | )
1587 | (junction
1588 | (at 157.48 67.31)
1589 | (diameter 0)
1590 | (color 0 0 0 0)
1591 | (uuid "84093a1c-6dbb-42b9-b304-94c57545fbf5")
1592 | )
1593 | (junction
1594 | (at 151.13 87.63)
1595 | (diameter 0)
1596 | (color 0 0 0 0)
1597 | (uuid "91d8828f-cca3-4b6b-8183-dfb00859ba3e")
1598 | )
1599 | (junction
1600 | (at 151.13 59.69)
1601 | (diameter 0)
1602 | (color 0 0 0 0)
1603 | (uuid "95b4e381-69d2-430b-ade9-b8e067080c35")
1604 | )
1605 | (junction
1606 | (at 151.13 74.93)
1607 | (diameter 0)
1608 | (color 0 0 0 0)
1609 | (uuid "9906ae8b-10e4-4176-ae7c-ae09722a7a2d")
1610 | )
1611 | (junction
1612 | (at 151.13 57.15)
1613 | (diameter 0)
1614 | (color 0 0 0 0)
1615 | (uuid "a4e934ce-27a6-4ff4-937d-22e52290ce66")
1616 | )
1617 | (junction
1618 | (at 151.13 67.31)
1619 | (diameter 0)
1620 | (color 0 0 0 0)
1621 | (uuid "ab756ff5-524c-4662-b535-b95de788f030")
1622 | )
1623 | (junction
1624 | (at 151.13 82.55)
1625 | (diameter 0)
1626 | (color 0 0 0 0)
1627 | (uuid "bfff7489-8160-4256-99bb-f3f3a1871725")
1628 | )
1629 | (junction
1630 | (at 151.13 62.23)
1631 | (diameter 0)
1632 | (color 0 0 0 0)
1633 | (uuid "d8fcc0e9-8f2e-4ad3-9441-0795373a83db")
1634 | )
1635 | (junction
1636 | (at 151.13 54.61)
1637 | (diameter 0)
1638 | (color 0 0 0 0)
1639 | (uuid "e1c42a12-3733-4d28-a796-53742792d892")
1640 | )
1641 | (junction
1642 | (at 151.13 80.01)
1643 | (diameter 0)
1644 | (color 0 0 0 0)
1645 | (uuid "e3bbb785-a960-4bd7-9bd9-82e1fe12dc2d")
1646 | )
1647 | (junction
1648 | (at 151.13 77.47)
1649 | (diameter 0)
1650 | (color 0 0 0 0)
1651 | (uuid "ef356c78-2ae6-466e-acba-8c1d7b1146c5")
1652 | )
1653 | (no_connect
1654 | (at 125.73 78.74)
1655 | (uuid "29da13f3-ec7c-44b6-9f71-9648b6302cfc")
1656 | )
1657 | (no_connect
1658 | (at 125.73 83.82)
1659 | (uuid "2eb0fa82-43af-437f-a417-f0b518b5b5b7")
1660 | )
1661 | (no_connect
1662 | (at 125.73 76.2)
1663 | (uuid "5c55622b-86e4-4f47-92aa-e1de7193ca19")
1664 | )
1665 | (no_connect
1666 | (at 125.73 57.15)
1667 | (uuid "950f5151-9a0f-472d-825d-16a10ad3431e")
1668 | )
1669 | (no_connect
1670 | (at 228.6 81.28)
1671 | (uuid "c69cc6c2-c64a-4c41-b152-59342e06f424")
1672 | )
1673 | (no_connect
1674 | (at 125.73 81.28)
1675 | (uuid "d6b5201e-e561-4e9f-a8ee-2c27e5bcba66")
1676 | )
1677 | (wire
1678 | (pts
1679 | (xy 125.73 49.53) (xy 118.11 49.53)
1680 | )
1681 | (stroke
1682 | (width 0)
1683 | (type default)
1684 | )
1685 | (uuid "005dfd56-8e2e-49d8-b675-ef02f1cf47e5")
1686 | )
1687 | (wire
1688 | (pts
1689 | (xy 148.59 59.69) (xy 151.13 59.69)
1690 | )
1691 | (stroke
1692 | (width 0)
1693 | (type default)
1694 | )
1695 | (uuid "081538df-a5cc-43ac-bf80-0e0028eaa6c1")
1696 | )
1697 | (wire
1698 | (pts
1699 | (xy 177.8 71.12) (xy 185.42 71.12)
1700 | )
1701 | (stroke
1702 | (width 0)
1703 | (type default)
1704 | )
1705 | (uuid "08bdd34d-3ac4-420a-a9f2-27d74527be2c")
1706 | )
1707 | (wire
1708 | (pts
1709 | (xy 118.11 52.07) (xy 125.73 52.07)
1710 | )
1711 | (stroke
1712 | (width 0)
1713 | (type default)
1714 | )
1715 | (uuid "0ce7f8f5-d095-4934-9d82-828b56bc6885")
1716 | )
1717 | (wire
1718 | (pts
1719 | (xy 151.13 69.85) (xy 151.13 67.31)
1720 | )
1721 | (stroke
1722 | (width 0)
1723 | (type default)
1724 | )
1725 | (uuid "123d04fc-262d-4219-8e30-c407f253f575")
1726 | )
1727 | (wire
1728 | (pts
1729 | (xy 151.13 95.25) (xy 151.13 97.79)
1730 | )
1731 | (stroke
1732 | (width 0)
1733 | (type default)
1734 | )
1735 | (uuid "1523ae94-7da9-4a3a-8f58-96020faab660")
1736 | )
1737 | (wire
1738 | (pts
1739 | (xy 148.59 64.77) (xy 151.13 64.77)
1740 | )
1741 | (stroke
1742 | (width 0)
1743 | (type default)
1744 | )
1745 | (uuid "182333ea-4ad8-4371-9343-0b037605263c")
1746 | )
1747 | (wire
1748 | (pts
1749 | (xy 118.11 66.04) (xy 125.73 66.04)
1750 | )
1751 | (stroke
1752 | (width 0)
1753 | (type default)
1754 | )
1755 | (uuid "1ea4e847-7294-42d6-a822-e697f3edfe87")
1756 | )
1757 | (wire
1758 | (pts
1759 | (xy 151.13 72.39) (xy 151.13 74.93)
1760 | )
1761 | (stroke
1762 | (width 0)
1763 | (type default)
1764 | )
1765 | (uuid "1fd72830-e1db-4041-b27a-368fb8887736")
1766 | )
1767 | (wire
1768 | (pts
1769 | (xy 118.11 73.66) (xy 125.73 73.66)
1770 | )
1771 | (stroke
1772 | (width 0)
1773 | (type default)
1774 | )
1775 | (uuid "2531a968-12dd-48ee-987e-dafd44eb476c")
1776 | )
1777 | (wire
1778 | (pts
1779 | (xy 148.59 69.85) (xy 151.13 69.85)
1780 | )
1781 | (stroke
1782 | (width 0)
1783 | (type default)
1784 | )
1785 | (uuid "2538b719-9f24-456b-a6c2-85b4829bf1f2")
1786 | )
1787 | (wire
1788 | (pts
1789 | (xy 118.11 54.61) (xy 125.73 54.61)
1790 | )
1791 | (stroke
1792 | (width 0)
1793 | (type default)
1794 | )
1795 | (uuid "26443fa7-4e5d-4df6-a2f6-5b84f05dddae")
1796 | )
1797 | (wire
1798 | (pts
1799 | (xy 151.13 82.55) (xy 151.13 85.09)
1800 | )
1801 | (stroke
1802 | (width 0)
1803 | (type default)
1804 | )
1805 | (uuid "28860b00-3d51-4435-8bd6-301b3e58744b")
1806 | )
1807 | (wire
1808 | (pts
1809 | (xy 151.13 97.79) (xy 148.59 97.79)
1810 | )
1811 | (stroke
1812 | (width 0)
1813 | (type default)
1814 | )
1815 | (uuid "33d82ddd-4711-4288-b86c-f67b15f8b537")
1816 | )
1817 | (wire
1818 | (pts
1819 | (xy 151.13 67.31) (xy 157.48 67.31)
1820 | )
1821 | (stroke
1822 | (width 0)
1823 | (type default)
1824 | )
1825 | (uuid "33ed308d-94ab-46ba-8823-26f22485861b")
1826 | )
1827 | (wire
1828 | (pts
1829 | (xy 177.8 58.42) (xy 185.42 58.42)
1830 | )
1831 | (stroke
1832 | (width 0)
1833 | (type default)
1834 | )
1835 | (uuid "3bcc2ee5-a6fe-485b-a8ae-19f3f7f7362b")
1836 | )
1837 | (wire
1838 | (pts
1839 | (xy 148.59 95.25) (xy 151.13 95.25)
1840 | )
1841 | (stroke
1842 | (width 0)
1843 | (type default)
1844 | )
1845 | (uuid "3cb5462a-ca5a-4963-b732-c401d5e94d04")
1846 | )
1847 | (wire
1848 | (pts
1849 | (xy 151.13 49.53) (xy 148.59 49.53)
1850 | )
1851 | (stroke
1852 | (width 0)
1853 | (type default)
1854 | )
1855 | (uuid "40304d9d-d9ef-4d02-9fdd-8a6042830e39")
1856 | )
1857 | (wire
1858 | (pts
1859 | (xy 151.13 87.63) (xy 151.13 90.17)
1860 | )
1861 | (stroke
1862 | (width 0)
1863 | (type default)
1864 | )
1865 | (uuid "4277d52f-3fdd-42ff-a855-13ae7a9022d9")
1866 | )
1867 | (wire
1868 | (pts
1869 | (xy 177.8 73.66) (xy 185.42 73.66)
1870 | )
1871 | (stroke
1872 | (width 0)
1873 | (type default)
1874 | )
1875 | (uuid "4fa98d5a-dfb5-4403-a3e6-f6e2fe7c0758")
1876 | )
1877 | (wire
1878 | (pts
1879 | (xy 151.13 62.23) (xy 151.13 59.69)
1880 | )
1881 | (stroke
1882 | (width 0)
1883 | (type default)
1884 | )
1885 | (uuid "517be0d1-a4b5-4d88-8bb0-86071ecd241d")
1886 | )
1887 | (wire
1888 | (pts
1889 | (xy 148.59 85.09) (xy 151.13 85.09)
1890 | )
1891 | (stroke
1892 | (width 0)
1893 | (type default)
1894 | )
1895 | (uuid "54e09f73-461b-4bf2-885e-47469c0908e1")
1896 | )
1897 | (wire
1898 | (pts
1899 | (xy 151.13 59.69) (xy 151.13 57.15)
1900 | )
1901 | (stroke
1902 | (width 0)
1903 | (type default)
1904 | )
1905 | (uuid "5bc88a11-e365-4dab-9ea4-cafb635e9773")
1906 | )
1907 | (wire
1908 | (pts
1909 | (xy 118.11 71.12) (xy 125.73 71.12)
1910 | )
1911 | (stroke
1912 | (width 0)
1913 | (type default)
1914 | )
1915 | (uuid "5f1faafb-ceb0-4610-9e36-22f80d2812ad")
1916 | )
1917 | (wire
1918 | (pts
1919 | (xy 177.8 76.2) (xy 185.42 76.2)
1920 | )
1921 | (stroke
1922 | (width 0)
1923 | (type default)
1924 | )
1925 | (uuid "606d7e6b-e1bc-49dd-ab01-f21f0f7b8ff4")
1926 | )
1927 | (wire
1928 | (pts
1929 | (xy 151.13 54.61) (xy 151.13 52.07)
1930 | )
1931 | (stroke
1932 | (width 0)
1933 | (type default)
1934 | )
1935 | (uuid "66defab9-39bd-40d3-a952-ce46d044a39b")
1936 | )
1937 | (wire
1938 | (pts
1939 | (xy 151.13 90.17) (xy 151.13 92.71)
1940 | )
1941 | (stroke
1942 | (width 0)
1943 | (type default)
1944 | )
1945 | (uuid "6a5b2f4d-d280-422a-a09e-755c1dd7b31f")
1946 | )
1947 | (wire
1948 | (pts
1949 | (xy 151.13 92.71) (xy 151.13 95.25)
1950 | )
1951 | (stroke
1952 | (width 0)
1953 | (type default)
1954 | )
1955 | (uuid "6ec2c71e-7191-41c1-af60-faeb8936438d")
1956 | )
1957 | (wire
1958 | (pts
1959 | (xy 151.13 74.93) (xy 157.48 74.93)
1960 | )
1961 | (stroke
1962 | (width 0)
1963 | (type default)
1964 | )
1965 | (uuid "6f667e0d-51f5-47fb-a27c-002037db926b")
1966 | )
1967 | (wire
1968 | (pts
1969 | (xy 118.11 68.58) (xy 125.73 68.58)
1970 | )
1971 | (stroke
1972 | (width 0)
1973 | (type default)
1974 | )
1975 | (uuid "7d43fe92-4e7e-4d71-9d44-36a6a5d72a90")
1976 | )
1977 | (wire
1978 | (pts
1979 | (xy 148.59 74.93) (xy 151.13 74.93)
1980 | )
1981 | (stroke
1982 | (width 0)
1983 | (type default)
1984 | )
1985 | (uuid "7e2840b7-76d4-481b-94b7-c8451abcf930")
1986 | )
1987 | (wire
1988 | (pts
1989 | (xy 148.59 72.39) (xy 151.13 72.39)
1990 | )
1991 | (stroke
1992 | (width 0)
1993 | (type default)
1994 | )
1995 | (uuid "7f0dc648-50c1-407b-9505-28fc09bb6074")
1996 | )
1997 | (wire
1998 | (pts
1999 | (xy 148.59 82.55) (xy 151.13 82.55)
2000 | )
2001 | (stroke
2002 | (width 0)
2003 | (type default)
2004 | )
2005 | (uuid "86697de1-4240-4835-8ab1-496718667f4b")
2006 | )
2007 | (wire
2008 | (pts
2009 | (xy 148.59 54.61) (xy 151.13 54.61)
2010 | )
2011 | (stroke
2012 | (width 0)
2013 | (type default)
2014 | )
2015 | (uuid "916f3c93-f280-48e5-a734-389a410c9c15")
2016 | )
2017 | (wire
2018 | (pts
2019 | (xy 177.8 68.58) (xy 185.42 68.58)
2020 | )
2021 | (stroke
2022 | (width 0)
2023 | (type default)
2024 | )
2025 | (uuid "999f994e-b5c8-42f3-8121-377e90589138")
2026 | )
2027 | (wire
2028 | (pts
2029 | (xy 177.8 60.96) (xy 185.42 60.96)
2030 | )
2031 | (stroke
2032 | (width 0)
2033 | (type default)
2034 | )
2035 | (uuid "9b982189-5af9-46a9-8dfa-8c52a7ddd2fb")
2036 | )
2037 | (wire
2038 | (pts
2039 | (xy 177.8 66.04) (xy 185.42 66.04)
2040 | )
2041 | (stroke
2042 | (width 0)
2043 | (type default)
2044 | )
2045 | (uuid "a37027e7-c5d5-4501-8c10-f6ade2d35ec3")
2046 | )
2047 | (wire
2048 | (pts
2049 | (xy 148.59 90.17) (xy 151.13 90.17)
2050 | )
2051 | (stroke
2052 | (width 0)
2053 | (type default)
2054 | )
2055 | (uuid "a3f16f95-d34e-439f-a054-0700cada7d37")
2056 | )
2057 | (wire
2058 | (pts
2059 | (xy 148.59 77.47) (xy 151.13 77.47)
2060 | )
2061 | (stroke
2062 | (width 0)
2063 | (type default)
2064 | )
2065 | (uuid "a452961a-ce3b-4c90-ac0c-3c7c133e6912")
2066 | )
2067 | (wire
2068 | (pts
2069 | (xy 148.59 62.23) (xy 151.13 62.23)
2070 | )
2071 | (stroke
2072 | (width 0)
2073 | (type default)
2074 | )
2075 | (uuid "a81e74df-02f9-4653-8cb7-bc95bd4c1938")
2076 | )
2077 | (wire
2078 | (pts
2079 | (xy 151.13 57.15) (xy 151.13 54.61)
2080 | )
2081 | (stroke
2082 | (width 0)
2083 | (type default)
2084 | )
2085 | (uuid "abc6d54d-5258-411b-972e-2ac28c141e5d")
2086 | )
2087 | (wire
2088 | (pts
2089 | (xy 148.59 52.07) (xy 151.13 52.07)
2090 | )
2091 | (stroke
2092 | (width 0)
2093 | (type default)
2094 | )
2095 | (uuid "ac689e3c-6fc1-4dfa-b360-c0dde7c5622e")
2096 | )
2097 | (wire
2098 | (pts
2099 | (xy 116.84 95.25) (xy 125.73 95.25)
2100 | )
2101 | (stroke
2102 | (width 0)
2103 | (type default)
2104 | )
2105 | (uuid "adb0f48a-75f8-44c9-95af-91c83e3540d0")
2106 | )
2107 | (wire
2108 | (pts
2109 | (xy 177.8 63.5) (xy 185.42 63.5)
2110 | )
2111 | (stroke
2112 | (width 0)
2113 | (type default)
2114 | )
2115 | (uuid "bbb4878f-b913-4f9b-a6e0-c7f1c01d2b9a")
2116 | )
2117 | (wire
2118 | (pts
2119 | (xy 151.13 74.93) (xy 151.13 77.47)
2120 | )
2121 | (stroke
2122 | (width 0)
2123 | (type default)
2124 | )
2125 | (uuid "be9ed4fc-4a22-44a1-a6c9-558555377c15")
2126 | )
2127 | (wire
2128 | (pts
2129 | (xy 148.59 67.31) (xy 151.13 67.31)
2130 | )
2131 | (stroke
2132 | (width 0)
2133 | (type default)
2134 | )
2135 | (uuid "bebf6da0-8fca-4cbe-b9cb-7256a1b26353")
2136 | )
2137 | (wire
2138 | (pts
2139 | (xy 151.13 67.31) (xy 151.13 64.77)
2140 | )
2141 | (stroke
2142 | (width 0)
2143 | (type default)
2144 | )
2145 | (uuid "c0004b2f-00e1-498d-bc8c-a5b8e6ff9fcc")
2146 | )
2147 | (wire
2148 | (pts
2149 | (xy 151.13 52.07) (xy 151.13 49.53)
2150 | )
2151 | (stroke
2152 | (width 0)
2153 | (type default)
2154 | )
2155 | (uuid "c06875c2-505f-4fe4-a970-8c305fa48f54")
2156 | )
2157 | (wire
2158 | (pts
2159 | (xy 148.59 57.15) (xy 151.13 57.15)
2160 | )
2161 | (stroke
2162 | (width 0)
2163 | (type default)
2164 | )
2165 | (uuid "c23131b5-33ff-44ca-9223-210b9dddf02c")
2166 | )
2167 | (wire
2168 | (pts
2169 | (xy 151.13 77.47) (xy 151.13 80.01)
2170 | )
2171 | (stroke
2172 | (width 0)
2173 | (type default)
2174 | )
2175 | (uuid "e30f2279-55b6-44fc-aa59-ebce7e631deb")
2176 | )
2177 | (wire
2178 | (pts
2179 | (xy 151.13 64.77) (xy 151.13 62.23)
2180 | )
2181 | (stroke
2182 | (width 0)
2183 | (type default)
2184 | )
2185 | (uuid "eb76b4fb-8291-4458-a4f5-030af4fc9a53")
2186 | )
2187 | (wire
2188 | (pts
2189 | (xy 148.59 87.63) (xy 151.13 87.63)
2190 | )
2191 | (stroke
2192 | (width 0)
2193 | (type default)
2194 | )
2195 | (uuid "ecba2ccf-3d9f-427c-82b9-502bb3af3492")
2196 | )
2197 | (wire
2198 | (pts
2199 | (xy 151.13 80.01) (xy 151.13 82.55)
2200 | )
2201 | (stroke
2202 | (width 0)
2203 | (type default)
2204 | )
2205 | (uuid "edc5f1cf-4c81-4b97-b9aa-6ceb9c313a14")
2206 | )
2207 | (wire
2208 | (pts
2209 | (xy 148.59 92.71) (xy 151.13 92.71)
2210 | )
2211 | (stroke
2212 | (width 0)
2213 | (type default)
2214 | )
2215 | (uuid "f24d2b89-6943-4c38-a7c8-1ac650042e7d")
2216 | )
2217 | (wire
2218 | (pts
2219 | (xy 148.59 80.01) (xy 151.13 80.01)
2220 | )
2221 | (stroke
2222 | (width 0)
2223 | (type default)
2224 | )
2225 | (uuid "f70a0961-212c-4fb5-a68c-ac285f1ba912")
2226 | )
2227 | (wire
2228 | (pts
2229 | (xy 151.13 85.09) (xy 151.13 87.63)
2230 | )
2231 | (stroke
2232 | (width 0)
2233 | (type default)
2234 | )
2235 | (uuid "fb4f57fb-7e65-460b-a70b-657d0c630a99")
2236 | )
2237 | (label "VDDI"
2238 | (at 118.11 95.25 0)
2239 | (effects
2240 | (font
2241 | (size 1.27 1.27)
2242 | )
2243 | (justify left bottom)
2244 | )
2245 | (uuid "287350c9-7933-4229-901d-6daa0a1589cb")
2246 | )
2247 | (label "CLK"
2248 | (at 177.8 68.58 0)
2249 | (effects
2250 | (font
2251 | (size 1.27 1.27)
2252 | )
2253 | (justify left bottom)
2254 | )
2255 | (uuid "2d9be249-5afc-4e8e-9ade-814d4a466ed0")
2256 | )
2257 | (label "CMD"
2258 | (at 177.8 63.5 0)
2259 | (effects
2260 | (font
2261 | (size 1.27 1.27)
2262 | )
2263 | (justify left bottom)
2264 | )
2265 | (uuid "4a5ac1c7-15e9-4d31-b352-9bd1654b76e6")
2266 | )
2267 | (label "DAT2"
2268 | (at 177.8 58.42 0)
2269 | (effects
2270 | (font
2271 | (size 1.27 1.27)
2272 | )
2273 | (justify left bottom)
2274 | )
2275 | (uuid "515c1593-d964-4ca1-bb65-17e1277d66c4")
2276 | )
2277 | (label "GND"
2278 | (at 177.8 71.12 0)
2279 | (effects
2280 | (font
2281 | (size 1.27 1.27)
2282 | )
2283 | (justify left bottom)
2284 | )
2285 | (uuid "5365153d-fda6-4b92-abc2-0ceff08848db")
2286 | )
2287 | (label "DAT0"
2288 | (at 177.8 73.66 0)
2289 | (effects
2290 | (font
2291 | (size 1.27 1.27)
2292 | )
2293 | (justify left bottom)
2294 | )
2295 | (uuid "5bb1ba2b-25d2-4691-99c5-7c0abfc953a2")
2296 | )
2297 | (label "DAT2"
2298 | (at 118.11 71.12 0)
2299 | (effects
2300 | (font
2301 | (size 1.27 1.27)
2302 | )
2303 | (justify left bottom)
2304 | )
2305 | (uuid "68338daa-76e5-4f9f-88fd-0719fc3ba972")
2306 | )
2307 | (label "VCC"
2308 | (at 118.11 49.53 0)
2309 | (effects
2310 | (font
2311 | (size 1.27 1.27)
2312 | )
2313 | (justify left bottom)
2314 | )
2315 | (uuid "7bd04303-0024-4409-9767-d8c6e608fb09")
2316 | )
2317 | (label "DAT3"
2318 | (at 177.8 60.96 0)
2319 | (effects
2320 | (font
2321 | (size 1.27 1.27)
2322 | )
2323 | (justify left bottom)
2324 | )
2325 | (uuid "7c6a5fa3-edc8-405d-9f42-94a35a6038ea")
2326 | )
2327 | (label "CMD"
2328 | (at 118.11 54.61 0)
2329 | (effects
2330 | (font
2331 | (size 1.27 1.27)
2332 | )
2333 | (justify left bottom)
2334 | )
2335 | (uuid "9065d3b3-8d92-4bef-a817-8c81db5996c0")
2336 | )
2337 | (label "DAT0"
2338 | (at 118.11 66.04 0)
2339 | (effects
2340 | (font
2341 | (size 1.27 1.27)
2342 | )
2343 | (justify left bottom)
2344 | )
2345 | (uuid "9915ccd0-8aad-47e0-b626-446723cda017")
2346 | )
2347 | (label "DAT1"
2348 | (at 177.8 76.2 0)
2349 | (effects
2350 | (font
2351 | (size 1.27 1.27)
2352 | )
2353 | (justify left bottom)
2354 | )
2355 | (uuid "b63291da-6087-4976-b65c-88483ee08095")
2356 | )
2357 | (label "VCC"
2358 | (at 177.8 66.04 0)
2359 | (effects
2360 | (font
2361 | (size 1.27 1.27)
2362 | )
2363 | (justify left bottom)
2364 | )
2365 | (uuid "c087a7bd-564d-4724-85b3-cc53fe592eee")
2366 | )
2367 | (label "DAT3"
2368 | (at 118.11 73.66 0)
2369 | (effects
2370 | (font
2371 | (size 1.27 1.27)
2372 | )
2373 | (justify left bottom)
2374 | )
2375 | (uuid "cd952c4c-aae1-485b-8c1d-bb662d07d2bf")
2376 | )
2377 | (label "CLK"
2378 | (at 118.11 52.07 0)
2379 | (effects
2380 | (font
2381 | (size 1.27 1.27)
2382 | )
2383 | (justify left bottom)
2384 | )
2385 | (uuid "e760817e-0b9a-41cc-80ed-9d3d426f0e54")
2386 | )
2387 | (label "DAT1"
2388 | (at 118.11 68.58 0)
2389 | (effects
2390 | (font
2391 | (size 1.27 1.27)
2392 | )
2393 | (justify left bottom)
2394 | )
2395 | (uuid "f94c2746-3609-4615-8259-ebaf47a68808")
2396 | )
2397 | (symbol
2398 | (lib_id "emmc-adapter-rescue:THGBMNG5D1LBAIL-voltlog")
2399 | (at 137.16 72.39 0)
2400 | (unit 1)
2401 | (exclude_from_sim no)
2402 | (in_bom yes)
2403 | (on_board yes)
2404 | (dnp no)
2405 | (uuid "00000000-0000-0000-0000-00005feb2528")
2406 | (property "Reference" "U1"
2407 | (at 137.16 42.799 0)
2408 | (effects
2409 | (font
2410 | (size 1.27 1.27)
2411 | )
2412 | )
2413 | )
2414 | (property "Value" "THGBMNG5D1LBAIL"
2415 | (at 137.16 45.1104 0)
2416 | (effects
2417 | (font
2418 | (size 1.27 1.27)
2419 | )
2420 | )
2421 | )
2422 | (property "Footprint" "Voltlog:WFBGA153"
2423 | (at 135.89 93.98 0)
2424 | (effects
2425 | (font
2426 | (size 1.27 1.27)
2427 | )
2428 | (hide yes)
2429 | )
2430 | )
2431 | (property "Datasheet" "https://datasheet.lcsc.com/szlcsc/1912111437_KIOXIA-THGBMDG5D1LBAIL_C391254.pdf"
2432 | (at 135.89 93.98 0)
2433 | (effects
2434 | (font
2435 | (size 1.27 1.27)
2436 | )
2437 | (hide yes)
2438 | )
2439 | )
2440 | (property "Description" ""
2441 | (at 137.16 72.39 0)
2442 | (effects
2443 | (font
2444 | (size 1.27 1.27)
2445 | )
2446 | (hide yes)
2447 | )
2448 | )
2449 | (pin "A6"
2450 | (uuid "33931444-e681-4871-b224-5a17bd20505b")
2451 | )
2452 | (pin "A4"
2453 | (uuid "7a6bb60e-dc75-4097-bdaa-51f94802c88b")
2454 | )
2455 | (pin "A5"
2456 | (uuid "5162e2b8-afe9-4983-9be6-bf4277e5fb4f")
2457 | )
2458 | (pin "B2"
2459 | (uuid "56cd175b-a8ae-4642-9002-6313c1903791")
2460 | )
2461 | (pin "B3"
2462 | (uuid "68b212be-22b5-48dc-b9ff-272e24e7568b")
2463 | )
2464 | (pin "B4"
2465 | (uuid "4ce3639e-2e2f-494f-9a90-a921a5ed933e")
2466 | )
2467 | (pin "B5"
2468 | (uuid "ccd01a65-4191-4af4-9754-abead640bc8b")
2469 | )
2470 | (pin "B6"
2471 | (uuid "0adc0988-5644-47ae-8551-bd1cccf4f074")
2472 | )
2473 | (pin "C2"
2474 | (uuid "788ac03d-1951-491d-9e75-ac2a1909c3d3")
2475 | )
2476 | (pin "C4"
2477 | (uuid "3e47d5d7-5be9-42ff-9fe7-9ba929894c3a")
2478 | )
2479 | (pin "C6"
2480 | (uuid "a2cec7e6-ecb5-4b04-9039-c1e1c071225d")
2481 | )
2482 | (pin "E6"
2483 | (uuid "e70337c1-a48e-4822-90ce-599391265f2f")
2484 | )
2485 | (pin "E7"
2486 | (uuid "8f7d83c9-5411-4bb1-81a7-aec9e643b1fd")
2487 | )
2488 | (pin "F5"
2489 | (uuid "86e910be-b903-4fe4-9491-0544ef2cb7c6")
2490 | )
2491 | (pin "G5"
2492 | (uuid "9b3c82a0-9901-4eca-9fef-4a5867873a8f")
2493 | )
2494 | (pin "H10"
2495 | (uuid "717cbb3e-8d73-4d19-b16f-de2d9fe30314")
2496 | )
2497 | (pin "H5"
2498 | (uuid "e86ed53f-4d83-4fc5-a23b-dffead207af0")
2499 | )
2500 | (pin "J10"
2501 | (uuid "ee4aeda6-20ed-402f-a4ec-72f1ccf2079a")
2502 | )
2503 | (pin "J5"
2504 | (uuid "74787a66-fd74-4388-b019-caf85275d126")
2505 | )
2506 | (pin "K5"
2507 | (uuid "4e3f8033-6329-42ac-b702-660393ea01aa")
2508 | )
2509 | (pin "K8"
2510 | (uuid "7ba31d8c-d9b8-4883-b56c-db2647704938")
2511 | )
2512 | (pin "K9"
2513 | (uuid "35753842-6b7b-4159-a5c3-d170258f2767")
2514 | )
2515 | (pin "M4"
2516 | (uuid "013b6d1f-c3c8-4bfd-95a9-3789e8efe751")
2517 | )
2518 | (pin "M5"
2519 | (uuid "1b037e93-d402-408c-944f-7de7fb7fade0")
2520 | )
2521 | (pin "M6"
2522 | (uuid "2d527c98-46a4-4034-b2bb-2d31d352cc7b")
2523 | )
2524 | (pin "N2"
2525 | (uuid "99495e37-3767-4f03-9e89-5f3a28a7e9b4")
2526 | )
2527 | (pin "N4"
2528 | (uuid "34829d97-9121-44fc-aafc-091ad5f177e7")
2529 | )
2530 | (pin "N5"
2531 | (uuid "78140963-62b1-4ead-a620-df56c887cdc8")
2532 | )
2533 | (pin "P3"
2534 | (uuid "41ee9ebe-e844-4f0a-959b-4fd6d6b66739")
2535 | )
2536 | (pin "P4"
2537 | (uuid "09a45138-7cc0-4062-96ad-4cece71b5091")
2538 | )
2539 | (pin "P5"
2540 | (uuid "6bb3a4a9-44f5-43ce-b8cd-28ff668d5bc0")
2541 | )
2542 | (pin "P6"
2543 | (uuid "57b08fdd-4f1d-4199-8df3-9885fe91f233")
2544 | )
2545 | (pin "A3"
2546 | (uuid "72aa4452-90ea-4c5f-9bf9-a11ae3bc745a")
2547 | )
2548 | (instances
2549 | (project "emmc-adapter"
2550 | (path "/68663db6-c703-4253-b388-4008f4be15fd"
2551 | (reference "U1")
2552 | (unit 1)
2553 | )
2554 | )
2555 | )
2556 | )
2557 | (symbol
2558 | (lib_id "Connector:Micro_SD_Card")
2559 | (at 208.28 66.04 0)
2560 | (unit 1)
2561 | (exclude_from_sim no)
2562 | (in_bom yes)
2563 | (on_board yes)
2564 | (dnp no)
2565 | (uuid "00000000-0000-0000-0000-00005feb39e1")
2566 | (property "Reference" "J1"
2567 | (at 207.01 47.8282 0)
2568 | (effects
2569 | (font
2570 | (size 1.27 1.27)
2571 | )
2572 | )
2573 | )
2574 | (property "Value" "Micro_SD_Card"
2575 | (at 207.01 50.1396 0)
2576 | (effects
2577 | (font
2578 | (size 1.27 1.27)
2579 | )
2580 | )
2581 | )
2582 | (property "Footprint" "Voltlog:microSD_card"
2583 | (at 237.49 58.42 0)
2584 | (effects
2585 | (font
2586 | (size 1.27 1.27)
2587 | )
2588 | (hide yes)
2589 | )
2590 | )
2591 | (property "Datasheet" "http://katalog.we-online.de/em/datasheet/693072010801.pdf"
2592 | (at 208.28 66.04 0)
2593 | (effects
2594 | (font
2595 | (size 1.27 1.27)
2596 | )
2597 | (hide yes)
2598 | )
2599 | )
2600 | (property "Description" ""
2601 | (at 208.28 66.04 0)
2602 | (effects
2603 | (font
2604 | (size 1.27 1.27)
2605 | )
2606 | (hide yes)
2607 | )
2608 | )
2609 | (pin "1"
2610 | (uuid "2bd0eac2-c554-4563-a6f3-78fe88d333ff")
2611 | )
2612 | (pin "5"
2613 | (uuid "5be5248f-2a66-4e34-ba68-7adb23ad5777")
2614 | )
2615 | (pin "3"
2616 | (uuid "3ce95913-52e6-40d4-b2ab-d228f4878500")
2617 | )
2618 | (pin "9"
2619 | (uuid "8b48c964-cd0d-46be-9953-0d0bc013624e")
2620 | )
2621 | (pin "4"
2622 | (uuid "78bacc47-28d7-4290-852a-f1383bbab4d3")
2623 | )
2624 | (pin "8"
2625 | (uuid "bdfb518a-8f7f-48a2-8b04-fc1c6343be13")
2626 | )
2627 | (pin "7"
2628 | (uuid "5e3f24a5-8c18-4b20-918d-1fd38fdeaabf")
2629 | )
2630 | (pin "6"
2631 | (uuid "ee028562-4a2b-431e-9655-8c485fe19650")
2632 | )
2633 | (pin "2"
2634 | (uuid "d3a28a39-5ecf-4cce-8b0f-ba13db9a9734")
2635 | )
2636 | (instances
2637 | (project "emmc-adapter"
2638 | (path "/68663db6-c703-4253-b388-4008f4be15fd"
2639 | (reference "J1")
2640 | (unit 1)
2641 | )
2642 | )
2643 | )
2644 | )
2645 | (symbol
2646 | (lib_id "emmc-adapter-rescue:VOLTLOG_LOGO-voltlog")
2647 | (at 182.88 172.72 0)
2648 | (unit 1)
2649 | (exclude_from_sim no)
2650 | (in_bom yes)
2651 | (on_board yes)
2652 | (dnp no)
2653 | (uuid "00000000-0000-0000-0000-00005febb9f7")
2654 | (property "Reference" "V1"
2655 | (at 182.88 176.022 0)
2656 | (effects
2657 | (font
2658 | (size 1.524 1.524)
2659 | )
2660 | (hide yes)
2661 | )
2662 | )
2663 | (property "Value" "VOLTLOG_LOGO"
2664 | (at 182.88 169.418 0)
2665 | (effects
2666 | (font
2667 | (size 1.524 1.524)
2668 | )
2669 | (hide yes)
2670 | )
2671 | )
2672 | (property "Footprint" "Voltlog:voltlog_mask_3mm"
2673 | (at 182.88 172.72 0)
2674 | (effects
2675 | (font
2676 | (size 1.27 1.27)
2677 | )
2678 | (hide yes)
2679 | )
2680 | )
2681 | (property "Datasheet" ""
2682 | (at 182.88 172.72 0)
2683 | (effects
2684 | (font
2685 | (size 1.27 1.27)
2686 | )
2687 | (hide yes)
2688 | )
2689 | )
2690 | (property "Description" ""
2691 | (at 182.88 172.72 0)
2692 | (effects
2693 | (font
2694 | (size 1.27 1.27)
2695 | )
2696 | (hide yes)
2697 | )
2698 | )
2699 | (instances
2700 | (project "emmc-adapter"
2701 | (path "/68663db6-c703-4253-b388-4008f4be15fd"
2702 | (reference "V1")
2703 | (unit 1)
2704 | )
2705 | )
2706 | )
2707 | )
2708 | (symbol
2709 | (lib_id "Mechanical:Fiducial")
2710 | (at 179.07 160.02 0)
2711 | (unit 1)
2712 | (exclude_from_sim no)
2713 | (in_bom yes)
2714 | (on_board yes)
2715 | (dnp no)
2716 | (uuid "00000000-0000-0000-0000-00005febc0d2")
2717 | (property "Reference" "FID1"
2718 | (at 181.229 158.8516 0)
2719 | (effects
2720 | (font
2721 | (size 1.27 1.27)
2722 | )
2723 | (justify left)
2724 | )
2725 | )
2726 | (property "Value" "Fiducial"
2727 | (at 181.229 161.163 0)
2728 | (effects
2729 | (font
2730 | (size 1.27 1.27)
2731 | )
2732 | (justify left)
2733 | )
2734 | )
2735 | (property "Footprint" "Fiducial:Fiducial_0.5mm_Mask1mm"
2736 | (at 179.07 160.02 0)
2737 | (effects
2738 | (font
2739 | (size 1.27 1.27)
2740 | )
2741 | (hide yes)
2742 | )
2743 | )
2744 | (property "Datasheet" "~"
2745 | (at 179.07 160.02 0)
2746 | (effects
2747 | (font
2748 | (size 1.27 1.27)
2749 | )
2750 | (hide yes)
2751 | )
2752 | )
2753 | (property "Description" ""
2754 | (at 179.07 160.02 0)
2755 | (effects
2756 | (font
2757 | (size 1.27 1.27)
2758 | )
2759 | (hide yes)
2760 | )
2761 | )
2762 | (instances
2763 | (project "emmc-adapter"
2764 | (path "/68663db6-c703-4253-b388-4008f4be15fd"
2765 | (reference "FID1")
2766 | (unit 1)
2767 | )
2768 | )
2769 | )
2770 | )
2771 | (symbol
2772 | (lib_id "Mechanical:Fiducial")
2773 | (at 191.77 160.02 0)
2774 | (unit 1)
2775 | (exclude_from_sim no)
2776 | (in_bom yes)
2777 | (on_board yes)
2778 | (dnp no)
2779 | (uuid "00000000-0000-0000-0000-00005febc6ab")
2780 | (property "Reference" "FID2"
2781 | (at 193.929 158.8516 0)
2782 | (effects
2783 | (font
2784 | (size 1.27 1.27)
2785 | )
2786 | (justify left)
2787 | )
2788 | )
2789 | (property "Value" "Fiducial"
2790 | (at 193.929 161.163 0)
2791 | (effects
2792 | (font
2793 | (size 1.27 1.27)
2794 | )
2795 | (justify left)
2796 | )
2797 | )
2798 | (property "Footprint" "Fiducial:Fiducial_0.5mm_Mask1mm"
2799 | (at 191.77 160.02 0)
2800 | (effects
2801 | (font
2802 | (size 1.27 1.27)
2803 | )
2804 | (hide yes)
2805 | )
2806 | )
2807 | (property "Datasheet" "~"
2808 | (at 191.77 160.02 0)
2809 | (effects
2810 | (font
2811 | (size 1.27 1.27)
2812 | )
2813 | (hide yes)
2814 | )
2815 | )
2816 | (property "Description" ""
2817 | (at 191.77 160.02 0)
2818 | (effects
2819 | (font
2820 | (size 1.27 1.27)
2821 | )
2822 | (hide yes)
2823 | )
2824 | )
2825 | (instances
2826 | (project "emmc-adapter"
2827 | (path "/68663db6-c703-4253-b388-4008f4be15fd"
2828 | (reference "FID2")
2829 | (unit 1)
2830 | )
2831 | )
2832 | )
2833 | )
2834 | (symbol
2835 | (lib_id "Mechanical:Fiducial")
2836 | (at 204.47 160.02 0)
2837 | (unit 1)
2838 | (exclude_from_sim no)
2839 | (in_bom yes)
2840 | (on_board yes)
2841 | (dnp no)
2842 | (uuid "00000000-0000-0000-0000-00005febc8c9")
2843 | (property "Reference" "FID3"
2844 | (at 206.629 158.8516 0)
2845 | (effects
2846 | (font
2847 | (size 1.27 1.27)
2848 | )
2849 | (justify left)
2850 | )
2851 | )
2852 | (property "Value" "Fiducial"
2853 | (at 206.629 161.163 0)
2854 | (effects
2855 | (font
2856 | (size 1.27 1.27)
2857 | )
2858 | (justify left)
2859 | )
2860 | )
2861 | (property "Footprint" "Fiducial:Fiducial_0.5mm_Mask1mm"
2862 | (at 204.47 160.02 0)
2863 | (effects
2864 | (font
2865 | (size 1.27 1.27)
2866 | )
2867 | (hide yes)
2868 | )
2869 | )
2870 | (property "Datasheet" "~"
2871 | (at 204.47 160.02 0)
2872 | (effects
2873 | (font
2874 | (size 1.27 1.27)
2875 | )
2876 | (hide yes)
2877 | )
2878 | )
2879 | (property "Description" ""
2880 | (at 204.47 160.02 0)
2881 | (effects
2882 | (font
2883 | (size 1.27 1.27)
2884 | )
2885 | (hide yes)
2886 | )
2887 | )
2888 | (instances
2889 | (project "emmc-adapter"
2890 | (path "/68663db6-c703-4253-b388-4008f4be15fd"
2891 | (reference "FID3")
2892 | (unit 1)
2893 | )
2894 | )
2895 | )
2896 | )
2897 | (symbol
2898 | (lib_id "Device:C")
2899 | (at 157.48 71.12 0)
2900 | (unit 1)
2901 | (exclude_from_sim no)
2902 | (in_bom yes)
2903 | (on_board yes)
2904 | (dnp no)
2905 | (uuid "00000000-0000-0000-0000-00005fec203a")
2906 | (property "Reference" "C2"
2907 | (at 160.401 69.9516 0)
2908 | (effects
2909 | (font
2910 | (size 1.27 1.27)
2911 | )
2912 | (justify left)
2913 | )
2914 | )
2915 | (property "Value" "1uF"
2916 | (at 160.401 72.263 0)
2917 | (effects
2918 | (font
2919 | (size 1.27 1.27)
2920 | )
2921 | (justify left)
2922 | )
2923 | )
2924 | (property "Footprint" "Capacitor_SMD:C_0603_1608Metric"
2925 | (at 158.4452 74.93 0)
2926 | (effects
2927 | (font
2928 | (size 1.27 1.27)
2929 | )
2930 | (hide yes)
2931 | )
2932 | )
2933 | (property "Datasheet" "~"
2934 | (at 157.48 71.12 0)
2935 | (effects
2936 | (font
2937 | (size 1.27 1.27)
2938 | )
2939 | (hide yes)
2940 | )
2941 | )
2942 | (property "Description" ""
2943 | (at 157.48 71.12 0)
2944 | (effects
2945 | (font
2946 | (size 1.27 1.27)
2947 | )
2948 | (hide yes)
2949 | )
2950 | )
2951 | (pin "2"
2952 | (uuid "3b84b1ab-5bb2-4c3f-99f8-7f5beaee443a")
2953 | )
2954 | (pin "1"
2955 | (uuid "6a1c6503-25df-4727-bcfc-13dba3103978")
2956 | )
2957 | (instances
2958 | (project "emmc-adapter"
2959 | (path "/68663db6-c703-4253-b388-4008f4be15fd"
2960 | (reference "C2")
2961 | (unit 1)
2962 | )
2963 | )
2964 | )
2965 | )
2966 | (symbol
2967 | (lib_id "emmc-adapter-rescue:GND-power")
2968 | (at 157.48 74.93 0)
2969 | (unit 1)
2970 | (exclude_from_sim no)
2971 | (in_bom yes)
2972 | (on_board yes)
2973 | (dnp no)
2974 | (uuid "00000000-0000-0000-0000-00005fec478e")
2975 | (property "Reference" "#PWR0101"
2976 | (at 157.48 81.28 0)
2977 | (effects
2978 | (font
2979 | (size 1.27 1.27)
2980 | )
2981 | (hide yes)
2982 | )
2983 | )
2984 | (property "Value" "GND"
2985 | (at 157.607 79.3242 0)
2986 | (effects
2987 | (font
2988 | (size 1.27 1.27)
2989 | )
2990 | )
2991 | )
2992 | (property "Footprint" ""
2993 | (at 157.48 74.93 0)
2994 | (effects
2995 | (font
2996 | (size 1.27 1.27)
2997 | )
2998 | (hide yes)
2999 | )
3000 | )
3001 | (property "Datasheet" ""
3002 | (at 157.48 74.93 0)
3003 | (effects
3004 | (font
3005 | (size 1.27 1.27)
3006 | )
3007 | (hide yes)
3008 | )
3009 | )
3010 | (property "Description" ""
3011 | (at 157.48 74.93 0)
3012 | (effects
3013 | (font
3014 | (size 1.27 1.27)
3015 | )
3016 | (hide yes)
3017 | )
3018 | )
3019 | (pin "1"
3020 | (uuid "4cf7b96d-4ab2-45fe-95d0-8c6eeefd1c47")
3021 | )
3022 | (instances
3023 | (project "emmc-adapter"
3024 | (path "/68663db6-c703-4253-b388-4008f4be15fd"
3025 | (reference "#PWR0101")
3026 | (unit 1)
3027 | )
3028 | )
3029 | )
3030 | )
3031 | (symbol
3032 | (lib_id "emmc-adapter-rescue:VCC-power")
3033 | (at 157.48 67.31 0)
3034 | (unit 1)
3035 | (exclude_from_sim no)
3036 | (in_bom yes)
3037 | (on_board yes)
3038 | (dnp no)
3039 | (uuid "00000000-0000-0000-0000-00005fec4ffe")
3040 | (property "Reference" "#PWR0102"
3041 | (at 157.48 71.12 0)
3042 | (effects
3043 | (font
3044 | (size 1.27 1.27)
3045 | )
3046 | (hide yes)
3047 | )
3048 | )
3049 | (property "Value" "VCC"
3050 | (at 157.9118 62.9158 0)
3051 | (effects
3052 | (font
3053 | (size 1.27 1.27)
3054 | )
3055 | )
3056 | )
3057 | (property "Footprint" ""
3058 | (at 157.48 67.31 0)
3059 | (effects
3060 | (font
3061 | (size 1.27 1.27)
3062 | )
3063 | (hide yes)
3064 | )
3065 | )
3066 | (property "Datasheet" ""
3067 | (at 157.48 67.31 0)
3068 | (effects
3069 | (font
3070 | (size 1.27 1.27)
3071 | )
3072 | (hide yes)
3073 | )
3074 | )
3075 | (property "Description" ""
3076 | (at 157.48 67.31 0)
3077 | (effects
3078 | (font
3079 | (size 1.27 1.27)
3080 | )
3081 | (hide yes)
3082 | )
3083 | )
3084 | (pin "1"
3085 | (uuid "76f3f53f-7245-47ea-b2a3-77f89f09df47")
3086 | )
3087 | (instances
3088 | (project "emmc-adapter"
3089 | (path "/68663db6-c703-4253-b388-4008f4be15fd"
3090 | (reference "#PWR0102")
3091 | (unit 1)
3092 | )
3093 | )
3094 | )
3095 | )
3096 | (symbol
3097 | (lib_id "Device:C")
3098 | (at 116.84 99.06 0)
3099 | (unit 1)
3100 | (exclude_from_sim no)
3101 | (in_bom yes)
3102 | (on_board yes)
3103 | (dnp no)
3104 | (uuid "00000000-0000-0000-0000-00005fec67c1")
3105 | (property "Reference" "C1"
3106 | (at 119.761 97.8916 0)
3107 | (effects
3108 | (font
3109 | (size 1.27 1.27)
3110 | )
3111 | (justify left)
3112 | )
3113 | )
3114 | (property "Value" "1uF"
3115 | (at 119.761 100.203 0)
3116 | (effects
3117 | (font
3118 | (size 1.27 1.27)
3119 | )
3120 | (justify left)
3121 | )
3122 | )
3123 | (property "Footprint" "Capacitor_SMD:C_0603_1608Metric"
3124 | (at 117.8052 102.87 0)
3125 | (effects
3126 | (font
3127 | (size 1.27 1.27)
3128 | )
3129 | (hide yes)
3130 | )
3131 | )
3132 | (property "Datasheet" "~"
3133 | (at 116.84 99.06 0)
3134 | (effects
3135 | (font
3136 | (size 1.27 1.27)
3137 | )
3138 | (hide yes)
3139 | )
3140 | )
3141 | (property "Description" ""
3142 | (at 116.84 99.06 0)
3143 | (effects
3144 | (font
3145 | (size 1.27 1.27)
3146 | )
3147 | (hide yes)
3148 | )
3149 | )
3150 | (pin "1"
3151 | (uuid "4382ad3d-7e79-401b-9512-231a34565ffc")
3152 | )
3153 | (pin "2"
3154 | (uuid "2d34df31-b79e-410d-9719-c543300e64bd")
3155 | )
3156 | (instances
3157 | (project "emmc-adapter"
3158 | (path "/68663db6-c703-4253-b388-4008f4be15fd"
3159 | (reference "C1")
3160 | (unit 1)
3161 | )
3162 | )
3163 | )
3164 | )
3165 | (symbol
3166 | (lib_id "emmc-adapter-rescue:GND-power")
3167 | (at 116.84 102.87 0)
3168 | (unit 1)
3169 | (exclude_from_sim no)
3170 | (in_bom yes)
3171 | (on_board yes)
3172 | (dnp no)
3173 | (uuid "00000000-0000-0000-0000-00005fec81b8")
3174 | (property "Reference" "#PWR0103"
3175 | (at 116.84 109.22 0)
3176 | (effects
3177 | (font
3178 | (size 1.27 1.27)
3179 | )
3180 | (hide yes)
3181 | )
3182 | )
3183 | (property "Value" "GND"
3184 | (at 116.967 107.2642 0)
3185 | (effects
3186 | (font
3187 | (size 1.27 1.27)
3188 | )
3189 | )
3190 | )
3191 | (property "Footprint" ""
3192 | (at 116.84 102.87 0)
3193 | (effects
3194 | (font
3195 | (size 1.27 1.27)
3196 | )
3197 | (hide yes)
3198 | )
3199 | )
3200 | (property "Datasheet" ""
3201 | (at 116.84 102.87 0)
3202 | (effects
3203 | (font
3204 | (size 1.27 1.27)
3205 | )
3206 | (hide yes)
3207 | )
3208 | )
3209 | (property "Description" ""
3210 | (at 116.84 102.87 0)
3211 | (effects
3212 | (font
3213 | (size 1.27 1.27)
3214 | )
3215 | (hide yes)
3216 | )
3217 | )
3218 | (pin "1"
3219 | (uuid "5825633e-82a4-4b10-b25c-4aa34745051d")
3220 | )
3221 | (instances
3222 | (project "emmc-adapter"
3223 | (path "/68663db6-c703-4253-b388-4008f4be15fd"
3224 | (reference "#PWR0103")
3225 | (unit 1)
3226 | )
3227 | )
3228 | )
3229 | )
3230 | (sheet_instances
3231 | (path "/"
3232 | (page "1")
3233 | )
3234 | )
3235 | )
3236 |
--------------------------------------------------------------------------------
/emmc_adapter_populated_revA.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/voltlog/emmc-wfbga153-microsd/5b3fa67a421ded5388e1174ba7999c9c4074cdf2/emmc_adapter_populated_revA.jpg
--------------------------------------------------------------------------------
/gerbers/.DS_Store:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/voltlog/emmc-wfbga153-microsd/5b3fa67a421ded5388e1174ba7999c9c4074cdf2/gerbers/.DS_Store
--------------------------------------------------------------------------------
/gerbers/gerbers_emmc_revB.zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/voltlog/emmc-wfbga153-microsd/5b3fa67a421ded5388e1174ba7999c9c4074cdf2/gerbers/gerbers_emmc_revB.zip
--------------------------------------------------------------------------------