diff --git a/README.md b/README.md index 082a94741ee985f58ae1217cf9f32d125ca844ca..107d240c66de2923080e580ad17d3bfb00294805 100644 --- a/README.md +++ b/README.md @@ -2,42 +2,7 @@ [CMSIS-DAP](https://www.keil.com/support/man/docs/dapdebug/dapdebug_introduction.htm) is an *interface firmware* that connects microcontrollers to our PCs over USB, specifically for debugging code running on our microcontrollers, or loading new code onto them. -If you know how all of this stuff generally works, continue past the next two sections. - -### Que? - -If the above statement doesn't make immediate sense, here's what's up: - -Every time our our microcontroller is reset, it starts operating the program that currently resides in its memory. This means that in order to load a new program onto the microcontroller, we need some way of writing into that memory from another device. - -This normally means that we write (human readable) code on our PC / Laptop / Whatever, compile it using a *toolchain* that knows how our device is shaped (alignments, bus widths, processor architectures etc) into byte code (machine readable), and then use some device to write that byte-code into the microcontroller's memory. Then, next time it wakes up (or we reset it) the microcontroller starts running our program! - -Microcontrollers have pins that are specifically made for loading programs into their memory - these are known as 'debug ports' and ARM chips commonly use [JTAG](https://en.wikipedia.org/wiki/JTAG) or [SWD](https://en.wikipedia.org/wiki/JTAG#Similar_interface_standards). Our programming device (here it's the CMSIS-DAP) communicates to our PC using a USB connection on one side, and to our microcontroller using JTAG or SWD on the other side. - -Different microcontrollers have different debug ports: AVR chips have ISP (In System Programming) debug ports, XMEGA chips use PDI, and some ATTINYs use UPDI - these are [well explained here](https://www.kanda.com/blog/microcontrollers/avr-microcontrollers/avr-microcontroller-programming-interfaces-isp-jtag-tpi-pdi-updi/). CMSIS-DAP only talks to JTAG or SWD ports: others need other programmers, i.e. the [ATMEL-ICE](https://www.microchip.com/DevelopmentTools/ProductDetails/ATATMEL-ICE) [AVR ISP](https://www.microchip.com/DevelopmentTools/ProductDetails/PartNO/ATAVRISP2) or [FAB ISP](https://fab.cba.mit.edu/classes/863.16/doc/projects/ftsmin/index.html) that you can make yourself. - -Here's an abbreviated list of the system layers (not aligned) we're putting together when we do this: - -**rows are not aligned** - -| Human Codes | Compilers | Byte Code -> Device Port (tool) | Device Debug Ports | -| --- | --- | --- | --- | -| c | avr-gcc | cmsis-dap | jtag | -| c++ | gnu-arm-gcc | atmel-ice | swd | -| | | avr-isp | pdi | -| | | fab-isp | isp | -| | | usb | updi | -| | | | bootloader (self program) | - -### What's a bootloader? - -Occasionally, we don't need a programming device in order to load code onto microcontrollers, as is the case with Arduino and other development boards. What gives? - -These boards have [*bootloaders*](https://learn.adafruit.com/bootloader-basics) already written into their program memory. These are little programs that run *in the microcontroller* when they are reset. They start up, listen for some communication from your computer telling them that a new program is incoming, and if one doesn't exist, continue to the code loaded in the rest of their memory. - -Basically, when a bootloader is present, the microcontroller itself takes on the role of the 'byte code -> device port' tool: this is known as 'self-programming' - the microcontroller writes your new program into its own memory. - -Trouble is, when we make our own boards, we need to be able to load our own bootloaders (bootstrapping them...) and we need to do this with a tool like a CMSIS-DAP, AVR ISP etc. +If this is already confusing, you can check [this out](prog-doc.md). ## 1: Connect CMSIS-DAP to your Device @@ -56,11 +21,23 @@ To connect this to your circuit, you'll want to put a 2x5 header on your circuit - connect SWDIO to SWDIO (read the datasheet!) - connect SWDCLK to SWDCLK (consider a pullup on this line as well) +Hopefully you already have a circuit with a working debug port (maybe one that someone else designed), if you're starting from scratch, a strategy I often use to make sure I will have programming success is to copy someone else's basic schematic: i.e. the [Adafruit Trinket M0](https://github.com/adafruit/Adafruit-Trinket-M0-PCB) is a good ground-zero for the SAMD21E18 chip, and the [Adafruit Feather M4](https://github.com/adafruit/Adafruit-Feather-M4-Express-PCB) is a good ground-zero for the SAMD51J19. Thanks adafruit! One note: they don't use the 2x5 pin header, instead, they use pogo pins on the board to break out SWDIO and SWDCLK. Just swap in a connector! + **Note** the CMSIS-DAP tool does not *provide* power to your circuit, it merely reads it to check that the device is alive. When you're programming the circuit, be sure to power it as well! For this reason, I often put a USB connector on my circuits to easily supply 5v. -### TODO: example schem for the D51 and D21 +### SAMD51 Example + +I built a barebones example for this chip, showing how I connect the 2x5-pin programming header, as well as set up the basic components I'll need (power regulation, USB connection) to get it running. Take note that some of the connections (SWD.. USB..) are not drawn completely: the nets are [named in eagle to connect them](https://electronics.stackexchange.com/questions/104575/how-to-create-wireless-networks-in-eagle-cad). + +This schematic will work with the Feather M4 Bootloader. Note that the KHZ Crystal *is necessary* for the bootloader to work, but is not necessary for you to program your own system. + + + +### SAMD21 Example + +Here's another, for the SAMD21. This schematic will work with the Trinket M0 Bootloader. -This is all a bit much. A strategy I often use to make sure I will have programming success is to copy someone else's basic schematic: i.e. the [Adafruit Trinket M0](https://github.com/adafruit/Adafruit-Trinket-M0-PCB) is a good ground-zero for the SAMD21E18 chip, and the [Adafruit Feather M4](https://github.com/adafruit/Adafruit-Feather-M4-Express-PCB) is a good ground-zero for the SAMD51J19. Thanks adafruit! One note: they don't use the 2x5 pin header, instead, they use pogo pins on the board to break out SWDIO and SWDCLK. Just swap in a connector! + ## 2: Connecting CMSIS-DAP to your Computer @@ -68,46 +45,76 @@ A CMSIS-DAP tool itself should announce itself to your computer automatically (o Now I need to get a software system that will talk to the CMSIS-DAP tool. -## 3a: ARM MDK to CMSIS-DAP +## 3: Flashing .hex or .bin via CMSIS-DAP and pyOCD -To verify I could flash my board using the CMSIS-DAP tool, I first tried operating it with the [ARM MDK](http://www2.keil.com/mdk5) which is an install that will bring with it everything you need to write and flash code onto any ARM microcontroller. +Sometimes, the move is to use a tool like CMSIS-DAP to load a bootloader onto our device, and then just use that bootloader routinely to re-program it / develop code. -This can be a little intimidating if you've not experienced big IDEs before, but it's well supported and used commercially, so it's a good ground truth also. Here's what I did: +To do this, you'll want to borrow a bootloader from someone who's written lots of them: I use [Adafruit Bootloaders](https://github.com/adafruit/ArduinoCore-samd/tree/master/bootloaders/) fairly often. To ensure that this works, I need to make that my circuit is compatible with the bootloader I'm going to use. The **Trinket M0 Bootloader** is a great, lightweight bootloader for the **SAMD21E18** and the **Feather M4 Express Bootloader** is similar for the **SAMD51J19**. These match the schematics above. -OK, this looks like it works, but our target board is a bit messed up. -- had to install package manually, https://packs.download.microchip.com/ find D21 support package, download, rename .atpack to .pack, import in keil package manager -- [pack installer](https://www.keil.com/support/man/docs/uv4/uv4_ca_packinstaller.htm) -- to setup project, bring in core components in keil as well during 'new project' wizard: selections, -- do boilerplate code main.c, int main(void){}, do #include "samd21e17a.h" for HAL -- get your pins right -- atmel-ice, sam port, do device progamming -> memories ... -- load trinket m0 booloader (zero bl uses xtal) -- keil setup, -- cmsis-dap automatically announces itself (on windows) -- keil setup to do - - tools ... setup flash tools ... find tab 'debug' - - 'use' cmsis-dap debugger - - do 'setup' to the right - - do 'port' SW (not JTAG) +Of course, the hex you're flashing doesn't have to be a bootloader... any program will compile into .hex or .bin. Forgive me for dawdling: -confirmed that the cmsis-dap works. need to be able to flash with the cmsis-dap. first, do that, or find some gui (doubt it) for it. +CMSIS-DAP is just the tool that *connects* our computer to our microcontroller, we need also a program on our computer to operate the CMSIS-DAP. On this end, I've tested [pyOCD](https://github.com/pyocd/pyOCD) (for Python On Chip Debugger), but other tools exist. -## 3b: Platformio to CMSIS-DAP +### 3.1: Install pyOCD -[Platformio](https://platformio.org/) is a great tool that I've been using to write all of my embedded code lately. It's an extension for [VSCode](https://code.visualstudio.com/), which is essentially Microsoft's fork of [atom](https://atom.io/) (in case you're interested). +Their install documentation is better than mine, you can [read it here](https://github.com/pyocd/pyOCD#installing) to complete this step. + +I (on windows) had to install python, visualstudio, and had to make sure [python was on my PATH](https://datatofish.com/add-python-to-windows-path/) so that I could invoke it from the command prompt. I also had to add the pyocd scripts to my PATH, they were located at `c\users\<username>\appdata\roaming\python39\scripts`. + +### 3.2: Setup pyOCD + +pyOCD comes out of the box with support for a bunch of microcontrollers, but not the ones I want (the D21 and D51 series). Target support is [managed well in pyOCD](https://github.com/pyocd/pyOCD/blob/master/docs/target_support.md) but I couldn't find my chips with their 'target find' tools, so I just downloaded them myself. + +Downloads for Atmel Chips are at [https://packs.download.microchip.com/](https://packs.download.microchip.com/), you can `ctrl+f` for `D21` etc and get the most recent. **Importantly** you need to rename the `.atpack` to `.pack` - don't ask my why microchip is trying to use different file extensions than anyone else. + +To point pyOCD at these packs, they have a great little [yaml config](https://github.com/pyocd/pyOCD/blob/master/docs/configuration.md) tool. I made a new folder this exercise, and added a `pyocd.yaml` file there, like: + +```yaml +pack: + - Microchip.SAMD51_DFP.3.3.76.pack + - Microchip.SAMD21_DFP.3.3.98.pack +``` -Using CMSIS-DAP for a platformio project is [supported](https://docs.platformio.org/en/latest/plus/debug-tools/cmsis-dap.html), but I still need to figure out how to set it up for use on a custom board... this is on the way. +That points pyOCD at these files (which are also in the folder) so that anytime I call a pyOCD script from this folder, it uses this config. Rad. I included that folder in this repo. -### 4: Loading .bin .hex etc directly +Now I can do the magic: +- connect the cmsis-dap tool to the circuit +- connect the cmsis-dap tool to my computer +- power on my board (the cmsis-dap tool *measures* voltage, it doesn't provide it) +- open a terminal / command prompt / etc in the pyOCD folder with your config and hex file in it +- run `pyocd flash -t <your target> <your .hex or .bin>` +- i.e. `pyocd flash -t atsamd51j19a bootloader-feather_m4-v3.10.0.bin` -Sometimes, the move is to use a tool like CMSIS-DAP to load a bootloader onto our device, and then just use that bootloader routinely to re-program it / develop code. +To find your target name, you can do `pyocd list --targets` -To do this, you'll want to borrow a bootloader from someone who's written lots of them: I use [Adafruit Bootloaders](https://github.com/adafruit/ArduinoCore-samd/tree/master/bootloaders/) fairly often. To ensure that this works, I need to make that my circuit is compatible with the bootloader I'm going to use. The **Trinket M0 Bootloader** is a great, lightweight bootloader for the **SAMD21E18**and the **Feather M4 Express Bootloader** is similar for the **SAMD51J19**. +## 4a: Programming, Debugging in ARM MDK with CMSIS-DAP -**Note** these need to be *very* compatible: i.e. the *E18* and *J19* variants of the D21 and D51 respectively need to be used for those bootloaders to work. Additionally, external crystals (and USB lines) must be connected for these to work, if they're present in the design you're borrowing a bootloader from. +If you want to go beyond, and use these tools to program and debug chips, I have also spent *some* time trying to figure out how to set that up. -#### TODO: how to command-line (?) cmsis-dap .hex files? +To verify I could flash my board using the CMSIS-DAP tool, I first tried operating it with the [ARM MDK](http://www2.keil.com/mdk5) which is an install that will bring with it everything you need to write and flash code onto any ARM microcontroller. + +This can be a little intimidating if you've not experienced big IDEs before, but it's well supported and used commercially, so it's a good ground truth also. Here's what I did: + +OK, this looks like it works, but it was a bit messy, here are some brief notes. +- install [the ARM MDK](https://www2.keil.com/mdk5) that includes 'uVision' (IDE) +- this manages device packs, a lot like pyOCD, but: +- had to install package manually, https://packs.download.microchip.com/ find D21 support package, download, rename .atpack to .pack, [import manually](https://www.keil.com/support/man/docs/uv4/uv4_ca_packinst_imp.htm) in keil package manager +- setup a new project in uVision: the wizard is OK. +- add a new `main.c` file to the project, recall boilerplate c code: + - `#include "samde18a.h" // include the hardware definitions` + - `int main(void){<some test code>}` +- setup the project to use cmsis-dap debugger + - tools ... setup flash tools ... find tab 'debug' + - 'use' cmsis-dap debugger + - do 'setup' to the right + - do 'port' SW (not JTAG) +- build your project with `F7` +- flash your board with `F8` + +Those are pretty rough notes, but I can testify that this works well on a windows machine. + +## 4b: Programming, Debugging in Platformio with CMSIS-DAP + +[Platformio](https://platformio.org/) is a great tool that I've been using to write all of my embedded code lately. It's an extension for [VSCode](https://code.visualstudio.com/), which is essentially Microsoft's fork of [atom](https://atom.io/) (in case you're interested). -https://github.com/adafruit/Adafruit-Trinket-M0-PCB -https://github.com/arduino/ArduinoCore-samd/ -https://github.com/adafruit/ArduinoCore-samd/tree/master/bootloaders/trinketm0 +Using CMSIS-DAP for a platformio project is [supported](https://docs.platformio.org/en/latest/plus/debug-tools/cmsis-dap.html), but I still need to figure out how to set it up for use on a custom board... this is on the way. \ No newline at end of file diff --git a/prog-doc.md b/prog-doc.md new file mode 100644 index 0000000000000000000000000000000000000000..42995aa4ea34451ee0875b9df81a07279a43e411 --- /dev/null +++ b/prog-doc.md @@ -0,0 +1,34 @@ +### Que? + +If the above statement doesn't make immediate sense, here's what's up: + +Every time our our microcontroller is reset, it starts operating the program that currently resides in its memory. This means that in order to load a new program onto the microcontroller, we need some way of writing into that memory from another device. + +This normally means that we write (human readable) code on our PC / Laptop / Whatever, compile it using a *toolchain* that knows how our device is shaped (alignments, bus widths, processor architectures etc) into byte code (machine readable), and then use some device to write that byte-code into the microcontroller's memory. Then, next time it wakes up (or we reset it) the microcontroller starts running our program! + +Microcontrollers have pins that are specifically made for loading programs into their memory - these are known as 'debug ports' and ARM chips commonly use [JTAG](https://en.wikipedia.org/wiki/JTAG) or [SWD](https://en.wikipedia.org/wiki/JTAG#Similar_interface_standards). Our programming device (here it's the CMSIS-DAP) communicates to our PC using a USB connection on one side, and to our microcontroller using JTAG or SWD on the other side. + +Different microcontrollers have different debug ports: AVR chips have ISP (In System Programming) debug ports, XMEGA chips use PDI, and some ATTINYs use UPDI - these are [well explained here](https://www.kanda.com/blog/microcontrollers/avr-microcontrollers/avr-microcontroller-programming-interfaces-isp-jtag-tpi-pdi-updi/). CMSIS-DAP only talks to JTAG or SWD ports: others need other programmers, i.e. the [ATMEL-ICE](https://www.microchip.com/DevelopmentTools/ProductDetails/ATATMEL-ICE) [AVR ISP](https://www.microchip.com/DevelopmentTools/ProductDetails/PartNO/ATAVRISP2) or [FAB ISP](https://fab.cba.mit.edu/classes/863.16/doc/projects/ftsmin/index.html) that you can make yourself. + +Here's an abbreviated list of the system layers (not aligned) we're putting together when we do this: + +**rows are not aligned** + +| Human Codes | Compilers | Byte Code -> Device Port (tool) | Device Debug Ports | +| --- | --- | --- | --- | +| c | avr-gcc | cmsis-dap | jtag | +| c++ | gnu-arm-gcc | atmel-ice | swd | +| | | avr-isp | pdi | +| | | fab-isp | isp | +| | | usb | updi | +| | | | bootloader (self program) | + +### What's a bootloader? + +Occasionally, we don't need a programming device in order to load code onto microcontrollers, as is the case with Arduino and other development boards. What gives? + +These boards have [*bootloaders*](https://learn.adafruit.com/bootloader-basics) already written into their program memory. These are little programs that run *in the microcontroller* when they are reset. They start up, listen for some communication from your computer telling them that a new program is incoming, and if one doesn't exist, continue to the code loaded in the rest of their memory. + +Basically, when a bootloader is present, the microcontroller itself takes on the role of the 'byte code -> device port' tool: this is known as 'self-programming' - the microcontroller writes your new program into its own memory. + +Trouble is, when we make our own boards, we need to be able to load our own bootloaders (bootstrapping them...) and we need to do this with a tool like a CMSIS-DAP, AVR ISP etc. \ No newline at end of file diff --git a/pyOCD/Microchip.SAMD21_DFP.3.3.98.pack b/pyOCD/Microchip.SAMD21_DFP.3.3.98.pack new file mode 100644 index 0000000000000000000000000000000000000000..d7876dfc83001af2c64eae298f4691bd9c5cbd99 Binary files /dev/null and b/pyOCD/Microchip.SAMD21_DFP.3.3.98.pack differ diff --git a/pyOCD/Microchip.SAMD51_DFP.3.3.76.pack b/pyOCD/Microchip.SAMD51_DFP.3.3.76.pack new file mode 100644 index 0000000000000000000000000000000000000000..6ee26a06edd4938d37b45ecafc3064eb5720088f Binary files /dev/null and b/pyOCD/Microchip.SAMD51_DFP.3.3.76.pack differ diff --git a/pyOCD/bootloader-feather_m4-v3.10.0.bin b/pyOCD/bootloader-feather_m4-v3.10.0.bin new file mode 100644 index 0000000000000000000000000000000000000000..8c10048eb29192409fbbab15e6a4652891497134 Binary files /dev/null and b/pyOCD/bootloader-feather_m4-v3.10.0.bin differ diff --git a/pyOCD/bootloader-trinket_m0-v2.0.0-adafruit.5.bin b/pyOCD/bootloader-trinket_m0-v2.0.0-adafruit.5.bin new file mode 100644 index 0000000000000000000000000000000000000000..418928a2116b8aaf24403e15a5394736e30ba0dc Binary files /dev/null and b/pyOCD/bootloader-trinket_m0-v2.0.0-adafruit.5.bin differ diff --git a/pyOCD/pyocd.yaml b/pyOCD/pyocd.yaml new file mode 100644 index 0000000000000000000000000000000000000000..69a7d3c1e96cc71ebc708e9d0dee899273885197 --- /dev/null +++ b/pyOCD/pyocd.yaml @@ -0,0 +1,3 @@ +pack: + - Microchip.SAMD51_DFP.3.3.76.pack + - Microchip.SAMD21_DFP.3.3.98.pack \ No newline at end of file diff --git a/samd21-example/samd21-barebones/eagle.epf b/samd21-example/samd21-barebones/eagle.epf new file mode 100644 index 0000000000000000000000000000000000000000..c7be49f6a2ddc4baae6dcff1c2c0da7b736afc70 --- /dev/null +++ b/samd21-example/samd21-barebones/eagle.epf @@ -0,0 +1,2 @@ +[Eagle] +Version="09 06 00" \ No newline at end of file diff --git a/samd21-example/samd21-barebones/samd21-barebones.b#1 b/samd21-example/samd21-barebones/samd21-barebones.b#1 new file mode 100644 index 0000000000000000000000000000000000000000..d34f9a726e3dc34ef4da04ce4bd3444500f126c3 --- /dev/null +++ b/samd21-example/samd21-barebones/samd21-barebones.b#1 @@ -0,0 +1,731 @@ +<?xml version="1.0" encoding="utf-8"?> +<!DOCTYPE eagle SYSTEM "eagle.dtd"> +<eagle version="9.6.0"> +<drawing> +<settings> +<setting alwaysvectorfont="no"/> +<setting verticaltext="up"/> +</settings> +<grid distance="50" unitdist="mil" unit="mil" style="lines" multiple="1" display="no" altdistance="5" altunitdist="mil" altunit="mil"/> +<layers> +<layer number="1" name="Top" color="4" fill="1" visible="yes" active="yes"/> +<layer number="2" name="Route2" color="16" fill="1" visible="no" active="no"/> +<layer number="3" name="Route3" color="17" fill="1" visible="no" active="no"/> +<layer number="4" name="Route4" color="18" fill="1" visible="no" active="no"/> +<layer number="5" name="Route5" color="19" fill="1" visible="no" active="no"/> +<layer number="6" name="Route6" color="25" fill="1" visible="no" active="no"/> +<layer number="7" name="Route7" color="26" fill="1" visible="no" active="no"/> +<layer number="8" name="Route8" color="27" fill="1" visible="no" active="no"/> +<layer number="9" name="Route9" color="28" fill="1" visible="no" active="no"/> +<layer number="10" name="Route10" color="29" fill="1" visible="no" active="no"/> +<layer number="11" name="Route11" color="30" fill="1" visible="no" active="no"/> +<layer number="12" name="Route12" color="20" fill="1" visible="no" active="no"/> +<layer number="13" name="Route13" color="21" fill="1" visible="no" active="no"/> +<layer number="14" name="Route14" color="22" fill="1" visible="no" active="no"/> +<layer number="15" name="Route15" color="23" fill="1" visible="no" active="no"/> +<layer number="16" name="Bottom" color="1" fill="1" visible="yes" active="yes"/> +<layer number="17" name="Pads" color="2" fill="1" visible="yes" active="yes"/> +<layer number="18" name="Vias" color="2" fill="1" visible="yes" active="yes"/> +<layer number="19" name="Unrouted" color="6" fill="1" visible="yes" active="yes"/> +<layer number="20" name="Dimension" color="24" fill="1" visible="yes" active="yes"/> +<layer number="21" name="tPlace" color="7" fill="1" visible="yes" active="yes"/> +<layer number="22" name="bPlace" color="7" fill="1" visible="yes" active="yes"/> +<layer number="23" name="tOrigins" color="15" fill="1" visible="yes" active="yes"/> +<layer number="24" name="bOrigins" color="15" fill="1" visible="yes" active="yes"/> +<layer number="25" name="tNames" color="7" fill="1" visible="yes" active="yes"/> +<layer number="26" name="bNames" color="7" fill="1" visible="yes" active="yes"/> +<layer number="27" name="tValues" color="7" fill="1" visible="yes" active="yes"/> +<layer number="28" name="bValues" color="7" fill="1" visible="yes" active="yes"/> +<layer number="29" name="tStop" color="7" fill="3" visible="no" active="yes"/> +<layer number="30" name="bStop" color="7" fill="6" visible="no" active="yes"/> +<layer number="31" name="tCream" color="7" fill="4" visible="no" active="yes"/> +<layer number="32" name="bCream" color="7" fill="5" visible="no" active="yes"/> +<layer number="33" name="tFinish" color="6" fill="3" visible="no" active="yes"/> +<layer number="34" name="bFinish" color="6" fill="6" visible="no" active="yes"/> +<layer number="35" name="tGlue" color="7" fill="4" visible="no" active="yes"/> +<layer number="36" name="bGlue" color="7" fill="5" visible="no" active="yes"/> +<layer number="37" name="tTest" color="7" fill="1" visible="no" active="yes"/> +<layer number="38" name="bTest" color="7" fill="1" visible="no" active="yes"/> +<layer number="39" name="tKeepout" color="4" fill="11" visible="yes" active="yes"/> +<layer number="40" name="bKeepout" color="1" fill="11" visible="yes" active="yes"/> +<layer number="41" name="tRestrict" color="4" fill="10" visible="yes" active="yes"/> +<layer number="42" name="bRestrict" color="1" fill="10" visible="yes" active="yes"/> +<layer number="43" name="vRestrict" color="2" fill="10" visible="yes" active="yes"/> +<layer number="44" name="Drills" color="7" fill="1" visible="no" active="yes"/> +<layer number="45" name="Holes" color="7" fill="1" visible="no" active="yes"/> +<layer number="46" name="Milling" color="3" fill="1" visible="no" active="yes"/> +<layer number="47" name="Measures" color="7" fill="1" visible="no" active="yes"/> +<layer number="48" name="Document" color="7" fill="1" visible="yes" active="yes"/> +<layer number="49" name="Reference" color="7" fill="1" visible="yes" active="yes"/> +<layer number="50" name="dxf" color="7" fill="1" visible="no" active="no"/> +<layer number="51" name="tDocu" color="7" fill="1" visible="yes" active="yes"/> +<layer number="52" name="bDocu" color="7" fill="1" visible="yes" active="yes"/> +<layer number="53" name="tGND_GNDA" color="7" fill="9" visible="no" active="no"/> +<layer number="54" name="bGND_GNDA" color="1" fill="9" visible="no" active="no"/> +<layer number="56" name="wert" color="7" fill="1" visible="no" active="no"/> +<layer number="57" name="tCAD" color="7" fill="1" visible="no" active="no"/> +<layer number="59" name="tCarbon" color="7" fill="1" visible="no" active="no"/> +<layer number="60" name="bCarbon" color="7" fill="1" visible="no" active="no"/> +<layer number="88" name="SimResults" color="9" fill="1" visible="no" active="no"/> +<layer number="89" name="SimProbes" color="9" fill="1" visible="no" active="no"/> +<layer number="90" name="Modules" color="5" fill="1" visible="no" active="no"/> +<layer number="91" name="Nets" color="2" fill="1" visible="no" active="no"/> +<layer number="92" name="Busses" color="1" fill="1" visible="no" active="no"/> +<layer number="93" name="Pins" color="2" fill="1" visible="no" active="no"/> +<layer number="94" name="Symbols" color="4" fill="1" visible="no" active="no"/> +<layer number="95" name="Names" color="7" fill="1" visible="no" active="no"/> +<layer number="96" name="Values" color="7" fill="1" visible="no" active="no"/> +<layer number="97" name="Info" color="7" fill="1" visible="no" active="no"/> +<layer number="98" name="Guide" color="6" fill="1" visible="no" active="no"/> +<layer number="99" name="SpiceOrder" color="7" fill="1" visible="no" active="no"/> +<layer number="100" name="Muster" color="7" fill="1" visible="no" active="no"/> +<layer number="101" name="Patch_Top" color="12" fill="4" visible="no" active="yes"/> +<layer number="102" name="Vscore" color="7" fill="1" visible="no" active="yes"/> +<layer number="103" name="tMap" color="7" fill="1" visible="no" active="yes"/> +<layer number="104" name="Name" color="7" fill="1" visible="no" active="yes"/> +<layer number="105" name="tPlate" color="7" fill="1" visible="no" active="yes"/> +<layer number="106" name="bPlate" color="7" fill="1" visible="no" active="yes"/> +<layer number="107" name="Crop" color="7" fill="1" visible="no" active="yes"/> +<layer number="108" name="tplace-old" color="10" fill="1" visible="no" active="yes"/> +<layer number="109" name="ref-old" color="11" fill="1" visible="no" active="yes"/> +<layer number="110" name="fp0" color="7" fill="1" visible="no" active="yes"/> +<layer number="111" name="LPC17xx" color="7" fill="1" visible="no" active="yes"/> +<layer number="112" name="tSilk" color="7" fill="1" visible="no" active="yes"/> +<layer number="113" name="IDFDebug" color="7" fill="1" visible="no" active="yes"/> +<layer number="114" name="Badge_Outline" color="7" fill="1" visible="no" active="yes"/> +<layer number="115" name="ReferenceISLANDS" color="7" fill="1" visible="no" active="yes"/> +<layer number="116" name="Patch_BOT" color="9" fill="4" visible="no" active="yes"/> +<layer number="117" name="BACKMAAT1" color="7" fill="1" visible="yes" active="yes"/> +<layer number="118" name="Rect_Pads" color="7" fill="1" visible="no" active="yes"/> +<layer number="119" name="KAP_TEKEN" color="7" fill="1" visible="yes" active="yes"/> +<layer number="120" name="KAP_MAAT1" color="7" fill="1" visible="yes" active="yes"/> +<layer number="121" name="_tsilk" color="7" fill="1" visible="no" active="yes"/> +<layer number="122" name="_bsilk" color="7" fill="1" visible="no" active="yes"/> +<layer number="123" name="tTestmark" color="7" fill="1" visible="no" active="yes"/> +<layer number="124" name="bTestmark" color="7" fill="1" visible="no" active="yes"/> +<layer number="125" name="_tNames" color="7" fill="1" visible="no" active="yes"/> +<layer number="126" name="_bNames" color="7" fill="1" visible="no" active="yes"/> +<layer number="127" name="_tValues" color="7" fill="1" visible="no" active="yes"/> +<layer number="128" name="_bValues" color="7" fill="1" visible="no" active="yes"/> +<layer number="129" name="Mask" color="7" fill="1" visible="no" active="yes"/> +<layer number="130" name="SMDSTROOK" color="7" fill="1" visible="yes" active="yes"/> +<layer number="131" name="tAdjust" color="7" fill="1" visible="no" active="yes"/> +<layer number="132" name="bAdjust" color="7" fill="1" visible="no" active="yes"/> +<layer number="133" name="bottom_silk" color="7" fill="1" visible="yes" active="yes"/> +<layer number="144" name="Drill_legend" color="7" fill="1" visible="no" active="yes"/> +<layer number="150" name="Notes" color="7" fill="1" visible="no" active="yes"/> +<layer number="151" name="HeatSink" color="7" fill="1" visible="no" active="yes"/> +<layer number="152" name="_bDocu" color="7" fill="1" visible="no" active="yes"/> +<layer number="153" name="FabDoc1" color="7" fill="1" visible="no" active="yes"/> +<layer number="154" name="FabDoc2" color="7" fill="1" visible="no" active="yes"/> +<layer number="155" name="FabDoc3" color="7" fill="1" visible="no" active="yes"/> +<layer number="199" name="Contour" color="7" fill="1" visible="no" active="yes"/> +<layer number="200" name="200bmp" color="1" fill="10" visible="no" active="yes"/> +<layer number="201" name="201bmp" color="2" fill="10" visible="no" active="yes"/> +<layer number="202" name="202bmp" color="3" fill="10" visible="no" active="yes"/> +<layer number="203" name="203bmp" color="4" fill="10" visible="no" active="yes"/> +<layer number="204" name="204bmp" color="5" fill="10" visible="no" active="yes"/> +<layer number="205" name="205bmp" color="6" fill="10" visible="no" active="yes"/> +<layer number="206" name="206bmp" color="7" fill="10" visible="no" active="yes"/> +<layer number="207" name="207bmp" color="8" fill="10" visible="no" active="yes"/> +<layer number="208" name="208bmp" color="9" fill="10" visible="no" active="yes"/> +<layer number="209" name="209bmp" color="7" fill="1" visible="no" active="yes"/> +<layer number="210" name="210bmp" color="7" fill="1" visible="no" active="yes"/> +<layer number="211" name="211bmp" color="7" fill="1" visible="no" active="yes"/> +<layer number="212" name="212bmp" color="7" fill="1" visible="no" active="yes"/> +<layer number="213" name="213bmp" color="7" fill="1" visible="no" active="yes"/> +<layer number="214" name="214bmp" color="7" fill="1" visible="no" active="yes"/> +<layer number="215" name="215bmp" color="7" fill="1" visible="no" active="yes"/> +<layer number="216" name="216bmp" color="7" fill="1" visible="no" active="yes"/> +<layer number="217" name="217bmp" color="18" fill="1" visible="no" active="no"/> +<layer number="218" name="218bmp" color="19" fill="1" visible="no" active="no"/> +<layer number="219" name="219bmp" color="20" fill="1" visible="no" active="no"/> +<layer number="220" name="220bmp" color="21" fill="1" visible="no" active="no"/> +<layer number="221" name="221bmp" color="22" fill="1" visible="no" active="no"/> +<layer number="222" name="222bmp" color="23" fill="1" visible="no" active="no"/> +<layer number="223" name="223bmp" color="24" fill="1" visible="no" active="no"/> +<layer number="224" name="224bmp" color="25" fill="1" visible="no" active="no"/> +<layer number="225" name="225bmp" color="7" fill="1" visible="no" active="yes"/> +<layer number="226" name="226bmp" color="7" fill="1" visible="no" active="yes"/> +<layer number="227" name="227bmp" color="7" fill="1" visible="no" active="yes"/> +<layer number="228" name="228bmp" color="7" fill="1" visible="no" active="yes"/> +<layer number="229" name="229bmp" color="7" fill="1" visible="no" active="yes"/> +<layer number="230" name="230bmp" color="7" fill="1" visible="no" active="yes"/> +<layer number="231" name="231bmp" color="7" fill="1" visible="no" active="yes"/> +<layer number="232" name="Eagle3D_PG2" color="7" fill="1" visible="no" active="yes"/> +<layer number="233" name="Eagle3D_PG3" color="7" fill="1" visible="no" active="yes"/> +<layer number="248" name="Housing" color="7" fill="1" visible="no" active="yes"/> +<layer number="249" name="Edge" color="7" fill="1" visible="no" active="yes"/> +<layer number="250" name="Descript" color="3" fill="1" visible="no" active="no"/> +<layer number="251" name="SMDround" color="12" fill="11" visible="no" active="no"/> +<layer number="254" name="cooling" color="7" fill="1" visible="no" active="yes"/> +<layer number="255" name="routoute" color="7" fill="1" visible="no" active="yes"/> +</layers> +<board> +<plain> +<wire x1="0" y1="0" x2="160" y2="0" width="0" layer="20"/> +<wire x1="160" y1="0" x2="160" y2="100" width="0" layer="20"/> +<wire x1="160" y1="100" x2="0" y2="100" width="0" layer="20"/> +<wire x1="0" y1="100" x2="0" y2="0" width="0" layer="20"/> +</plain> +<libraries> +<library name="passives"> +<packages> +<package name="0805"> +<smd name="1" x="-1" y="0" dx="0.8" dy="1.3" layer="1"/> +<smd name="2" x="1" y="0" dx="0.8" dy="1.3" layer="1"/> +<text x="-0.762" y="0.8255" size="1.016" layer="25">>NAME</text> +<text x="-1.016" y="-2.032" size="1.016" layer="27">>VALUE</text> +<rectangle x1="-1" y1="-0.6" x2="1" y2="0.6" layer="51"/> +</package> +<package name="TACT-SWITCH-KMR6"> +<smd name="P$1" x="-2.05" y="0.8" dx="0.9" dy="1" layer="1" rot="R180"/> +<smd name="P$2" x="2.05" y="0.8" dx="0.9" dy="1" layer="1" rot="R180"/> +<smd name="P$3" x="-2.05" y="-0.8" dx="0.9" dy="1" layer="1" rot="R180"/> +<smd name="P$4" x="2.05" y="-0.8" dx="0.9" dy="1" layer="1" rot="R180"/> +<wire x1="-1.4" y1="0.8" x2="0" y2="0.8" width="0.127" layer="51"/> +<wire x1="0" y1="0.8" x2="1.4" y2="0.8" width="0.127" layer="51"/> +<wire x1="-1.4" y1="-0.8" x2="0" y2="-0.8" width="0.127" layer="51"/> +<wire x1="0" y1="-0.8" x2="1.4" y2="-0.8" width="0.127" layer="51"/> +<wire x1="0" y1="0.8" x2="0" y2="0.6" width="0.127" layer="51"/> +<wire x1="0" y1="0.6" x2="0.4" y2="-0.4" width="0.127" layer="51"/> +<wire x1="0" y1="-0.8" x2="0" y2="-0.5" width="0.127" layer="51"/> +<wire x1="-2.1" y1="0.2" x2="-2.1" y2="-0.2" width="0.127" layer="51"/> +<wire x1="2.1" y1="-0.2" x2="2.1" y2="0.2" width="0.127" layer="51"/> +<wire x1="2.1" y1="1.4" x2="2.1" y2="1.5" width="0.127" layer="51"/> +<wire x1="2.1" y1="1.5" x2="1" y2="1.5" width="0.127" layer="51"/> +<wire x1="1.032" y1="1.5" x2="-2.1" y2="1.5" width="0.127" layer="51"/> +<wire x1="-2.1" y1="1.5" x2="-2.1" y2="1.4" width="0.127" layer="51"/> +<wire x1="-2.1" y1="-1.4" x2="-2.1" y2="-1.5" width="0.127" layer="51"/> +<wire x1="-2.1" y1="-1.5" x2="2.1" y2="-1.5" width="0.127" layer="51"/> +<wire x1="2.1" y1="-1.5" x2="2.1" y2="-1.4" width="0.127" layer="51"/> +</package> +</packages> +</library> +<library name="SparkFun-Connectors"> +<description><h3>SparkFun Connectors</h3> +This library contains electrically-functional connectors. +<br> +<br> +We've spent an enormous amount of time creating and checking these footprints and parts, but it is <b> the end user's responsibility</b> to ensure correctness and suitablity for a given componet or application. +<br> +<br>If you enjoy using this library, please buy one of our products at <a href=" www.sparkfun.com">SparkFun.com</a>. +<br> +<br> +<b>Licensing:</b> Creative Commons ShareAlike 4.0 International - https://creativecommons.org/licenses/by-sa/4.0/ +<br> +<br> +You are welcome to use this library for commercial purposes. For attribution, we ask that when you begin to sell your device using our footprint, you email us with a link to the product being sold. We want bragging rights that we helped (in a very small part) to create your 8th world wonder. We would like the opportunity to feature your device on our homepage.</description> +<packages> +<package name="2X5-SMD-1.27MM"> +<description>Shrouded SMD connector for JTAG and SWD applications.</description> +<smd name="6" x="0" y="-1.95" dx="0.76" dy="2.4" layer="1" rot="R180"/> +<smd name="8" x="-1.27" y="-1.95" dx="0.76" dy="2.4" layer="1" rot="R180"/> +<smd name="10" x="-2.54" y="-1.95" dx="0.76" dy="2.4" layer="1" rot="R180"/> +<smd name="4" x="1.27" y="-1.95" dx="0.76" dy="2.4" layer="1" rot="R180"/> +<smd name="2" x="2.54" y="-1.95" dx="0.76" dy="2.4" layer="1" rot="R180"/> +<smd name="1" x="2.54" y="1.95" dx="0.76" dy="2.4" layer="1" rot="R180"/> +<smd name="3" x="1.27" y="1.95" dx="0.76" dy="2.4" layer="1" rot="R180"/> +<smd name="5" x="0" y="1.95" dx="0.76" dy="2.4" layer="1" rot="R180"/> +<smd name="7" x="-1.27" y="1.95" dx="0.76" dy="2.4" layer="1" rot="R180"/> +<smd name="9" x="-2.54" y="1.95" dx="0.76" dy="2.4" layer="1" rot="R180"/> +<rectangle x1="-1.0575" y1="-1.9625" x2="1.0575" y2="-1.5525" layer="51" rot="R270"/> +<wire x1="5.55" y1="-1.7" x2="-5.55" y2="-1.7" width="0.1524" layer="51"/> +<wire x1="-5.55" y1="-1.7" x2="-5.55" y2="1.7" width="0.1524" layer="51"/> +<wire x1="-5.55" y1="1.7" x2="5.55" y2="1.7" width="0.1524" layer="51"/> +<wire x1="5.55" y1="1.7" x2="5.55" y2="-1.7" width="0.1524" layer="51"/> +<rectangle x1="-2.3275" y1="-1.9625" x2="-0.2125" y2="-1.5525" layer="51" rot="R270"/> +<rectangle x1="-3.5975" y1="-1.9625" x2="-1.4825" y2="-1.5525" layer="51" rot="R270"/> +<rectangle x1="0.2125" y1="-1.9625" x2="2.3275" y2="-1.5525" layer="51" rot="R270"/> +<rectangle x1="1.4825" y1="-1.9625" x2="3.5975" y2="-1.5525" layer="51" rot="R270"/> +<rectangle x1="1.4825" y1="1.5525" x2="3.5975" y2="1.9625" layer="51" rot="R90"/> +<rectangle x1="0.2125" y1="1.5525" x2="2.3275" y2="1.9625" layer="51" rot="R90"/> +<rectangle x1="-1.0575" y1="1.5525" x2="1.0575" y2="1.9625" layer="51" rot="R90"/> +<rectangle x1="-2.3275" y1="1.5525" x2="-0.2125" y2="1.9625" layer="51" rot="R90"/> +<rectangle x1="-3.5975" y1="1.5525" x2="-1.4825" y2="1.9625" layer="51" rot="R90"/> +<wire x1="-3.2" y1="2.5" x2="-6.3" y2="2.5" width="0.2032" layer="51"/> +<wire x1="-6.3" y1="2.5" x2="-6.3" y2="-2.5" width="0.2032" layer="51"/> +<wire x1="-6.3" y1="-2.5" x2="-3.2" y2="-2.5" width="0.2032" layer="51"/> +<wire x1="3.2" y1="-2.5" x2="6.3" y2="-2.5" width="0.2032" layer="51"/> +<wire x1="6.3" y1="-2.5" x2="6.3" y2="2.5" width="0.2032" layer="51"/> +<wire x1="6.3" y1="2.5" x2="3.2" y2="2.5" width="0.2032" layer="51"/> +<wire x1="0.6" y1="2.9" x2="0.6" y2="3.4" width="0.2032" layer="21"/> +<wire x1="0.6" y1="3.4" x2="-0.6" y2="3.4" width="0.2032" layer="21"/> +<wire x1="-0.6" y1="3.4" x2="-0.6" y2="2.9" width="0.2032" layer="21"/> +<circle x="3.6" y="3.1" radius="0.1" width="0.2032" layer="21"/> +<wire x1="-3.175" y1="1.905" x2="-3.175" y2="-1.905" width="0.127" layer="51"/> +<wire x1="3.175" y1="1.905" x2="3.175" y2="-1.905" width="0.127" layer="51"/> +</package> +</packages> +</library> +<library name="microcontrollers"> +<packages> +<package name="QFP80P900X900X120-32N"> +<wire x1="-3.55" y1="-3.55" x2="-3.55" y2="3.55" width="0.127" layer="51"/> +<wire x1="-3.55" y1="3.55" x2="3.55" y2="3.55" width="0.127" layer="51"/> +<wire x1="3.55" y1="3.55" x2="3.55" y2="-3.55" width="0.127" layer="51"/> +<wire x1="3.55" y1="-3.55" x2="-3.55" y2="-3.55" width="0.127" layer="51"/> +<wire x1="-3.25" y1="3.55" x2="-3.55" y2="3.55" width="0.127" layer="21"/> +<wire x1="-3.55" y1="3.55" x2="-3.55" y2="3.25" width="0.127" layer="21"/> +<wire x1="3.25" y1="3.55" x2="3.55" y2="3.55" width="0.127" layer="21"/> +<wire x1="3.55" y1="3.55" x2="3.55" y2="3.25" width="0.127" layer="21"/> +<wire x1="-3.55" y1="-3.25" x2="-3.55" y2="-3.55" width="0.127" layer="21"/> +<wire x1="-3.55" y1="-3.55" x2="-3.25" y2="-3.55" width="0.127" layer="21"/> +<wire x1="3.25" y1="-3.55" x2="3.55" y2="-3.55" width="0.127" layer="21"/> +<wire x1="3.55" y1="-3.55" x2="3.55" y2="-3.25" width="0.127" layer="21"/> +<text x="-3.202909375" y="5.80526875" size="0.8135375" layer="25">>NAME</text> +<text x="-3.40625" y="-6.211390625" size="0.81429375" layer="27">>VALUE</text> +<circle x="-5.8" y="2.8" radius="0.1" width="0.2" layer="21"/> +<circle x="-5.8" y="2.8" radius="0.1" width="0.2" layer="51"/> +<smd name="1" x="-4.18" y="2.8" dx="1.6" dy="0.55" layer="1" roundness="25"/> +<smd name="2" x="-4.18" y="2" dx="1.6" dy="0.55" layer="1" roundness="25"/> +<smd name="3" x="-4.18" y="1.2" dx="1.6" dy="0.55" layer="1" roundness="25"/> +<smd name="4" x="-4.18" y="0.4" dx="1.6" dy="0.55" layer="1" roundness="25"/> +<smd name="5" x="-4.18" y="-0.4" dx="1.6" dy="0.55" layer="1" roundness="25"/> +<smd name="6" x="-4.18" y="-1.2" dx="1.6" dy="0.55" layer="1" roundness="25"/> +<smd name="7" x="-4.18" y="-2" dx="1.6" dy="0.55" layer="1" roundness="25"/> +<smd name="8" x="-4.18" y="-2.8" dx="1.6" dy="0.55" layer="1" roundness="25"/> +<smd name="9" x="-2.8" y="-4.18" dx="1.6" dy="0.55" layer="1" roundness="25" rot="R90"/> +<smd name="10" x="-2" y="-4.18" dx="1.6" dy="0.55" layer="1" roundness="25" rot="R90"/> +<smd name="11" x="-1.2" y="-4.18" dx="1.6" dy="0.55" layer="1" roundness="25" rot="R90"/> +<smd name="12" x="-0.4" y="-4.18" dx="1.6" dy="0.55" layer="1" roundness="25" rot="R90"/> +<smd name="13" x="0.4" y="-4.18" dx="1.6" dy="0.55" layer="1" roundness="25" rot="R90"/> +<smd name="14" x="1.2" y="-4.18" dx="1.6" dy="0.55" layer="1" roundness="25" rot="R90"/> +<smd name="15" x="2" y="-4.18" dx="1.6" dy="0.55" layer="1" roundness="25" rot="R90"/> +<smd name="16" x="2.8" y="-4.18" dx="1.6" dy="0.55" layer="1" roundness="25" rot="R90"/> +<smd name="17" x="4.18" y="-2.8" dx="1.6" dy="0.55" layer="1" roundness="25" rot="R180"/> +<smd name="18" x="4.18" y="-2" dx="1.6" dy="0.55" layer="1" roundness="25" rot="R180"/> +<smd name="19" x="4.18" y="-1.2" dx="1.6" dy="0.55" layer="1" roundness="25" rot="R180"/> +<smd name="20" x="4.18" y="-0.4" dx="1.6" dy="0.55" layer="1" roundness="25" rot="R180"/> +<smd name="21" x="4.18" y="0.4" dx="1.6" dy="0.55" layer="1" roundness="25" rot="R180"/> +<smd name="22" x="4.18" y="1.2" dx="1.6" dy="0.55" layer="1" roundness="25" rot="R180"/> +<smd name="23" x="4.18" y="2" dx="1.6" dy="0.55" layer="1" roundness="25" rot="R180"/> +<smd name="24" x="4.18" y="2.8" dx="1.6" dy="0.55" layer="1" roundness="25" rot="R180"/> +<smd name="25" x="2.8" y="4.18" dx="1.6" dy="0.55" layer="1" roundness="25" rot="R270"/> +<smd name="26" x="2" y="4.18" dx="1.6" dy="0.55" layer="1" roundness="25" rot="R270"/> +<smd name="27" x="1.2" y="4.18" dx="1.6" dy="0.55" layer="1" roundness="25" rot="R270"/> +<smd name="28" x="0.4" y="4.18" dx="1.6" dy="0.55" layer="1" roundness="25" rot="R270"/> +<smd name="29" x="-0.4" y="4.18" dx="1.6" dy="0.55" layer="1" roundness="25" rot="R270"/> +<smd name="30" x="-1.2" y="4.18" dx="1.6" dy="0.55" layer="1" roundness="25" rot="R270"/> +<smd name="31" x="-2" y="4.18" dx="1.6" dy="0.55" layer="1" roundness="25" rot="R270"/> +<smd name="32" x="-2.8" y="4.18" dx="1.6" dy="0.55" layer="1" roundness="25" rot="R270"/> +</package> +</packages> +</library> +<library name="power"> +<packages> +<package name="SOT23-5"> +<description><b>Small Outline Transistor</b>, 5 lead</description> +<wire x1="-1.544" y1="0.713" x2="1.544" y2="0.713" width="0.1524" layer="51"/> +<wire x1="1.544" y1="0.713" x2="1.544" y2="-0.712" width="0.1524" layer="51"/> +<wire x1="1.544" y1="-0.712" x2="-1.544" y2="-0.712" width="0.1524" layer="51"/> +<wire x1="-1.544" y1="-0.712" x2="-1.544" y2="0.713" width="0.1524" layer="51"/> +<smd name="5" x="-0.95" y="1.306" dx="0.5334" dy="1.1938" layer="1"/> +<smd name="4" x="0.95" y="1.306" dx="0.5334" dy="1.1938" layer="1"/> +<smd name="1" x="-0.95" y="-1.306" dx="0.5334" dy="1.1938" layer="1"/> +<smd name="2" x="0" y="-1.306" dx="0.5334" dy="1.1938" layer="1"/> +<smd name="3" x="0.95" y="-1.306" dx="0.5334" dy="1.1938" layer="1"/> +<text x="-1.778" y="-1.778" size="1.27" layer="25" ratio="10" rot="R90">>NAME</text> +<text x="3.048" y="-1.778" size="1.27" layer="27" ratio="10" rot="R90">>VALUE</text> +<rectangle x1="-1.1875" y1="0.7126" x2="-0.7125" y2="1.5439" layer="51"/> +<rectangle x1="0.7125" y1="0.7126" x2="1.1875" y2="1.5439" layer="51"/> +<rectangle x1="-1.1875" y1="-1.5437" x2="-0.7125" y2="-0.7124" layer="51"/> +<rectangle x1="-0.2375" y1="-1.5437" x2="0.2375" y2="-0.7124" layer="51"/> +<rectangle x1="0.7125" y1="-1.5437" x2="1.1875" y2="-0.7124" layer="51"/> +<wire x1="-1.5" y1="-1.9" x2="-1.5" y2="-1.2" width="0.127" layer="21"/> +</package> +</packages> +</library> +<library name="connector"> +<packages> +<package name="USB_MICRO_609-4613-1-ND"> +<smd name="HD0" x="-3.8" y="0" dx="1.9" dy="1.8" layer="1"/> +<smd name="HD4" x="-3.1" y="2.55" dx="2.1" dy="1.6" layer="1"/> +<smd name="HD5" x="3.1" y="2.55" dx="2.1" dy="1.6" layer="1"/> +<smd name="D+" x="0" y="2.675" dx="0.4" dy="1.35" layer="1"/> +<smd name="D-" x="-0.65" y="2.675" dx="0.4" dy="1.35" layer="1"/> +<smd name="VBUS" x="-1.3" y="2.675" dx="0.4" dy="1.35" layer="1"/> +<smd name="ID" x="0.65" y="2.675" dx="0.4" dy="1.35" layer="1"/> +<smd name="GND" x="1.3" y="2.675" dx="0.4" dy="1.35" layer="1"/> +<text x="4.9275" y="1.2125" size="0.6096" layer="27" font="vector" rot="R90">>Value</text> +<text x="-4.3925" y="1.13" size="0.6096" layer="25" font="vector" rot="R90">>Name</text> +<smd name="HD1" x="-1.05" y="0" dx="1.9" dy="1.8" layer="1"/> +<smd name="HD2" x="1.05" y="0" dx="1.9" dy="1.8" layer="1"/> +<smd name="HD3" x="3.8" y="0" dx="1.9" dy="1.8" layer="1"/> +<wire x1="-4.7" y1="-1.45" x2="4.7" y2="-1.45" width="0.127" layer="51"/> +<text x="0" y="-1.3" size="0.8128" layer="51" font="vector" align="bottom-center">\\ PCB Edge /</text> +<wire x1="-3.9" y1="3" x2="-3.9" y2="-2.5" width="0.127" layer="51"/> +<wire x1="-3.9" y1="-2.5" x2="3.9" y2="-2.5" width="0.127" layer="51"/> +<wire x1="3.9" y1="-2.5" x2="3.9" y2="3" width="0.127" layer="51"/> +<wire x1="3.9" y1="3" x2="-3.9" y2="3" width="0.127" layer="51"/> +<wire x1="-3.9" y1="1.1" x2="-3.9" y2="1.5" width="0.127" layer="21"/> +<wire x1="3.9" y1="1.1" x2="3.9" y2="1.5" width="0.127" layer="21"/> +<wire x1="1.8" y1="3" x2="1.7" y2="3" width="0.127" layer="21"/> +<wire x1="-1.7" y1="3" x2="-1.8" y2="3" width="0.127" layer="21"/> +<wire x1="4.4" y1="3" x2="4.7" y2="3" width="0.127" layer="21"/> +<wire x1="-4.4" y1="3" x2="-4.7" y2="3" width="0.127" layer="21"/> +<wire x1="-3.9" y1="3.6" x2="-3.9" y2="3.8" width="0.127" layer="21"/> +<wire x1="3.9" y1="3.6" x2="3.9" y2="3.8" width="0.127" layer="21"/> +</package> +</packages> +</library> +</libraries> +<attributes> +</attributes> +<variantdefs> +</variantdefs> +<classes> +<class number="0" name="default" width="0" drill="0"> +</class> +</classes> +<designrules name="default"> +<description language="de"><b>EAGLE Design Rules</b> +<p> +Die Standard-Design-Rules sind so gewählt, dass sie für +die meisten Anwendungen passen. Sollte ihre Platine +besondere Anforderungen haben, treffen Sie die erforderlichen +Einstellungen hier und speichern die Design Rules unter +einem neuen Namen ab.</description> +<description language="en"><b>EAGLE Design Rules</b> +<p> +The default Design Rules have been set to cover +a wide range of applications. Your particular design +may have different requirements, so please make the +necessary adjustments and save your customized +design rules under a new name.</description> +<param name="layerSetup" value="(1*16)"/> +<param name="mtCopper" value="0.035mm 0.035mm 0.035mm 0.035mm 0.035mm 0.035mm 0.035mm 0.035mm 0.035mm 0.035mm 0.035mm 0.035mm 0.035mm 0.035mm 0.035mm 0.035mm"/> +<param name="mtIsolate" value="1.5mm 0.15mm 0.2mm 0.15mm 0.2mm 0.15mm 0.2mm 0.15mm 0.2mm 0.15mm 0.2mm 0.15mm 0.2mm 0.15mm 0.2mm"/> +<param name="mdWireWire" value="6mil"/> +<param name="mdWirePad" value="6mil"/> +<param name="mdWireVia" value="6mil"/> +<param name="mdPadPad" value="6mil"/> +<param name="mdPadVia" value="6mil"/> +<param name="mdViaVia" value="6mil"/> +<param name="mdSmdPad" value="6mil"/> +<param name="mdSmdVia" value="6mil"/> +<param name="mdSmdSmd" value="6mil"/> +<param name="mdViaViaSameLayer" value="6mil"/> +<param name="mnLayersViaInSmd" value="2"/> +<param name="mdCopperDimension" value="40mil"/> +<param name="mdDrill" value="6mil"/> +<param name="mdSmdStop" value="0mil"/> +<param name="msWidth" value="6mil"/> +<param name="msDrill" value="0.35mm"/> +<param name="msMicroVia" value="9.99mm"/> +<param name="msBlindViaRatio" value="0.5"/> +<param name="rvPadTop" value="0.25"/> +<param name="rvPadInner" value="0.25"/> +<param name="rvPadBottom" value="0.25"/> +<param name="rvViaOuter" value="0.25"/> +<param name="rvViaInner" value="0.25"/> +<param name="rvMicroViaOuter" value="0.25"/> +<param name="rvMicroViaInner" value="0.25"/> +<param name="rlMinPadTop" value="10mil"/> +<param name="rlMaxPadTop" value="20mil"/> +<param name="rlMinPadInner" value="10mil"/> +<param name="rlMaxPadInner" value="20mil"/> +<param name="rlMinPadBottom" value="10mil"/> +<param name="rlMaxPadBottom" value="20mil"/> +<param name="rlMinViaOuter" value="8mil"/> +<param name="rlMaxViaOuter" value="20mil"/> +<param name="rlMinViaInner" value="8mil"/> +<param name="rlMaxViaInner" value="20mil"/> +<param name="rlMinMicroViaOuter" value="4mil"/> +<param name="rlMaxMicroViaOuter" value="20mil"/> +<param name="rlMinMicroViaInner" value="4mil"/> +<param name="rlMaxMicroViaInner" value="20mil"/> +<param name="psTop" value="-1"/> +<param name="psBottom" value="-1"/> +<param name="psFirst" value="-1"/> +<param name="psElongationLong" value="100"/> +<param name="psElongationOffset" value="100"/> +<param name="mvStopFrame" value="1"/> +<param name="mvCreamFrame" value="0"/> +<param name="mlMinStopFrame" value="4mil"/> +<param name="mlMaxStopFrame" value="4mil"/> +<param name="mlMinCreamFrame" value="0mil"/> +<param name="mlMaxCreamFrame" value="0mil"/> +<param name="mlViaStopLimit" value="0mil"/> +<param name="srRoundness" value="0"/> +<param name="srMinRoundness" value="0mil"/> +<param name="srMaxRoundness" value="0mil"/> +<param name="slThermalIsolate" value="10mil"/> +<param name="slThermalsForVias" value="0"/> +<param name="dpMaxLengthDifference" value="10mm"/> +<param name="dpGapFactor" value="2.5"/> +<param name="checkAngle" value="0"/> +<param name="checkFont" value="1"/> +<param name="checkRestrict" value="1"/> +<param name="checkStop" value="0"/> +<param name="checkValues" value="0"/> +<param name="checkNames" value="1"/> +<param name="checkWireStubs" value="1"/> +<param name="checkPolygonWidth" value="0"/> +<param name="useDiameter" value="13"/> +<param name="maxErrors" value="50"/> +</designrules> +<autorouter> +<pass name="Default"> +<param name="RoutingGrid" value="50mil"/> +<param name="AutoGrid" value="1"/> +<param name="Efforts" value="0"/> +<param name="TopRouterVariant" value="1"/> +<param name="tpViaShape" value="round"/> +<param name="PrefDir.1" value="a"/> +<param name="PrefDir.2" value="0"/> +<param name="PrefDir.3" value="0"/> +<param name="PrefDir.4" value="0"/> +<param name="PrefDir.5" value="0"/> +<param name="PrefDir.6" value="0"/> +<param name="PrefDir.7" value="0"/> +<param name="PrefDir.8" value="0"/> +<param name="PrefDir.9" value="0"/> +<param name="PrefDir.10" value="0"/> +<param name="PrefDir.11" value="0"/> +<param name="PrefDir.12" value="0"/> +<param name="PrefDir.13" value="0"/> +<param name="PrefDir.14" value="0"/> +<param name="PrefDir.15" value="0"/> +<param name="PrefDir.16" value="a"/> +<param name="cfVia" value="8"/> +<param name="cfNonPref" value="5"/> +<param name="cfChangeDir" value="2"/> +<param name="cfOrthStep" value="2"/> +<param name="cfDiagStep" value="3"/> +<param name="cfExtdStep" value="0"/> +<param name="cfBonusStep" value="1"/> +<param name="cfMalusStep" value="1"/> +<param name="cfPadImpact" value="4"/> +<param name="cfSmdImpact" value="4"/> +<param name="cfBusImpact" value="0"/> +<param name="cfHugging" value="3"/> +<param name="cfAvoid" value="4"/> +<param name="cfPolygon" value="10"/> +<param name="cfBase.1" value="0"/> +<param name="cfBase.2" value="1"/> +<param name="cfBase.3" value="1"/> +<param name="cfBase.4" value="1"/> +<param name="cfBase.5" value="1"/> +<param name="cfBase.6" value="1"/> +<param name="cfBase.7" value="1"/> +<param name="cfBase.8" value="1"/> +<param name="cfBase.9" value="1"/> +<param name="cfBase.10" value="1"/> +<param name="cfBase.11" value="1"/> +<param name="cfBase.12" value="1"/> +<param name="cfBase.13" value="1"/> +<param name="cfBase.14" value="1"/> +<param name="cfBase.15" value="1"/> +<param name="cfBase.16" value="0"/> +<param name="mnVias" value="20"/> +<param name="mnSegments" value="9999"/> +<param name="mnExtdSteps" value="9999"/> +<param name="mnRipupLevel" value="10"/> +<param name="mnRipupSteps" value="100"/> +<param name="mnRipupTotal" value="100"/> +</pass> +<pass name="Follow-me" refer="Default" active="yes"> +</pass> +<pass name="Busses" refer="Default" active="yes"> +<param name="cfNonPref" value="4"/> +<param name="cfBusImpact" value="4"/> +<param name="cfHugging" value="0"/> +<param name="mnVias" value="0"/> +</pass> +<pass name="Route" refer="Default" active="yes"> +</pass> +<pass name="Optimize1" refer="Default" active="yes"> +<param name="cfVia" value="99"/> +<param name="cfExtdStep" value="10"/> +<param name="cfHugging" value="1"/> +<param name="mnExtdSteps" value="1"/> +<param name="mnRipupLevel" value="0"/> +</pass> +<pass name="Optimize2" refer="Optimize1" active="yes"> +<param name="cfNonPref" value="0"/> +<param name="cfChangeDir" value="6"/> +<param name="cfExtdStep" value="0"/> +<param name="cfBonusStep" value="2"/> +<param name="cfMalusStep" value="2"/> +<param name="cfPadImpact" value="2"/> +<param name="cfSmdImpact" value="2"/> +<param name="cfHugging" value="0"/> +</pass> +<pass name="Optimize3" refer="Optimize2" active="yes"> +<param name="cfChangeDir" value="8"/> +<param name="cfPadImpact" value="0"/> +<param name="cfSmdImpact" value="0"/> +</pass> +<pass name="Optimize4" refer="Optimize3" active="yes"> +<param name="cfChangeDir" value="25"/> +</pass> +</autorouter> +<elements> +<element name="C1" library="passives" package="0805" value="10uF" x="-33.02" y="27.94" smashed="yes"> +<attribute name="NAME" x="-33.782" y="28.7655" size="1.016" layer="25"/> +<attribute name="PACKAGE" value="0805" x="0" y="0" size="1.778" layer="27" display="off"/> +<attribute name="TYPE" value="" x="0" y="0" size="1.778" layer="27" display="off"/> +<attribute name="VALUE" x="-34.036" y="25.908" size="1.016" layer="27"/> +<attribute name="VOLTAGE" value="" x="0" y="0" size="1.778" layer="27" display="off"/> +</element> +<element name="C4" library="passives" package="0805" value="1uF" x="-15.24" y="35.56" smashed="yes"> +<attribute name="NAME" x="-16.002" y="36.3855" size="1.016" layer="25"/> +<attribute name="PACKAGE" value="0805" x="0" y="0" size="1.778" layer="27" display="off"/> +<attribute name="TYPE" value="" x="0" y="0" size="1.778" layer="27" display="off"/> +<attribute name="VALUE" x="-16.256" y="33.528" size="1.016" layer="27"/> +<attribute name="VOLTAGE" value="" x="0" y="0" size="1.778" layer="27" display="off"/> +</element> +<element name="C7" library="passives" package="0805" value="1uF" x="-19.05" y="35.56" smashed="yes"> +<attribute name="NAME" x="-19.812" y="36.3855" size="1.016" layer="25"/> +<attribute name="PACKAGE" value="0805" x="0" y="0" size="1.778" layer="27" display="off"/> +<attribute name="TYPE" value="" x="0" y="0" size="1.778" layer="27" display="off"/> +<attribute name="VALUE" x="-20.066" y="33.528" size="1.016" layer="27"/> +<attribute name="VOLTAGE" value="" x="0" y="0" size="1.778" layer="27" display="off"/> +</element> +<element name="J1" library="SparkFun-Connectors" package="2X5-SMD-1.27MM" value="JTAG" x="-30.48" y="19.05" smashed="yes"> +<attribute name="PROD_ID" value="CONN-14503" x="0" y="0" size="1.778" layer="27" display="off"/> +</element> +<element name="R2" library="passives" package="0805" value="10k" x="-22.86" y="35.56" smashed="yes"> +<attribute name="NAME" x="-23.622" y="36.3855" size="1.016" layer="25"/> +<attribute name="PACKAGE" value="0805" x="0" y="0" size="1.778" layer="27" display="off"/> +<attribute name="PRECISION" value="" x="0" y="0" size="1.778" layer="27" display="off"/> +<attribute name="VALUE" x="-23.876" y="33.528" size="1.016" layer="27"/> +</element> +<element name="R3" library="passives" package="0805" value="10k" x="-26.67" y="35.56" smashed="yes"> +<attribute name="NAME" x="-27.432" y="36.3855" size="1.016" layer="25"/> +<attribute name="PACKAGE" value="0805" x="0" y="0" size="1.778" layer="27" display="off"/> +<attribute name="PRECISION" value="" x="0" y="0" size="1.778" layer="27" display="off"/> +<attribute name="VALUE" x="-27.686" y="33.528" size="1.016" layer="27"/> +</element> +<element name="S1" library="passives" package="TACT-SWITCH-KMR6" value="2-8X4-5_SWITCH" x="-31.75" y="34.29" smashed="yes"/> +<element name="U1" library="microcontrollers" package="QFP80P900X900X120-32N" value="ATSAMD21E18A-AF" x="-21.59" y="7.62" smashed="yes"> +<attribute name="AVAILABILITY" value="Warning" x="0" y="0" size="1.778" layer="27" display="off"/> +<attribute name="DESCRIPTION" value=" ARM® Cortex®-M0+ Automotive, AEC-Q100, SAM D21E, Functional Safety (FuSa) Microcontroller IC 32-Bit 48MHz 256KB (256K x 8) FLASH 32-TQFP (7x7) " x="0" y="0" size="1.778" layer="27" display="off"/> +<attribute name="MF" value="Microchip" x="0" y="0" size="1.778" layer="27" display="off"/> +<attribute name="MP" value="ATSAMD21E18A-AF" x="0" y="0" size="1.778" layer="27" display="off"/> +<attribute name="NAME" x="-24.792909375" y="13.42526875" size="0.8135375" layer="25"/> +<attribute name="PACKAGE" value="TQFP-32 Microchip" x="0" y="0" size="1.778" layer="27" display="off"/> +<attribute name="PRICE" value="None" x="0" y="0" size="1.778" layer="27" display="off"/> +<attribute name="PURCHASE-URL" value="https://pricing.snapeda.com/search/part/ATSAMD21E18A-AF/?ref=eda" x="0" y="0" size="1.778" layer="27" display="off"/> +<attribute name="VALUE" x="-24.99625" y="1.408609375" size="0.81429375" layer="27"/> +</element> +<element name="U2" library="power" package="SOT23-5" value="VREG-AP2112" x="-31.75" y="2.54" smashed="yes"> +<attribute name="NAME" x="-33.528" y="0.762" size="1.27" layer="25" ratio="10" rot="R90"/> +<attribute name="VALUE" x="-28.702" y="0.762" size="1.27" layer="27" ratio="10" rot="R90"/> +</element> +<element name="X1" library="connector" package="USB_MICRO_609-4613-1-ND" value="USB" x="-19.05" y="27.94" smashed="yes"> +<attribute name="NAME" x="-23.4425" y="29.07" size="0.6096" layer="25" font="vector" rot="R90"/> +<attribute name="VALUE" x="-14.1225" y="29.1525" size="0.6096" layer="27" font="vector" rot="R90"/> +</element> +<element name="C2" library="passives" package="0805" value="1uF" x="-34.29" y="-2.54" smashed="yes"> +<attribute name="NAME" x="-35.052" y="-1.7145" size="1.016" layer="25"/> +<attribute name="PACKAGE" value="0805" x="-34.29" y="-2.54" size="1.778" layer="27" display="off"/> +<attribute name="TYPE" value="" x="-34.29" y="-2.54" size="1.778" layer="27" display="off"/> +<attribute name="VALUE" x="-35.306" y="-4.572" size="1.016" layer="27"/> +<attribute name="VOLTAGE" value="" x="-34.29" y="-2.54" size="1.778" layer="27" display="off"/> +</element> +</elements> +<signals> +<signal name="GND"> +<contactref element="J1" pad="3"/> +<contactref element="J1" pad="5"/> +<contactref element="J1" pad="9"/> +<contactref element="S1" pad="P$1"/> +<contactref element="S1" pad="P$2"/> +<contactref element="U1" pad="10"/> +<contactref element="U1" pad="28"/> +<contactref element="U2" pad="2"/> +<contactref element="C1" pad="2"/> +<contactref element="C7" pad="2"/> +<contactref element="X1" pad="GND"/> +<contactref element="C4" pad="1"/> +<contactref element="C2" pad="1"/> +<wire x1="-31.75" y1="1.234" x2="-35.29" y2="-2.54" width="0" layer="19" extent="1-1"/> +<wire x1="-23.59" y1="3.44" x2="-31.75" y2="1.234" width="0" layer="19" extent="1-1"/> +<wire x1="-21.19" y1="11.8" x2="-23.59" y2="3.44" width="0" layer="19" extent="1-1"/> +<wire x1="-29.21" y1="21" x2="-21.19" y2="11.8" width="0" layer="19" extent="1-1"/> +<wire x1="-30.48" y1="21" x2="-29.21" y2="21" width="0" layer="19" extent="1-1"/> +<wire x1="-33.02" y1="21" x2="-30.48" y2="21" width="0" layer="19" extent="1-1"/> +<wire x1="-32.02" y1="27.94" x2="-33.02" y2="21" width="0" layer="19" extent="1-1"/> +<wire x1="-33.8" y1="35.09" x2="-32.02" y2="27.94" width="0" layer="19" extent="1-1"/> +<wire x1="-29.7" y1="35.09" x2="-33.8" y2="35.09" width="0" layer="19" extent="1-1"/> +<wire x1="-18.05" y1="35.56" x2="-29.7" y2="35.09" width="0" layer="19" extent="1-1"/> +<wire x1="-16.24" y1="35.56" x2="-18.05" y2="35.56" width="0" layer="19" extent="1-1"/> +<wire x1="-17.75" y1="30.615" x2="-18.05" y2="35.56" width="0" layer="19" extent="1-1"/> +</signal> +<signal name="+3V3"> +<contactref element="J1" pad="1"/> +<contactref element="R2" pad="1"/> +<contactref element="R3" pad="1"/> +<contactref element="U2" pad="5"/> +<contactref element="C7" pad="1"/> +<contactref element="C2" pad="2"/> +<contactref element="U1" pad="9"/> +<contactref element="U1" pad="30"/> +<wire x1="-32.7" y1="3.846" x2="-33.29" y2="-2.54" width="0" layer="19" extent="1-1"/> +<wire x1="-24.39" y1="3.44" x2="-32.7" y2="3.846" width="0" layer="19" extent="1-1"/> +<wire x1="-22.79" y1="11.8" x2="-24.39" y2="3.44" width="0" layer="19" extent="1-1"/> +<wire x1="-27.94" y1="21" x2="-22.79" y2="11.8" width="0" layer="19" extent="1-1"/> +<wire x1="-27.67" y1="35.56" x2="-27.94" y2="21" width="0" layer="19" extent="1-1"/> +<wire x1="-23.86" y1="35.56" x2="-27.67" y2="35.56" width="0" layer="19" extent="1-1"/> +<wire x1="-20.05" y1="35.56" x2="-23.86" y2="35.56" width="0" layer="19" extent="1-1"/> +</signal> +<signal name="N$6"> +<contactref element="J1" pad="10"/> +<contactref element="S1" pad="P$3"/> +<contactref element="S1" pad="P$4"/> +<contactref element="R2" pad="2"/> +<contactref element="U1" pad="26"/> +<wire x1="-19.59" y1="11.8" x2="-33.02" y2="17.1" width="0" layer="19" extent="1-1"/> +<wire x1="-33.8" y1="33.49" x2="-33.02" y2="17.1" width="0" layer="19" extent="1-1"/> +<wire x1="-29.7" y1="33.49" x2="-33.8" y2="33.49" width="0" layer="19" extent="1-1"/> +<wire x1="-21.86" y1="35.56" x2="-29.7" y2="33.49" width="0" layer="19" extent="1-1"/> +</signal> +<signal name="SWDCLK"> +<contactref element="J1" pad="4"/> +<contactref element="R3" pad="2"/> +<contactref element="U1" pad="31"/> +<wire x1="-23.59" y1="11.8" x2="-29.21" y2="17.1" width="0" layer="19" extent="1-1"/> +<wire x1="-25.67" y1="35.56" x2="-29.21" y2="17.1" width="0" layer="19" extent="1-1"/> +</signal> +<signal name="SWDIO"> +<contactref element="J1" pad="2"/> +<contactref element="U1" pad="32"/> +<wire x1="-24.39" y1="11.8" x2="-27.94" y2="17.1" width="0" layer="19" extent="1-1"/> +</signal> +<signal name="USBDP"> +<contactref element="X1" pad="D+"/> +<contactref element="U1" pad="24"/> +<wire x1="-17.41" y1="10.42" x2="-19.05" y2="30.615" width="0" layer="19" extent="1-1"/> +</signal> +<signal name="USBDM"> +<contactref element="X1" pad="D-"/> +<contactref element="U1" pad="23"/> +<wire x1="-17.41" y1="9.62" x2="-19.7" y2="30.615" width="0" layer="19" extent="1-1"/> +</signal> +<signal name="+5V"> +<contactref element="C1" pad="1"/> +<contactref element="U2" pad="1"/> +<contactref element="U2" pad="3"/> +<contactref element="X1" pad="VBUS"/> +<wire x1="-30.8" y1="1.234" x2="-32.7" y2="1.234" width="0" layer="19" extent="1-1"/> +<wire x1="-34.02" y1="27.94" x2="-32.7" y2="1.234" width="0" layer="19" extent="1-1"/> +<wire x1="-20.35" y1="30.615" x2="-34.02" y2="27.94" width="0" layer="19" extent="1-1"/> +</signal> +<signal name="N$1"> +<contactref element="C4" pad="2"/> +<contactref element="U1" pad="29"/> +<wire x1="-21.99" y1="11.8" x2="-14.24" y2="35.56" width="0" layer="19" extent="1-1"/> +</signal> +</signals> +<mfgpreviewcolors> +<mfgpreviewcolor name="soldermaskcolor" color="0xC8008000"/> +<mfgpreviewcolor name="silkscreencolor" color="0xFFFEFEFE"/> +<mfgpreviewcolor name="backgroundcolor" color="0xFF282828"/> +<mfgpreviewcolor name="coppercolor" color="0xFFFFBF00"/> +<mfgpreviewcolor name="substratecolor" color="0xFF786E46"/> +</mfgpreviewcolors> +</board> +</drawing> +</eagle> diff --git a/samd21-example/samd21-barebones/samd21-barebones.b#2 b/samd21-example/samd21-barebones/samd21-barebones.b#2 new file mode 100644 index 0000000000000000000000000000000000000000..f88d2d2cc2dd7e91820efa24245f7cf1315b57e2 --- /dev/null +++ b/samd21-example/samd21-barebones/samd21-barebones.b#2 @@ -0,0 +1,862 @@ +<?xml version="1.0" encoding="utf-8"?> +<!DOCTYPE eagle SYSTEM "eagle.dtd"> +<eagle version="9.6.0"> +<drawing> +<settings> +<setting alwaysvectorfont="no"/> +<setting verticaltext="up"/> +</settings> +<grid distance="50" unitdist="mil" unit="mil" style="lines" multiple="1" display="no" altdistance="5" altunitdist="mil" altunit="mil"/> +<layers> +<layer number="1" name="Top" color="4" fill="1" visible="yes" active="yes"/> +<layer number="2" name="Route2" color="16" fill="1" visible="no" active="no"/> +<layer number="3" name="Route3" color="17" fill="1" visible="no" active="no"/> +<layer number="4" name="Route4" color="18" fill="1" visible="no" active="no"/> +<layer number="5" name="Route5" color="19" fill="1" visible="no" active="no"/> +<layer number="6" name="Route6" color="25" fill="1" visible="no" active="no"/> +<layer number="7" name="Route7" color="26" fill="1" visible="no" active="no"/> +<layer number="8" name="Route8" color="27" fill="1" visible="no" active="no"/> +<layer number="9" name="Route9" color="28" fill="1" visible="no" active="no"/> +<layer number="10" name="Route10" color="29" fill="1" visible="no" active="no"/> +<layer number="11" name="Route11" color="30" fill="1" visible="no" active="no"/> +<layer number="12" name="Route12" color="20" fill="1" visible="no" active="no"/> +<layer number="13" name="Route13" color="21" fill="1" visible="no" active="no"/> +<layer number="14" name="Route14" color="22" fill="1" visible="no" active="no"/> +<layer number="15" name="Route15" color="23" fill="1" visible="no" active="no"/> +<layer number="16" name="Bottom" color="1" fill="1" visible="yes" active="yes"/> +<layer number="17" name="Pads" color="2" fill="1" visible="yes" active="yes"/> +<layer number="18" name="Vias" color="2" fill="1" visible="yes" active="yes"/> +<layer number="19" name="Unrouted" color="6" fill="1" visible="yes" active="yes"/> +<layer number="20" name="Dimension" color="24" fill="1" visible="yes" active="yes"/> +<layer number="21" name="tPlace" color="7" fill="1" visible="yes" active="yes"/> +<layer number="22" name="bPlace" color="7" fill="1" visible="yes" active="yes"/> +<layer number="23" name="tOrigins" color="15" fill="1" visible="yes" active="yes"/> +<layer number="24" name="bOrigins" color="15" fill="1" visible="yes" active="yes"/> +<layer number="25" name="tNames" color="7" fill="1" visible="yes" active="yes"/> +<layer number="26" name="bNames" color="7" fill="1" visible="yes" active="yes"/> +<layer number="27" name="tValues" color="7" fill="1" visible="yes" active="yes"/> +<layer number="28" name="bValues" color="7" fill="1" visible="yes" active="yes"/> +<layer number="29" name="tStop" color="7" fill="3" visible="no" active="yes"/> +<layer number="30" name="bStop" color="7" fill="6" visible="no" active="yes"/> +<layer number="31" name="tCream" color="7" fill="4" visible="no" active="yes"/> +<layer number="32" name="bCream" color="7" fill="5" visible="no" active="yes"/> +<layer number="33" name="tFinish" color="6" fill="3" visible="no" active="yes"/> +<layer number="34" name="bFinish" color="6" fill="6" visible="no" active="yes"/> +<layer number="35" name="tGlue" color="7" fill="4" visible="no" active="yes"/> +<layer number="36" name="bGlue" color="7" fill="5" visible="no" active="yes"/> +<layer number="37" name="tTest" color="7" fill="1" visible="no" active="yes"/> +<layer number="38" name="bTest" color="7" fill="1" visible="no" active="yes"/> +<layer number="39" name="tKeepout" color="4" fill="11" visible="yes" active="yes"/> +<layer number="40" name="bKeepout" color="1" fill="11" visible="yes" active="yes"/> +<layer number="41" name="tRestrict" color="4" fill="10" visible="yes" active="yes"/> +<layer number="42" name="bRestrict" color="1" fill="10" visible="yes" active="yes"/> +<layer number="43" name="vRestrict" color="2" fill="10" visible="yes" active="yes"/> +<layer number="44" name="Drills" color="7" fill="1" visible="no" active="yes"/> +<layer number="45" name="Holes" color="7" fill="1" visible="no" active="yes"/> +<layer number="46" name="Milling" color="3" fill="1" visible="no" active="yes"/> +<layer number="47" name="Measures" color="7" fill="1" visible="no" active="yes"/> +<layer number="48" name="Document" color="7" fill="1" visible="yes" active="yes"/> +<layer number="49" name="Reference" color="7" fill="1" visible="yes" active="yes"/> +<layer number="50" name="dxf" color="7" fill="1" visible="no" active="no"/> +<layer number="51" name="tDocu" color="7" fill="1" visible="yes" active="yes"/> +<layer number="52" name="bDocu" color="7" fill="1" visible="yes" active="yes"/> +<layer number="53" name="tGND_GNDA" color="7" fill="9" visible="no" active="no"/> +<layer number="54" name="bGND_GNDA" color="1" fill="9" visible="no" active="no"/> +<layer number="56" name="wert" color="7" fill="1" visible="no" active="no"/> +<layer number="57" name="tCAD" color="7" fill="1" visible="no" active="no"/> +<layer number="59" name="tCarbon" color="7" fill="1" visible="no" active="no"/> +<layer number="60" name="bCarbon" color="7" fill="1" visible="no" active="no"/> +<layer number="88" name="SimResults" color="9" fill="1" visible="no" active="no"/> +<layer number="89" name="SimProbes" color="9" fill="1" visible="no" active="no"/> +<layer number="90" name="Modules" color="5" fill="1" visible="no" active="no"/> +<layer number="91" name="Nets" color="2" fill="1" visible="no" active="no"/> +<layer number="92" name="Busses" color="1" fill="1" visible="no" active="no"/> +<layer number="93" name="Pins" color="2" fill="1" visible="no" active="no"/> +<layer number="94" name="Symbols" color="4" fill="1" visible="no" active="no"/> +<layer number="95" name="Names" color="7" fill="1" visible="no" active="no"/> +<layer number="96" name="Values" color="7" fill="1" visible="no" active="no"/> +<layer number="97" name="Info" color="7" fill="1" visible="no" active="no"/> +<layer number="98" name="Guide" color="6" fill="1" visible="no" active="no"/> +<layer number="99" name="SpiceOrder" color="7" fill="1" visible="no" active="no"/> +<layer number="100" name="Muster" color="7" fill="1" visible="no" active="no"/> +<layer number="101" name="Patch_Top" color="12" fill="4" visible="no" active="yes"/> +<layer number="102" name="Vscore" color="7" fill="1" visible="no" active="yes"/> +<layer number="103" name="tMap" color="7" fill="1" visible="no" active="yes"/> +<layer number="104" name="Name" color="7" fill="1" visible="no" active="yes"/> +<layer number="105" name="tPlate" color="7" fill="1" visible="no" active="yes"/> +<layer number="106" name="bPlate" color="7" fill="1" visible="no" active="yes"/> +<layer number="107" name="Crop" color="7" fill="1" visible="no" active="yes"/> +<layer number="108" name="tplace-old" color="10" fill="1" visible="no" active="yes"/> +<layer number="109" name="ref-old" color="11" fill="1" visible="no" active="yes"/> +<layer number="110" name="fp0" color="7" fill="1" visible="no" active="yes"/> +<layer number="111" name="LPC17xx" color="7" fill="1" visible="no" active="yes"/> +<layer number="112" name="tSilk" color="7" fill="1" visible="no" active="yes"/> +<layer number="113" name="IDFDebug" color="7" fill="1" visible="no" active="yes"/> +<layer number="114" name="Badge_Outline" color="7" fill="1" visible="no" active="yes"/> +<layer number="115" name="ReferenceISLANDS" color="7" fill="1" visible="no" active="yes"/> +<layer number="116" name="Patch_BOT" color="9" fill="4" visible="no" active="yes"/> +<layer number="117" name="BACKMAAT1" color="7" fill="1" visible="yes" active="yes"/> +<layer number="118" name="Rect_Pads" color="7" fill="1" visible="no" active="yes"/> +<layer number="119" name="KAP_TEKEN" color="7" fill="1" visible="yes" active="yes"/> +<layer number="120" name="KAP_MAAT1" color="7" fill="1" visible="yes" active="yes"/> +<layer number="121" name="_tsilk" color="7" fill="1" visible="no" active="yes"/> +<layer number="122" name="_bsilk" color="7" fill="1" visible="no" active="yes"/> +<layer number="123" name="tTestmark" color="7" fill="1" visible="no" active="yes"/> +<layer number="124" name="bTestmark" color="7" fill="1" visible="no" active="yes"/> +<layer number="125" name="_tNames" color="7" fill="1" visible="no" active="yes"/> +<layer number="126" name="_bNames" color="7" fill="1" visible="no" active="yes"/> +<layer number="127" name="_tValues" color="7" fill="1" visible="no" active="yes"/> +<layer number="128" name="_bValues" color="7" fill="1" visible="no" active="yes"/> +<layer number="129" name="Mask" color="7" fill="1" visible="no" active="yes"/> +<layer number="130" name="SMDSTROOK" color="7" fill="1" visible="yes" active="yes"/> +<layer number="131" name="tAdjust" color="7" fill="1" visible="no" active="yes"/> +<layer number="132" name="bAdjust" color="7" fill="1" visible="no" active="yes"/> +<layer number="133" name="bottom_silk" color="7" fill="1" visible="yes" active="yes"/> +<layer number="144" name="Drill_legend" color="7" fill="1" visible="no" active="yes"/> +<layer number="150" name="Notes" color="7" fill="1" visible="no" active="yes"/> +<layer number="151" name="HeatSink" color="7" fill="1" visible="no" active="yes"/> +<layer number="152" name="_bDocu" color="7" fill="1" visible="no" active="yes"/> +<layer number="153" name="FabDoc1" color="7" fill="1" visible="no" active="yes"/> +<layer number="154" name="FabDoc2" color="7" fill="1" visible="no" active="yes"/> +<layer number="155" name="FabDoc3" color="7" fill="1" visible="no" active="yes"/> +<layer number="199" name="Contour" color="7" fill="1" visible="no" active="yes"/> +<layer number="200" name="200bmp" color="1" fill="10" visible="no" active="yes"/> +<layer number="201" name="201bmp" color="2" fill="10" visible="no" active="yes"/> +<layer number="202" name="202bmp" color="3" fill="10" visible="no" active="yes"/> +<layer number="203" name="203bmp" color="4" fill="10" visible="no" active="yes"/> +<layer number="204" name="204bmp" color="5" fill="10" visible="no" active="yes"/> +<layer number="205" name="205bmp" color="6" fill="10" visible="no" active="yes"/> +<layer number="206" name="206bmp" color="7" fill="10" visible="no" active="yes"/> +<layer number="207" name="207bmp" color="8" fill="10" visible="no" active="yes"/> +<layer number="208" name="208bmp" color="9" fill="10" visible="no" active="yes"/> +<layer number="209" name="209bmp" color="7" fill="1" visible="no" active="yes"/> +<layer number="210" name="210bmp" color="7" fill="1" visible="no" active="yes"/> +<layer number="211" name="211bmp" color="7" fill="1" visible="no" active="yes"/> +<layer number="212" name="212bmp" color="7" fill="1" visible="no" active="yes"/> +<layer number="213" name="213bmp" color="7" fill="1" visible="no" active="yes"/> +<layer number="214" name="214bmp" color="7" fill="1" visible="no" active="yes"/> +<layer number="215" name="215bmp" color="7" fill="1" visible="no" active="yes"/> +<layer number="216" name="216bmp" color="7" fill="1" visible="no" active="yes"/> +<layer number="217" name="217bmp" color="18" fill="1" visible="no" active="no"/> +<layer number="218" name="218bmp" color="19" fill="1" visible="no" active="no"/> +<layer number="219" name="219bmp" color="20" fill="1" visible="no" active="no"/> +<layer number="220" name="220bmp" color="21" fill="1" visible="no" active="no"/> +<layer number="221" name="221bmp" color="22" fill="1" visible="no" active="no"/> +<layer number="222" name="222bmp" color="23" fill="1" visible="no" active="no"/> +<layer number="223" name="223bmp" color="24" fill="1" visible="no" active="no"/> +<layer number="224" name="224bmp" color="25" fill="1" visible="no" active="no"/> +<layer number="225" name="225bmp" color="7" fill="1" visible="no" active="yes"/> +<layer number="226" name="226bmp" color="7" fill="1" visible="no" active="yes"/> +<layer number="227" name="227bmp" color="7" fill="1" visible="no" active="yes"/> +<layer number="228" name="228bmp" color="7" fill="1" visible="no" active="yes"/> +<layer number="229" name="229bmp" color="7" fill="1" visible="no" active="yes"/> +<layer number="230" name="230bmp" color="7" fill="1" visible="no" active="yes"/> +<layer number="231" name="231bmp" color="7" fill="1" visible="no" active="yes"/> +<layer number="232" name="Eagle3D_PG2" color="7" fill="1" visible="no" active="yes"/> +<layer number="233" name="Eagle3D_PG3" color="7" fill="1" visible="no" active="yes"/> +<layer number="248" name="Housing" color="7" fill="1" visible="no" active="yes"/> +<layer number="249" name="Edge" color="7" fill="1" visible="no" active="yes"/> +<layer number="250" name="Descript" color="3" fill="1" visible="no" active="no"/> +<layer number="251" name="SMDround" color="12" fill="11" visible="no" active="no"/> +<layer number="254" name="cooling" color="7" fill="1" visible="no" active="yes"/> +<layer number="255" name="routoute" color="7" fill="1" visible="no" active="yes"/> +</layers> +<board> +<plain> +<wire x1="0" y1="0" x2="160" y2="0" width="0" layer="20"/> +<wire x1="160" y1="0" x2="160" y2="100" width="0" layer="20"/> +<wire x1="160" y1="100" x2="0" y2="100" width="0" layer="20"/> +<wire x1="0" y1="100" x2="0" y2="0" width="0" layer="20"/> +</plain> +<libraries> +<library name="passives"> +<packages> +<package name="0805"> +<smd name="1" x="-1" y="0" dx="0.8" dy="1.3" layer="1"/> +<smd name="2" x="1" y="0" dx="0.8" dy="1.3" layer="1"/> +<text x="-0.762" y="0.8255" size="1.016" layer="25">>NAME</text> +<text x="-1.016" y="-2.032" size="1.016" layer="27">>VALUE</text> +<rectangle x1="-1" y1="-0.6" x2="1" y2="0.6" layer="51"/> +</package> +<package name="TACT-SWITCH-KMR6"> +<smd name="P$1" x="-2.05" y="0.8" dx="0.9" dy="1" layer="1" rot="R180"/> +<smd name="P$2" x="2.05" y="0.8" dx="0.9" dy="1" layer="1" rot="R180"/> +<smd name="P$3" x="-2.05" y="-0.8" dx="0.9" dy="1" layer="1" rot="R180"/> +<smd name="P$4" x="2.05" y="-0.8" dx="0.9" dy="1" layer="1" rot="R180"/> +<wire x1="-1.4" y1="0.8" x2="0" y2="0.8" width="0.127" layer="51"/> +<wire x1="0" y1="0.8" x2="1.4" y2="0.8" width="0.127" layer="51"/> +<wire x1="-1.4" y1="-0.8" x2="0" y2="-0.8" width="0.127" layer="51"/> +<wire x1="0" y1="-0.8" x2="1.4" y2="-0.8" width="0.127" layer="51"/> +<wire x1="0" y1="0.8" x2="0" y2="0.6" width="0.127" layer="51"/> +<wire x1="0" y1="0.6" x2="0.4" y2="-0.4" width="0.127" layer="51"/> +<wire x1="0" y1="-0.8" x2="0" y2="-0.5" width="0.127" layer="51"/> +<wire x1="-2.1" y1="0.2" x2="-2.1" y2="-0.2" width="0.127" layer="51"/> +<wire x1="2.1" y1="-0.2" x2="2.1" y2="0.2" width="0.127" layer="51"/> +<wire x1="2.1" y1="1.4" x2="2.1" y2="1.5" width="0.127" layer="51"/> +<wire x1="2.1" y1="1.5" x2="1" y2="1.5" width="0.127" layer="51"/> +<wire x1="1.032" y1="1.5" x2="-2.1" y2="1.5" width="0.127" layer="51"/> +<wire x1="-2.1" y1="1.5" x2="-2.1" y2="1.4" width="0.127" layer="51"/> +<wire x1="-2.1" y1="-1.4" x2="-2.1" y2="-1.5" width="0.127" layer="51"/> +<wire x1="-2.1" y1="-1.5" x2="2.1" y2="-1.5" width="0.127" layer="51"/> +<wire x1="2.1" y1="-1.5" x2="2.1" y2="-1.4" width="0.127" layer="51"/> +</package> +</packages> +</library> +<library name="SparkFun-Connectors"> +<description><h3>SparkFun Connectors</h3> +This library contains electrically-functional connectors. +<br> +<br> +We've spent an enormous amount of time creating and checking these footprints and parts, but it is <b> the end user's responsibility</b> to ensure correctness and suitablity for a given componet or application. +<br> +<br>If you enjoy using this library, please buy one of our products at <a href=" www.sparkfun.com">SparkFun.com</a>. +<br> +<br> +<b>Licensing:</b> Creative Commons ShareAlike 4.0 International - https://creativecommons.org/licenses/by-sa/4.0/ +<br> +<br> +You are welcome to use this library for commercial purposes. For attribution, we ask that when you begin to sell your device using our footprint, you email us with a link to the product being sold. We want bragging rights that we helped (in a very small part) to create your 8th world wonder. We would like the opportunity to feature your device on our homepage.</description> +<packages> +<package name="2X5-SMD-1.27MM"> +<description>Shrouded SMD connector for JTAG and SWD applications.</description> +<smd name="6" x="0" y="-1.95" dx="0.76" dy="2.4" layer="1" rot="R180"/> +<smd name="8" x="-1.27" y="-1.95" dx="0.76" dy="2.4" layer="1" rot="R180"/> +<smd name="10" x="-2.54" y="-1.95" dx="0.76" dy="2.4" layer="1" rot="R180"/> +<smd name="4" x="1.27" y="-1.95" dx="0.76" dy="2.4" layer="1" rot="R180"/> +<smd name="2" x="2.54" y="-1.95" dx="0.76" dy="2.4" layer="1" rot="R180"/> +<smd name="1" x="2.54" y="1.95" dx="0.76" dy="2.4" layer="1" rot="R180"/> +<smd name="3" x="1.27" y="1.95" dx="0.76" dy="2.4" layer="1" rot="R180"/> +<smd name="5" x="0" y="1.95" dx="0.76" dy="2.4" layer="1" rot="R180"/> +<smd name="7" x="-1.27" y="1.95" dx="0.76" dy="2.4" layer="1" rot="R180"/> +<smd name="9" x="-2.54" y="1.95" dx="0.76" dy="2.4" layer="1" rot="R180"/> +<rectangle x1="-1.0575" y1="-1.9625" x2="1.0575" y2="-1.5525" layer="51" rot="R270"/> +<wire x1="5.55" y1="-1.7" x2="-5.55" y2="-1.7" width="0.1524" layer="51"/> +<wire x1="-5.55" y1="-1.7" x2="-5.55" y2="1.7" width="0.1524" layer="51"/> +<wire x1="-5.55" y1="1.7" x2="5.55" y2="1.7" width="0.1524" layer="51"/> +<wire x1="5.55" y1="1.7" x2="5.55" y2="-1.7" width="0.1524" layer="51"/> +<rectangle x1="-2.3275" y1="-1.9625" x2="-0.2125" y2="-1.5525" layer="51" rot="R270"/> +<rectangle x1="-3.5975" y1="-1.9625" x2="-1.4825" y2="-1.5525" layer="51" rot="R270"/> +<rectangle x1="0.2125" y1="-1.9625" x2="2.3275" y2="-1.5525" layer="51" rot="R270"/> +<rectangle x1="1.4825" y1="-1.9625" x2="3.5975" y2="-1.5525" layer="51" rot="R270"/> +<rectangle x1="1.4825" y1="1.5525" x2="3.5975" y2="1.9625" layer="51" rot="R90"/> +<rectangle x1="0.2125" y1="1.5525" x2="2.3275" y2="1.9625" layer="51" rot="R90"/> +<rectangle x1="-1.0575" y1="1.5525" x2="1.0575" y2="1.9625" layer="51" rot="R90"/> +<rectangle x1="-2.3275" y1="1.5525" x2="-0.2125" y2="1.9625" layer="51" rot="R90"/> +<rectangle x1="-3.5975" y1="1.5525" x2="-1.4825" y2="1.9625" layer="51" rot="R90"/> +<wire x1="-3.2" y1="2.5" x2="-6.3" y2="2.5" width="0.2032" layer="51"/> +<wire x1="-6.3" y1="2.5" x2="-6.3" y2="-2.5" width="0.2032" layer="51"/> +<wire x1="-6.3" y1="-2.5" x2="-3.2" y2="-2.5" width="0.2032" layer="51"/> +<wire x1="3.2" y1="-2.5" x2="6.3" y2="-2.5" width="0.2032" layer="51"/> +<wire x1="6.3" y1="-2.5" x2="6.3" y2="2.5" width="0.2032" layer="51"/> +<wire x1="6.3" y1="2.5" x2="3.2" y2="2.5" width="0.2032" layer="51"/> +<wire x1="0.6" y1="2.9" x2="0.6" y2="3.4" width="0.2032" layer="21"/> +<wire x1="0.6" y1="3.4" x2="-0.6" y2="3.4" width="0.2032" layer="21"/> +<wire x1="-0.6" y1="3.4" x2="-0.6" y2="2.9" width="0.2032" layer="21"/> +<circle x="3.6" y="3.1" radius="0.1" width="0.2032" layer="21"/> +<wire x1="-3.175" y1="1.905" x2="-3.175" y2="-1.905" width="0.127" layer="51"/> +<wire x1="3.175" y1="1.905" x2="3.175" y2="-1.905" width="0.127" layer="51"/> +</package> +</packages> +</library> +<library name="microcontrollers"> +<packages> +<package name="QFP80P900X900X120-32N"> +<wire x1="-3.55" y1="-3.55" x2="-3.55" y2="3.55" width="0.127" layer="51"/> +<wire x1="-3.55" y1="3.55" x2="3.55" y2="3.55" width="0.127" layer="51"/> +<wire x1="3.55" y1="3.55" x2="3.55" y2="-3.55" width="0.127" layer="51"/> +<wire x1="3.55" y1="-3.55" x2="-3.55" y2="-3.55" width="0.127" layer="51"/> +<wire x1="-3.25" y1="3.55" x2="-3.55" y2="3.55" width="0.127" layer="21"/> +<wire x1="-3.55" y1="3.55" x2="-3.55" y2="3.25" width="0.127" layer="21"/> +<wire x1="3.25" y1="3.55" x2="3.55" y2="3.55" width="0.127" layer="21"/> +<wire x1="3.55" y1="3.55" x2="3.55" y2="3.25" width="0.127" layer="21"/> +<wire x1="-3.55" y1="-3.25" x2="-3.55" y2="-3.55" width="0.127" layer="21"/> +<wire x1="-3.55" y1="-3.55" x2="-3.25" y2="-3.55" width="0.127" layer="21"/> +<wire x1="3.25" y1="-3.55" x2="3.55" y2="-3.55" width="0.127" layer="21"/> +<wire x1="3.55" y1="-3.55" x2="3.55" y2="-3.25" width="0.127" layer="21"/> +<text x="-3.202909375" y="5.80526875" size="0.8135375" layer="25">>NAME</text> +<text x="-3.40625" y="-6.211390625" size="0.81429375" layer="27">>VALUE</text> +<circle x="-5.8" y="2.8" radius="0.1" width="0.2" layer="21"/> +<circle x="-5.8" y="2.8" radius="0.1" width="0.2" layer="51"/> +<smd name="1" x="-4.18" y="2.8" dx="1.6" dy="0.55" layer="1" roundness="25"/> +<smd name="2" x="-4.18" y="2" dx="1.6" dy="0.55" layer="1" roundness="25"/> +<smd name="3" x="-4.18" y="1.2" dx="1.6" dy="0.55" layer="1" roundness="25"/> +<smd name="4" x="-4.18" y="0.4" dx="1.6" dy="0.55" layer="1" roundness="25"/> +<smd name="5" x="-4.18" y="-0.4" dx="1.6" dy="0.55" layer="1" roundness="25"/> +<smd name="6" x="-4.18" y="-1.2" dx="1.6" dy="0.55" layer="1" roundness="25"/> +<smd name="7" x="-4.18" y="-2" dx="1.6" dy="0.55" layer="1" roundness="25"/> +<smd name="8" x="-4.18" y="-2.8" dx="1.6" dy="0.55" layer="1" roundness="25"/> +<smd name="9" x="-2.8" y="-4.18" dx="1.6" dy="0.55" layer="1" roundness="25" rot="R90"/> +<smd name="10" x="-2" y="-4.18" dx="1.6" dy="0.55" layer="1" roundness="25" rot="R90"/> +<smd name="11" x="-1.2" y="-4.18" dx="1.6" dy="0.55" layer="1" roundness="25" rot="R90"/> +<smd name="12" x="-0.4" y="-4.18" dx="1.6" dy="0.55" layer="1" roundness="25" rot="R90"/> +<smd name="13" x="0.4" y="-4.18" dx="1.6" dy="0.55" layer="1" roundness="25" rot="R90"/> +<smd name="14" x="1.2" y="-4.18" dx="1.6" dy="0.55" layer="1" roundness="25" rot="R90"/> +<smd name="15" x="2" y="-4.18" dx="1.6" dy="0.55" layer="1" roundness="25" rot="R90"/> +<smd name="16" x="2.8" y="-4.18" dx="1.6" dy="0.55" layer="1" roundness="25" rot="R90"/> +<smd name="17" x="4.18" y="-2.8" dx="1.6" dy="0.55" layer="1" roundness="25" rot="R180"/> +<smd name="18" x="4.18" y="-2" dx="1.6" dy="0.55" layer="1" roundness="25" rot="R180"/> +<smd name="19" x="4.18" y="-1.2" dx="1.6" dy="0.55" layer="1" roundness="25" rot="R180"/> +<smd name="20" x="4.18" y="-0.4" dx="1.6" dy="0.55" layer="1" roundness="25" rot="R180"/> +<smd name="21" x="4.18" y="0.4" dx="1.6" dy="0.55" layer="1" roundness="25" rot="R180"/> +<smd name="22" x="4.18" y="1.2" dx="1.6" dy="0.55" layer="1" roundness="25" rot="R180"/> +<smd name="23" x="4.18" y="2" dx="1.6" dy="0.55" layer="1" roundness="25" rot="R180"/> +<smd name="24" x="4.18" y="2.8" dx="1.6" dy="0.55" layer="1" roundness="25" rot="R180"/> +<smd name="25" x="2.8" y="4.18" dx="1.6" dy="0.55" layer="1" roundness="25" rot="R270"/> +<smd name="26" x="2" y="4.18" dx="1.6" dy="0.55" layer="1" roundness="25" rot="R270"/> +<smd name="27" x="1.2" y="4.18" dx="1.6" dy="0.55" layer="1" roundness="25" rot="R270"/> +<smd name="28" x="0.4" y="4.18" dx="1.6" dy="0.55" layer="1" roundness="25" rot="R270"/> +<smd name="29" x="-0.4" y="4.18" dx="1.6" dy="0.55" layer="1" roundness="25" rot="R270"/> +<smd name="30" x="-1.2" y="4.18" dx="1.6" dy="0.55" layer="1" roundness="25" rot="R270"/> +<smd name="31" x="-2" y="4.18" dx="1.6" dy="0.55" layer="1" roundness="25" rot="R270"/> +<smd name="32" x="-2.8" y="4.18" dx="1.6" dy="0.55" layer="1" roundness="25" rot="R270"/> +</package> +<package name="QFN-64-9X9MM-SMALLPAD"> +<description><h3>64-pin QFN 9x9mm, 0.5mm pitch</h3> +<p>Package used by ATmega128RFA1</p> +<p><a href="http://www.atmel.com/Images/Atmel-8266-MCU_Wireless-ATmega128RFA1_Datasheet.pdf">Example Datasheet</a></p></description> +<wire x1="-4.492" y1="-4.5" x2="4.508" y2="-4.5" width="0.09" layer="51"/> +<wire x1="4.508" y1="-4.5" x2="4.508" y2="4.5" width="0.09" layer="51"/> +<wire x1="4.508" y1="4.5" x2="-4.492" y2="4.5" width="0.09" layer="51"/> +<wire x1="-4.492" y1="4.5" x2="-4.492" y2="-4.5" width="0.09" layer="51"/> +<wire x1="-4.6" y1="4.6" x2="-4.6" y2="4.1" width="0.2032" layer="21"/> +<wire x1="-4.6" y1="4.6" x2="-4.1" y2="4.6" width="0.2032" layer="21"/> +<wire x1="4.6" y1="4.6" x2="4.1" y2="4.6" width="0.2032" layer="21"/> +<wire x1="4.6" y1="4.6" x2="4.6" y2="4.1" width="0.2032" layer="21"/> +<circle x="-4.842" y="4.85" radius="0.2" width="0" layer="21"/> +<circle x="-3.442" y="3.45" radius="0.2" width="0.09" layer="51"/> +<smd name="26" x="0.75" y="-4.5" dx="0.275" dy="0.7" layer="1" rot="R180"/> +<smd name="25" x="0.25" y="-4.5" dx="0.275" dy="0.7" layer="1" rot="R180"/> +<smd name="24" x="-0.25" y="-4.5" dx="0.275" dy="0.7" layer="1" rot="R180"/> +<smd name="27" x="1.25" y="-4.5" dx="0.275" dy="0.7" layer="1" rot="R180"/> +<smd name="28" x="1.75" y="-4.5" dx="0.275" dy="0.7" layer="1" rot="R180"/> +<smd name="23" x="-0.75" y="-4.5" dx="0.275" dy="0.7" layer="1" rot="R180"/> +<smd name="22" x="-1.25" y="-4.5" dx="0.275" dy="0.7" layer="1" rot="R180"/> +<smd name="21" x="-1.75" y="-4.5" dx="0.275" dy="0.7" layer="1" rot="R180"/> +<smd name="6" x="-4.5" y="1.25" dx="0.275" dy="0.7" layer="1" rot="R270"/> +<smd name="5" x="-4.5" y="1.75" dx="0.275" dy="0.7" layer="1" rot="R270"/> +<smd name="4" x="-4.5" y="2.25" dx="0.275" dy="0.7" layer="1" rot="R270"/> +<smd name="7" x="-4.5" y="0.75" dx="0.275" dy="0.7" layer="1" rot="R270"/> +<smd name="8" x="-4.5" y="0.25" dx="0.275" dy="0.7" layer="1" rot="R270"/> +<smd name="3" x="-4.5" y="2.75" dx="0.275" dy="0.7" layer="1" rot="R270"/> +<smd name="2" x="-4.5" y="3.25" dx="0.275" dy="0.7" layer="1" rot="R270"/> +<smd name="9" x="-4.5" y="-0.25" dx="0.275" dy="0.7" layer="1" rot="R270"/> +<smd name="10" x="-4.5" y="-0.75" dx="0.275" dy="0.7" layer="1" rot="R270"/> +<smd name="1" x="-4.5" y="3.75" dx="0.275" dy="0.7" layer="1" rot="R270"/> +<smd name="16" x="-4.5" y="-3.75" dx="0.275" dy="0.7" layer="1" rot="R90"/> +<smd name="15" x="-4.5" y="-3.25" dx="0.275" dy="0.7" layer="1" rot="R90"/> +<smd name="14" x="-4.5" y="-2.75" dx="0.275" dy="0.7" layer="1" rot="R270"/> +<smd name="17" x="-3.75" y="-4.5" dx="0.275" dy="0.7" layer="1" rot="R180"/> +<smd name="18" x="-3.25" y="-4.5" dx="0.275" dy="0.7" layer="1" rot="R180"/> +<smd name="13" x="-4.5" y="-2.25" dx="0.275" dy="0.7" layer="1" rot="R270"/> +<smd name="12" x="-4.5" y="-1.75" dx="0.275" dy="0.7" layer="1" rot="R270"/> +<smd name="19" x="-2.75" y="-4.5" dx="0.275" dy="0.7" layer="1" rot="R180"/> +<smd name="20" x="-2.25" y="-4.5" dx="0.275" dy="0.7" layer="1" rot="R180"/> +<smd name="11" x="-4.5" y="-1.25" dx="0.275" dy="0.7" layer="1" rot="R270"/> +<smd name="29" x="2.25" y="-4.5" dx="0.275" dy="0.7" layer="1"/> +<smd name="30" x="2.75" y="-4.5" dx="0.275" dy="0.7" layer="1"/> +<smd name="31" x="3.25" y="-4.5" dx="0.275" dy="0.7" layer="1"/> +<smd name="32" x="3.75" y="-4.5" dx="0.275" dy="0.7" layer="1"/> +<smd name="33" x="4.5" y="-3.75" dx="0.275" dy="0.7" layer="1" rot="R90"/> +<smd name="34" x="4.5" y="-3.25" dx="0.275" dy="0.7" layer="1" rot="R90"/> +<smd name="35" x="4.5" y="-2.75" dx="0.275" dy="0.7" layer="1" rot="R90"/> +<smd name="36" x="4.5" y="-2.25" dx="0.275" dy="0.7" layer="1" rot="R90"/> +<smd name="37" x="4.5" y="-1.75" dx="0.275" dy="0.7" layer="1" rot="R90"/> +<smd name="38" x="4.5" y="-1.25" dx="0.275" dy="0.7" layer="1" rot="R90"/> +<smd name="39" x="4.5" y="-0.75" dx="0.275" dy="0.7" layer="1" rot="R90"/> +<smd name="40" x="4.5" y="-0.25" dx="0.275" dy="0.7" layer="1" rot="R90"/> +<smd name="41" x="4.5" y="0.25" dx="0.275" dy="0.7" layer="1" rot="R90"/> +<smd name="42" x="4.5" y="0.75" dx="0.275" dy="0.7" layer="1" rot="R90"/> +<smd name="43" x="4.5" y="1.25" dx="0.275" dy="0.7" layer="1" rot="R90"/> +<smd name="44" x="4.5" y="1.75" dx="0.275" dy="0.7" layer="1" rot="R90"/> +<smd name="45" x="4.5" y="2.25" dx="0.275" dy="0.7" layer="1" rot="R90"/> +<smd name="46" x="4.5" y="2.75" dx="0.275" dy="0.7" layer="1" rot="R90"/> +<smd name="47" x="4.5" y="3.25" dx="0.275" dy="0.7" layer="1" rot="R90"/> +<smd name="48" x="4.5" y="3.75" dx="0.275" dy="0.7" layer="1" rot="R90"/> +<smd name="49" x="3.75" y="4.5" dx="0.275" dy="0.7" layer="1"/> +<smd name="50" x="3.25" y="4.5" dx="0.275" dy="0.7" layer="1"/> +<smd name="51" x="2.75" y="4.5" dx="0.275" dy="0.7" layer="1"/> +<smd name="52" x="2.25" y="4.5" dx="0.275" dy="0.7" layer="1"/> +<smd name="53" x="1.75" y="4.5" dx="0.275" dy="0.7" layer="1"/> +<smd name="54" x="1.25" y="4.5" dx="0.275" dy="0.7" layer="1"/> +<smd name="55" x="0.75" y="4.5" dx="0.275" dy="0.7" layer="1"/> +<smd name="56" x="0.25" y="4.5" dx="0.275" dy="0.7" layer="1"/> +<smd name="57" x="-0.25" y="4.5" dx="0.275" dy="0.7" layer="1"/> +<smd name="58" x="-0.75" y="4.5" dx="0.275" dy="0.7" layer="1"/> +<smd name="59" x="-1.25" y="4.5" dx="0.275" dy="0.7" layer="1"/> +<smd name="60" x="-1.75" y="4.5" dx="0.275" dy="0.7" layer="1"/> +<smd name="61" x="-2.25" y="4.5" dx="0.275" dy="0.7" layer="1"/> +<smd name="62" x="-2.75" y="4.5" dx="0.275" dy="0.7" layer="1"/> +<smd name="63" x="-3.25" y="4.5" dx="0.275" dy="0.7" layer="1"/> +<smd name="64" x="-3.75" y="4.5" dx="0.275" dy="0.7" layer="1"/> +<text x="0" y="1.27" size="0.6096" layer="25" font="vector" ratio="20" align="bottom-center">>NAME</text> +<text x="0" y="-1.27" size="0.6096" layer="27" font="vector" ratio="20" align="top-center">>VALUE</text> +<wire x1="4.6" y1="-4.6" x2="4.1" y2="-4.6" width="0.2032" layer="21"/> +<wire x1="4.6" y1="-4.6" x2="4.6" y2="-4.1" width="0.2032" layer="21"/> +<wire x1="-4.6" y1="-4.6" x2="-4.6" y2="-4.1" width="0.2032" layer="21"/> +<wire x1="-4.6" y1="-4.6" x2="-4.1" y2="-4.6" width="0.2032" layer="21"/> +<smd name="P$1" x="0" y="0" dx="4.8" dy="4.8" layer="1" cream="no"/> +<polygon width="0.127" layer="31"> +<vertex x="1.03" y="1.03"/> +<vertex x="1.03" y="2.17"/> +<vertex x="2.17" y="2.17"/> +<vertex x="2.17" y="1.03"/> +</polygon> +<polygon width="0.127" layer="31"> +<vertex x="-2.17" y="1.03"/> +<vertex x="-2.17" y="2.17"/> +<vertex x="-1.03" y="2.17"/> +<vertex x="-1.03" y="1.03"/> +</polygon> +<polygon width="0.127" layer="31"> +<vertex x="-2.17" y="-2.17"/> +<vertex x="-2.17" y="-1.03"/> +<vertex x="-1.03" y="-1.03"/> +<vertex x="-1.03" y="-2.17"/> +</polygon> +<polygon width="0.127" layer="31"> +<vertex x="1.03" y="-2.17"/> +<vertex x="1.03" y="-1.03"/> +<vertex x="2.17" y="-1.03"/> +<vertex x="2.17" y="-2.17"/> +</polygon> +<polygon width="0.127" layer="31"> +<vertex x="-0.57" y="-0.57"/> +<vertex x="-0.57" y="0.57"/> +<vertex x="0.57" y="0.57"/> +<vertex x="0.57" y="-0.57"/> +</polygon> +</package> +</packages> +</library> +<library name="power"> +<packages> +<package name="SOT23-5"> +<description><b>Small Outline Transistor</b>, 5 lead</description> +<wire x1="-1.544" y1="0.713" x2="1.544" y2="0.713" width="0.1524" layer="51"/> +<wire x1="1.544" y1="0.713" x2="1.544" y2="-0.712" width="0.1524" layer="51"/> +<wire x1="1.544" y1="-0.712" x2="-1.544" y2="-0.712" width="0.1524" layer="51"/> +<wire x1="-1.544" y1="-0.712" x2="-1.544" y2="0.713" width="0.1524" layer="51"/> +<smd name="5" x="-0.95" y="1.306" dx="0.5334" dy="1.1938" layer="1"/> +<smd name="4" x="0.95" y="1.306" dx="0.5334" dy="1.1938" layer="1"/> +<smd name="1" x="-0.95" y="-1.306" dx="0.5334" dy="1.1938" layer="1"/> +<smd name="2" x="0" y="-1.306" dx="0.5334" dy="1.1938" layer="1"/> +<smd name="3" x="0.95" y="-1.306" dx="0.5334" dy="1.1938" layer="1"/> +<text x="-1.778" y="-1.778" size="1.27" layer="25" ratio="10" rot="R90">>NAME</text> +<text x="3.048" y="-1.778" size="1.27" layer="27" ratio="10" rot="R90">>VALUE</text> +<rectangle x1="-1.1875" y1="0.7126" x2="-0.7125" y2="1.5439" layer="51"/> +<rectangle x1="0.7125" y1="0.7126" x2="1.1875" y2="1.5439" layer="51"/> +<rectangle x1="-1.1875" y1="-1.5437" x2="-0.7125" y2="-0.7124" layer="51"/> +<rectangle x1="-0.2375" y1="-1.5437" x2="0.2375" y2="-0.7124" layer="51"/> +<rectangle x1="0.7125" y1="-1.5437" x2="1.1875" y2="-0.7124" layer="51"/> +<wire x1="-1.5" y1="-1.9" x2="-1.5" y2="-1.2" width="0.127" layer="21"/> +</package> +</packages> +</library> +<library name="connector"> +<packages> +<package name="USB_MICRO_609-4613-1-ND"> +<smd name="HD0" x="-3.8" y="0" dx="1.9" dy="1.8" layer="1"/> +<smd name="HD4" x="-3.1" y="2.55" dx="2.1" dy="1.6" layer="1"/> +<smd name="HD5" x="3.1" y="2.55" dx="2.1" dy="1.6" layer="1"/> +<smd name="D+" x="0" y="2.675" dx="0.4" dy="1.35" layer="1"/> +<smd name="D-" x="-0.65" y="2.675" dx="0.4" dy="1.35" layer="1"/> +<smd name="VBUS" x="-1.3" y="2.675" dx="0.4" dy="1.35" layer="1"/> +<smd name="ID" x="0.65" y="2.675" dx="0.4" dy="1.35" layer="1"/> +<smd name="GND" x="1.3" y="2.675" dx="0.4" dy="1.35" layer="1"/> +<text x="4.9275" y="1.2125" size="0.6096" layer="27" font="vector" rot="R90">>Value</text> +<text x="-4.3925" y="1.13" size="0.6096" layer="25" font="vector" rot="R90">>Name</text> +<smd name="HD1" x="-1.05" y="0" dx="1.9" dy="1.8" layer="1"/> +<smd name="HD2" x="1.05" y="0" dx="1.9" dy="1.8" layer="1"/> +<smd name="HD3" x="3.8" y="0" dx="1.9" dy="1.8" layer="1"/> +<wire x1="-4.7" y1="-1.45" x2="4.7" y2="-1.45" width="0.127" layer="51"/> +<text x="0" y="-1.3" size="0.8128" layer="51" font="vector" align="bottom-center">\\ PCB Edge /</text> +<wire x1="-3.9" y1="3" x2="-3.9" y2="-2.5" width="0.127" layer="51"/> +<wire x1="-3.9" y1="-2.5" x2="3.9" y2="-2.5" width="0.127" layer="51"/> +<wire x1="3.9" y1="-2.5" x2="3.9" y2="3" width="0.127" layer="51"/> +<wire x1="3.9" y1="3" x2="-3.9" y2="3" width="0.127" layer="51"/> +<wire x1="-3.9" y1="1.1" x2="-3.9" y2="1.5" width="0.127" layer="21"/> +<wire x1="3.9" y1="1.1" x2="3.9" y2="1.5" width="0.127" layer="21"/> +<wire x1="1.8" y1="3" x2="1.7" y2="3" width="0.127" layer="21"/> +<wire x1="-1.7" y1="3" x2="-1.8" y2="3" width="0.127" layer="21"/> +<wire x1="4.4" y1="3" x2="4.7" y2="3" width="0.127" layer="21"/> +<wire x1="-4.4" y1="3" x2="-4.7" y2="3" width="0.127" layer="21"/> +<wire x1="-3.9" y1="3.6" x2="-3.9" y2="3.8" width="0.127" layer="21"/> +<wire x1="3.9" y1="3.6" x2="3.9" y2="3.8" width="0.127" layer="21"/> +</package> +</packages> +</library> +</libraries> +<attributes> +</attributes> +<variantdefs> +</variantdefs> +<classes> +<class number="0" name="default" width="0" drill="0"> +</class> +</classes> +<designrules name="default"> +<description language="de"><b>EAGLE Design Rules</b> +<p> +Die Standard-Design-Rules sind so gewählt, dass sie für +die meisten Anwendungen passen. Sollte ihre Platine +besondere Anforderungen haben, treffen Sie die erforderlichen +Einstellungen hier und speichern die Design Rules unter +einem neuen Namen ab.</description> +<description language="en"><b>EAGLE Design Rules</b> +<p> +The default Design Rules have been set to cover +a wide range of applications. Your particular design +may have different requirements, so please make the +necessary adjustments and save your customized +design rules under a new name.</description> +<param name="layerSetup" value="(1*16)"/> +<param name="mtCopper" value="0.035mm 0.035mm 0.035mm 0.035mm 0.035mm 0.035mm 0.035mm 0.035mm 0.035mm 0.035mm 0.035mm 0.035mm 0.035mm 0.035mm 0.035mm 0.035mm"/> +<param name="mtIsolate" value="1.5mm 0.15mm 0.2mm 0.15mm 0.2mm 0.15mm 0.2mm 0.15mm 0.2mm 0.15mm 0.2mm 0.15mm 0.2mm 0.15mm 0.2mm"/> +<param name="mdWireWire" value="6mil"/> +<param name="mdWirePad" value="6mil"/> +<param name="mdWireVia" value="6mil"/> +<param name="mdPadPad" value="6mil"/> +<param name="mdPadVia" value="6mil"/> +<param name="mdViaVia" value="6mil"/> +<param name="mdSmdPad" value="6mil"/> +<param name="mdSmdVia" value="6mil"/> +<param name="mdSmdSmd" value="6mil"/> +<param name="mdViaViaSameLayer" value="6mil"/> +<param name="mnLayersViaInSmd" value="2"/> +<param name="mdCopperDimension" value="40mil"/> +<param name="mdDrill" value="6mil"/> +<param name="mdSmdStop" value="0mil"/> +<param name="msWidth" value="6mil"/> +<param name="msDrill" value="0.35mm"/> +<param name="msMicroVia" value="9.99mm"/> +<param name="msBlindViaRatio" value="0.5"/> +<param name="rvPadTop" value="0.25"/> +<param name="rvPadInner" value="0.25"/> +<param name="rvPadBottom" value="0.25"/> +<param name="rvViaOuter" value="0.25"/> +<param name="rvViaInner" value="0.25"/> +<param name="rvMicroViaOuter" value="0.25"/> +<param name="rvMicroViaInner" value="0.25"/> +<param name="rlMinPadTop" value="10mil"/> +<param name="rlMaxPadTop" value="20mil"/> +<param name="rlMinPadInner" value="10mil"/> +<param name="rlMaxPadInner" value="20mil"/> +<param name="rlMinPadBottom" value="10mil"/> +<param name="rlMaxPadBottom" value="20mil"/> +<param name="rlMinViaOuter" value="8mil"/> +<param name="rlMaxViaOuter" value="20mil"/> +<param name="rlMinViaInner" value="8mil"/> +<param name="rlMaxViaInner" value="20mil"/> +<param name="rlMinMicroViaOuter" value="4mil"/> +<param name="rlMaxMicroViaOuter" value="20mil"/> +<param name="rlMinMicroViaInner" value="4mil"/> +<param name="rlMaxMicroViaInner" value="20mil"/> +<param name="psTop" value="-1"/> +<param name="psBottom" value="-1"/> +<param name="psFirst" value="-1"/> +<param name="psElongationLong" value="100"/> +<param name="psElongationOffset" value="100"/> +<param name="mvStopFrame" value="1"/> +<param name="mvCreamFrame" value="0"/> +<param name="mlMinStopFrame" value="4mil"/> +<param name="mlMaxStopFrame" value="4mil"/> +<param name="mlMinCreamFrame" value="0mil"/> +<param name="mlMaxCreamFrame" value="0mil"/> +<param name="mlViaStopLimit" value="0mil"/> +<param name="srRoundness" value="0"/> +<param name="srMinRoundness" value="0mil"/> +<param name="srMaxRoundness" value="0mil"/> +<param name="slThermalIsolate" value="10mil"/> +<param name="slThermalsForVias" value="0"/> +<param name="dpMaxLengthDifference" value="10mm"/> +<param name="dpGapFactor" value="2.5"/> +<param name="checkAngle" value="0"/> +<param name="checkFont" value="1"/> +<param name="checkRestrict" value="1"/> +<param name="checkStop" value="0"/> +<param name="checkValues" value="0"/> +<param name="checkNames" value="1"/> +<param name="checkWireStubs" value="1"/> +<param name="checkPolygonWidth" value="0"/> +<param name="useDiameter" value="13"/> +<param name="maxErrors" value="50"/> +</designrules> +<autorouter> +<pass name="Default"> +<param name="RoutingGrid" value="50mil"/> +<param name="AutoGrid" value="1"/> +<param name="Efforts" value="0"/> +<param name="TopRouterVariant" value="1"/> +<param name="tpViaShape" value="round"/> +<param name="PrefDir.1" value="a"/> +<param name="PrefDir.2" value="0"/> +<param name="PrefDir.3" value="0"/> +<param name="PrefDir.4" value="0"/> +<param name="PrefDir.5" value="0"/> +<param name="PrefDir.6" value="0"/> +<param name="PrefDir.7" value="0"/> +<param name="PrefDir.8" value="0"/> +<param name="PrefDir.9" value="0"/> +<param name="PrefDir.10" value="0"/> +<param name="PrefDir.11" value="0"/> +<param name="PrefDir.12" value="0"/> +<param name="PrefDir.13" value="0"/> +<param name="PrefDir.14" value="0"/> +<param name="PrefDir.15" value="0"/> +<param name="PrefDir.16" value="a"/> +<param name="cfVia" value="8"/> +<param name="cfNonPref" value="5"/> +<param name="cfChangeDir" value="2"/> +<param name="cfOrthStep" value="2"/> +<param name="cfDiagStep" value="3"/> +<param name="cfExtdStep" value="0"/> +<param name="cfBonusStep" value="1"/> +<param name="cfMalusStep" value="1"/> +<param name="cfPadImpact" value="4"/> +<param name="cfSmdImpact" value="4"/> +<param name="cfBusImpact" value="0"/> +<param name="cfHugging" value="3"/> +<param name="cfAvoid" value="4"/> +<param name="cfPolygon" value="10"/> +<param name="cfBase.1" value="0"/> +<param name="cfBase.2" value="1"/> +<param name="cfBase.3" value="1"/> +<param name="cfBase.4" value="1"/> +<param name="cfBase.5" value="1"/> +<param name="cfBase.6" value="1"/> +<param name="cfBase.7" value="1"/> +<param name="cfBase.8" value="1"/> +<param name="cfBase.9" value="1"/> +<param name="cfBase.10" value="1"/> +<param name="cfBase.11" value="1"/> +<param name="cfBase.12" value="1"/> +<param name="cfBase.13" value="1"/> +<param name="cfBase.14" value="1"/> +<param name="cfBase.15" value="1"/> +<param name="cfBase.16" value="0"/> +<param name="mnVias" value="20"/> +<param name="mnSegments" value="9999"/> +<param name="mnExtdSteps" value="9999"/> +<param name="mnRipupLevel" value="10"/> +<param name="mnRipupSteps" value="100"/> +<param name="mnRipupTotal" value="100"/> +</pass> +<pass name="Follow-me" refer="Default" active="yes"> +</pass> +<pass name="Busses" refer="Default" active="yes"> +<param name="cfNonPref" value="4"/> +<param name="cfBusImpact" value="4"/> +<param name="cfHugging" value="0"/> +<param name="mnVias" value="0"/> +</pass> +<pass name="Route" refer="Default" active="yes"> +</pass> +<pass name="Optimize1" refer="Default" active="yes"> +<param name="cfVia" value="99"/> +<param name="cfExtdStep" value="10"/> +<param name="cfHugging" value="1"/> +<param name="mnExtdSteps" value="1"/> +<param name="mnRipupLevel" value="0"/> +</pass> +<pass name="Optimize2" refer="Optimize1" active="yes"> +<param name="cfNonPref" value="0"/> +<param name="cfChangeDir" value="6"/> +<param name="cfExtdStep" value="0"/> +<param name="cfBonusStep" value="2"/> +<param name="cfMalusStep" value="2"/> +<param name="cfPadImpact" value="2"/> +<param name="cfSmdImpact" value="2"/> +<param name="cfHugging" value="0"/> +</pass> +<pass name="Optimize3" refer="Optimize2" active="yes"> +<param name="cfChangeDir" value="8"/> +<param name="cfPadImpact" value="0"/> +<param name="cfSmdImpact" value="0"/> +</pass> +<pass name="Optimize4" refer="Optimize3" active="yes"> +<param name="cfChangeDir" value="25"/> +</pass> +</autorouter> +<elements> +<element name="C1" library="passives" package="0805" value="10uF" x="-33.02" y="27.94" smashed="yes"> +<attribute name="NAME" x="-33.782" y="28.7655" size="1.016" layer="25"/> +<attribute name="PACKAGE" value="0805" x="0" y="0" size="1.778" layer="27" display="off"/> +<attribute name="TYPE" value="" x="0" y="0" size="1.778" layer="27" display="off"/> +<attribute name="VALUE" x="-34.036" y="25.908" size="1.016" layer="27"/> +<attribute name="VOLTAGE" value="" x="0" y="0" size="1.778" layer="27" display="off"/> +</element> +<element name="C4" library="passives" package="0805" value="1uF" x="-15.24" y="35.56" smashed="yes"> +<attribute name="NAME" x="-16.002" y="36.3855" size="1.016" layer="25"/> +<attribute name="PACKAGE" value="0805" x="0" y="0" size="1.778" layer="27" display="off"/> +<attribute name="TYPE" value="" x="0" y="0" size="1.778" layer="27" display="off"/> +<attribute name="VALUE" x="-16.256" y="33.528" size="1.016" layer="27"/> +<attribute name="VOLTAGE" value="" x="0" y="0" size="1.778" layer="27" display="off"/> +</element> +<element name="C6" library="passives" package="0805" value="0.1uF" x="-27.94" y="27.94" smashed="yes"> +<attribute name="NAME" x="-28.702" y="28.7655" size="1.016" layer="25"/> +<attribute name="PACKAGE" value="0805" x="0" y="0" size="1.778" layer="27" display="off"/> +<attribute name="TYPE" value="" x="0" y="0" size="1.778" layer="27" display="off"/> +<attribute name="VALUE" x="-28.956" y="25.908" size="1.016" layer="27"/> +<attribute name="VOLTAGE" value="" x="0" y="0" size="1.778" layer="27" display="off"/> +</element> +<element name="C7" library="passives" package="0805" value="1uF" x="-19.05" y="35.56" smashed="yes"> +<attribute name="NAME" x="-19.812" y="36.3855" size="1.016" layer="25"/> +<attribute name="PACKAGE" value="0805" x="0" y="0" size="1.778" layer="27" display="off"/> +<attribute name="TYPE" value="" x="0" y="0" size="1.778" layer="27" display="off"/> +<attribute name="VALUE" x="-20.066" y="33.528" size="1.016" layer="27"/> +<attribute name="VOLTAGE" value="" x="0" y="0" size="1.778" layer="27" display="off"/> +</element> +<element name="J1" library="SparkFun-Connectors" package="2X5-SMD-1.27MM" value="JTAG" x="-30.48" y="19.05" smashed="yes"> +<attribute name="PROD_ID" value="CONN-14503" x="0" y="0" size="1.778" layer="27" display="off"/> +</element> +<element name="R2" library="passives" package="0805" value="10k" x="-22.86" y="35.56" smashed="yes"> +<attribute name="NAME" x="-23.622" y="36.3855" size="1.016" layer="25"/> +<attribute name="PACKAGE" value="0805" x="0" y="0" size="1.778" layer="27" display="off"/> +<attribute name="PRECISION" value="" x="0" y="0" size="1.778" layer="27" display="off"/> +<attribute name="VALUE" x="-23.876" y="33.528" size="1.016" layer="27"/> +</element> +<element name="R3" library="passives" package="0805" value="10k" x="-26.67" y="35.56" smashed="yes"> +<attribute name="NAME" x="-27.432" y="36.3855" size="1.016" layer="25"/> +<attribute name="PACKAGE" value="0805" x="0" y="0" size="1.778" layer="27" display="off"/> +<attribute name="PRECISION" value="" x="0" y="0" size="1.778" layer="27" display="off"/> +<attribute name="VALUE" x="-27.686" y="33.528" size="1.016" layer="27"/> +</element> +<element name="S1" library="passives" package="TACT-SWITCH-KMR6" value="2-8X4-5_SWITCH" x="-31.75" y="34.29" smashed="yes"/> +<element name="U1" library="microcontrollers" package="QFP80P900X900X120-32N" value="ATSAMD21E18A-AF" x="-21.59" y="7.62" smashed="yes"> +<attribute name="AVAILABILITY" value="Warning" x="0" y="0" size="1.778" layer="27" display="off"/> +<attribute name="DESCRIPTION" value=" ARM® Cortex®-M0+ Automotive, AEC-Q100, SAM D21E, Functional Safety (FuSa) Microcontroller IC 32-Bit 48MHz 256KB (256K x 8) FLASH 32-TQFP (7x7) " x="0" y="0" size="1.778" layer="27" display="off"/> +<attribute name="MF" value="Microchip" x="0" y="0" size="1.778" layer="27" display="off"/> +<attribute name="MP" value="ATSAMD21E18A-AF" x="0" y="0" size="1.778" layer="27" display="off"/> +<attribute name="NAME" x="-24.792909375" y="13.42526875" size="0.8135375" layer="25"/> +<attribute name="PACKAGE" value="TQFP-32 Microchip" x="0" y="0" size="1.778" layer="27" display="off"/> +<attribute name="PRICE" value="None" x="0" y="0" size="1.778" layer="27" display="off"/> +<attribute name="PURCHASE-URL" value="https://pricing.snapeda.com/search/part/ATSAMD21E18A-AF/?ref=eda" x="0" y="0" size="1.778" layer="27" display="off"/> +<attribute name="VALUE" x="-24.99625" y="1.408609375" size="0.81429375" layer="27"/> +</element> +<element name="U2" library="power" package="SOT23-5" value="VREG-AP2112" x="-31.75" y="2.54" smashed="yes"> +<attribute name="NAME" x="-33.528" y="0.762" size="1.27" layer="25" ratio="10" rot="R90"/> +<attribute name="VALUE" x="-28.702" y="0.762" size="1.27" layer="27" ratio="10" rot="R90"/> +</element> +<element name="U3" library="microcontrollers" package="QFN-64-9X9MM-SMALLPAD" value="ATSAMD51JQFN64" x="-17.78" y="20.32" smashed="yes"> +<attribute name="NAME" x="-17.78" y="21.59" size="0.6096" layer="25" font="vector" ratio="20" align="bottom-center"/> +<attribute name="VALUE" x="-17.78" y="19.05" size="0.6096" layer="27" font="vector" ratio="20" align="top-center"/> +</element> +<element name="X1" library="connector" package="USB_MICRO_609-4613-1-ND" value="USB" x="-19.05" y="27.94" smashed="yes"> +<attribute name="NAME" x="-23.4425" y="29.07" size="0.6096" layer="25" font="vector" rot="R90"/> +<attribute name="VALUE" x="-14.1225" y="29.1525" size="0.6096" layer="27" font="vector" rot="R90"/> +</element> +<element name="C2" library="passives" package="0805" value="1uF" x="-34.29" y="-2.54" smashed="yes"> +<attribute name="NAME" x="-35.052" y="-1.7145" size="1.016" layer="25"/> +<attribute name="PACKAGE" value="0805" x="-34.29" y="-2.54" size="1.778" layer="27" display="off"/> +<attribute name="TYPE" value="" x="-34.29" y="-2.54" size="1.778" layer="27" display="off"/> +<attribute name="VALUE" x="-35.306" y="-4.572" size="1.016" layer="27"/> +<attribute name="VOLTAGE" value="" x="-34.29" y="-2.54" size="1.778" layer="27" display="off"/> +</element> +</elements> +<signals> +<signal name="GND"> +<contactref element="J1" pad="3"/> +<contactref element="J1" pad="5"/> +<contactref element="J1" pad="9"/> +<contactref element="C6" pad="2"/> +<contactref element="S1" pad="P$1"/> +<contactref element="S1" pad="P$2"/> +<contactref element="U1" pad="10"/> +<contactref element="U1" pad="28"/> +<contactref element="U2" pad="2"/> +<contactref element="C1" pad="2"/> +<contactref element="C7" pad="2"/> +<contactref element="X1" pad="GND"/> +<contactref element="C4" pad="1"/> +<contactref element="C2" pad="1"/> +<wire x1="-31.75" y1="1.234" x2="-35.29" y2="-2.54" width="0" layer="19" extent="1-1"/> +<wire x1="-23.59" y1="3.44" x2="-31.75" y2="1.234" width="0" layer="19" extent="1-1"/> +<wire x1="-21.19" y1="11.8" x2="-23.59" y2="3.44" width="0" layer="19" extent="1-1"/> +<wire x1="-29.21" y1="21" x2="-21.19" y2="11.8" width="0" layer="19" extent="1-1"/> +<wire x1="-30.48" y1="21" x2="-29.21" y2="21" width="0" layer="19" extent="1-1"/> +<wire x1="-33.02" y1="21" x2="-30.48" y2="21" width="0" layer="19" extent="1-1"/> +<wire x1="-32.02" y1="27.94" x2="-33.02" y2="21" width="0" layer="19" extent="1-1"/> +<wire x1="-26.94" y1="27.94" x2="-32.02" y2="27.94" width="0" layer="19" extent="1-1"/> +<wire x1="-33.8" y1="35.09" x2="-32.02" y2="27.94" width="0" layer="19" extent="1-1"/> +<wire x1="-29.7" y1="35.09" x2="-33.8" y2="35.09" width="0" layer="19" extent="1-1"/> +<wire x1="-17.75" y1="30.615" x2="-26.94" y2="27.94" width="0" layer="19" extent="1-1"/> +<wire x1="-18.05" y1="35.56" x2="-17.75" y2="30.615" width="0" layer="19" extent="1-1"/> +<wire x1="-16.24" y1="35.56" x2="-18.05" y2="35.56" width="0" layer="19" extent="1-1"/> +</signal> +<signal name="+3V3"> +<contactref element="J1" pad="1"/> +<contactref element="C6" pad="1"/> +<contactref element="R2" pad="1"/> +<contactref element="R3" pad="1"/> +<contactref element="U2" pad="5"/> +<contactref element="C7" pad="1"/> +<contactref element="C2" pad="2"/> +<contactref element="U1" pad="9"/> +<contactref element="U1" pad="30"/> +<wire x1="-32.7" y1="3.846" x2="-33.29" y2="-2.54" width="0" layer="19" extent="1-1"/> +<wire x1="-24.39" y1="3.44" x2="-32.7" y2="3.846" width="0" layer="19" extent="1-1"/> +<wire x1="-22.79" y1="11.8" x2="-24.39" y2="3.44" width="0" layer="19" extent="1-1"/> +<wire x1="-27.94" y1="21" x2="-22.79" y2="11.8" width="0" layer="19" extent="1-1"/> +<wire x1="-28.94" y1="27.94" x2="-27.94" y2="21" width="0" layer="19" extent="1-1"/> +<wire x1="-27.67" y1="35.56" x2="-28.94" y2="27.94" width="0" layer="19" extent="1-1"/> +<wire x1="-23.86" y1="35.56" x2="-27.67" y2="35.56" width="0" layer="19" extent="1-1"/> +<wire x1="-20.05" y1="35.56" x2="-23.86" y2="35.56" width="0" layer="19" extent="1-1"/> +</signal> +<signal name="N$6"> +<contactref element="J1" pad="10"/> +<contactref element="S1" pad="P$3"/> +<contactref element="S1" pad="P$4"/> +<contactref element="R2" pad="2"/> +<contactref element="U1" pad="26"/> +<wire x1="-19.59" y1="11.8" x2="-33.02" y2="17.1" width="0" layer="19" extent="1-1"/> +<wire x1="-33.8" y1="33.49" x2="-33.02" y2="17.1" width="0" layer="19" extent="1-1"/> +<wire x1="-29.7" y1="33.49" x2="-33.8" y2="33.49" width="0" layer="19" extent="1-1"/> +<wire x1="-21.86" y1="35.56" x2="-29.7" y2="33.49" width="0" layer="19" extent="1-1"/> +</signal> +<signal name="SWDCLK"> +<contactref element="J1" pad="4"/> +<contactref element="R3" pad="2"/> +<contactref element="U1" pad="31"/> +<wire x1="-23.59" y1="11.8" x2="-29.21" y2="17.1" width="0" layer="19" extent="1-1"/> +<wire x1="-25.67" y1="35.56" x2="-29.21" y2="17.1" width="0" layer="19" extent="1-1"/> +</signal> +<signal name="SWDIO"> +<contactref element="J1" pad="2"/> +<contactref element="U1" pad="32"/> +<wire x1="-24.39" y1="11.8" x2="-27.94" y2="17.1" width="0" layer="19" extent="1-1"/> +</signal> +<signal name="USBDP"> +<contactref element="X1" pad="D+"/> +<contactref element="U1" pad="24"/> +<wire x1="-17.41" y1="10.42" x2="-19.05" y2="30.615" width="0" layer="19" extent="1-1"/> +</signal> +<signal name="USBDM"> +<contactref element="X1" pad="D-"/> +<contactref element="U1" pad="23"/> +<wire x1="-17.41" y1="9.62" x2="-19.7" y2="30.615" width="0" layer="19" extent="1-1"/> +</signal> +<signal name="+5V"> +<contactref element="C1" pad="1"/> +<contactref element="U2" pad="1"/> +<contactref element="U2" pad="3"/> +<contactref element="X1" pad="VBUS"/> +<wire x1="-30.8" y1="1.234" x2="-32.7" y2="1.234" width="0" layer="19" extent="1-1"/> +<wire x1="-34.02" y1="27.94" x2="-32.7" y2="1.234" width="0" layer="19" extent="1-1"/> +<wire x1="-20.35" y1="30.615" x2="-34.02" y2="27.94" width="0" layer="19" extent="1-1"/> +</signal> +<signal name="N$1"> +<contactref element="C4" pad="2"/> +<contactref element="U1" pad="29"/> +<wire x1="-21.99" y1="11.8" x2="-14.24" y2="35.56" width="0" layer="19" extent="1-1"/> +</signal> +</signals> +<mfgpreviewcolors> +<mfgpreviewcolor name="soldermaskcolor" color="0xC8008000"/> +<mfgpreviewcolor name="silkscreencolor" color="0xFFFEFEFE"/> +<mfgpreviewcolor name="backgroundcolor" color="0xFF282828"/> +<mfgpreviewcolor name="coppercolor" color="0xFFFFBF00"/> +<mfgpreviewcolor name="substratecolor" color="0xFF786E46"/> +</mfgpreviewcolors> +</board> +</drawing> +</eagle> diff --git a/samd21-example/samd21-barebones/samd21-barebones.brd b/samd21-example/samd21-barebones/samd21-barebones.brd new file mode 100644 index 0000000000000000000000000000000000000000..02b0b10d32997184dbaee56e8c97ed0c90a58eb3 --- /dev/null +++ b/samd21-example/samd21-barebones/samd21-barebones.brd @@ -0,0 +1,735 @@ +<?xml version="1.0" encoding="utf-8"?> +<!DOCTYPE eagle SYSTEM "eagle.dtd"> +<eagle version="9.6.0"> +<drawing> +<settings> +<setting alwaysvectorfont="no"/> +<setting verticaltext="up"/> +</settings> +<grid distance="1" unitdist="mm" unit="mm" style="lines" multiple="1" display="yes" altdistance="5" altunitdist="mil" altunit="mil"/> +<layers> +<layer number="1" name="Top" color="4" fill="1" visible="yes" active="yes"/> +<layer number="2" name="Route2" color="16" fill="1" visible="no" active="no"/> +<layer number="3" name="Route3" color="17" fill="1" visible="no" active="no"/> +<layer number="4" name="Route4" color="18" fill="1" visible="no" active="no"/> +<layer number="5" name="Route5" color="19" fill="1" visible="no" active="no"/> +<layer number="6" name="Route6" color="25" fill="1" visible="no" active="no"/> +<layer number="7" name="Route7" color="26" fill="1" visible="no" active="no"/> +<layer number="8" name="Route8" color="27" fill="1" visible="no" active="no"/> +<layer number="9" name="Route9" color="28" fill="1" visible="no" active="no"/> +<layer number="10" name="Route10" color="29" fill="1" visible="no" active="no"/> +<layer number="11" name="Route11" color="30" fill="1" visible="no" active="no"/> +<layer number="12" name="Route12" color="20" fill="1" visible="no" active="no"/> +<layer number="13" name="Route13" color="21" fill="1" visible="no" active="no"/> +<layer number="14" name="Route14" color="22" fill="1" visible="no" active="no"/> +<layer number="15" name="Route15" color="23" fill="1" visible="no" active="no"/> +<layer number="16" name="Bottom" color="1" fill="1" visible="yes" active="yes"/> +<layer number="17" name="Pads" color="2" fill="1" visible="yes" active="yes"/> +<layer number="18" name="Vias" color="2" fill="1" visible="yes" active="yes"/> +<layer number="19" name="Unrouted" color="6" fill="1" visible="yes" active="yes"/> +<layer number="20" name="Dimension" color="24" fill="1" visible="yes" active="yes"/> +<layer number="21" name="tPlace" color="7" fill="1" visible="yes" active="yes"/> +<layer number="22" name="bPlace" color="7" fill="1" visible="yes" active="yes"/> +<layer number="23" name="tOrigins" color="15" fill="1" visible="yes" active="yes"/> +<layer number="24" name="bOrigins" color="15" fill="1" visible="yes" active="yes"/> +<layer number="25" name="tNames" color="7" fill="1" visible="no" active="yes"/> +<layer number="26" name="bNames" color="7" fill="1" visible="yes" active="yes"/> +<layer number="27" name="tValues" color="7" fill="1" visible="no" active="yes"/> +<layer number="28" name="bValues" color="7" fill="1" visible="yes" active="yes"/> +<layer number="29" name="tStop" color="7" fill="3" visible="no" active="yes"/> +<layer number="30" name="bStop" color="7" fill="6" visible="no" active="yes"/> +<layer number="31" name="tCream" color="7" fill="4" visible="no" active="yes"/> +<layer number="32" name="bCream" color="7" fill="5" visible="no" active="yes"/> +<layer number="33" name="tFinish" color="6" fill="3" visible="no" active="yes"/> +<layer number="34" name="bFinish" color="6" fill="6" visible="no" active="yes"/> +<layer number="35" name="tGlue" color="7" fill="4" visible="no" active="yes"/> +<layer number="36" name="bGlue" color="7" fill="5" visible="no" active="yes"/> +<layer number="37" name="tTest" color="7" fill="1" visible="no" active="yes"/> +<layer number="38" name="bTest" color="7" fill="1" visible="no" active="yes"/> +<layer number="39" name="tKeepout" color="4" fill="11" visible="yes" active="yes"/> +<layer number="40" name="bKeepout" color="1" fill="11" visible="yes" active="yes"/> +<layer number="41" name="tRestrict" color="4" fill="10" visible="yes" active="yes"/> +<layer number="42" name="bRestrict" color="1" fill="10" visible="yes" active="yes"/> +<layer number="43" name="vRestrict" color="2" fill="10" visible="yes" active="yes"/> +<layer number="44" name="Drills" color="7" fill="1" visible="no" active="yes"/> +<layer number="45" name="Holes" color="7" fill="1" visible="no" active="yes"/> +<layer number="46" name="Milling" color="3" fill="1" visible="no" active="yes"/> +<layer number="47" name="Measures" color="7" fill="1" visible="no" active="yes"/> +<layer number="48" name="Document" color="7" fill="1" visible="yes" active="yes"/> +<layer number="49" name="Reference" color="7" fill="1" visible="yes" active="yes"/> +<layer number="50" name="dxf" color="7" fill="1" visible="no" active="no"/> +<layer number="51" name="tDocu" color="7" fill="1" visible="yes" active="yes"/> +<layer number="52" name="bDocu" color="7" fill="1" visible="yes" active="yes"/> +<layer number="53" name="tGND_GNDA" color="7" fill="9" visible="no" active="no"/> +<layer number="54" name="bGND_GNDA" color="1" fill="9" visible="no" active="no"/> +<layer number="56" name="wert" color="7" fill="1" visible="no" active="no"/> +<layer number="57" name="tCAD" color="7" fill="1" visible="no" active="no"/> +<layer number="59" name="tCarbon" color="7" fill="1" visible="no" active="no"/> +<layer number="60" name="bCarbon" color="7" fill="1" visible="no" active="no"/> +<layer number="88" name="SimResults" color="9" fill="1" visible="no" active="no"/> +<layer number="89" name="SimProbes" color="9" fill="1" visible="no" active="no"/> +<layer number="90" name="Modules" color="5" fill="1" visible="no" active="no"/> +<layer number="91" name="Nets" color="2" fill="1" visible="no" active="no"/> +<layer number="92" name="Busses" color="1" fill="1" visible="no" active="no"/> +<layer number="93" name="Pins" color="2" fill="1" visible="no" active="no"/> +<layer number="94" name="Symbols" color="4" fill="1" visible="no" active="no"/> +<layer number="95" name="Names" color="7" fill="1" visible="no" active="no"/> +<layer number="96" name="Values" color="7" fill="1" visible="no" active="no"/> +<layer number="97" name="Info" color="7" fill="1" visible="no" active="no"/> +<layer number="98" name="Guide" color="6" fill="1" visible="no" active="no"/> +<layer number="99" name="SpiceOrder" color="7" fill="1" visible="no" active="no"/> +<layer number="100" name="Muster" color="7" fill="1" visible="no" active="no"/> +<layer number="101" name="Patch_Top" color="12" fill="4" visible="no" active="yes"/> +<layer number="102" name="Vscore" color="7" fill="1" visible="no" active="yes"/> +<layer number="103" name="tMap" color="7" fill="1" visible="no" active="yes"/> +<layer number="104" name="Name" color="7" fill="1" visible="no" active="yes"/> +<layer number="105" name="tPlate" color="7" fill="1" visible="no" active="yes"/> +<layer number="106" name="bPlate" color="7" fill="1" visible="no" active="yes"/> +<layer number="107" name="Crop" color="7" fill="1" visible="no" active="yes"/> +<layer number="108" name="tplace-old" color="10" fill="1" visible="no" active="yes"/> +<layer number="109" name="ref-old" color="11" fill="1" visible="no" active="yes"/> +<layer number="110" name="fp0" color="7" fill="1" visible="no" active="yes"/> +<layer number="111" name="LPC17xx" color="7" fill="1" visible="no" active="yes"/> +<layer number="112" name="tSilk" color="7" fill="1" visible="no" active="yes"/> +<layer number="113" name="IDFDebug" color="7" fill="1" visible="no" active="yes"/> +<layer number="114" name="Badge_Outline" color="7" fill="1" visible="no" active="yes"/> +<layer number="115" name="ReferenceISLANDS" color="7" fill="1" visible="no" active="yes"/> +<layer number="116" name="Patch_BOT" color="9" fill="4" visible="no" active="yes"/> +<layer number="117" name="BACKMAAT1" color="7" fill="1" visible="yes" active="yes"/> +<layer number="118" name="Rect_Pads" color="7" fill="1" visible="no" active="yes"/> +<layer number="119" name="KAP_TEKEN" color="7" fill="1" visible="yes" active="yes"/> +<layer number="120" name="KAP_MAAT1" color="7" fill="1" visible="yes" active="yes"/> +<layer number="121" name="_tsilk" color="7" fill="1" visible="no" active="yes"/> +<layer number="122" name="_bsilk" color="7" fill="1" visible="no" active="yes"/> +<layer number="123" name="tTestmark" color="7" fill="1" visible="no" active="yes"/> +<layer number="124" name="bTestmark" color="7" fill="1" visible="no" active="yes"/> +<layer number="125" name="_tNames" color="7" fill="1" visible="no" active="yes"/> +<layer number="126" name="_bNames" color="7" fill="1" visible="no" active="yes"/> +<layer number="127" name="_tValues" color="7" fill="1" visible="no" active="yes"/> +<layer number="128" name="_bValues" color="7" fill="1" visible="no" active="yes"/> +<layer number="129" name="Mask" color="7" fill="1" visible="no" active="yes"/> +<layer number="130" name="SMDSTROOK" color="7" fill="1" visible="yes" active="yes"/> +<layer number="131" name="tAdjust" color="7" fill="1" visible="no" active="yes"/> +<layer number="132" name="bAdjust" color="7" fill="1" visible="no" active="yes"/> +<layer number="133" name="bottom_silk" color="7" fill="1" visible="yes" active="yes"/> +<layer number="144" name="Drill_legend" color="7" fill="1" visible="no" active="yes"/> +<layer number="150" name="Notes" color="7" fill="1" visible="no" active="yes"/> +<layer number="151" name="HeatSink" color="7" fill="1" visible="no" active="yes"/> +<layer number="152" name="_bDocu" color="7" fill="1" visible="no" active="yes"/> +<layer number="153" name="FabDoc1" color="7" fill="1" visible="no" active="yes"/> +<layer number="154" name="FabDoc2" color="7" fill="1" visible="no" active="yes"/> +<layer number="155" name="FabDoc3" color="7" fill="1" visible="no" active="yes"/> +<layer number="199" name="Contour" color="7" fill="1" visible="no" active="yes"/> +<layer number="200" name="200bmp" color="1" fill="10" visible="no" active="yes"/> +<layer number="201" name="201bmp" color="2" fill="10" visible="no" active="yes"/> +<layer number="202" name="202bmp" color="3" fill="10" visible="no" active="yes"/> +<layer number="203" name="203bmp" color="4" fill="10" visible="no" active="yes"/> +<layer number="204" name="204bmp" color="5" fill="10" visible="no" active="yes"/> +<layer number="205" name="205bmp" color="6" fill="10" visible="no" active="yes"/> +<layer number="206" name="206bmp" color="7" fill="10" visible="no" active="yes"/> +<layer number="207" name="207bmp" color="8" fill="10" visible="no" active="yes"/> +<layer number="208" name="208bmp" color="9" fill="10" visible="no" active="yes"/> +<layer number="209" name="209bmp" color="7" fill="1" visible="no" active="yes"/> +<layer number="210" name="210bmp" color="7" fill="1" visible="no" active="yes"/> +<layer number="211" name="211bmp" color="7" fill="1" visible="no" active="yes"/> +<layer number="212" name="212bmp" color="7" fill="1" visible="no" active="yes"/> +<layer number="213" name="213bmp" color="7" fill="1" visible="no" active="yes"/> +<layer number="214" name="214bmp" color="7" fill="1" visible="no" active="yes"/> +<layer number="215" name="215bmp" color="7" fill="1" visible="no" active="yes"/> +<layer number="216" name="216bmp" color="7" fill="1" visible="no" active="yes"/> +<layer number="217" name="217bmp" color="18" fill="1" visible="no" active="no"/> +<layer number="218" name="218bmp" color="19" fill="1" visible="no" active="no"/> +<layer number="219" name="219bmp" color="20" fill="1" visible="no" active="no"/> +<layer number="220" name="220bmp" color="21" fill="1" visible="no" active="no"/> +<layer number="221" name="221bmp" color="22" fill="1" visible="no" active="no"/> +<layer number="222" name="222bmp" color="23" fill="1" visible="no" active="no"/> +<layer number="223" name="223bmp" color="24" fill="1" visible="no" active="no"/> +<layer number="224" name="224bmp" color="25" fill="1" visible="no" active="no"/> +<layer number="225" name="225bmp" color="7" fill="1" visible="no" active="yes"/> +<layer number="226" name="226bmp" color="7" fill="1" visible="no" active="yes"/> +<layer number="227" name="227bmp" color="7" fill="1" visible="no" active="yes"/> +<layer number="228" name="228bmp" color="7" fill="1" visible="no" active="yes"/> +<layer number="229" name="229bmp" color="7" fill="1" visible="no" active="yes"/> +<layer number="230" name="230bmp" color="7" fill="1" visible="no" active="yes"/> +<layer number="231" name="231bmp" color="7" fill="1" visible="no" active="yes"/> +<layer number="232" name="Eagle3D_PG2" color="7" fill="1" visible="no" active="yes"/> +<layer number="233" name="Eagle3D_PG3" color="7" fill="1" visible="no" active="yes"/> +<layer number="248" name="Housing" color="7" fill="1" visible="no" active="yes"/> +<layer number="249" name="Edge" color="7" fill="1" visible="no" active="yes"/> +<layer number="250" name="Descript" color="3" fill="1" visible="no" active="no"/> +<layer number="251" name="SMDround" color="12" fill="11" visible="no" active="no"/> +<layer number="254" name="cooling" color="7" fill="1" visible="no" active="yes"/> +<layer number="255" name="routoute" color="7" fill="1" visible="no" active="yes"/> +</layers> +<board> +<plain> +<wire x1="0" y1="0" x2="42" y2="0" width="0" layer="20"/> +<wire x1="42" y1="0" x2="42" y2="42" width="0" layer="20"/> +<wire x1="42" y1="42" x2="0" y2="42" width="0" layer="20"/> +<wire x1="0" y1="42" x2="0" y2="0" width="0" layer="20"/> +</plain> +<libraries> +<library name="passives"> +<packages> +<package name="1206"> +<wire x1="-0.965" y1="0.787" x2="0.965" y2="0.787" width="0.1016" layer="51"/> +<wire x1="-0.965" y1="-0.787" x2="0.965" y2="-0.787" width="0.1016" layer="51"/> +<smd name="1" x="-1.4" y="0" dx="1.6" dy="1.8" layer="1"/> +<smd name="2" x="1.4" y="0" dx="1.6" dy="1.8" layer="1"/> +<text x="-1.27" y="1.143" size="1.016" layer="25">>NAME</text> +<text x="-1.397" y="-2.794" size="1.016" layer="27">>VALUE</text> +<rectangle x1="-1.7018" y1="-0.8509" x2="-0.9517" y2="0.8491" layer="51"/> +<rectangle x1="0.9517" y1="-0.8491" x2="1.7018" y2="0.8509" layer="51"/> +<rectangle x1="-0.1999" y1="-0.4001" x2="0.1999" y2="0.4001" layer="35"/> +</package> +<package name="TACT-SWITCH-KMR6"> +<smd name="P$1" x="-2.05" y="0.8" dx="0.9" dy="1" layer="1" rot="R180"/> +<smd name="P$2" x="2.05" y="0.8" dx="0.9" dy="1" layer="1" rot="R180"/> +<smd name="P$3" x="-2.05" y="-0.8" dx="0.9" dy="1" layer="1" rot="R180"/> +<smd name="P$4" x="2.05" y="-0.8" dx="0.9" dy="1" layer="1" rot="R180"/> +<wire x1="-1.4" y1="0.8" x2="0" y2="0.8" width="0.127" layer="51"/> +<wire x1="0" y1="0.8" x2="1.4" y2="0.8" width="0.127" layer="51"/> +<wire x1="-1.4" y1="-0.8" x2="0" y2="-0.8" width="0.127" layer="51"/> +<wire x1="0" y1="-0.8" x2="1.4" y2="-0.8" width="0.127" layer="51"/> +<wire x1="0" y1="0.8" x2="0" y2="0.6" width="0.127" layer="51"/> +<wire x1="0" y1="0.6" x2="0.4" y2="-0.4" width="0.127" layer="51"/> +<wire x1="0" y1="-0.8" x2="0" y2="-0.5" width="0.127" layer="51"/> +<wire x1="-2.1" y1="0.2" x2="-2.1" y2="-0.2" width="0.127" layer="51"/> +<wire x1="2.1" y1="-0.2" x2="2.1" y2="0.2" width="0.127" layer="51"/> +<wire x1="2.1" y1="1.4" x2="2.1" y2="1.5" width="0.127" layer="51"/> +<wire x1="2.1" y1="1.5" x2="1" y2="1.5" width="0.127" layer="51"/> +<wire x1="1.032" y1="1.5" x2="-2.1" y2="1.5" width="0.127" layer="51"/> +<wire x1="-2.1" y1="1.5" x2="-2.1" y2="1.4" width="0.127" layer="51"/> +<wire x1="-2.1" y1="-1.4" x2="-2.1" y2="-1.5" width="0.127" layer="51"/> +<wire x1="-2.1" y1="-1.5" x2="2.1" y2="-1.5" width="0.127" layer="51"/> +<wire x1="2.1" y1="-1.5" x2="2.1" y2="-1.4" width="0.127" layer="51"/> +</package> +</packages> +</library> +<library name="SparkFun-Connectors"> +<description><h3>SparkFun Connectors</h3> +This library contains electrically-functional connectors. +<br> +<br> +We've spent an enormous amount of time creating and checking these footprints and parts, but it is <b> the end user's responsibility</b> to ensure correctness and suitablity for a given componet or application. +<br> +<br>If you enjoy using this library, please buy one of our products at <a href=" www.sparkfun.com">SparkFun.com</a>. +<br> +<br> +<b>Licensing:</b> Creative Commons ShareAlike 4.0 International - https://creativecommons.org/licenses/by-sa/4.0/ +<br> +<br> +You are welcome to use this library for commercial purposes. For attribution, we ask that when you begin to sell your device using our footprint, you email us with a link to the product being sold. We want bragging rights that we helped (in a very small part) to create your 8th world wonder. We would like the opportunity to feature your device on our homepage.</description> +<packages> +<package name="2X5-SMD-1.27MM"> +<description>Shrouded SMD connector for JTAG and SWD applications.</description> +<smd name="6" x="0" y="-1.95" dx="0.76" dy="2.4" layer="1" rot="R180"/> +<smd name="8" x="-1.27" y="-1.95" dx="0.76" dy="2.4" layer="1" rot="R180"/> +<smd name="10" x="-2.54" y="-1.95" dx="0.76" dy="2.4" layer="1" rot="R180"/> +<smd name="4" x="1.27" y="-1.95" dx="0.76" dy="2.4" layer="1" rot="R180"/> +<smd name="2" x="2.54" y="-1.95" dx="0.76" dy="2.4" layer="1" rot="R180"/> +<smd name="1" x="2.54" y="1.95" dx="0.76" dy="2.4" layer="1" rot="R180"/> +<smd name="3" x="1.27" y="1.95" dx="0.76" dy="2.4" layer="1" rot="R180"/> +<smd name="5" x="0" y="1.95" dx="0.76" dy="2.4" layer="1" rot="R180"/> +<smd name="7" x="-1.27" y="1.95" dx="0.76" dy="2.4" layer="1" rot="R180"/> +<smd name="9" x="-2.54" y="1.95" dx="0.76" dy="2.4" layer="1" rot="R180"/> +<rectangle x1="-1.0575" y1="-1.9625" x2="1.0575" y2="-1.5525" layer="51" rot="R270"/> +<wire x1="5.55" y1="-1.7" x2="-5.55" y2="-1.7" width="0.1524" layer="51"/> +<wire x1="-5.55" y1="-1.7" x2="-5.55" y2="1.7" width="0.1524" layer="51"/> +<wire x1="-5.55" y1="1.7" x2="5.55" y2="1.7" width="0.1524" layer="51"/> +<wire x1="5.55" y1="1.7" x2="5.55" y2="-1.7" width="0.1524" layer="51"/> +<rectangle x1="-2.3275" y1="-1.9625" x2="-0.2125" y2="-1.5525" layer="51" rot="R270"/> +<rectangle x1="-3.5975" y1="-1.9625" x2="-1.4825" y2="-1.5525" layer="51" rot="R270"/> +<rectangle x1="0.2125" y1="-1.9625" x2="2.3275" y2="-1.5525" layer="51" rot="R270"/> +<rectangle x1="1.4825" y1="-1.9625" x2="3.5975" y2="-1.5525" layer="51" rot="R270"/> +<rectangle x1="1.4825" y1="1.5525" x2="3.5975" y2="1.9625" layer="51" rot="R90"/> +<rectangle x1="0.2125" y1="1.5525" x2="2.3275" y2="1.9625" layer="51" rot="R90"/> +<rectangle x1="-1.0575" y1="1.5525" x2="1.0575" y2="1.9625" layer="51" rot="R90"/> +<rectangle x1="-2.3275" y1="1.5525" x2="-0.2125" y2="1.9625" layer="51" rot="R90"/> +<rectangle x1="-3.5975" y1="1.5525" x2="-1.4825" y2="1.9625" layer="51" rot="R90"/> +<wire x1="-3.2" y1="2.5" x2="-6.3" y2="2.5" width="0.2032" layer="51"/> +<wire x1="-6.3" y1="2.5" x2="-6.3" y2="-2.5" width="0.2032" layer="51"/> +<wire x1="-6.3" y1="-2.5" x2="-3.2" y2="-2.5" width="0.2032" layer="51"/> +<wire x1="3.2" y1="-2.5" x2="6.3" y2="-2.5" width="0.2032" layer="51"/> +<wire x1="6.3" y1="-2.5" x2="6.3" y2="2.5" width="0.2032" layer="51"/> +<wire x1="6.3" y1="2.5" x2="3.2" y2="2.5" width="0.2032" layer="51"/> +<wire x1="0.6" y1="2.9" x2="0.6" y2="3.4" width="0.2032" layer="21"/> +<wire x1="0.6" y1="3.4" x2="-0.6" y2="3.4" width="0.2032" layer="21"/> +<wire x1="-0.6" y1="3.4" x2="-0.6" y2="2.9" width="0.2032" layer="21"/> +<circle x="3.6" y="3.1" radius="0.1" width="0.2032" layer="21"/> +<wire x1="-3.175" y1="1.905" x2="-3.175" y2="-1.905" width="0.127" layer="51"/> +<wire x1="3.175" y1="1.905" x2="3.175" y2="-1.905" width="0.127" layer="51"/> +</package> +</packages> +</library> +<library name="microcontrollers"> +<packages> +<package name="QFP80P900X900X120-32N"> +<wire x1="-3.55" y1="-3.55" x2="-3.55" y2="3.55" width="0.127" layer="51"/> +<wire x1="-3.55" y1="3.55" x2="3.55" y2="3.55" width="0.127" layer="51"/> +<wire x1="3.55" y1="3.55" x2="3.55" y2="-3.55" width="0.127" layer="51"/> +<wire x1="3.55" y1="-3.55" x2="-3.55" y2="-3.55" width="0.127" layer="51"/> +<wire x1="-3.25" y1="3.55" x2="-3.55" y2="3.55" width="0.127" layer="21"/> +<wire x1="-3.55" y1="3.55" x2="-3.55" y2="3.25" width="0.127" layer="21"/> +<wire x1="3.25" y1="3.55" x2="3.55" y2="3.55" width="0.127" layer="21"/> +<wire x1="3.55" y1="3.55" x2="3.55" y2="3.25" width="0.127" layer="21"/> +<wire x1="-3.55" y1="-3.25" x2="-3.55" y2="-3.55" width="0.127" layer="21"/> +<wire x1="-3.55" y1="-3.55" x2="-3.25" y2="-3.55" width="0.127" layer="21"/> +<wire x1="3.25" y1="-3.55" x2="3.55" y2="-3.55" width="0.127" layer="21"/> +<wire x1="3.55" y1="-3.55" x2="3.55" y2="-3.25" width="0.127" layer="21"/> +<text x="-3.202909375" y="5.80526875" size="0.8135375" layer="25">>NAME</text> +<text x="-3.40625" y="-6.211390625" size="0.81429375" layer="27">>VALUE</text> +<circle x="-5.8" y="2.8" radius="0.1" width="0.2" layer="21"/> +<circle x="-5.8" y="2.8" radius="0.1" width="0.2" layer="51"/> +<smd name="1" x="-4.18" y="2.8" dx="1.6" dy="0.55" layer="1" roundness="25"/> +<smd name="2" x="-4.18" y="2" dx="1.6" dy="0.55" layer="1" roundness="25"/> +<smd name="3" x="-4.18" y="1.2" dx="1.6" dy="0.55" layer="1" roundness="25"/> +<smd name="4" x="-4.18" y="0.4" dx="1.6" dy="0.55" layer="1" roundness="25"/> +<smd name="5" x="-4.18" y="-0.4" dx="1.6" dy="0.55" layer="1" roundness="25"/> +<smd name="6" x="-4.18" y="-1.2" dx="1.6" dy="0.55" layer="1" roundness="25"/> +<smd name="7" x="-4.18" y="-2" dx="1.6" dy="0.55" layer="1" roundness="25"/> +<smd name="8" x="-4.18" y="-2.8" dx="1.6" dy="0.55" layer="1" roundness="25"/> +<smd name="9" x="-2.8" y="-4.18" dx="1.6" dy="0.55" layer="1" roundness="25" rot="R90"/> +<smd name="10" x="-2" y="-4.18" dx="1.6" dy="0.55" layer="1" roundness="25" rot="R90"/> +<smd name="11" x="-1.2" y="-4.18" dx="1.6" dy="0.55" layer="1" roundness="25" rot="R90"/> +<smd name="12" x="-0.4" y="-4.18" dx="1.6" dy="0.55" layer="1" roundness="25" rot="R90"/> +<smd name="13" x="0.4" y="-4.18" dx="1.6" dy="0.55" layer="1" roundness="25" rot="R90"/> +<smd name="14" x="1.2" y="-4.18" dx="1.6" dy="0.55" layer="1" roundness="25" rot="R90"/> +<smd name="15" x="2" y="-4.18" dx="1.6" dy="0.55" layer="1" roundness="25" rot="R90"/> +<smd name="16" x="2.8" y="-4.18" dx="1.6" dy="0.55" layer="1" roundness="25" rot="R90"/> +<smd name="17" x="4.18" y="-2.8" dx="1.6" dy="0.55" layer="1" roundness="25" rot="R180"/> +<smd name="18" x="4.18" y="-2" dx="1.6" dy="0.55" layer="1" roundness="25" rot="R180"/> +<smd name="19" x="4.18" y="-1.2" dx="1.6" dy="0.55" layer="1" roundness="25" rot="R180"/> +<smd name="20" x="4.18" y="-0.4" dx="1.6" dy="0.55" layer="1" roundness="25" rot="R180"/> +<smd name="21" x="4.18" y="0.4" dx="1.6" dy="0.55" layer="1" roundness="25" rot="R180"/> +<smd name="22" x="4.18" y="1.2" dx="1.6" dy="0.55" layer="1" roundness="25" rot="R180"/> +<smd name="23" x="4.18" y="2" dx="1.6" dy="0.55" layer="1" roundness="25" rot="R180"/> +<smd name="24" x="4.18" y="2.8" dx="1.6" dy="0.55" layer="1" roundness="25" rot="R180"/> +<smd name="25" x="2.8" y="4.18" dx="1.6" dy="0.55" layer="1" roundness="25" rot="R270"/> +<smd name="26" x="2" y="4.18" dx="1.6" dy="0.55" layer="1" roundness="25" rot="R270"/> +<smd name="27" x="1.2" y="4.18" dx="1.6" dy="0.55" layer="1" roundness="25" rot="R270"/> +<smd name="28" x="0.4" y="4.18" dx="1.6" dy="0.55" layer="1" roundness="25" rot="R270"/> +<smd name="29" x="-0.4" y="4.18" dx="1.6" dy="0.55" layer="1" roundness="25" rot="R270"/> +<smd name="30" x="-1.2" y="4.18" dx="1.6" dy="0.55" layer="1" roundness="25" rot="R270"/> +<smd name="31" x="-2" y="4.18" dx="1.6" dy="0.55" layer="1" roundness="25" rot="R270"/> +<smd name="32" x="-2.8" y="4.18" dx="1.6" dy="0.55" layer="1" roundness="25" rot="R270"/> +</package> +</packages> +</library> +<library name="power"> +<packages> +<package name="SOT23-5"> +<description><b>Small Outline Transistor</b>, 5 lead</description> +<wire x1="-1.544" y1="0.713" x2="1.544" y2="0.713" width="0.1524" layer="51"/> +<wire x1="1.544" y1="0.713" x2="1.544" y2="-0.712" width="0.1524" layer="51"/> +<wire x1="1.544" y1="-0.712" x2="-1.544" y2="-0.712" width="0.1524" layer="51"/> +<wire x1="-1.544" y1="-0.712" x2="-1.544" y2="0.713" width="0.1524" layer="51"/> +<smd name="5" x="-0.95" y="1.306" dx="0.5334" dy="1.1938" layer="1"/> +<smd name="4" x="0.95" y="1.306" dx="0.5334" dy="1.1938" layer="1"/> +<smd name="1" x="-0.95" y="-1.306" dx="0.5334" dy="1.1938" layer="1"/> +<smd name="2" x="0" y="-1.306" dx="0.5334" dy="1.1938" layer="1"/> +<smd name="3" x="0.95" y="-1.306" dx="0.5334" dy="1.1938" layer="1"/> +<text x="-1.778" y="-1.778" size="1.27" layer="25" ratio="10" rot="R90">>NAME</text> +<text x="3.048" y="-1.778" size="1.27" layer="27" ratio="10" rot="R90">>VALUE</text> +<rectangle x1="-1.1875" y1="0.7126" x2="-0.7125" y2="1.5439" layer="51"/> +<rectangle x1="0.7125" y1="0.7126" x2="1.1875" y2="1.5439" layer="51"/> +<rectangle x1="-1.1875" y1="-1.5437" x2="-0.7125" y2="-0.7124" layer="51"/> +<rectangle x1="-0.2375" y1="-1.5437" x2="0.2375" y2="-0.7124" layer="51"/> +<rectangle x1="0.7125" y1="-1.5437" x2="1.1875" y2="-0.7124" layer="51"/> +<wire x1="-1.5" y1="-1.9" x2="-1.5" y2="-1.2" width="0.127" layer="21"/> +</package> +</packages> +</library> +<library name="connector"> +<packages> +<package name="USB_MICRO_609-4613-1-ND"> +<smd name="HD0" x="-3.8" y="0" dx="1.9" dy="1.8" layer="1"/> +<smd name="HD4" x="-3.1" y="2.55" dx="2.1" dy="1.6" layer="1"/> +<smd name="HD5" x="3.1" y="2.55" dx="2.1" dy="1.6" layer="1"/> +<smd name="D+" x="0" y="2.675" dx="0.4" dy="1.35" layer="1"/> +<smd name="D-" x="-0.65" y="2.675" dx="0.4" dy="1.35" layer="1"/> +<smd name="VBUS" x="-1.3" y="2.675" dx="0.4" dy="1.35" layer="1"/> +<smd name="ID" x="0.65" y="2.675" dx="0.4" dy="1.35" layer="1"/> +<smd name="GND" x="1.3" y="2.675" dx="0.4" dy="1.35" layer="1"/> +<text x="4.9275" y="1.2125" size="0.6096" layer="27" font="vector" rot="R90">>Value</text> +<text x="-4.3925" y="1.13" size="0.6096" layer="25" font="vector" rot="R90">>Name</text> +<smd name="HD1" x="-1.05" y="0" dx="1.9" dy="1.8" layer="1"/> +<smd name="HD2" x="1.05" y="0" dx="1.9" dy="1.8" layer="1"/> +<smd name="HD3" x="3.8" y="0" dx="1.9" dy="1.8" layer="1"/> +<wire x1="-4.7" y1="-1.45" x2="4.7" y2="-1.45" width="0.127" layer="51"/> +<text x="0" y="-1.3" size="0.8128" layer="51" font="vector" align="bottom-center">\\ PCB Edge /</text> +<wire x1="-3.9" y1="3" x2="-3.9" y2="-2.5" width="0.127" layer="51"/> +<wire x1="-3.9" y1="-2.5" x2="3.9" y2="-2.5" width="0.127" layer="51"/> +<wire x1="3.9" y1="-2.5" x2="3.9" y2="3" width="0.127" layer="51"/> +<wire x1="3.9" y1="3" x2="-3.9" y2="3" width="0.127" layer="51"/> +<wire x1="-3.9" y1="1.1" x2="-3.9" y2="1.5" width="0.127" layer="21"/> +<wire x1="3.9" y1="1.1" x2="3.9" y2="1.5" width="0.127" layer="21"/> +<wire x1="1.8" y1="3" x2="1.7" y2="3" width="0.127" layer="21"/> +<wire x1="-1.7" y1="3" x2="-1.8" y2="3" width="0.127" layer="21"/> +<wire x1="4.4" y1="3" x2="4.7" y2="3" width="0.127" layer="21"/> +<wire x1="-4.4" y1="3" x2="-4.7" y2="3" width="0.127" layer="21"/> +<wire x1="-3.9" y1="3.6" x2="-3.9" y2="3.8" width="0.127" layer="21"/> +<wire x1="3.9" y1="3.6" x2="3.9" y2="3.8" width="0.127" layer="21"/> +</package> +</packages> +</library> +</libraries> +<attributes> +</attributes> +<variantdefs> +</variantdefs> +<classes> +<class number="0" name="default" width="0" drill="0"> +</class> +</classes> +<designrules name="default"> +<description language="de"><b>EAGLE Design Rules</b> +<p> +Die Standard-Design-Rules sind so gewählt, dass sie für +die meisten Anwendungen passen. Sollte ihre Platine +besondere Anforderungen haben, treffen Sie die erforderlichen +Einstellungen hier und speichern die Design Rules unter +einem neuen Namen ab.</description> +<description language="en"><b>EAGLE Design Rules</b> +<p> +The default Design Rules have been set to cover +a wide range of applications. Your particular design +may have different requirements, so please make the +necessary adjustments and save your customized +design rules under a new name.</description> +<param name="layerSetup" value="(1*16)"/> +<param name="mtCopper" value="0.035mm 0.035mm 0.035mm 0.035mm 0.035mm 0.035mm 0.035mm 0.035mm 0.035mm 0.035mm 0.035mm 0.035mm 0.035mm 0.035mm 0.035mm 0.035mm"/> +<param name="mtIsolate" value="1.5mm 0.15mm 0.2mm 0.15mm 0.2mm 0.15mm 0.2mm 0.15mm 0.2mm 0.15mm 0.2mm 0.15mm 0.2mm 0.15mm 0.2mm"/> +<param name="mdWireWire" value="6mil"/> +<param name="mdWirePad" value="6mil"/> +<param name="mdWireVia" value="6mil"/> +<param name="mdPadPad" value="6mil"/> +<param name="mdPadVia" value="6mil"/> +<param name="mdViaVia" value="6mil"/> +<param name="mdSmdPad" value="6mil"/> +<param name="mdSmdVia" value="6mil"/> +<param name="mdSmdSmd" value="6mil"/> +<param name="mdViaViaSameLayer" value="6mil"/> +<param name="mnLayersViaInSmd" value="2"/> +<param name="mdCopperDimension" value="40mil"/> +<param name="mdDrill" value="6mil"/> +<param name="mdSmdStop" value="0mil"/> +<param name="msWidth" value="6mil"/> +<param name="msDrill" value="0.35mm"/> +<param name="msMicroVia" value="9.99mm"/> +<param name="msBlindViaRatio" value="0.5"/> +<param name="rvPadTop" value="0.25"/> +<param name="rvPadInner" value="0.25"/> +<param name="rvPadBottom" value="0.25"/> +<param name="rvViaOuter" value="0.25"/> +<param name="rvViaInner" value="0.25"/> +<param name="rvMicroViaOuter" value="0.25"/> +<param name="rvMicroViaInner" value="0.25"/> +<param name="rlMinPadTop" value="10mil"/> +<param name="rlMaxPadTop" value="20mil"/> +<param name="rlMinPadInner" value="10mil"/> +<param name="rlMaxPadInner" value="20mil"/> +<param name="rlMinPadBottom" value="10mil"/> +<param name="rlMaxPadBottom" value="20mil"/> +<param name="rlMinViaOuter" value="8mil"/> +<param name="rlMaxViaOuter" value="20mil"/> +<param name="rlMinViaInner" value="8mil"/> +<param name="rlMaxViaInner" value="20mil"/> +<param name="rlMinMicroViaOuter" value="4mil"/> +<param name="rlMaxMicroViaOuter" value="20mil"/> +<param name="rlMinMicroViaInner" value="4mil"/> +<param name="rlMaxMicroViaInner" value="20mil"/> +<param name="psTop" value="-1"/> +<param name="psBottom" value="-1"/> +<param name="psFirst" value="-1"/> +<param name="psElongationLong" value="100"/> +<param name="psElongationOffset" value="100"/> +<param name="mvStopFrame" value="1"/> +<param name="mvCreamFrame" value="0"/> +<param name="mlMinStopFrame" value="4mil"/> +<param name="mlMaxStopFrame" value="4mil"/> +<param name="mlMinCreamFrame" value="0mil"/> +<param name="mlMaxCreamFrame" value="0mil"/> +<param name="mlViaStopLimit" value="0mil"/> +<param name="srRoundness" value="0"/> +<param name="srMinRoundness" value="0mil"/> +<param name="srMaxRoundness" value="0mil"/> +<param name="slThermalIsolate" value="10mil"/> +<param name="slThermalsForVias" value="0"/> +<param name="dpMaxLengthDifference" value="10mm"/> +<param name="dpGapFactor" value="2.5"/> +<param name="checkAngle" value="0"/> +<param name="checkFont" value="1"/> +<param name="checkRestrict" value="1"/> +<param name="checkStop" value="0"/> +<param name="checkValues" value="0"/> +<param name="checkNames" value="1"/> +<param name="checkWireStubs" value="1"/> +<param name="checkPolygonWidth" value="0"/> +<param name="useDiameter" value="13"/> +<param name="maxErrors" value="50"/> +</designrules> +<autorouter> +<pass name="Default"> +<param name="RoutingGrid" value="50mil"/> +<param name="AutoGrid" value="1"/> +<param name="Efforts" value="0"/> +<param name="TopRouterVariant" value="1"/> +<param name="tpViaShape" value="round"/> +<param name="PrefDir.1" value="a"/> +<param name="PrefDir.2" value="0"/> +<param name="PrefDir.3" value="0"/> +<param name="PrefDir.4" value="0"/> +<param name="PrefDir.5" value="0"/> +<param name="PrefDir.6" value="0"/> +<param name="PrefDir.7" value="0"/> +<param name="PrefDir.8" value="0"/> +<param name="PrefDir.9" value="0"/> +<param name="PrefDir.10" value="0"/> +<param name="PrefDir.11" value="0"/> +<param name="PrefDir.12" value="0"/> +<param name="PrefDir.13" value="0"/> +<param name="PrefDir.14" value="0"/> +<param name="PrefDir.15" value="0"/> +<param name="PrefDir.16" value="a"/> +<param name="cfVia" value="8"/> +<param name="cfNonPref" value="5"/> +<param name="cfChangeDir" value="2"/> +<param name="cfOrthStep" value="2"/> +<param name="cfDiagStep" value="3"/> +<param name="cfExtdStep" value="0"/> +<param name="cfBonusStep" value="1"/> +<param name="cfMalusStep" value="1"/> +<param name="cfPadImpact" value="4"/> +<param name="cfSmdImpact" value="4"/> +<param name="cfBusImpact" value="0"/> +<param name="cfHugging" value="3"/> +<param name="cfAvoid" value="4"/> +<param name="cfPolygon" value="10"/> +<param name="cfBase.1" value="0"/> +<param name="cfBase.2" value="1"/> +<param name="cfBase.3" value="1"/> +<param name="cfBase.4" value="1"/> +<param name="cfBase.5" value="1"/> +<param name="cfBase.6" value="1"/> +<param name="cfBase.7" value="1"/> +<param name="cfBase.8" value="1"/> +<param name="cfBase.9" value="1"/> +<param name="cfBase.10" value="1"/> +<param name="cfBase.11" value="1"/> +<param name="cfBase.12" value="1"/> +<param name="cfBase.13" value="1"/> +<param name="cfBase.14" value="1"/> +<param name="cfBase.15" value="1"/> +<param name="cfBase.16" value="0"/> +<param name="mnVias" value="20"/> +<param name="mnSegments" value="9999"/> +<param name="mnExtdSteps" value="9999"/> +<param name="mnRipupLevel" value="10"/> +<param name="mnRipupSteps" value="100"/> +<param name="mnRipupTotal" value="100"/> +</pass> +<pass name="Follow-me" refer="Default" active="yes"> +</pass> +<pass name="Busses" refer="Default" active="yes"> +<param name="cfNonPref" value="4"/> +<param name="cfBusImpact" value="4"/> +<param name="cfHugging" value="0"/> +<param name="mnVias" value="0"/> +</pass> +<pass name="Route" refer="Default" active="yes"> +</pass> +<pass name="Optimize1" refer="Default" active="yes"> +<param name="cfVia" value="99"/> +<param name="cfExtdStep" value="10"/> +<param name="cfHugging" value="1"/> +<param name="mnExtdSteps" value="1"/> +<param name="mnRipupLevel" value="0"/> +</pass> +<pass name="Optimize2" refer="Optimize1" active="yes"> +<param name="cfNonPref" value="0"/> +<param name="cfChangeDir" value="6"/> +<param name="cfExtdStep" value="0"/> +<param name="cfBonusStep" value="2"/> +<param name="cfMalusStep" value="2"/> +<param name="cfPadImpact" value="2"/> +<param name="cfSmdImpact" value="2"/> +<param name="cfHugging" value="0"/> +</pass> +<pass name="Optimize3" refer="Optimize2" active="yes"> +<param name="cfChangeDir" value="8"/> +<param name="cfPadImpact" value="0"/> +<param name="cfSmdImpact" value="0"/> +</pass> +<pass name="Optimize4" refer="Optimize3" active="yes"> +<param name="cfChangeDir" value="25"/> +</pass> +</autorouter> +<elements> +<element name="C1" library="passives" package="1206" value="10uF" x="39" y="4" smashed="yes" rot="R90"> +<attribute name="NAME" x="38.1745" y="3.238" size="1.016" layer="25" rot="R90"/> +<attribute name="PACKAGE" value="1206" x="66.94" y="37.02" size="1.778" layer="27" rot="R90" display="off"/> +<attribute name="TYPE" value="" x="66.94" y="37.02" size="1.778" layer="27" rot="R90" display="off"/> +<attribute name="VALUE" x="41.032" y="2.984" size="1.016" layer="27" rot="R90"/> +<attribute name="VOLTAGE" value="" x="66.94" y="37.02" size="1.778" layer="27" rot="R90" display="off"/> +</element> +<element name="C4" library="passives" package="1206" value="1uF" x="32" y="18" smashed="yes" rot="R180"> +<attribute name="NAME" x="32.762" y="17.1745" size="1.016" layer="25" rot="R180"/> +<attribute name="PACKAGE" value="1206" x="16.76" y="53.56" size="1.778" layer="27" rot="R180" display="off"/> +<attribute name="TYPE" value="" x="16.76" y="53.56" size="1.778" layer="27" rot="R180" display="off"/> +<attribute name="VALUE" x="33.016" y="20.032" size="1.016" layer="27" rot="R180"/> +<attribute name="VOLTAGE" value="" x="16.76" y="53.56" size="1.778" layer="27" rot="R180" display="off"/> +</element> +<element name="C7" library="passives" package="1206" value="1uF" x="32" y="21" smashed="yes"> +<attribute name="NAME" x="31.238" y="21.8255" size="1.016" layer="25"/> +<attribute name="PACKAGE" value="1206" x="51.05" y="-14.56" size="1.778" layer="27" display="off"/> +<attribute name="TYPE" value="" x="51.05" y="-14.56" size="1.778" layer="27" display="off"/> +<attribute name="VALUE" x="30.984" y="18.968" size="1.016" layer="27"/> +<attribute name="VOLTAGE" value="" x="51.05" y="-14.56" size="1.778" layer="27" display="off"/> +</element> +<element name="J1" library="SparkFun-Connectors" package="2X5-SMD-1.27MM" value="JTAG" x="33" y="28" smashed="yes" rot="R180"> +<attribute name="PROD_ID" value="CONN-14503" x="2.52" y="47.05" size="1.778" layer="27" rot="R180" display="off"/> +</element> +<element name="R2" library="passives" package="1206" value="10k" x="38" y="18" smashed="yes" rot="R180"> +<attribute name="NAME" x="38.762" y="17.1745" size="1.016" layer="25" rot="R180"/> +<attribute name="PACKAGE" value="1206" x="15.14" y="53.56" size="1.778" layer="27" rot="R180" display="off"/> +<attribute name="PRECISION" value="" x="15.14" y="53.56" size="1.778" layer="27" rot="R180" display="off"/> +<attribute name="VALUE" x="39.016" y="20.032" size="1.016" layer="27" rot="R180"/> +</element> +<element name="R3" library="passives" package="1206" value="10k" x="34" y="33" smashed="yes" rot="R180"> +<attribute name="NAME" x="34.762" y="32.1745" size="1.016" layer="25" rot="R180"/> +<attribute name="PACKAGE" value="1206" x="7.33" y="68.56" size="1.778" layer="27" rot="R180" display="off"/> +<attribute name="PRECISION" value="" x="7.33" y="68.56" size="1.778" layer="27" rot="R180" display="off"/> +<attribute name="VALUE" x="35.016" y="35.032" size="1.016" layer="27" rot="R180"/> +</element> +<element name="S1" library="passives" package="TACT-SWITCH-KMR6" value="2-8X4-5_SWITCH" x="38" y="22" smashed="yes"/> +<element name="U1" library="microcontrollers" package="QFP80P900X900X120-32N" value="ATSAMD21E18A-AF" x="30" y="11" smashed="yes"> +<attribute name="AVAILABILITY" value="Warning" x="51.59" y="3.38" size="1.778" layer="27" display="off"/> +<attribute name="DESCRIPTION" value=" ARM® Cortex®-M0+ Automotive, AEC-Q100, SAM D21E, Functional Safety (FuSa) Microcontroller IC 32-Bit 48MHz 256KB (256K x 8) FLASH 32-TQFP (7x7) " x="51.59" y="3.38" size="1.778" layer="27" display="off"/> +<attribute name="MF" value="Microchip" x="51.59" y="3.38" size="1.778" layer="27" display="off"/> +<attribute name="MP" value="ATSAMD21E18A-AF" x="51.59" y="3.38" size="1.778" layer="27" display="off"/> +<attribute name="NAME" x="26.797090625" y="16.80526875" size="0.8135375" layer="25"/> +<attribute name="PACKAGE" value="TQFP-32 Microchip" x="51.59" y="3.38" size="1.778" layer="27" display="off"/> +<attribute name="PRICE" value="None" x="51.59" y="3.38" size="1.778" layer="27" display="off"/> +<attribute name="PURCHASE-URL" value="https://pricing.snapeda.com/search/part/ATSAMD21E18A-AF/?ref=eda" x="51.59" y="3.38" size="1.778" layer="27" display="off"/> +<attribute name="VALUE" x="26.59375" y="4.788609375" size="0.81429375" layer="27"/> +</element> +<element name="U2" library="power" package="SOT23-5" value="VREG-AP2112" x="35" y="3" smashed="yes" rot="R90"> +<attribute name="NAME" x="36.778" y="1.222" size="1.27" layer="25" ratio="10" rot="R180"/> +<attribute name="VALUE" x="36.778" y="6.048" size="1.27" layer="27" ratio="10" rot="R180"/> +</element> +<element name="X1" library="connector" package="USB_MICRO_609-4613-1-ND" value="USB" x="40" y="12" smashed="yes" rot="R90"> +<attribute name="NAME" x="38.87" y="7.6075" size="0.6096" layer="25" font="vector" rot="R180"/> +<attribute name="VALUE" x="38.7875" y="16.9275" size="0.6096" layer="27" font="vector" rot="R180"/> +</element> +<element name="C2" library="passives" package="1206" value="1uF" x="30" y="2" smashed="yes"> +<attribute name="NAME" x="29.238" y="2.8255" size="1.016" layer="25"/> +<attribute name="PACKAGE" value="1206" x="30" y="2" size="1.778" layer="27" display="off"/> +<attribute name="TYPE" value="" x="30" y="2" size="1.778" layer="27" display="off"/> +<attribute name="VALUE" x="28.984" y="-0.032" size="1.016" layer="27"/> +<attribute name="VOLTAGE" value="" x="30" y="2" size="1.778" layer="27" display="off"/> +</element> +</elements> +<signals> +<signal name="GND"> +<contactref element="J1" pad="3"/> +<contactref element="J1" pad="5"/> +<contactref element="J1" pad="9"/> +<contactref element="S1" pad="P$1"/> +<contactref element="S1" pad="P$2"/> +<contactref element="U1" pad="10"/> +<contactref element="U1" pad="28"/> +<contactref element="U2" pad="2"/> +<contactref element="C1" pad="2"/> +<contactref element="C7" pad="2"/> +<contactref element="X1" pad="GND"/> +<contactref element="C4" pad="1"/> +<contactref element="C2" pad="1"/> +<wire x1="35.95" y1="22.8" x2="40.05" y2="22.8" width="0" layer="19" extent="1-1"/> +<wire x1="35.54" y1="26.05" x2="35.95" y2="22.8" width="0" layer="19" extent="1-1"/> +<wire x1="33" y1="26.05" x2="35.54" y2="26.05" width="0" layer="19" extent="1-1"/> +<wire x1="31.73" y1="26.05" x2="33" y2="26.05" width="0" layer="19" extent="1-1"/> +<wire x1="37.325" y1="13.3" x2="35.54" y2="26.05" width="0" layer="19" extent="1-1"/> +<wire x1="30.4" y1="15.18" x2="31.73" y2="26.05" width="0" layer="19" extent="1-1"/> +<wire x1="28" y1="6.82" x2="30.4" y2="15.18" width="0" layer="19" extent="1-1"/> +<wire x1="33.4" y1="18" x2="30.4" y2="15.18" width="0" layer="19" extent="1-1"/> +<wire x1="33.4" y1="21" x2="33.4" y2="18" width="0" layer="19" extent="1-1"/> +<wire x1="39" y1="5.4" x2="33.4" y2="21" width="0" layer="19" extent="1-1"/> +<wire x1="36.306" y1="3" x2="39" y2="5.4" width="0" layer="19" extent="1-1"/> +<wire x1="28.6" y1="2" x2="36.306" y2="3" width="0" layer="19" extent="1-1"/> +</signal> +<signal name="+3V3"> +<contactref element="J1" pad="1"/> +<contactref element="R2" pad="1"/> +<contactref element="R3" pad="1"/> +<contactref element="U2" pad="5"/> +<contactref element="C7" pad="1"/> +<contactref element="C2" pad="2"/> +<contactref element="U1" pad="9"/> +<contactref element="U1" pad="30"/> +<wire x1="28.8" y1="15.18" x2="30.46" y2="26.05" width="0" layer="19" extent="1-1"/> +<wire x1="27.2" y1="6.82" x2="28.8" y2="15.18" width="0" layer="19" extent="1-1"/> +<wire x1="30.6" y1="21" x2="28.8" y2="15.18" width="0" layer="19" extent="1-1"/> +<wire x1="39.4" y1="18" x2="30.6" y2="21" width="0" layer="19" extent="1-1"/> +<wire x1="35.4" y1="33" x2="39.4" y2="18" width="0" layer="19" extent="1-1"/> +<wire x1="33.694" y1="2.05" x2="35.4" y2="33" width="0" layer="19" extent="1-1"/> +<wire x1="31.4" y1="2" x2="33.694" y2="2.05" width="0" layer="19" extent="1-1"/> +</signal> +<signal name="N$6"> +<contactref element="J1" pad="10"/> +<contactref element="S1" pad="P$3"/> +<contactref element="S1" pad="P$4"/> +<contactref element="R2" pad="2"/> +<contactref element="U1" pad="26"/> +<wire x1="35.95" y1="21.2" x2="40.05" y2="21.2" width="0" layer="19" extent="1-1"/> +<wire x1="35.54" y1="29.95" x2="35.95" y2="21.2" width="0" layer="19" extent="1-1"/> +<wire x1="32" y1="15.18" x2="35.54" y2="29.95" width="0" layer="19" extent="1-1"/> +<wire x1="36.6" y1="18" x2="32" y2="15.18" width="0" layer="19" extent="1-1"/> +</signal> +<signal name="SWDCLK"> +<contactref element="J1" pad="4"/> +<contactref element="R3" pad="2"/> +<contactref element="U1" pad="31"/> +<wire x1="28" y1="15.18" x2="31.73" y2="29.95" width="0" layer="19" extent="1-1"/> +<wire x1="32.6" y1="33" x2="28" y2="15.18" width="0" layer="19" extent="1-1"/> +</signal> +<signal name="SWDIO"> +<contactref element="J1" pad="2"/> +<contactref element="U1" pad="32"/> +<wire x1="27.2" y1="15.18" x2="30.46" y2="29.95" width="0" layer="19" extent="1-1"/> +</signal> +<signal name="USBDP"> +<contactref element="X1" pad="D+"/> +<contactref element="U1" pad="24"/> +<wire x1="34.18" y1="13.8" x2="37.325" y2="12" width="0" layer="19" extent="1-1"/> +</signal> +<signal name="USBDM"> +<contactref element="X1" pad="D-"/> +<contactref element="U1" pad="23"/> +<wire x1="34.18" y1="13" x2="37.325" y2="11.35" width="0" layer="19" extent="1-1"/> +</signal> +<signal name="+5V"> +<contactref element="C1" pad="1"/> +<contactref element="U2" pad="1"/> +<contactref element="U2" pad="3"/> +<contactref element="X1" pad="VBUS"/> +<wire x1="36.306" y1="3.95" x2="37.325" y2="10.7" width="0" layer="19" extent="1-1"/> +<wire x1="36.306" y1="2.05" x2="36.306" y2="3.95" width="0" layer="19" extent="1-1"/> +<wire x1="39" y1="2.6" x2="36.306" y2="2.05" width="0" layer="19" extent="1-1"/> +</signal> +<signal name="N$1"> +<contactref element="C4" pad="2"/> +<contactref element="U1" pad="29"/> +<wire x1="29.6" y1="15.18" x2="30.6" y2="18" width="0" layer="19" extent="1-1"/> +</signal> +</signals> +<mfgpreviewcolors> +<mfgpreviewcolor name="soldermaskcolor" color="0xC8008000"/> +<mfgpreviewcolor name="silkscreencolor" color="0xFFFEFEFE"/> +<mfgpreviewcolor name="backgroundcolor" color="0xFF282828"/> +<mfgpreviewcolor name="coppercolor" color="0xFFFFBF00"/> +<mfgpreviewcolor name="substratecolor" color="0xFF786E46"/> +</mfgpreviewcolors> +</board> +</drawing> +</eagle> diff --git a/samd21-example/samd21-barebones/samd21-barebones.s#1 b/samd21-example/samd21-barebones/samd21-barebones.s#1 new file mode 100644 index 0000000000000000000000000000000000000000..1e8b2c2238a59cecd9a5141af518b0fb9efd2f79 --- /dev/null +++ b/samd21-example/samd21-barebones/samd21-barebones.s#1 @@ -0,0 +1,1593 @@ +<?xml version="1.0" encoding="utf-8"?> +<!DOCTYPE eagle SYSTEM "eagle.dtd"> +<eagle version="9.6.0"> +<drawing> +<settings> +<setting alwaysvectorfont="no"/> +<setting verticaltext="up"/> +</settings> +<grid distance="0.1" unitdist="inch" unit="inch" style="lines" multiple="1" display="yes" altdistance="0.01" altunitdist="inch" altunit="inch"/> +<layers> +<layer number="1" name="Top" color="4" fill="1" visible="no" active="no"/> +<layer number="2" name="Route2" color="1" fill="3" visible="no" active="no"/> +<layer number="3" name="Route3" color="4" fill="3" visible="no" active="no"/> +<layer number="4" name="Route4" color="1" fill="4" visible="no" active="no"/> +<layer number="5" name="Route5" color="4" fill="4" visible="no" active="no"/> +<layer number="6" name="Route6" color="1" fill="8" visible="no" active="no"/> +<layer number="7" name="Route7" color="4" fill="8" visible="no" active="no"/> +<layer number="8" name="Route8" color="1" fill="2" visible="no" active="no"/> +<layer number="9" name="Route9" color="4" fill="2" visible="no" active="no"/> +<layer number="10" name="Route10" color="1" fill="7" visible="no" active="no"/> +<layer number="11" name="Route11" color="4" fill="7" visible="no" active="no"/> +<layer number="12" name="Route12" color="1" fill="5" visible="no" active="no"/> +<layer number="13" name="Route13" color="4" fill="5" visible="no" active="no"/> +<layer number="14" name="Route14" color="1" fill="6" visible="no" active="no"/> +<layer number="15" name="Route15" color="4" fill="6" visible="no" active="no"/> +<layer number="16" name="Bottom" color="1" fill="1" visible="no" active="no"/> +<layer number="17" name="Pads" color="2" fill="1" visible="no" active="no"/> +<layer number="18" name="Vias" color="2" fill="1" visible="no" active="no"/> +<layer number="19" name="Unrouted" color="6" fill="1" visible="no" active="no"/> +<layer number="20" name="Dimension" color="24" fill="1" visible="no" active="no"/> +<layer number="21" name="tPlace" color="7" fill="1" visible="no" active="no"/> +<layer number="22" name="bPlace" color="7" fill="1" visible="no" active="no"/> +<layer number="23" name="tOrigins" color="15" fill="1" visible="no" active="no"/> +<layer number="24" name="bOrigins" color="15" fill="1" visible="no" active="no"/> +<layer number="25" name="tNames" color="7" fill="1" visible="no" active="no"/> +<layer number="26" name="bNames" color="7" fill="1" visible="no" active="no"/> +<layer number="27" name="tValues" color="7" fill="1" visible="no" active="no"/> +<layer number="28" name="bValues" color="7" fill="1" visible="no" active="no"/> +<layer number="29" name="tStop" color="7" fill="3" visible="no" active="no"/> +<layer number="30" name="bStop" color="7" fill="6" visible="no" active="no"/> +<layer number="31" name="tCream" color="7" fill="4" visible="no" active="no"/> +<layer number="32" name="bCream" color="7" fill="5" visible="no" active="no"/> +<layer number="33" name="tFinish" color="6" fill="3" visible="no" active="no"/> +<layer number="34" name="bFinish" color="6" fill="6" visible="no" active="no"/> +<layer number="35" name="tGlue" color="7" fill="4" visible="no" active="no"/> +<layer number="36" name="bGlue" color="7" fill="5" visible="no" active="no"/> +<layer number="37" name="tTest" color="7" fill="1" visible="no" active="no"/> +<layer number="38" name="bTest" color="7" fill="1" visible="no" active="no"/> +<layer number="39" name="tKeepout" color="4" fill="11" visible="no" active="no"/> +<layer number="40" name="bKeepout" color="1" fill="11" visible="no" active="no"/> +<layer number="41" name="tRestrict" color="4" fill="10" visible="no" active="no"/> +<layer number="42" name="bRestrict" color="1" fill="10" visible="no" active="no"/> +<layer number="43" name="vRestrict" color="2" fill="10" visible="no" active="no"/> +<layer number="44" name="Drills" color="7" fill="1" visible="no" active="no"/> +<layer number="45" name="Holes" color="7" fill="1" visible="no" active="no"/> +<layer number="46" name="Milling" color="3" fill="1" visible="no" active="no"/> +<layer number="47" name="Measures" color="7" fill="1" visible="no" active="no"/> +<layer number="48" name="Document" color="7" fill="1" visible="no" active="no"/> +<layer number="49" name="Reference" color="7" fill="1" visible="no" active="no"/> +<layer number="50" name="dxf" color="7" fill="1" visible="no" active="no"/> +<layer number="51" name="tDocu" color="7" fill="1" visible="no" active="no"/> +<layer number="52" name="bDocu" color="7" fill="1" visible="no" active="no"/> +<layer number="53" name="tGND_GNDA" color="7" fill="9" visible="no" active="no"/> +<layer number="54" name="bGND_GNDA" color="1" fill="9" visible="no" active="no"/> +<layer number="56" name="wert" color="7" fill="1" visible="no" active="no"/> +<layer number="57" name="tCAD" color="7" fill="1" visible="no" active="no"/> +<layer number="59" name="tCarbon" color="7" fill="1" visible="no" active="no"/> +<layer number="60" name="bCarbon" color="7" fill="1" visible="no" active="no"/> +<layer number="88" name="SimResults" color="9" fill="1" visible="yes" active="yes"/> +<layer number="89" name="SimProbes" color="9" fill="1" visible="yes" active="yes"/> +<layer number="90" name="Modules" color="5" fill="1" visible="yes" active="yes"/> +<layer number="91" name="Nets" color="2" fill="1" visible="yes" active="yes"/> +<layer number="92" name="Busses" color="1" fill="1" visible="yes" active="yes"/> +<layer number="93" name="Pins" color="2" fill="1" visible="no" active="yes"/> +<layer number="94" name="Symbols" color="4" fill="1" visible="yes" active="yes"/> +<layer number="95" name="Names" color="7" fill="1" visible="yes" active="yes"/> +<layer number="96" name="Values" color="7" fill="1" visible="yes" active="yes"/> +<layer number="97" name="Info" color="7" fill="1" visible="yes" active="yes"/> +<layer number="98" name="Guide" color="6" fill="1" visible="yes" active="yes"/> +<layer number="99" name="SpiceOrder" color="7" fill="1" visible="yes" active="yes"/> +<layer number="100" name="Muster" color="7" fill="1" visible="no" active="no"/> +<layer number="101" name="Patch_Top" color="12" fill="4" visible="no" active="yes"/> +<layer number="102" name="Vscore" color="7" fill="1" visible="no" active="yes"/> +<layer number="103" name="tMap" color="7" fill="1" visible="no" active="yes"/> +<layer number="104" name="Name" color="7" fill="1" visible="no" active="yes"/> +<layer number="105" name="tPlate" color="7" fill="1" visible="no" active="yes"/> +<layer number="106" name="bPlate" color="7" fill="1" visible="no" active="yes"/> +<layer number="107" name="Crop" color="7" fill="1" visible="no" active="yes"/> +<layer number="108" name="tplace-old" color="10" fill="1" visible="no" active="yes"/> +<layer number="109" name="ref-old" color="11" fill="1" visible="no" active="yes"/> +<layer number="110" name="fp0" color="7" fill="1" visible="no" active="yes"/> +<layer number="111" name="LPC17xx" color="7" fill="1" visible="no" active="yes"/> +<layer number="112" name="tSilk" color="7" fill="1" visible="no" active="yes"/> +<layer number="113" name="IDFDebug" color="7" fill="1" visible="no" active="yes"/> +<layer number="114" name="Badge_Outline" color="7" fill="1" visible="no" active="yes"/> +<layer number="115" name="ReferenceISLANDS" color="7" fill="1" visible="no" active="yes"/> +<layer number="116" name="Patch_BOT" color="9" fill="4" visible="no" active="yes"/> +<layer number="117" name="BACKMAAT1" color="7" fill="1" visible="yes" active="yes"/> +<layer number="118" name="Rect_Pads" color="7" fill="1" visible="no" active="yes"/> +<layer number="119" name="KAP_TEKEN" color="7" fill="1" visible="yes" active="yes"/> +<layer number="120" name="KAP_MAAT1" color="7" fill="1" visible="yes" active="yes"/> +<layer number="121" name="_tsilk" color="7" fill="1" visible="no" active="yes"/> +<layer number="122" name="_bsilk" color="7" fill="1" visible="no" active="yes"/> +<layer number="123" name="tTestmark" color="7" fill="1" visible="no" active="yes"/> +<layer number="124" name="bTestmark" color="7" fill="1" visible="no" active="yes"/> +<layer number="125" name="_tNames" color="7" fill="1" visible="no" active="yes"/> +<layer number="126" name="_bNames" color="7" fill="1" visible="no" active="yes"/> +<layer number="127" name="_tValues" color="7" fill="1" visible="no" active="yes"/> +<layer number="128" name="_bValues" color="7" fill="1" visible="no" active="yes"/> +<layer number="129" name="Mask" color="7" fill="1" visible="no" active="yes"/> +<layer number="130" name="SMDSTROOK" color="7" fill="1" visible="yes" active="yes"/> +<layer number="131" name="tAdjust" color="7" fill="1" visible="no" active="yes"/> +<layer number="132" name="bAdjust" color="7" fill="1" visible="no" active="yes"/> +<layer number="133" name="bottom_silk" color="7" fill="1" visible="yes" active="yes"/> +<layer number="144" name="Drill_legend" color="7" fill="1" visible="no" active="yes"/> +<layer number="150" name="Notes" color="7" fill="1" visible="no" active="yes"/> +<layer number="151" name="HeatSink" color="7" fill="1" visible="no" active="yes"/> +<layer number="152" name="_bDocu" color="7" fill="1" visible="no" active="yes"/> +<layer number="153" name="FabDoc1" color="7" fill="1" visible="no" active="yes"/> +<layer number="154" name="FabDoc2" color="7" fill="1" visible="no" active="yes"/> +<layer number="155" name="FabDoc3" color="7" fill="1" visible="no" active="yes"/> +<layer number="199" name="Contour" color="7" fill="1" visible="no" active="yes"/> +<layer number="200" name="200bmp" color="1" fill="10" visible="no" active="yes"/> +<layer number="201" name="201bmp" color="2" fill="10" visible="no" active="yes"/> +<layer number="202" name="202bmp" color="3" fill="10" visible="no" active="yes"/> +<layer number="203" name="203bmp" color="4" fill="10" visible="no" active="yes"/> +<layer number="204" name="204bmp" color="5" fill="10" visible="no" active="yes"/> +<layer number="205" name="205bmp" color="6" fill="10" visible="no" active="yes"/> +<layer number="206" name="206bmp" color="7" fill="10" visible="no" active="yes"/> +<layer number="207" name="207bmp" color="8" fill="10" visible="no" active="yes"/> +<layer number="208" name="208bmp" color="9" fill="10" visible="no" active="yes"/> +<layer number="209" name="209bmp" color="7" fill="1" visible="no" active="yes"/> +<layer number="210" name="210bmp" color="7" fill="1" visible="no" active="yes"/> +<layer number="211" name="211bmp" color="7" fill="1" visible="no" active="yes"/> +<layer number="212" name="212bmp" color="7" fill="1" visible="no" active="yes"/> +<layer number="213" name="213bmp" color="7" fill="1" visible="no" active="yes"/> +<layer number="214" name="214bmp" color="7" fill="1" visible="no" active="yes"/> +<layer number="215" name="215bmp" color="7" fill="1" visible="no" active="yes"/> +<layer number="216" name="216bmp" color="7" fill="1" visible="no" active="yes"/> +<layer number="217" name="217bmp" color="18" fill="1" visible="no" active="no"/> +<layer number="218" name="218bmp" color="19" fill="1" visible="no" active="no"/> +<layer number="219" name="219bmp" color="20" fill="1" visible="no" active="no"/> +<layer number="220" name="220bmp" color="21" fill="1" visible="no" active="no"/> +<layer number="221" name="221bmp" color="22" fill="1" visible="no" active="no"/> +<layer number="222" name="222bmp" color="23" fill="1" visible="no" active="no"/> +<layer number="223" name="223bmp" color="24" fill="1" visible="no" active="no"/> +<layer number="224" name="224bmp" color="25" fill="1" visible="no" active="no"/> +<layer number="225" name="225bmp" color="7" fill="1" visible="no" active="yes"/> +<layer number="226" name="226bmp" color="7" fill="1" visible="no" active="yes"/> +<layer number="227" name="227bmp" color="7" fill="1" visible="no" active="yes"/> +<layer number="228" name="228bmp" color="7" fill="1" visible="no" active="yes"/> +<layer number="229" name="229bmp" color="7" fill="1" visible="no" active="yes"/> +<layer number="230" name="230bmp" color="7" fill="1" visible="no" active="yes"/> +<layer number="231" name="231bmp" color="7" fill="1" visible="no" active="yes"/> +<layer number="232" name="Eagle3D_PG2" color="7" fill="1" visible="no" active="yes"/> +<layer number="233" name="Eagle3D_PG3" color="7" fill="1" visible="no" active="yes"/> +<layer number="248" name="Housing" color="7" fill="1" visible="no" active="yes"/> +<layer number="249" name="Edge" color="7" fill="1" visible="no" active="yes"/> +<layer number="250" name="Descript" color="3" fill="1" visible="no" active="no"/> +<layer number="251" name="SMDround" color="12" fill="11" visible="no" active="no"/> +<layer number="254" name="cooling" color="7" fill="1" visible="no" active="yes"/> +<layer number="255" name="routoute" color="7" fill="1" visible="no" active="yes"/> +</layers> +<schematic xreflabel="%F%N/%S.%C%R" xrefpart="/%S.%C%R"> +<libraries> +<library name="SparkFun-Connectors"> +<description><h3>SparkFun Connectors</h3> +This library contains electrically-functional connectors. +<br> +<br> +We've spent an enormous amount of time creating and checking these footprints and parts, but it is <b> the end user's responsibility</b> to ensure correctness and suitablity for a given componet or application. +<br> +<br>If you enjoy using this library, please buy one of our products at <a href=" www.sparkfun.com">SparkFun.com</a>. +<br> +<br> +<b>Licensing:</b> Creative Commons ShareAlike 4.0 International - https://creativecommons.org/licenses/by-sa/4.0/ +<br> +<br> +You are welcome to use this library for commercial purposes. For attribution, we ask that when you begin to sell your device using our footprint, you email us with a link to the product being sold. We want bragging rights that we helped (in a very small part) to create your 8th world wonder. We would like the opportunity to feature your device on our homepage.</description> +<packages> +<package name="2X5-PTH-1.27MM-NO_SILK"> +<description><h3>Plated Through Hole - 2x5 ARM Cortex Debug Connector (10-pin)</h3> +<p>tDoc (51) layer border represents maximum dimensions of plastic housing.</p> +<p>Specifications: +<ul><li>Pin count:10</li> +<li>Pin pitch:1.27mm</li> +</ul></p> +<p><a href=”http://portal.fciconnect.com/Comergent//fci/drawing/20021111.pdf”>Datasheet referenced for footprint</a></p> +<p>Example device(s): +<ul><li>CONN_05x2</li> +</ul></p></description> +<pad name="8" x="1.27" y="0.762" drill="0.508" diameter="1"/> +<pad name="6" x="0" y="0.762" drill="0.508" diameter="1"/> +<pad name="4" x="-1.27" y="0.762" drill="0.508" diameter="1"/> +<pad name="2" x="-2.54" y="0.762" drill="0.508" diameter="1"/> +<pad name="10" x="2.54" y="0.762" drill="0.508" diameter="1"/> +<pad name="7" x="1.27" y="-0.762" drill="0.508" diameter="1"/> +<pad name="5" x="0" y="-0.762" drill="0.508" diameter="1"/> +<pad name="3" x="-1.27" y="-0.762" drill="0.508" diameter="1"/> +<pad name="1" x="-2.54" y="-0.762" drill="0.508" diameter="1"/> +<pad name="9" x="2.54" y="-0.762" drill="0.508" diameter="1"/> +<wire x1="-3.403" y1="-1.021" x2="-3.403" y2="-0.259" width="0.254" layer="21"/> +<wire x1="3.175" y1="1.715" x2="-3.175" y2="1.715" width="0.127" layer="51"/> +<wire x1="-3.175" y1="1.715" x2="-3.175" y2="-1.715" width="0.127" layer="51"/> +<wire x1="-3.175" y1="-1.715" x2="3.175" y2="-1.715" width="0.127" layer="51"/> +<wire x1="3.175" y1="-1.715" x2="3.175" y2="1.715" width="0.127" layer="51"/> +<text x="-1.5748" y="1.9304" size="0.6096" layer="25" font="vector" ratio="20">>NAME</text> +<text x="-1.8288" y="-2.4638" size="0.6096" layer="27" font="vector" ratio="20">>VALUE</text> +<wire x1="-0.635" y1="-1.905" x2="0.635" y2="-1.905" width="0.254" layer="21"/> +<wire x1="5.2" y1="1.6" x2="-5.2" y2="1.6" width="0.127" layer="51"/> +<wire x1="-5.2" y1="1.6" x2="-5.2" y2="-1.6" width="0.127" layer="51"/> +<wire x1="-5.2" y1="-1.6" x2="5.2" y2="-1.6" width="0.127" layer="51"/> +<wire x1="5.2" y1="-1.6" x2="5.2" y2="1.6" width="0.127" layer="51"/> +</package> +<package name="2X5-PTH-1.27MM"> +<description><h3>Plated Through Hole - 2x5 ARM Cortex Debug Connector (10-pin)</h3> +<p>tDoc (51) layer border represents maximum dimensions of plastic housing.</p> +<p>Specifications: +<ul><li>Pin count:10</li> +<li>Pin pitch:1.27mm</li> +</ul></p> +<p><a href=”http://portal.fciconnect.com/Comergent//fci/drawing/20021111.pdf”>Datasheet referenced for footprint</a></p> +<p>Example device(s): +<ul><li>CONN_05x2</li> +</ul></p></description> +<pad name="8" x="1.27" y="0.635" drill="0.508" diameter="1"/> +<pad name="6" x="0" y="0.635" drill="0.508" diameter="1"/> +<pad name="4" x="-1.27" y="0.635" drill="0.508" diameter="1"/> +<pad name="2" x="-2.54" y="0.635" drill="0.508" diameter="1"/> +<pad name="10" x="2.54" y="0.635" drill="0.508" diameter="1"/> +<pad name="7" x="1.27" y="-0.635" drill="0.508" diameter="1"/> +<pad name="5" x="0" y="-0.635" drill="0.508" diameter="1"/> +<pad name="3" x="-1.27" y="-0.635" drill="0.508" diameter="1"/> +<pad name="1" x="-2.54" y="-0.635" drill="0.508" diameter="1"/> +<pad name="9" x="2.54" y="-0.635" drill="0.508" diameter="1"/> +<wire x1="-3.403" y1="-1.021" x2="-3.403" y2="-0.259" width="0.254" layer="21"/> +<wire x1="3.175" y1="1.715" x2="-3.175" y2="1.715" width="0.127" layer="21"/> +<wire x1="-3.175" y1="1.715" x2="-3.175" y2="-1.715" width="0.127" layer="21"/> +<wire x1="-3.175" y1="-1.715" x2="3.175" y2="-1.715" width="0.127" layer="21"/> +<wire x1="3.175" y1="-1.715" x2="3.175" y2="1.715" width="0.127" layer="21"/> +<text x="-1.5748" y="1.9304" size="0.6096" layer="25" font="vector" ratio="20">>NAME</text> +<text x="-1.8288" y="-2.4638" size="0.6096" layer="27" font="vector" ratio="20">>VALUE</text> +</package> +<package name="2X5-SMD-1.27MM"> +<description>Shrouded SMD connector for JTAG and SWD applications.</description> +<smd name="6" x="0" y="-1.95" dx="0.76" dy="2.4" layer="1" rot="R180"/> +<smd name="8" x="-1.27" y="-1.95" dx="0.76" dy="2.4" layer="1" rot="R180"/> +<smd name="10" x="-2.54" y="-1.95" dx="0.76" dy="2.4" layer="1" rot="R180"/> +<smd name="4" x="1.27" y="-1.95" dx="0.76" dy="2.4" layer="1" rot="R180"/> +<smd name="2" x="2.54" y="-1.95" dx="0.76" dy="2.4" layer="1" rot="R180"/> +<smd name="1" x="2.54" y="1.95" dx="0.76" dy="2.4" layer="1" rot="R180"/> +<smd name="3" x="1.27" y="1.95" dx="0.76" dy="2.4" layer="1" rot="R180"/> +<smd name="5" x="0" y="1.95" dx="0.76" dy="2.4" layer="1" rot="R180"/> +<smd name="7" x="-1.27" y="1.95" dx="0.76" dy="2.4" layer="1" rot="R180"/> +<smd name="9" x="-2.54" y="1.95" dx="0.76" dy="2.4" layer="1" rot="R180"/> +<rectangle x1="-1.0575" y1="-1.9625" x2="1.0575" y2="-1.5525" layer="51" rot="R270"/> +<wire x1="5.55" y1="-1.7" x2="-5.55" y2="-1.7" width="0.1524" layer="51"/> +<wire x1="-5.55" y1="-1.7" x2="-5.55" y2="1.7" width="0.1524" layer="51"/> +<wire x1="-5.55" y1="1.7" x2="5.55" y2="1.7" width="0.1524" layer="51"/> +<wire x1="5.55" y1="1.7" x2="5.55" y2="-1.7" width="0.1524" layer="51"/> +<rectangle x1="-2.3275" y1="-1.9625" x2="-0.2125" y2="-1.5525" layer="51" rot="R270"/> +<rectangle x1="-3.5975" y1="-1.9625" x2="-1.4825" y2="-1.5525" layer="51" rot="R270"/> +<rectangle x1="0.2125" y1="-1.9625" x2="2.3275" y2="-1.5525" layer="51" rot="R270"/> +<rectangle x1="1.4825" y1="-1.9625" x2="3.5975" y2="-1.5525" layer="51" rot="R270"/> +<rectangle x1="1.4825" y1="1.5525" x2="3.5975" y2="1.9625" layer="51" rot="R90"/> +<rectangle x1="0.2125" y1="1.5525" x2="2.3275" y2="1.9625" layer="51" rot="R90"/> +<rectangle x1="-1.0575" y1="1.5525" x2="1.0575" y2="1.9625" layer="51" rot="R90"/> +<rectangle x1="-2.3275" y1="1.5525" x2="-0.2125" y2="1.9625" layer="51" rot="R90"/> +<rectangle x1="-3.5975" y1="1.5525" x2="-1.4825" y2="1.9625" layer="51" rot="R90"/> +<wire x1="-3.2" y1="2.5" x2="-6.3" y2="2.5" width="0.2032" layer="51"/> +<wire x1="-6.3" y1="2.5" x2="-6.3" y2="-2.5" width="0.2032" layer="51"/> +<wire x1="-6.3" y1="-2.5" x2="-3.2" y2="-2.5" width="0.2032" layer="51"/> +<wire x1="3.2" y1="-2.5" x2="6.3" y2="-2.5" width="0.2032" layer="51"/> +<wire x1="6.3" y1="-2.5" x2="6.3" y2="2.5" width="0.2032" layer="51"/> +<wire x1="6.3" y1="2.5" x2="3.2" y2="2.5" width="0.2032" layer="51"/> +<wire x1="0.6" y1="2.9" x2="0.6" y2="3.4" width="0.2032" layer="21"/> +<wire x1="0.6" y1="3.4" x2="-0.6" y2="3.4" width="0.2032" layer="21"/> +<wire x1="-0.6" y1="3.4" x2="-0.6" y2="2.9" width="0.2032" layer="21"/> +<circle x="3.6" y="3.1" radius="0.1" width="0.2032" layer="21"/> +<wire x1="-3.175" y1="1.905" x2="-3.175" y2="-1.905" width="0.127" layer="51"/> +<wire x1="3.175" y1="1.905" x2="3.175" y2="-1.905" width="0.127" layer="51"/> +</package> +</packages> +<symbols> +<symbol name="CORTEX_DEBUG"> +<description><h3>Cortex Debug Connector</h3> +<p><a href="http://infocenter.arm.com/help/topic/com.arm.doc.faqs/attached/13634/cortex_debug_connectors.pdf">Datasheet</a></p></description> +<pin name="VCC" x="-15.24" y="5.08" length="short"/> +<pin name="GND@3" x="-15.24" y="2.54" length="short"/> +<pin name="GND@5" x="-15.24" y="0" length="short"/> +<pin name="KEY" x="-15.24" y="-2.54" length="short"/> +<pin name="GNDDTCT" x="-15.24" y="-5.08" length="short"/> +<pin name="!RESET" x="15.24" y="-5.08" length="short" rot="R180"/> +<pin name="NC/TDI" x="15.24" y="-2.54" length="short" rot="R180"/> +<pin name="SWO/TDO" x="15.24" y="0" length="short" rot="R180"/> +<pin name="SWDCLK/TCK" x="15.24" y="2.54" length="short" rot="R180"/> +<pin name="SWDIO/TMS" x="15.24" y="5.08" length="short" rot="R180"/> +<wire x1="-12.7" y1="-7.62" x2="-12.7" y2="7.62" width="0.254" layer="94"/> +<wire x1="-12.7" y1="7.62" x2="12.7" y2="7.62" width="0.254" layer="94"/> +<wire x1="12.7" y1="7.62" x2="12.7" y2="-7.62" width="0.254" layer="94"/> +<wire x1="12.7" y1="-7.62" x2="-12.7" y2="-7.62" width="0.254" layer="94"/> +<text x="-12.7" y="7.874" size="1.778" layer="95" font="vector">>Name</text> +<text x="-12.7" y="-9.906" size="1.778" layer="96" font="vector">>Value</text> +</symbol> +</symbols> +<devicesets> +<deviceset name="CORTEX_JTAG_DEBUG" prefix="J"> +<description><h3>Cortex Debug Connector - 10 pin</h3> +<p>Supports JTAG debug, Serial Wire debug, and Serial Wire Viewer. +PTH and SMD connector options available.</p> +<p> <ul><a href=”http://infocenter.arm.com/help/topic/com.arm.doc.faqs/attached/13634/cortex_debug_connectors.pdf”>General Connector Information</a> +<p><b> Products:</b> +<ul><li><a href=”http://www.digikey.com/product-detail/en/cnc-tech/3220-10-0100-00/1175-1627-ND/3883661”>PTH Connector</a> -via Digi-Key</li> +<li><a href=”https://www.sparkfun.com/products/13229”>SparkFun PSoc</a></li> +<li><a href=”https://www.sparkfun.com/products/13810”>SparkFun T</a></li> +</ul></p></description> +<gates> +<gate name="J1" symbol="CORTEX_DEBUG" x="0" y="0"/> +</gates> +<devices> +<device name="_PTH_NS" package="2X5-PTH-1.27MM-NO_SILK"> +<connects> +<connect gate="J1" pin="!RESET" pad="10"/> +<connect gate="J1" pin="GND@3" pad="3"/> +<connect gate="J1" pin="GND@5" pad="5"/> +<connect gate="J1" pin="GNDDTCT" pad="9"/> +<connect gate="J1" pin="KEY" pad="7"/> +<connect gate="J1" pin="NC/TDI" pad="8"/> +<connect gate="J1" pin="SWDCLK/TCK" pad="4"/> +<connect gate="J1" pin="SWDIO/TMS" pad="2"/> +<connect gate="J1" pin="SWO/TDO" pad="6"/> +<connect gate="J1" pin="VCC" pad="1"/> +</connects> +<technologies> +<technology name=""/> +</technologies> +</device> +<device name="_PTH" package="2X5-PTH-1.27MM"> +<connects> +<connect gate="J1" pin="!RESET" pad="10"/> +<connect gate="J1" pin="GND@3" pad="3"/> +<connect gate="J1" pin="GND@5" pad="5"/> +<connect gate="J1" pin="GNDDTCT" pad="9"/> +<connect gate="J1" pin="KEY" pad="7"/> +<connect gate="J1" pin="NC/TDI" pad="8"/> +<connect gate="J1" pin="SWDCLK/TCK" pad="4"/> +<connect gate="J1" pin="SWDIO/TMS" pad="2"/> +<connect gate="J1" pin="SWO/TDO" pad="6"/> +<connect gate="J1" pin="VCC" pad="1"/> +</connects> +<technologies> +<technology name=""/> +</technologies> +</device> +<device name="_SMD" package="2X5-SMD-1.27MM"> +<connects> +<connect gate="J1" pin="!RESET" pad="10"/> +<connect gate="J1" pin="GND@3" pad="3"/> +<connect gate="J1" pin="GND@5" pad="5"/> +<connect gate="J1" pin="GNDDTCT" pad="9"/> +<connect gate="J1" pin="KEY" pad="7"/> +<connect gate="J1" pin="NC/TDI" pad="8"/> +<connect gate="J1" pin="SWDCLK/TCK" pad="4"/> +<connect gate="J1" pin="SWDIO/TMS" pad="2"/> +<connect gate="J1" pin="SWO/TDO" pad="6"/> +<connect gate="J1" pin="VCC" pad="1"/> +</connects> +<technologies> +<technology name=""> +<attribute name="PROD_ID" value="CONN-14503" constant="no"/> +<attribute name="VALUE" value="JTAG" constant="no"/> +</technology> +</technologies> +</device> +</devices> +</deviceset> +</devicesets> +</library> +<library name="passives"> +<packages> +<package name="TACT-SWITCH-KMR6"> +<smd name="P$1" x="-2.05" y="0.8" dx="0.9" dy="1" layer="1" rot="R180"/> +<smd name="P$2" x="2.05" y="0.8" dx="0.9" dy="1" layer="1" rot="R180"/> +<smd name="P$3" x="-2.05" y="-0.8" dx="0.9" dy="1" layer="1" rot="R180"/> +<smd name="P$4" x="2.05" y="-0.8" dx="0.9" dy="1" layer="1" rot="R180"/> +<wire x1="-1.4" y1="0.8" x2="0" y2="0.8" width="0.127" layer="51"/> +<wire x1="0" y1="0.8" x2="1.4" y2="0.8" width="0.127" layer="51"/> +<wire x1="-1.4" y1="-0.8" x2="0" y2="-0.8" width="0.127" layer="51"/> +<wire x1="0" y1="-0.8" x2="1.4" y2="-0.8" width="0.127" layer="51"/> +<wire x1="0" y1="0.8" x2="0" y2="0.6" width="0.127" layer="51"/> +<wire x1="0" y1="0.6" x2="0.4" y2="-0.4" width="0.127" layer="51"/> +<wire x1="0" y1="-0.8" x2="0" y2="-0.5" width="0.127" layer="51"/> +<wire x1="-2.1" y1="0.2" x2="-2.1" y2="-0.2" width="0.127" layer="51"/> +<wire x1="2.1" y1="-0.2" x2="2.1" y2="0.2" width="0.127" layer="51"/> +<wire x1="2.1" y1="1.4" x2="2.1" y2="1.5" width="0.127" layer="51"/> +<wire x1="2.1" y1="1.5" x2="1" y2="1.5" width="0.127" layer="51"/> +<wire x1="1.032" y1="1.5" x2="-2.1" y2="1.5" width="0.127" layer="51"/> +<wire x1="-2.1" y1="1.5" x2="-2.1" y2="1.4" width="0.127" layer="51"/> +<wire x1="-2.1" y1="-1.4" x2="-2.1" y2="-1.5" width="0.127" layer="51"/> +<wire x1="-2.1" y1="-1.5" x2="2.1" y2="-1.5" width="0.127" layer="51"/> +<wire x1="2.1" y1="-1.5" x2="2.1" y2="-1.4" width="0.127" layer="51"/> +</package> +<package name="TACT-SWITCH-SIDE"> +<smd name="P$1" x="-1.8" y="0.725" dx="1.4" dy="1.05" layer="1" rot="R180"/> +<smd name="P$2" x="1.8" y="0.725" dx="1.4" dy="1.05" layer="1" rot="R180"/> +<smd name="P$3" x="-1.8" y="-0.725" dx="1.4" dy="1.05" layer="1" rot="R180"/> +<smd name="P$4" x="1.8" y="-0.725" dx="1.4" dy="1.05" layer="1" rot="R180"/> +<wire x1="-0.9" y1="0.8" x2="0" y2="0.8" width="0.127" layer="51"/> +<wire x1="0" y1="0.8" x2="0.9" y2="0.8" width="0.127" layer="51"/> +<wire x1="-0.9" y1="-0.8" x2="0" y2="-0.8" width="0.127" layer="51"/> +<wire x1="0" y1="-0.8" x2="0.9" y2="-0.8" width="0.127" layer="51"/> +<wire x1="0" y1="0.8" x2="0" y2="0.6" width="0.127" layer="51"/> +<wire x1="0" y1="0.6" x2="0.4" y2="-0.4" width="0.127" layer="51"/> +<wire x1="0" y1="-0.8" x2="0" y2="-0.5" width="0.127" layer="51"/> +<wire x1="-1.75" y1="-1.45" x2="1.75" y2="-1.45" width="0.127" layer="21"/> +<wire x1="-1.75" y1="1.6" x2="-1" y2="1.6" width="0.127" layer="21"/> +<wire x1="-1" y1="1.6" x2="0" y2="1.6" width="0.127" layer="21"/> +<wire x1="0" y1="1.6" x2="1" y2="1.6" width="0.127" layer="21"/> +<wire x1="1" y1="1.6" x2="1.75" y2="1.6" width="0.127" layer="21"/> +<wire x1="-1" y1="1.6" x2="-1" y2="2.3" width="0.127" layer="21"/> +<wire x1="-1" y1="2.3" x2="1" y2="2.3" width="0.127" layer="21"/> +<wire x1="1" y1="2.3" x2="1" y2="1.6" width="0.127" layer="21"/> +</package> +<package name="1206"> +<wire x1="-0.965" y1="0.787" x2="0.965" y2="0.787" width="0.1016" layer="51"/> +<wire x1="-0.965" y1="-0.787" x2="0.965" y2="-0.787" width="0.1016" layer="51"/> +<smd name="1" x="-1.4" y="0" dx="1.6" dy="1.8" layer="1"/> +<smd name="2" x="1.4" y="0" dx="1.6" dy="1.8" layer="1"/> +<text x="-1.27" y="1.143" size="1.016" layer="25">>NAME</text> +<text x="-1.397" y="-2.794" size="1.016" layer="27">>VALUE</text> +<rectangle x1="-1.7018" y1="-0.8509" x2="-0.9517" y2="0.8491" layer="51"/> +<rectangle x1="0.9517" y1="-0.8491" x2="1.7018" y2="0.8509" layer="51"/> +<rectangle x1="-0.1999" y1="-0.4001" x2="0.1999" y2="0.4001" layer="35"/> +</package> +<package name="R2010"> +<description><b>RESISTOR</b><p> +chip</description> +<wire x1="-1.662" y1="1.245" x2="1.662" y2="1.245" width="0.1524" layer="51"/> +<wire x1="-1.637" y1="-1.245" x2="1.687" y2="-1.245" width="0.1524" layer="51"/> +<wire x1="-3.473" y1="1.483" x2="3.473" y2="1.483" width="0.0508" layer="39"/> +<wire x1="3.473" y1="1.483" x2="3.473" y2="-1.483" width="0.0508" layer="39"/> +<wire x1="3.473" y1="-1.483" x2="-3.473" y2="-1.483" width="0.0508" layer="39"/> +<wire x1="-3.473" y1="-1.483" x2="-3.473" y2="1.483" width="0.0508" layer="39"/> +<wire x1="-1.027" y1="1.245" x2="1.027" y2="1.245" width="0.1524" layer="21"/> +<wire x1="-1.002" y1="-1.245" x2="1.016" y2="-1.245" width="0.1524" layer="21"/> +<smd name="1" x="-2.2" y="0" dx="1.8" dy="2.7" layer="1"/> +<smd name="2" x="2.2" y="0" dx="1.8" dy="2.7" layer="1"/> +<text x="-2.54" y="1.5875" size="1.016" layer="25">>NAME</text> +<text x="-2.54" y="-3.302" size="1.016" layer="27">>VALUE</text> +<rectangle x1="-2.4892" y1="-1.3208" x2="-1.6393" y2="1.3292" layer="51"/> +<rectangle x1="1.651" y1="-1.3208" x2="2.5009" y2="1.3292" layer="51"/> +</package> +<package name="0805"> +<smd name="1" x="-1" y="0" dx="0.8" dy="1.3" layer="1"/> +<smd name="2" x="1" y="0" dx="0.8" dy="1.3" layer="1"/> +<text x="-0.762" y="0.8255" size="1.016" layer="25">>NAME</text> +<text x="-1.016" y="-2.032" size="1.016" layer="27">>VALUE</text> +<rectangle x1="-1" y1="-0.6" x2="1" y2="0.6" layer="51"/> +</package> +<package name="0603-RES"> +<wire x1="-0.356" y1="0.432" x2="0.356" y2="0.432" width="0.1016" layer="51"/> +<wire x1="-0.356" y1="-0.419" x2="0.356" y2="-0.419" width="0.1016" layer="51"/> +<smd name="1" x="-0.85" y="0" dx="1.1" dy="1" layer="1"/> +<smd name="2" x="0.85" y="0" dx="1.1" dy="1" layer="1"/> +<text x="-0.889" y="1.397" size="1.016" layer="25">>NAME</text> +<text x="-1.016" y="-2.413" size="1.016" layer="27" ratio="10">>VALUE</text> +<rectangle x1="-0.8382" y1="-0.4699" x2="-0.3381" y2="0.4801" layer="51"/> +<rectangle x1="0.3302" y1="-0.4699" x2="0.8303" y2="0.4801" layer="51"/> +<rectangle x1="-0.1999" y1="-0.3" x2="0.1999" y2="0.3" layer="35"/> +<rectangle x1="-0.2286" y1="-0.381" x2="0.2286" y2="0.381" layer="21"/> +</package> +<package name="R2512"> +<wire x1="-2.362" y1="1.473" x2="2.387" y2="1.473" width="0.1524" layer="51"/> +<wire x1="-2.362" y1="-1.473" x2="2.387" y2="-1.473" width="0.1524" layer="51"/> +<smd name="1" x="-2.8" y="0" dx="1.8" dy="3.2" layer="1"/> +<smd name="2" x="2.8" y="0" dx="1.8" dy="3.2" layer="1"/> +<text x="-2.54" y="1.905" size="1.016" layer="25">>NAME</text> +<text x="-2.54" y="-3.175" size="1.016" layer="27">>VALUE</text> +<rectangle x1="-3.2004" y1="-1.5494" x2="-2.3505" y2="1.5507" layer="51"/> +<rectangle x1="2.3622" y1="-1.5494" x2="3.2121" y2="1.5507" layer="51"/> +</package> +<package name="TO220ACS"> +<description><B>DIODE</B><p> +2-lead molded, vertical</description> +<wire x1="5.08" y1="-1.143" x2="4.953" y2="-4.064" width="0.1524" layer="21"/> +<wire x1="4.699" y1="-4.318" x2="4.953" y2="-4.064" width="0.1524" layer="21"/> +<wire x1="4.699" y1="-4.318" x2="-4.699" y2="-4.318" width="0.1524" layer="21"/> +<wire x1="-4.953" y1="-4.064" x2="-4.699" y2="-4.318" width="0.1524" layer="21"/> +<wire x1="-4.953" y1="-4.064" x2="-5.08" y2="-1.143" width="0.1524" layer="21"/> +<circle x="-4.4958" y="-3.7084" radius="0.254" width="0" layer="21"/> +<pad name="C" x="-2.54" y="-2.54" drill="1.016" shape="long" rot="R90"/> +<pad name="A" x="2.54" y="-2.54" drill="1.016" shape="long" rot="R90"/> +<text x="-5.08" y="-6.0452" size="1.016" layer="25" ratio="10">>NAME</text> +<text x="-5.08" y="-7.62" size="1.016" layer="27" ratio="10">>VALUE</text> +<rectangle x1="-5.334" y1="-0.762" x2="5.334" y2="0" layer="21"/> +<rectangle x1="-5.334" y1="-1.27" x2="-3.429" y2="-0.762" layer="21"/> +<rectangle x1="-3.429" y1="-1.27" x2="-1.651" y2="-0.762" layer="51"/> +<rectangle x1="3.429" y1="-1.27" x2="5.334" y2="-0.762" layer="21"/> +<rectangle x1="1.651" y1="-1.27" x2="3.429" y2="-0.762" layer="51"/> +<rectangle x1="-1.651" y1="-1.27" x2="1.651" y2="-0.762" layer="21"/> +</package> +<package name="0402"> +<description><b>CAPACITOR</b><p> +chip</description> +<wire x1="-0.245" y1="0.224" x2="0.245" y2="0.224" width="0.1524" layer="51"/> +<wire x1="0.245" y1="-0.224" x2="-0.245" y2="-0.224" width="0.1524" layer="51"/> +<smd name="1" x="-0.525" y="0" dx="0.575" dy="0.7" layer="1"/> +<smd name="2" x="0.525" y="0" dx="0.575" dy="0.7" layer="1"/> +<text x="-0.889" y="0.6985" size="1.016" layer="25">>NAME</text> +<text x="-1.0795" y="-1.778" size="1.016" layer="27">>VALUE</text> +<rectangle x1="-0.554" y1="-0.3048" x2="-0.254" y2="0.2951" layer="51"/> +<rectangle x1="0.2588" y1="-0.3048" x2="0.5588" y2="0.2951" layer="51"/> +</package> +<package name="0603-CAP"> +<wire x1="-0.356" y1="0.332" x2="0.356" y2="0.332" width="0.1016" layer="51"/> +<wire x1="-0.356" y1="-0.319" x2="0.356" y2="-0.319" width="0.1016" layer="51"/> +<smd name="1" x="-0.8" y="0" dx="0.8" dy="0.95" layer="1"/> +<smd name="2" x="0.8" y="0" dx="0.8" dy="0.95" layer="1"/> +<text x="-0.889" y="1.397" size="1.016" layer="25">>NAME</text> +<text x="-1.016" y="-2.413" size="1.016" layer="27">>VALUE</text> +<rectangle x1="-0.8382" y1="-0.4" x2="-0.3381" y2="0.4" layer="51"/> +<rectangle x1="0.3302" y1="-0.4" x2="0.8303" y2="0.4" layer="51"/> +</package> +<package name="1210"> +<wire x1="-1.6" y1="1.3" x2="1.6" y2="1.3" width="0.127" layer="51"/> +<wire x1="1.6" y1="1.3" x2="1.6" y2="-1.3" width="0.127" layer="51"/> +<wire x1="1.6" y1="-1.3" x2="-1.6" y2="-1.3" width="0.127" layer="51"/> +<wire x1="-1.6" y1="-1.3" x2="-1.6" y2="1.3" width="0.127" layer="51"/> +<wire x1="-1.6" y1="1.3" x2="1.6" y2="1.3" width="0.2032" layer="51"/> +<wire x1="-1.6" y1="-1.3" x2="1.6" y2="-1.3" width="0.2032" layer="51"/> +<smd name="1" x="-1.6" y="0" dx="1.2" dy="2.5" layer="1"/> +<smd name="2" x="1.6" y="0" dx="1.2" dy="2.5" layer="1"/> +<text x="-2.07" y="1.77" size="1.016" layer="25">>NAME</text> +<text x="-2.17" y="-3.24" size="1.016" layer="27">>VALUE</text> +</package> +<package name="2220-C"> +<smd name="P$1" x="-2.6" y="0" dx="1.2" dy="5" layer="1"/> +<smd name="P$2" x="2.6" y="0" dx="1.2" dy="5" layer="1"/> +<text x="-1.5" y="3" size="0.6096" layer="125">>NAME</text> +<text x="-1.5" y="-3.5" size="0.6096" layer="127">>VALUE</text> +</package> +</packages> +<symbols> +<symbol name="TS2"> +<wire x1="0" y1="1.905" x2="0" y2="2.54" width="0.254" layer="94"/> +<wire x1="-4.445" y1="1.905" x2="-3.175" y2="1.905" width="0.254" layer="94"/> +<wire x1="-4.445" y1="-1.905" x2="-3.175" y2="-1.905" width="0.254" layer="94"/> +<wire x1="-4.445" y1="1.905" x2="-4.445" y2="0" width="0.254" layer="94"/> +<wire x1="-4.445" y1="0" x2="-4.445" y2="-1.905" width="0.254" layer="94"/> +<wire x1="-2.54" y1="0" x2="-1.905" y2="0" width="0.1524" layer="94"/> +<wire x1="-1.27" y1="0" x2="-0.635" y2="0" width="0.1524" layer="94"/> +<wire x1="-4.445" y1="0" x2="-3.175" y2="0" width="0.1524" layer="94"/> +<wire x1="2.54" y1="2.54" x2="0" y2="2.54" width="0.1524" layer="94"/> +<wire x1="2.54" y1="-2.54" x2="0" y2="-2.54" width="0.1524" layer="94"/> +<wire x1="0" y1="-2.54" x2="-1.27" y2="1.905" width="0.254" layer="94"/> +<circle x="0" y="-2.54" radius="0.127" width="0.4064" layer="94"/> +<circle x="0" y="2.54" radius="0.127" width="0.4064" layer="94"/> +<text x="-6.35" y="-2.54" size="1.778" layer="95" rot="R90">>NAME</text> +<text x="-3.81" y="3.175" size="1.778" layer="96" rot="R90">>VALUE</text> +<pin name="P" x="0" y="-5.08" visible="pad" length="short" direction="pas" swaplevel="2" rot="R90"/> +<pin name="S" x="0" y="5.08" visible="pad" length="short" direction="pas" swaplevel="1" rot="R270"/> +<pin name="S1" x="2.54" y="5.08" visible="pad" length="short" direction="pas" swaplevel="1" rot="R270"/> +<pin name="P1" x="2.54" y="-5.08" visible="pad" length="short" direction="pas" swaplevel="2" rot="R90"/> +</symbol> +<symbol name="RESISTOR"> +<wire x1="-2.54" y1="0" x2="-2.159" y2="1.016" width="0.1524" layer="94"/> +<wire x1="-2.159" y1="1.016" x2="-1.524" y2="-1.016" width="0.1524" layer="94"/> +<wire x1="-1.524" y1="-1.016" x2="-0.889" y2="1.016" width="0.1524" layer="94"/> +<wire x1="-0.889" y1="1.016" x2="-0.254" y2="-1.016" width="0.1524" layer="94"/> +<wire x1="-0.254" y1="-1.016" x2="0.381" y2="1.016" width="0.1524" layer="94"/> +<wire x1="0.381" y1="1.016" x2="1.016" y2="-1.016" width="0.1524" layer="94"/> +<wire x1="1.016" y1="-1.016" x2="1.651" y2="1.016" width="0.1524" layer="94"/> +<wire x1="1.651" y1="1.016" x2="2.286" y2="-1.016" width="0.1524" layer="94"/> +<wire x1="2.286" y1="-1.016" x2="2.54" y2="0" width="0.1524" layer="94"/> +<text x="-3.81" y="1.4986" size="1.778" layer="95">>NAME</text> +<text x="-3.81" y="-3.302" size="1.778" layer="96">>VALUE</text> +<pin name="2" x="5.08" y="0" visible="off" length="short" direction="pas" swaplevel="1" rot="R180"/> +<pin name="1" x="-5.08" y="0" visible="off" length="short" direction="pas" swaplevel="1"/> +<text x="-3.81" y="-6.858" size="1.27" layer="97">>PRECISION</text> +<text x="-3.81" y="-5.08" size="1.27" layer="97">>PACKAGE</text> +</symbol> +<symbol name="CAP"> +<wire x1="0" y1="2.54" x2="0" y2="2.032" width="0.1524" layer="94"/> +<wire x1="0" y1="0" x2="0" y2="0.508" width="0.1524" layer="94"/> +<text x="1.524" y="2.921" size="1.778" layer="95">>NAME</text> +<text x="1.524" y="-2.159" size="1.778" layer="96">>VALUE</text> +<rectangle x1="-2.032" y1="0.508" x2="2.032" y2="1.016" layer="94"/> +<rectangle x1="-2.032" y1="1.524" x2="2.032" y2="2.032" layer="94"/> +<pin name="1" x="0" y="5.08" visible="off" length="short" direction="pas" swaplevel="1" rot="R270"/> +<pin name="2" x="0" y="-2.54" visible="off" length="short" direction="pas" swaplevel="1" rot="R90"/> +<text x="1.524" y="-4.064" size="1.27" layer="97">>PACKAGE</text> +<text x="1.524" y="-5.842" size="1.27" layer="97">>VOLTAGE</text> +<text x="1.524" y="-7.62" size="1.27" layer="97">>TYPE</text> +</symbol> +</symbols> +<devicesets> +<deviceset name="2-8X4-5_SWITCH" prefix="S"> +<gates> +<gate name="G$1" symbol="TS2" x="0" y="0"/> +</gates> +<devices> +<device name="" package="TACT-SWITCH-KMR6"> +<connects> +<connect gate="G$1" pin="P" pad="P$1"/> +<connect gate="G$1" pin="P1" pad="P$2"/> +<connect gate="G$1" pin="S" pad="P$3"/> +<connect gate="G$1" pin="S1" pad="P$4"/> +</connects> +<technologies> +<technology name=""/> +</technologies> +</device> +<device name="SIDE" package="TACT-SWITCH-SIDE"> +<connects> +<connect gate="G$1" pin="P" pad="P$1"/> +<connect gate="G$1" pin="P1" pad="P$2"/> +<connect gate="G$1" pin="S" pad="P$3"/> +<connect gate="G$1" pin="S1" pad="P$4"/> +</connects> +<technologies> +<technology name=""/> +</technologies> +</device> +</devices> +</deviceset> +<deviceset name="RESISTOR" prefix="R" uservalue="yes"> +<description><b>Resistor</b> +Basic schematic elements and footprints for 0603, 1206, and PTH resistors.</description> +<gates> +<gate name="G$1" symbol="RESISTOR" x="0" y="0"/> +</gates> +<devices> +<device name="1206" package="1206"> +<connects> +<connect gate="G$1" pin="1" pad="1"/> +<connect gate="G$1" pin="2" pad="2"/> +</connects> +<technologies> +<technology name=""> +<attribute name="PACKAGE" value="1206" constant="no"/> +<attribute name="PRECISION" value="" constant="no"/> +</technology> +</technologies> +</device> +<device name="2010" package="R2010"> +<connects> +<connect gate="G$1" pin="1" pad="1"/> +<connect gate="G$1" pin="2" pad="2"/> +</connects> +<technologies> +<technology name=""> +<attribute name="PACKAGE" value="2010"/> +<attribute name="PRECISION" value="" constant="no"/> +</technology> +</technologies> +</device> +<device name="0805-RES" package="0805"> +<connects> +<connect gate="G$1" pin="1" pad="1"/> +<connect gate="G$1" pin="2" pad="2"/> +</connects> +<technologies> +<technology name=""> +<attribute name="PACKAGE" value="0805"/> +<attribute name="PRECISION" value="" constant="no"/> +</technology> +</technologies> +</device> +<device name="0603-RES" package="0603-RES"> +<connects> +<connect gate="G$1" pin="1" pad="1"/> +<connect gate="G$1" pin="2" pad="2"/> +</connects> +<technologies> +<technology name=""> +<attribute name="PACKAGE" value="0603"/> +<attribute name="PRECISION" value="" constant="no"/> +</technology> +</technologies> +</device> +<device name="2512" package="R2512"> +<connects> +<connect gate="G$1" pin="1" pad="1"/> +<connect gate="G$1" pin="2" pad="2"/> +</connects> +<technologies> +<technology name=""> +<attribute name="PACKAGE" value="2512"/> +<attribute name="PRECISION" value="" constant="no"/> +</technology> +</technologies> +</device> +<device name="TO220ACS" package="TO220ACS"> +<connects> +<connect gate="G$1" pin="1" pad="A"/> +<connect gate="G$1" pin="2" pad="C"/> +</connects> +<technologies> +<technology name=""/> +</technologies> +</device> +<device name="0402" package="0402"> +<connects> +<connect gate="G$1" pin="1" pad="1"/> +<connect gate="G$1" pin="2" pad="2"/> +</connects> +<technologies> +<technology name=""/> +</technologies> +</device> +</devices> +</deviceset> +<deviceset name="CAP" prefix="C" uservalue="yes"> +<description><b>Capacitor</b> +Standard 0603 ceramic capacitor, and 0.1" leaded capacitor.</description> +<gates> +<gate name="G$1" symbol="CAP" x="0" y="0"/> +</gates> +<devices> +<device name="0805" package="0805"> +<connects> +<connect gate="G$1" pin="1" pad="1"/> +<connect gate="G$1" pin="2" pad="2"/> +</connects> +<technologies> +<technology name=""> +<attribute name="PACKAGE" value="0805"/> +<attribute name="TYPE" value="" constant="no"/> +<attribute name="VOLTAGE" value="" constant="no"/> +</technology> +</technologies> +</device> +<device name="0603-CAP" package="0603-CAP"> +<connects> +<connect gate="G$1" pin="1" pad="1"/> +<connect gate="G$1" pin="2" pad="2"/> +</connects> +<technologies> +<technology name=""> +<attribute name="PACKAGE" value="0603"/> +<attribute name="TYPE" value="" constant="no"/> +<attribute name="VOLTAGE" value="" constant="no"/> +</technology> +</technologies> +</device> +<device name="1210" package="1210"> +<connects> +<connect gate="G$1" pin="1" pad="1"/> +<connect gate="G$1" pin="2" pad="2"/> +</connects> +<technologies> +<technology name=""> +<attribute name="PACKAGE" value="1210" constant="no"/> +<attribute name="TYPE" value="" constant="no"/> +<attribute name="VOLTAGE" value="" constant="no"/> +</technology> +</technologies> +</device> +<device name="1206" package="1206"> +<connects> +<connect gate="G$1" pin="1" pad="1"/> +<connect gate="G$1" pin="2" pad="2"/> +</connects> +<technologies> +<technology name=""> +<attribute name="PACKAGE" value="1206" constant="no"/> +<attribute name="TYPE" value="" constant="no"/> +<attribute name="VOLTAGE" value="" constant="no"/> +</technology> +</technologies> +</device> +<device name="2220" package="2220-C"> +<connects> +<connect gate="G$1" pin="1" pad="P$1"/> +<connect gate="G$1" pin="2" pad="P$2"/> +</connects> +<technologies> +<technology name=""/> +</technologies> +</device> +<device name="0402" package="0402"> +<connects> +<connect gate="G$1" pin="1" pad="1"/> +<connect gate="G$1" pin="2" pad="2"/> +</connects> +<technologies> +<technology name=""/> +</technologies> +</device> +</devices> +</deviceset> +</devicesets> +</library> +<library name="supply1"> +<description><b>Supply Symbols</b><p> + GND, VCC, 0V, +5V, -5V, etc.<p> + Please keep in mind, that these devices are necessary for the + automatic wiring of the supply signals.<p> + The pin name defined in the symbol is identical to the net which is to be wired automatically.<p> + In this library the device names are the same as the pin names of the symbols, therefore the correct signal names appear next to the supply symbols in the schematic.<p> + <author>Created by librarian@cadsoft.de</author></description> +<packages> +</packages> +<symbols> +<symbol name="+3V3" urn="urn:adsk.eagle:symbol:26950/1"> +<wire x1="1.27" y1="-1.905" x2="0" y2="0" width="0.254" layer="94"/> +<wire x1="0" y1="0" x2="-1.27" y2="-1.905" width="0.254" layer="94"/> +<text x="-2.54" y="-5.08" size="1.778" layer="96" rot="R90">>VALUE</text> +<pin name="+3V3" x="0" y="-2.54" visible="off" length="short" direction="sup" rot="R90"/> +</symbol> +<symbol name="+5V" urn="urn:adsk.eagle:symbol:26929/1"> +<wire x1="1.27" y1="-1.905" x2="0" y2="0" width="0.254" layer="94"/> +<wire x1="0" y1="0" x2="-1.27" y2="-1.905" width="0.254" layer="94"/> +<text x="-2.54" y="-5.08" size="1.778" layer="96" rot="R90">>VALUE</text> +<pin name="+5V" x="0" y="-2.54" visible="off" length="short" direction="sup" rot="R90"/> +</symbol> +<symbol name="GND" urn="urn:adsk.eagle:symbol:26925/1"> +<wire x1="-1.905" y1="0" x2="1.905" y2="0" width="0.254" layer="94"/> +<text x="-2.54" y="-2.54" size="1.778" layer="96">>VALUE</text> +<pin name="GND" x="0" y="2.54" visible="off" length="short" direction="sup" rot="R270"/> +</symbol> +</symbols> +<devicesets> +<deviceset name="+3V3" urn="urn:adsk.eagle:component:26981/1" prefix="+3V3"> +<description><b>SUPPLY SYMBOL</b></description> +<gates> +<gate name="G$1" symbol="+3V3" x="0" y="0"/> +</gates> +<devices> +<device name=""> +<technologies> +<technology name=""/> +</technologies> +</device> +</devices> +</deviceset> +<deviceset name="+5V" urn="urn:adsk.eagle:component:26963/1" prefix="P+"> +<description><b>SUPPLY SYMBOL</b></description> +<gates> +<gate name="1" symbol="+5V" x="0" y="0"/> +</gates> +<devices> +<device name=""> +<technologies> +<technology name=""/> +</technologies> +</device> +</devices> +</deviceset> +<deviceset name="GND" urn="urn:adsk.eagle:component:26954/1" prefix="GND"> +<description><b>SUPPLY SYMBOL</b></description> +<gates> +<gate name="1" symbol="GND" x="0" y="0"/> +</gates> +<devices> +<device name=""> +<technologies> +<technology name=""/> +</technologies> +</device> +</devices> +</deviceset> +</devicesets> +</library> +<library name="power"> +<packages> +<package name="SOT23-5"> +<description><b>Small Outline Transistor</b>, 5 lead</description> +<wire x1="-1.544" y1="0.713" x2="1.544" y2="0.713" width="0.1524" layer="51"/> +<wire x1="1.544" y1="0.713" x2="1.544" y2="-0.712" width="0.1524" layer="51"/> +<wire x1="1.544" y1="-0.712" x2="-1.544" y2="-0.712" width="0.1524" layer="51"/> +<wire x1="-1.544" y1="-0.712" x2="-1.544" y2="0.713" width="0.1524" layer="51"/> +<smd name="5" x="-0.95" y="1.306" dx="0.5334" dy="1.1938" layer="1"/> +<smd name="4" x="0.95" y="1.306" dx="0.5334" dy="1.1938" layer="1"/> +<smd name="1" x="-0.95" y="-1.306" dx="0.5334" dy="1.1938" layer="1"/> +<smd name="2" x="0" y="-1.306" dx="0.5334" dy="1.1938" layer="1"/> +<smd name="3" x="0.95" y="-1.306" dx="0.5334" dy="1.1938" layer="1"/> +<text x="-1.778" y="-1.778" size="1.27" layer="25" ratio="10" rot="R90">>NAME</text> +<text x="3.048" y="-1.778" size="1.27" layer="27" ratio="10" rot="R90">>VALUE</text> +<rectangle x1="-1.1875" y1="0.7126" x2="-0.7125" y2="1.5439" layer="51"/> +<rectangle x1="0.7125" y1="0.7126" x2="1.1875" y2="1.5439" layer="51"/> +<rectangle x1="-1.1875" y1="-1.5437" x2="-0.7125" y2="-0.7124" layer="51"/> +<rectangle x1="-0.2375" y1="-1.5437" x2="0.2375" y2="-0.7124" layer="51"/> +<rectangle x1="0.7125" y1="-1.5437" x2="1.1875" y2="-0.7124" layer="51"/> +<wire x1="-1.5" y1="-1.9" x2="-1.5" y2="-1.2" width="0.127" layer="21"/> +</package> +</packages> +<symbols> +<symbol name="VREG-AP2112"> +<pin name="VIN" x="-12.7" y="2.54" length="middle"/> +<pin name="EN" x="-12.7" y="-2.54" length="middle"/> +<pin name="GND" x="0" y="-10.16" length="middle" rot="R90"/> +<pin name="VOUT" x="12.7" y="2.54" length="middle" rot="R180"/> +<wire x1="-7.62" y1="5.08" x2="-7.62" y2="-5.08" width="0.254" layer="94"/> +<wire x1="-7.62" y1="-5.08" x2="7.62" y2="-5.08" width="0.254" layer="94"/> +<wire x1="7.62" y1="-5.08" x2="7.62" y2="5.08" width="0.254" layer="94"/> +<wire x1="7.62" y1="5.08" x2="-7.62" y2="5.08" width="0.254" layer="94"/> +<text x="-2.54" y="7.62" size="1.27" layer="95">>NAME</text> +<text x="2.54" y="-7.62" size="1.27" layer="96">>VALUE</text> +</symbol> +</symbols> +<devicesets> +<deviceset name="VREG-AP2112" prefix="U"> +<gates> +<gate name="G$1" symbol="VREG-AP2112" x="0" y="0"/> +</gates> +<devices> +<device name="" package="SOT23-5"> +<connects> +<connect gate="G$1" pin="EN" pad="3"/> +<connect gate="G$1" pin="GND" pad="2"/> +<connect gate="G$1" pin="VIN" pad="1"/> +<connect gate="G$1" pin="VOUT" pad="5"/> +</connects> +<technologies> +<technology name=""/> +</technologies> +</device> +</devices> +</deviceset> +</devicesets> +</library> +<library name="connector"> +<packages> +<package name="DX4R005HJ5_100"> +<wire x1="3.25" y1="-2.6" x2="-3.25" y2="-2.6" width="0.127" layer="21"/> +<wire x1="-3.25" y1="2.6" x2="-3.25" y2="0" width="0.127" layer="51"/> +<wire x1="3.25" y1="2.6" x2="3.25" y2="0" width="0.127" layer="51"/> +<wire x1="-1.75" y1="2.6" x2="1.75" y2="2.6" width="0.127" layer="51"/> +<wire x1="-3.25" y1="-2.2" x2="-3.25" y2="-2.6" width="0.127" layer="51"/> +<wire x1="3.25" y1="-2.6" x2="3.25" y2="-2.2" width="0.127" layer="51"/> +<smd name="GND@3" x="-2.175" y="-1.1" dx="2.15" dy="1.9" layer="1"/> +<smd name="GND@4" x="2.175" y="-1.1" dx="2.15" dy="1.9" layer="1"/> +<smd name="GND@1" x="-2.5" y="1.95" dx="1.2" dy="1.3" layer="1"/> +<smd name="GND@2" x="2.5" y="1.95" dx="1.2" dy="1.3" layer="1"/> +<smd name="D+" x="0" y="1.6" dx="0.35" dy="1.35" layer="1"/> +<smd name="D-" x="-0.65" y="1.6" dx="0.35" dy="1.35" layer="1"/> +<smd name="VBUS" x="-1.3" y="1.6" dx="0.35" dy="1.35" layer="1"/> +<smd name="ID" x="0.65" y="1.6" dx="0.35" dy="1.35" layer="1"/> +<smd name="GND" x="1.3" y="1.6" dx="0.35" dy="1.35" layer="1"/> +<text x="4.1275" y="-1.5875" size="0.6096" layer="27" font="vector" rot="R90">>Value</text> +<text x="-3.4925" y="-1.27" size="0.6096" layer="25" font="vector" rot="R90">>Name</text> +</package> +<package name="DX4R005HJ5"> +<wire x1="3.25" y1="-2.6" x2="-3.25" y2="-2.6" width="0.127" layer="51"/> +<wire x1="-3.25" y1="2.6" x2="-3.25" y2="0" width="0.127" layer="21"/> +<wire x1="3.25" y1="2.6" x2="3.25" y2="0" width="0.127" layer="21"/> +<wire x1="-1.75" y1="2.6" x2="1.75" y2="2.6" width="0.127" layer="51"/> +<wire x1="-3.25" y1="-2.2" x2="-3.25" y2="-2.6" width="0.127" layer="51"/> +<wire x1="3.25" y1="-2.6" x2="3.25" y2="-2.2" width="0.127" layer="51"/> +<smd name="GND@3" x="-2.475" y="-1.1" dx="2.75" dy="1.9" layer="1"/> +<smd name="GND@4" x="2.475" y="-1.1" dx="2.75" dy="1.9" layer="1"/> +<smd name="GND@1" x="-2.5" y="1.95" dx="1.2" dy="1.3" layer="1"/> +<smd name="GND@2" x="2.5" y="1.95" dx="1.2" dy="1.3" layer="1"/> +<smd name="D+" x="0" y="1.9" dx="0.4" dy="1.95" layer="1"/> +<smd name="D-" x="-0.65" y="1.9" dx="0.4" dy="1.95" layer="1"/> +<smd name="VBUS" x="-1.3" y="1.9" dx="0.4" dy="1.95" layer="1"/> +<smd name="ID" x="0.65" y="1.9" dx="0.4" dy="1.95" layer="1"/> +<smd name="GND" x="1.3" y="1.9" dx="0.4" dy="1.95" layer="1"/> +<text x="-3.4925" y="-1.27" size="0.6096" layer="25" font="vector" rot="R90">>Name</text> +<text x="4.1275" y="-1.5875" size="0.6096" layer="25" font="vector" rot="R90">>Value</text> +</package> +<package name="DX4R005HJ5_64"> +<wire x1="3.25" y1="-2.6" x2="-3.25" y2="-2.6" width="0.127" layer="21"/> +<wire x1="-3.25" y1="2.6" x2="-3.25" y2="0" width="0.127" layer="51"/> +<wire x1="3.25" y1="2.6" x2="3.25" y2="0" width="0.127" layer="51"/> +<wire x1="-1.75" y1="2.6" x2="1.75" y2="2.6" width="0.127" layer="51"/> +<wire x1="-3.25" y1="-2.2" x2="-3.25" y2="-2.6" width="0.127" layer="51"/> +<wire x1="3.25" y1="-2.6" x2="3.25" y2="-2.2" width="0.127" layer="51"/> +<smd name="GND@3" x="-2.175" y="-1.1" dx="2.15" dy="1.9" layer="1"/> +<smd name="GND@4" x="2.175" y="-1.1" dx="2.15" dy="1.9" layer="1"/> +<smd name="GND@1" x="-2.5" y="1.95" dx="1.2" dy="1.3" layer="1"/> +<smd name="GND@2" x="2.5" y="1.95" dx="1.2" dy="1.3" layer="1"/> +<smd name="D+" x="0" y="1.6" dx="0.254" dy="1.35" layer="1"/> +<smd name="D-" x="-0.65" y="1.6" dx="0.254" dy="1.35" layer="1"/> +<smd name="VBUS" x="-1.3" y="1.6" dx="0.254" dy="1.35" layer="1"/> +<smd name="ID" x="0.65" y="1.6" dx="0.254" dy="1.35" layer="1"/> +<smd name="GND" x="1.3" y="1.6" dx="0.254" dy="1.35" layer="1"/> +<text x="-3.4925" y="-1.27" size="0.6096" layer="25" font="vector" rot="R90">>Name</text> +<text x="4.1275" y="-1.5875" size="0.6096" layer="27" font="vector" rot="R90">>Value</text> +</package> +<package name="USB_MICRO_609-4613-1-ND"> +<smd name="HD0" x="-3.8" y="0" dx="1.9" dy="1.8" layer="1"/> +<smd name="HD4" x="-3.1" y="2.55" dx="2.1" dy="1.6" layer="1"/> +<smd name="HD5" x="3.1" y="2.55" dx="2.1" dy="1.6" layer="1"/> +<smd name="D+" x="0" y="2.675" dx="0.4" dy="1.35" layer="1"/> +<smd name="D-" x="-0.65" y="2.675" dx="0.4" dy="1.35" layer="1"/> +<smd name="VBUS" x="-1.3" y="2.675" dx="0.4" dy="1.35" layer="1"/> +<smd name="ID" x="0.65" y="2.675" dx="0.4" dy="1.35" layer="1"/> +<smd name="GND" x="1.3" y="2.675" dx="0.4" dy="1.35" layer="1"/> +<text x="4.9275" y="1.2125" size="0.6096" layer="27" font="vector" rot="R90">>Value</text> +<text x="-4.3925" y="1.13" size="0.6096" layer="25" font="vector" rot="R90">>Name</text> +<smd name="HD1" x="-1.05" y="0" dx="1.9" dy="1.8" layer="1"/> +<smd name="HD2" x="1.05" y="0" dx="1.9" dy="1.8" layer="1"/> +<smd name="HD3" x="3.8" y="0" dx="1.9" dy="1.8" layer="1"/> +<wire x1="-4.7" y1="-1.45" x2="4.7" y2="-1.45" width="0.127" layer="51"/> +<text x="0" y="-1.3" size="0.8128" layer="51" font="vector" align="bottom-center">\\ PCB Edge /</text> +<wire x1="-3.9" y1="3" x2="-3.9" y2="-2.5" width="0.127" layer="51"/> +<wire x1="-3.9" y1="-2.5" x2="3.9" y2="-2.5" width="0.127" layer="51"/> +<wire x1="3.9" y1="-2.5" x2="3.9" y2="3" width="0.127" layer="51"/> +<wire x1="3.9" y1="3" x2="-3.9" y2="3" width="0.127" layer="51"/> +<wire x1="-3.9" y1="1.1" x2="-3.9" y2="1.5" width="0.127" layer="21"/> +<wire x1="3.9" y1="1.1" x2="3.9" y2="1.5" width="0.127" layer="21"/> +<wire x1="1.8" y1="3" x2="1.7" y2="3" width="0.127" layer="21"/> +<wire x1="-1.7" y1="3" x2="-1.8" y2="3" width="0.127" layer="21"/> +<wire x1="4.4" y1="3" x2="4.7" y2="3" width="0.127" layer="21"/> +<wire x1="-4.4" y1="3" x2="-4.7" y2="3" width="0.127" layer="21"/> +<wire x1="-3.9" y1="3.6" x2="-3.9" y2="3.8" width="0.127" layer="21"/> +<wire x1="3.9" y1="3.6" x2="3.9" y2="3.8" width="0.127" layer="21"/> +</package> +</packages> +<symbols> +<symbol name="USB-1"> +<wire x1="6.35" y1="-2.54" x2="6.35" y2="2.54" width="0.254" layer="94"/> +<wire x1="6.35" y1="2.54" x2="-3.81" y2="2.54" width="0.254" layer="94"/> +<wire x1="-3.81" y1="2.54" x2="-3.81" y2="-2.54" width="0.254" layer="94"/> +<text x="-2.54" y="-1.27" size="2.54" layer="94">USB</text> +<text x="-4.445" y="-1.905" size="1.27" layer="95" font="vector" rot="R90">>Name</text> +<text x="8.255" y="-1.905" size="1.27" layer="96" font="vector" rot="R90">>Value</text> +<pin name="D+" x="5.08" y="5.08" visible="pad" length="short" rot="R270"/> +<pin name="D-" x="2.54" y="5.08" visible="pad" length="short" rot="R270"/> +<pin name="VBUS" x="0" y="5.08" visible="pad" length="short" rot="R270"/> +<pin name="GND" x="-2.54" y="5.08" visible="pad" length="short" rot="R270"/> +</symbol> +</symbols> +<devicesets> +<deviceset name="USB" prefix="X"> +<description>SMD micro USB connector as found in the fablab inventory. +Three footprint variants included: +<ol> +<li>609-4613-1-ND used by Jake +<li> original, as described by manufacturer's datasheet +<li> for milling with the 1/100" bit +<li> for milling with the 1/64" bit +</ol> +<p>Made by Zaerc.</description> +<gates> +<gate name="G$1" symbol="USB-1" x="0" y="0"/> +</gates> +<devices> +<device name="_1/100" package="DX4R005HJ5_100"> +<connects> +<connect gate="G$1" pin="D+" pad="D+"/> +<connect gate="G$1" pin="D-" pad="D-"/> +<connect gate="G$1" pin="GND" pad="GND"/> +<connect gate="G$1" pin="VBUS" pad="VBUS"/> +</connects> +<technologies> +<technology name=""/> +</technologies> +</device> +<device name="_ORIG" package="DX4R005HJ5"> +<connects> +<connect gate="G$1" pin="D+" pad="D+"/> +<connect gate="G$1" pin="D-" pad="D-"/> +<connect gate="G$1" pin="GND" pad="GND"/> +<connect gate="G$1" pin="VBUS" pad="VBUS"/> +</connects> +<technologies> +<technology name=""/> +</technologies> +</device> +<device name="_1/64" package="DX4R005HJ5_64"> +<connects> +<connect gate="G$1" pin="D+" pad="D+"/> +<connect gate="G$1" pin="D-" pad="D-"/> +<connect gate="G$1" pin="GND" pad="GND"/> +<connect gate="G$1" pin="VBUS" pad="VBUS"/> +</connects> +<technologies> +<technology name=""/> +</technologies> +</device> +<device name="" package="USB_MICRO_609-4613-1-ND"> +<connects> +<connect gate="G$1" pin="D+" pad="D+"/> +<connect gate="G$1" pin="D-" pad="D-"/> +<connect gate="G$1" pin="GND" pad="GND"/> +<connect gate="G$1" pin="VBUS" pad="VBUS"/> +</connects> +<technologies> +<technology name=""/> +</technologies> +</device> +</devices> +</deviceset> +</devicesets> +</library> +<library name="microcontrollers"> +<packages> +<package name="QFP80P900X900X120-32N"> +<wire x1="-3.55" y1="-3.55" x2="-3.55" y2="3.55" width="0.127" layer="51"/> +<wire x1="-3.55" y1="3.55" x2="3.55" y2="3.55" width="0.127" layer="51"/> +<wire x1="3.55" y1="3.55" x2="3.55" y2="-3.55" width="0.127" layer="51"/> +<wire x1="3.55" y1="-3.55" x2="-3.55" y2="-3.55" width="0.127" layer="51"/> +<wire x1="-3.25" y1="3.55" x2="-3.55" y2="3.55" width="0.127" layer="21"/> +<wire x1="-3.55" y1="3.55" x2="-3.55" y2="3.25" width="0.127" layer="21"/> +<wire x1="3.25" y1="3.55" x2="3.55" y2="3.55" width="0.127" layer="21"/> +<wire x1="3.55" y1="3.55" x2="3.55" y2="3.25" width="0.127" layer="21"/> +<wire x1="-3.55" y1="-3.25" x2="-3.55" y2="-3.55" width="0.127" layer="21"/> +<wire x1="-3.55" y1="-3.55" x2="-3.25" y2="-3.55" width="0.127" layer="21"/> +<wire x1="3.25" y1="-3.55" x2="3.55" y2="-3.55" width="0.127" layer="21"/> +<wire x1="3.55" y1="-3.55" x2="3.55" y2="-3.25" width="0.127" layer="21"/> +<text x="-3.202909375" y="5.80526875" size="0.8135375" layer="25">>NAME</text> +<text x="-3.40625" y="-6.211390625" size="0.81429375" layer="27">>VALUE</text> +<circle x="-5.8" y="2.8" radius="0.1" width="0.2" layer="21"/> +<circle x="-5.8" y="2.8" radius="0.1" width="0.2" layer="51"/> +<smd name="1" x="-4.18" y="2.8" dx="1.6" dy="0.55" layer="1" roundness="25"/> +<smd name="2" x="-4.18" y="2" dx="1.6" dy="0.55" layer="1" roundness="25"/> +<smd name="3" x="-4.18" y="1.2" dx="1.6" dy="0.55" layer="1" roundness="25"/> +<smd name="4" x="-4.18" y="0.4" dx="1.6" dy="0.55" layer="1" roundness="25"/> +<smd name="5" x="-4.18" y="-0.4" dx="1.6" dy="0.55" layer="1" roundness="25"/> +<smd name="6" x="-4.18" y="-1.2" dx="1.6" dy="0.55" layer="1" roundness="25"/> +<smd name="7" x="-4.18" y="-2" dx="1.6" dy="0.55" layer="1" roundness="25"/> +<smd name="8" x="-4.18" y="-2.8" dx="1.6" dy="0.55" layer="1" roundness="25"/> +<smd name="9" x="-2.8" y="-4.18" dx="1.6" dy="0.55" layer="1" roundness="25" rot="R90"/> +<smd name="10" x="-2" y="-4.18" dx="1.6" dy="0.55" layer="1" roundness="25" rot="R90"/> +<smd name="11" x="-1.2" y="-4.18" dx="1.6" dy="0.55" layer="1" roundness="25" rot="R90"/> +<smd name="12" x="-0.4" y="-4.18" dx="1.6" dy="0.55" layer="1" roundness="25" rot="R90"/> +<smd name="13" x="0.4" y="-4.18" dx="1.6" dy="0.55" layer="1" roundness="25" rot="R90"/> +<smd name="14" x="1.2" y="-4.18" dx="1.6" dy="0.55" layer="1" roundness="25" rot="R90"/> +<smd name="15" x="2" y="-4.18" dx="1.6" dy="0.55" layer="1" roundness="25" rot="R90"/> +<smd name="16" x="2.8" y="-4.18" dx="1.6" dy="0.55" layer="1" roundness="25" rot="R90"/> +<smd name="17" x="4.18" y="-2.8" dx="1.6" dy="0.55" layer="1" roundness="25" rot="R180"/> +<smd name="18" x="4.18" y="-2" dx="1.6" dy="0.55" layer="1" roundness="25" rot="R180"/> +<smd name="19" x="4.18" y="-1.2" dx="1.6" dy="0.55" layer="1" roundness="25" rot="R180"/> +<smd name="20" x="4.18" y="-0.4" dx="1.6" dy="0.55" layer="1" roundness="25" rot="R180"/> +<smd name="21" x="4.18" y="0.4" dx="1.6" dy="0.55" layer="1" roundness="25" rot="R180"/> +<smd name="22" x="4.18" y="1.2" dx="1.6" dy="0.55" layer="1" roundness="25" rot="R180"/> +<smd name="23" x="4.18" y="2" dx="1.6" dy="0.55" layer="1" roundness="25" rot="R180"/> +<smd name="24" x="4.18" y="2.8" dx="1.6" dy="0.55" layer="1" roundness="25" rot="R180"/> +<smd name="25" x="2.8" y="4.18" dx="1.6" dy="0.55" layer="1" roundness="25" rot="R270"/> +<smd name="26" x="2" y="4.18" dx="1.6" dy="0.55" layer="1" roundness="25" rot="R270"/> +<smd name="27" x="1.2" y="4.18" dx="1.6" dy="0.55" layer="1" roundness="25" rot="R270"/> +<smd name="28" x="0.4" y="4.18" dx="1.6" dy="0.55" layer="1" roundness="25" rot="R270"/> +<smd name="29" x="-0.4" y="4.18" dx="1.6" dy="0.55" layer="1" roundness="25" rot="R270"/> +<smd name="30" x="-1.2" y="4.18" dx="1.6" dy="0.55" layer="1" roundness="25" rot="R270"/> +<smd name="31" x="-2" y="4.18" dx="1.6" dy="0.55" layer="1" roundness="25" rot="R270"/> +<smd name="32" x="-2.8" y="4.18" dx="1.6" dy="0.55" layer="1" roundness="25" rot="R270"/> +</package> +</packages> +<symbols> +<symbol name="ATSAMD21E18A-AF"> +<wire x1="22.86" y1="-33.02" x2="-20.32" y2="-33.02" width="0.254" layer="94"/> +<wire x1="-20.32" y1="-33.02" x2="-20.32" y2="35.56" width="0.254" layer="94"/> +<wire x1="-20.32" y1="35.56" x2="22.86" y2="35.56" width="0.254" layer="94"/> +<wire x1="22.86" y1="35.56" x2="22.86" y2="-33.02" width="0.254" layer="94"/> +<text x="-20.3338" y="35.5978" size="1.780409375" layer="95">>NAME</text> +<text x="-20.338" y="-35.614" size="1.78115" layer="96">>VALUE</text> +<pin name="PA00" x="27.94" y="33.02" length="middle" rot="R180"/> +<pin name="PA01" x="27.94" y="30.48" length="middle" rot="R180"/> +<pin name="PA02" x="27.94" y="27.94" length="middle" rot="R180"/> +<pin name="PA03" x="27.94" y="25.4" length="middle" rot="R180"/> +<pin name="PA04" x="27.94" y="22.86" length="middle" rot="R180"/> +<pin name="PA05" x="27.94" y="20.32" length="middle" rot="R180"/> +<pin name="PA06" x="27.94" y="17.78" length="middle" rot="R180"/> +<pin name="PA07" x="27.94" y="15.24" length="middle" rot="R180"/> +<pin name="VDDANA" x="-25.4" y="25.4" length="middle" direction="pwr"/> +<pin name="GND" x="-25.4" y="-30.48" length="middle" direction="pwr"/> +<pin name="PA08" x="27.94" y="12.7" length="middle" rot="R180"/> +<pin name="PA09" x="27.94" y="10.16" length="middle" rot="R180"/> +<pin name="PA10" x="27.94" y="7.62" length="middle" rot="R180"/> +<pin name="PA11" x="27.94" y="5.08" length="middle" rot="R180"/> +<pin name="PA14" x="27.94" y="2.54" length="middle" rot="R180"/> +<pin name="PA15" x="27.94" y="0" length="middle" rot="R180"/> +<pin name="PA16" x="27.94" y="-2.54" length="middle" rot="R180"/> +<pin name="PA17" x="27.94" y="-5.08" length="middle" rot="R180"/> +<pin name="PA18" x="27.94" y="-7.62" length="middle" rot="R180"/> +<pin name="PA19" x="27.94" y="-10.16" length="middle" rot="R180"/> +<pin name="PA22" x="27.94" y="-12.7" length="middle" rot="R180"/> +<pin name="PA23" x="27.94" y="-15.24" length="middle" rot="R180"/> +<pin name="PA24" x="27.94" y="-17.78" length="middle" rot="R180"/> +<pin name="PA25" x="27.94" y="-20.32" length="middle" rot="R180"/> +<pin name="PA27" x="27.94" y="-22.86" length="middle" rot="R180"/> +<pin name="!RESET" x="-25.4" y="-17.78" length="middle" direction="in"/> +<pin name="PA28" x="27.94" y="-25.4" length="middle" rot="R180"/> +<pin name="VDDCORE" x="-25.4" y="17.78" length="middle" direction="pwr"/> +<pin name="VDDIN" x="-25.4" y="33.02" length="middle" direction="pwr"/> +<pin name="PA30" x="27.94" y="-27.94" length="middle" rot="R180"/> +<pin name="PA31" x="27.94" y="-30.48" length="middle" rot="R180"/> +</symbol> +</symbols> +<devicesets> +<deviceset name="ATSAMD21E18A-AF" prefix="U"> +<description>The SAM D21 is a series of low-power microcontrollers using the 32-bit ARM® + Cortex® +-M0+ processor, +and ranging from 32- to 64-pins with up to 256KB Flash and 32KB of SRAM. The SAM D21 operate at a +maximum frequency of 48MHz and reach 2.46 CoreMark® +/MHz. <a href="https://pricing.snapeda.com/parts/ATSAMD21E18A-AF/Microchip/view-part?ref=eda">Check prices</a></description> +<gates> +<gate name="G$1" symbol="ATSAMD21E18A-AF" x="0" y="0"/> +</gates> +<devices> +<device name="" package="QFP80P900X900X120-32N"> +<connects> +<connect gate="G$1" pin="!RESET" pad="26"/> +<connect gate="G$1" pin="GND" pad="10 28"/> +<connect gate="G$1" pin="PA00" pad="1"/> +<connect gate="G$1" pin="PA01" pad="2"/> +<connect gate="G$1" pin="PA02" pad="3"/> +<connect gate="G$1" pin="PA03" pad="4"/> +<connect gate="G$1" pin="PA04" pad="5"/> +<connect gate="G$1" pin="PA05" pad="6"/> +<connect gate="G$1" pin="PA06" pad="7"/> +<connect gate="G$1" pin="PA07" pad="8"/> +<connect gate="G$1" pin="PA08" pad="11"/> +<connect gate="G$1" pin="PA09" pad="12"/> +<connect gate="G$1" pin="PA10" pad="13"/> +<connect gate="G$1" pin="PA11" pad="14"/> +<connect gate="G$1" pin="PA14" pad="15"/> +<connect gate="G$1" pin="PA15" pad="16"/> +<connect gate="G$1" pin="PA16" pad="17"/> +<connect gate="G$1" pin="PA17" pad="18"/> +<connect gate="G$1" pin="PA18" pad="19"/> +<connect gate="G$1" pin="PA19" pad="20"/> +<connect gate="G$1" pin="PA22" pad="21"/> +<connect gate="G$1" pin="PA23" pad="22"/> +<connect gate="G$1" pin="PA24" pad="23"/> +<connect gate="G$1" pin="PA25" pad="24"/> +<connect gate="G$1" pin="PA27" pad="25"/> +<connect gate="G$1" pin="PA28" pad="27"/> +<connect gate="G$1" pin="PA30" pad="31"/> +<connect gate="G$1" pin="PA31" pad="32"/> +<connect gate="G$1" pin="VDDANA" pad="9"/> +<connect gate="G$1" pin="VDDCORE" pad="29"/> +<connect gate="G$1" pin="VDDIN" pad="30"/> +</connects> +<technologies> +<technology name=""> +<attribute name="AVAILABILITY" value="Warning"/> +<attribute name="DESCRIPTION" value=" ARM® Cortex®-M0+ Automotive, AEC-Q100, SAM D21E, Functional Safety (FuSa) Microcontroller IC 32-Bit 48MHz 256KB (256K x 8) FLASH 32-TQFP (7x7) "/> +<attribute name="MF" value="Microchip"/> +<attribute name="MP" value="ATSAMD21E18A-AF"/> +<attribute name="PACKAGE" value="TQFP-32 Microchip"/> +<attribute name="PRICE" value="None"/> +<attribute name="PURCHASE-URL" value="https://pricing.snapeda.com/search/part/ATSAMD21E18A-AF/?ref=eda"/> +</technology> +</technologies> +</device> +</devices> +</deviceset> +</devicesets> +</library> +</libraries> +<attributes> +</attributes> +<variantdefs> +</variantdefs> +<classes> +<class number="0" name="default" width="0" drill="0"> +</class> +</classes> +<parts> +<part name="J1" library="SparkFun-Connectors" deviceset="CORTEX_JTAG_DEBUG" device="_SMD" value="JTAG"/> +<part name="S1" library="passives" deviceset="2-8X4-5_SWITCH" device=""/> +<part name="C1" library="passives" deviceset="CAP" device="0805" value="10uF"/> +<part name="+3V1" library="supply1" deviceset="+3V3" device=""/> +<part name="P+1" library="supply1" deviceset="+5V" device=""/> +<part name="GND1" library="supply1" deviceset="GND" device=""/> +<part name="U2" library="power" deviceset="VREG-AP2112" device=""/> +<part name="C4" library="passives" deviceset="CAP" device="0805" value="1uF"/> +<part name="GND6" library="supply1" deviceset="GND" device=""/> +<part name="R2" library="passives" deviceset="RESISTOR" device="0805-RES" value="10k"/> +<part name="+3V3" library="supply1" deviceset="+3V3" device=""/> +<part name="R3" library="passives" deviceset="RESISTOR" device="0805-RES" value="10k"/> +<part name="+3V4" library="supply1" deviceset="+3V3" device=""/> +<part name="GND7" library="supply1" deviceset="GND" device=""/> +<part name="+3V5" library="supply1" deviceset="+3V3" device=""/> +<part name="C7" library="passives" deviceset="CAP" device="0805" value="1uF"/> +<part name="X1" library="connector" deviceset="USB" device=""/> +<part name="P+2" library="supply1" deviceset="+5V" device=""/> +<part name="GND8" library="supply1" deviceset="GND" device=""/> +<part name="U1" library="microcontrollers" deviceset="ATSAMD21E18A-AF" device=""/> +<part name="+3V6" library="supply1" deviceset="+3V3" device=""/> +<part name="GND2" library="supply1" deviceset="GND" device=""/> +<part name="C2" library="passives" deviceset="CAP" device="0805" value="1uF"/> +<part name="GND3" library="supply1" deviceset="GND" device=""/> +</parts> +<sheets> +<sheet> +<plain> +</plain> +<instances> +<instance part="J1" gate="J1" x="30.48" y="30.48" smashed="yes"> +<attribute name="NAME" x="17.78" y="38.354" size="1.778" layer="95" font="vector"/> +<attribute name="VALUE" x="17.78" y="20.574" size="1.778" layer="96" font="vector"/> +</instance> +<instance part="S1" gate="G$1" x="63.5" y="17.78" smashed="yes"> +<attribute name="NAME" x="57.15" y="15.24" size="1.778" layer="95" rot="R90"/> +<attribute name="VALUE" x="45.72" y="7.62" size="1.778" layer="96"/> +</instance> +<instance part="C1" gate="G$1" x="5.08" y="91.44" smashed="yes"> +<attribute name="NAME" x="6.604" y="94.361" size="1.778" layer="95"/> +<attribute name="VALUE" x="6.604" y="89.281" size="1.778" layer="96"/> +<attribute name="PACKAGE" x="6.604" y="87.376" size="1.27" layer="97"/> +<attribute name="VOLTAGE" x="6.604" y="85.598" size="1.27" layer="97"/> +<attribute name="TYPE" x="6.604" y="83.82" size="1.27" layer="97"/> +</instance> +<instance part="+3V1" gate="G$1" x="5.08" y="43.18" smashed="yes"> +<attribute name="VALUE" x="2.54" y="38.1" size="1.778" layer="96" rot="R90"/> +</instance> +<instance part="P+1" gate="1" x="5.08" y="116.84" smashed="yes"> +<attribute name="VALUE" x="2.54" y="111.76" size="1.778" layer="96" rot="R90"/> +</instance> +<instance part="GND1" gate="1" x="5.08" y="15.24" smashed="yes"> +<attribute name="VALUE" x="2.54" y="12.7" size="1.778" layer="96"/> +</instance> +<instance part="U2" gate="G$1" x="22.86" y="104.14" smashed="yes"> +<attribute name="NAME" x="20.32" y="111.76" size="1.27" layer="95"/> +<attribute name="VALUE" x="25.4" y="96.52" size="1.27" layer="96"/> +</instance> +<instance part="C4" gate="G$1" x="76.2" y="60.96" smashed="yes" rot="R90"> +<attribute name="NAME" x="73.279" y="62.484" size="1.778" layer="95" rot="R90"/> +<attribute name="VALUE" x="78.359" y="62.484" size="1.778" layer="96" rot="R90"/> +<attribute name="PACKAGE" x="80.264" y="62.484" size="1.27" layer="97" rot="R90"/> +<attribute name="VOLTAGE" x="82.042" y="62.484" size="1.27" layer="97" rot="R90"/> +<attribute name="TYPE" x="83.82" y="62.484" size="1.27" layer="97" rot="R90"/> +</instance> +<instance part="GND6" gate="1" x="78.74" y="5.08" smashed="yes"> +<attribute name="VALUE" x="76.2" y="2.54" size="1.778" layer="96"/> +</instance> +<instance part="R2" gate="G$1" x="78.74" y="40.64" smashed="yes" rot="R270"> +<attribute name="NAME" x="80.2386" y="44.45" size="1.778" layer="95" rot="R270"/> +<attribute name="VALUE" x="75.438" y="44.45" size="1.778" layer="96" rot="R270"/> +<attribute name="PRECISION" x="71.882" y="44.45" size="1.27" layer="97" rot="R270"/> +<attribute name="PACKAGE" x="73.66" y="44.45" size="1.27" layer="97" rot="R270"/> +</instance> +<instance part="+3V3" gate="G$1" x="78.74" y="53.34" smashed="yes"> +<attribute name="VALUE" x="76.2" y="48.26" size="1.778" layer="96" rot="R90"/> +</instance> +<instance part="R3" gate="G$1" x="63.5" y="40.64" smashed="yes" rot="R270"> +<attribute name="NAME" x="64.9986" y="44.45" size="1.778" layer="95" rot="R270"/> +<attribute name="VALUE" x="60.198" y="44.45" size="1.778" layer="96" rot="R270"/> +<attribute name="PRECISION" x="56.642" y="44.45" size="1.27" layer="97" rot="R270"/> +<attribute name="PACKAGE" x="58.42" y="44.45" size="1.27" layer="97" rot="R270"/> +</instance> +<instance part="+3V4" gate="G$1" x="63.5" y="53.34" smashed="yes"> +<attribute name="VALUE" x="60.96" y="48.26" size="1.778" layer="96" rot="R90"/> +</instance> +<instance part="GND7" gate="1" x="22.86" y="81.28" smashed="yes"> +<attribute name="VALUE" x="20.32" y="78.74" size="1.778" layer="96"/> +</instance> +<instance part="+3V5" gate="G$1" x="40.64" y="116.84" smashed="yes"> +<attribute name="VALUE" x="38.1" y="111.76" size="1.778" layer="96" rot="R90"/> +</instance> +<instance part="C7" gate="G$1" x="40.64" y="91.44" smashed="yes"> +<attribute name="NAME" x="42.164" y="94.361" size="1.778" layer="95"/> +<attribute name="VALUE" x="42.164" y="89.281" size="1.778" layer="96"/> +<attribute name="PACKAGE" x="42.164" y="87.376" size="1.27" layer="97"/> +<attribute name="VOLTAGE" x="42.164" y="85.598" size="1.27" layer="97"/> +<attribute name="TYPE" x="42.164" y="83.82" size="1.27" layer="97"/> +</instance> +<instance part="X1" gate="G$1" x="7.62" y="60.96" smashed="yes" rot="R270"> +<attribute name="NAME" x="5.715" y="65.405" size="1.27" layer="95" font="vector"/> +<attribute name="VALUE" x="5.715" y="52.705" size="1.27" layer="96" font="vector"/> +</instance> +<instance part="P+2" gate="1" x="35.56" y="68.58" smashed="yes"> +<attribute name="VALUE" x="35.56" y="71.12" size="1.778" layer="96" rot="R90"/> +</instance> +<instance part="GND8" gate="1" x="27.94" y="68.58" smashed="yes" rot="R180"> +<attribute name="VALUE" x="30.48" y="71.12" size="1.778" layer="96" rot="R180"/> +</instance> +<instance part="U1" gate="G$1" x="111.76" y="43.18" smashed="yes"> +<attribute name="NAME" x="91.4262" y="78.7778" size="1.780409375" layer="95"/> +<attribute name="VALUE" x="91.422" y="7.566" size="1.78115" layer="96"/> +</instance> +<instance part="+3V6" gate="G$1" x="78.74" y="83.82" smashed="yes"> +<attribute name="VALUE" x="76.2" y="78.74" size="1.778" layer="96" rot="R90"/> +</instance> +<instance part="GND2" gate="1" x="55.88" y="60.96" smashed="yes" rot="R270"> +<attribute name="VALUE" x="53.34" y="63.5" size="1.778" layer="96" rot="R270"/> +</instance> +<instance part="C2" gate="G$1" x="76.2" y="68.58" smashed="yes" rot="R90"> +<attribute name="NAME" x="73.279" y="70.104" size="1.778" layer="95" rot="R90"/> +<attribute name="VALUE" x="78.359" y="70.104" size="1.778" layer="96" rot="R90"/> +<attribute name="PACKAGE" x="80.264" y="70.104" size="1.27" layer="97" rot="R90"/> +<attribute name="VOLTAGE" x="82.042" y="70.104" size="1.27" layer="97" rot="R90"/> +<attribute name="TYPE" x="83.82" y="70.104" size="1.27" layer="97" rot="R90"/> +</instance> +<instance part="GND3" gate="1" x="55.88" y="68.58" smashed="yes" rot="R270"> +<attribute name="VALUE" x="53.34" y="71.12" size="1.778" layer="96" rot="R270"/> +</instance> +</instances> +<busses> +</busses> +<nets> +<net name="GND" class="0"> +<segment> +<pinref part="GND1" gate="1" pin="GND"/> +<wire x1="5.08" y1="17.78" x2="5.08" y2="25.4" width="0.1524" layer="91"/> +<wire x1="5.08" y1="25.4" x2="5.08" y2="30.48" width="0.1524" layer="91"/> +<wire x1="5.08" y1="30.48" x2="5.08" y2="33.02" width="0.1524" layer="91"/> +<pinref part="J1" gate="J1" pin="GND@3"/> +<wire x1="15.24" y1="33.02" x2="5.08" y2="33.02" width="0.1524" layer="91"/> +<pinref part="J1" gate="J1" pin="GND@5"/> +<wire x1="15.24" y1="30.48" x2="5.08" y2="30.48" width="0.1524" layer="91"/> +<junction x="5.08" y="30.48"/> +<pinref part="J1" gate="J1" pin="GNDDTCT"/> +<wire x1="15.24" y1="25.4" x2="5.08" y2="25.4" width="0.1524" layer="91"/> +<junction x="5.08" y="25.4"/> +</segment> +<segment> +<wire x1="86.36" y1="12.7" x2="78.74" y2="12.7" width="0.1524" layer="91"/> +<pinref part="GND6" gate="1" pin="GND"/> +<wire x1="78.74" y1="12.7" x2="78.74" y2="7.62" width="0.1524" layer="91"/> +<pinref part="S1" gate="G$1" pin="P"/> +<pinref part="S1" gate="G$1" pin="P1"/> +<wire x1="63.5" y1="12.7" x2="66.04" y2="12.7" width="0.1524" layer="91"/> +<wire x1="66.04" y1="12.7" x2="78.74" y2="12.7" width="0.1524" layer="91"/> +<junction x="66.04" y="12.7"/> +<junction x="78.74" y="12.7"/> +<pinref part="U1" gate="G$1" pin="GND"/> +</segment> +<segment> +<pinref part="U2" gate="G$1" pin="GND"/> +<wire x1="22.86" y1="93.98" x2="22.86" y2="86.36" width="0.1524" layer="91"/> +<pinref part="GND7" gate="1" pin="GND"/> +<pinref part="C1" gate="G$1" pin="2"/> +<wire x1="22.86" y1="86.36" x2="22.86" y2="83.82" width="0.1524" layer="91"/> +<wire x1="5.08" y1="88.9" x2="5.08" y2="86.36" width="0.1524" layer="91"/> +<wire x1="5.08" y1="86.36" x2="22.86" y2="86.36" width="0.1524" layer="91"/> +<junction x="22.86" y="86.36"/> +<pinref part="C7" gate="G$1" pin="2"/> +<wire x1="40.64" y1="88.9" x2="40.64" y2="86.36" width="0.1524" layer="91"/> +<wire x1="40.64" y1="86.36" x2="22.86" y2="86.36" width="0.1524" layer="91"/> +</segment> +<segment> +<pinref part="X1" gate="G$1" pin="GND"/> +<wire x1="12.7" y1="63.5" x2="27.94" y2="63.5" width="0.1524" layer="91"/> +<pinref part="GND8" gate="1" pin="GND"/> +<wire x1="27.94" y1="63.5" x2="27.94" y2="66.04" width="0.1524" layer="91"/> +</segment> +<segment> +<pinref part="GND2" gate="1" pin="GND"/> +<pinref part="C4" gate="G$1" pin="1"/> +<wire x1="58.42" y1="60.96" x2="71.12" y2="60.96" width="0.1524" layer="91"/> +</segment> +<segment> +<pinref part="GND3" gate="1" pin="GND"/> +<pinref part="C2" gate="G$1" pin="1"/> +<wire x1="58.42" y1="68.58" x2="71.12" y2="68.58" width="0.1524" layer="91"/> +</segment> +</net> +<net name="+3V3" class="0"> +<segment> +<pinref part="+3V1" gate="G$1" pin="+3V3"/> +<wire x1="5.08" y1="40.64" x2="5.08" y2="35.56" width="0.1524" layer="91"/> +<pinref part="J1" gate="J1" pin="VCC"/> +<wire x1="5.08" y1="35.56" x2="15.24" y2="35.56" width="0.1524" layer="91"/> +</segment> +<segment> +<pinref part="R2" gate="G$1" pin="1"/> +<pinref part="+3V3" gate="G$1" pin="+3V3"/> +<wire x1="78.74" y1="45.72" x2="78.74" y2="50.8" width="0.1524" layer="91"/> +</segment> +<segment> +<pinref part="+3V4" gate="G$1" pin="+3V3"/> +<pinref part="R3" gate="G$1" pin="1"/> +<wire x1="63.5" y1="50.8" x2="63.5" y2="45.72" width="0.1524" layer="91"/> +</segment> +<segment> +<pinref part="U2" gate="G$1" pin="VOUT"/> +<wire x1="35.56" y1="106.68" x2="40.64" y2="106.68" width="0.1524" layer="91"/> +<pinref part="+3V5" gate="G$1" pin="+3V3"/> +<wire x1="40.64" y1="106.68" x2="40.64" y2="114.3" width="0.1524" layer="91"/> +<pinref part="C7" gate="G$1" pin="1"/> +<wire x1="40.64" y1="106.68" x2="40.64" y2="96.52" width="0.1524" layer="91"/> +<junction x="40.64" y="106.68"/> +</segment> +<segment> +<pinref part="+3V6" gate="G$1" pin="+3V3"/> +<pinref part="C2" gate="G$1" pin="2"/> +<wire x1="78.74" y1="81.28" x2="78.74" y2="76.2" width="0.1524" layer="91"/> +<pinref part="U1" gate="G$1" pin="VDDANA"/> +<wire x1="78.74" y1="76.2" x2="78.74" y2="68.58" width="0.1524" layer="91"/> +<wire x1="78.74" y1="68.58" x2="86.36" y2="68.58" width="0.1524" layer="91"/> +<junction x="78.74" y="68.58"/> +<pinref part="U1" gate="G$1" pin="VDDIN"/> +<wire x1="86.36" y1="76.2" x2="78.74" y2="76.2" width="0.1524" layer="91"/> +<junction x="78.74" y="76.2"/> +</segment> +</net> +<net name="N$6" class="0"> +<segment> +<pinref part="J1" gate="J1" pin="!RESET"/> +<wire x1="45.72" y1="25.4" x2="63.5" y2="25.4" width="0.1524" layer="91"/> +<pinref part="S1" gate="G$1" pin="S"/> +<wire x1="63.5" y1="25.4" x2="78.74" y2="25.4" width="0.1524" layer="91"/> +<wire x1="78.74" y1="25.4" x2="86.36" y2="25.4" width="0.1524" layer="91"/> +<wire x1="63.5" y1="22.86" x2="63.5" y2="25.4" width="0.1524" layer="91"/> +<junction x="63.5" y="25.4"/> +<pinref part="S1" gate="G$1" pin="S1"/> +<wire x1="66.04" y1="22.86" x2="63.5" y2="22.86" width="0.1524" layer="91"/> +<junction x="63.5" y="22.86"/> +<pinref part="R2" gate="G$1" pin="2"/> +<wire x1="78.74" y1="25.4" x2="78.74" y2="35.56" width="0.1524" layer="91"/> +<junction x="78.74" y="25.4"/> +<pinref part="U1" gate="G$1" pin="!RESET"/> +</segment> +</net> +<net name="SWDCLK" class="0"> +<segment> +<pinref part="J1" gate="J1" pin="SWDCLK/TCK"/> +<wire x1="45.72" y1="33.02" x2="63.5" y2="33.02" width="0.1524" layer="91"/> +<label x="48.26" y="33.02" size="1.778" layer="95"/> +<pinref part="R3" gate="G$1" pin="2"/> +<wire x1="63.5" y1="33.02" x2="63.5" y2="35.56" width="0.1524" layer="91"/> +</segment> +<segment> +<pinref part="U1" gate="G$1" pin="PA30"/> +<wire x1="139.7" y1="15.24" x2="154.94" y2="15.24" width="0.1524" layer="91"/> +<label x="142.24" y="15.24" size="1.778" layer="95"/> +</segment> +</net> +<net name="SWDIO" class="0"> +<segment> +<pinref part="J1" gate="J1" pin="SWDIO/TMS"/> +<wire x1="45.72" y1="35.56" x2="60.96" y2="35.56" width="0.1524" layer="91"/> +<label x="48.26" y="35.56" size="1.778" layer="95"/> +</segment> +<segment> +<pinref part="U1" gate="G$1" pin="PA31"/> +<wire x1="139.7" y1="12.7" x2="154.94" y2="12.7" width="0.1524" layer="91"/> +<label x="142.24" y="12.7" size="1.778" layer="95"/> +</segment> +</net> +<net name="USBDP" class="0"> +<segment> +<pinref part="X1" gate="G$1" pin="D+"/> +<wire x1="12.7" y1="55.88" x2="25.4" y2="55.88" width="0.1524" layer="91"/> +<label x="15.24" y="55.88" size="1.778" layer="95"/> +</segment> +<segment> +<pinref part="U1" gate="G$1" pin="PA25"/> +<wire x1="139.7" y1="22.86" x2="154.94" y2="22.86" width="0.1524" layer="91"/> +<label x="142.24" y="22.86" size="1.778" layer="95"/> +</segment> +</net> +<net name="USBDM" class="0"> +<segment> +<pinref part="X1" gate="G$1" pin="D-"/> +<wire x1="12.7" y1="58.42" x2="25.4" y2="58.42" width="0.1524" layer="91"/> +<label x="15.24" y="58.42" size="1.778" layer="95"/> +</segment> +<segment> +<pinref part="U1" gate="G$1" pin="PA24"/> +<wire x1="139.7" y1="25.4" x2="154.94" y2="25.4" width="0.1524" layer="91"/> +<label x="142.24" y="25.4" size="1.778" layer="95"/> +</segment> +</net> +<net name="+5V" class="0"> +<segment> +<pinref part="P+1" gate="1" pin="+5V"/> +<pinref part="C1" gate="G$1" pin="1"/> +<wire x1="5.08" y1="114.3" x2="5.08" y2="106.68" width="0.1524" layer="91"/> +<pinref part="U2" gate="G$1" pin="VIN"/> +<wire x1="5.08" y1="106.68" x2="5.08" y2="96.52" width="0.1524" layer="91"/> +<wire x1="10.16" y1="106.68" x2="7.62" y2="106.68" width="0.1524" layer="91"/> +<junction x="5.08" y="106.68"/> +<pinref part="U2" gate="G$1" pin="EN"/> +<wire x1="7.62" y1="106.68" x2="5.08" y2="106.68" width="0.1524" layer="91"/> +<wire x1="10.16" y1="101.6" x2="7.62" y2="101.6" width="0.1524" layer="91"/> +<wire x1="7.62" y1="101.6" x2="7.62" y2="106.68" width="0.1524" layer="91"/> +<junction x="7.62" y="106.68"/> +</segment> +<segment> +<pinref part="X1" gate="G$1" pin="VBUS"/> +<wire x1="12.7" y1="60.96" x2="35.56" y2="60.96" width="0.1524" layer="91"/> +<pinref part="P+2" gate="1" pin="+5V"/> +<wire x1="35.56" y1="60.96" x2="35.56" y2="66.04" width="0.1524" layer="91"/> +</segment> +</net> +<net name="N$1" class="0"> +<segment> +<pinref part="C4" gate="G$1" pin="2"/> +<pinref part="U1" gate="G$1" pin="VDDCORE"/> +<wire x1="78.74" y1="60.96" x2="86.36" y2="60.96" width="0.1524" layer="91"/> +</segment> +</net> +</nets> +</sheet> +</sheets> +</schematic> +</drawing> +<compatibility> +<note version="8.3" severity="warning"> +Since Version 8.3, EAGLE supports URNs for individual library +assets (packages, symbols, and devices). The URNs of those assets +will not be understood (or retained) with this version. +</note> +</compatibility> +</eagle> diff --git a/samd21-example/samd21-barebones/samd21-barebones.s#2 b/samd21-example/samd21-barebones/samd21-barebones.s#2 new file mode 100644 index 0000000000000000000000000000000000000000..13f4fde5d932b9f9bfd7ac3a0238e92fb29532ce --- /dev/null +++ b/samd21-example/samd21-barebones/samd21-barebones.s#2 @@ -0,0 +1,1898 @@ +<?xml version="1.0" encoding="utf-8"?> +<!DOCTYPE eagle SYSTEM "eagle.dtd"> +<eagle version="9.6.0"> +<drawing> +<settings> +<setting alwaysvectorfont="no"/> +<setting verticaltext="up"/> +</settings> +<grid distance="0.1" unitdist="inch" unit="inch" style="lines" multiple="1" display="yes" altdistance="0.01" altunitdist="inch" altunit="inch"/> +<layers> +<layer number="1" name="Top" color="4" fill="1" visible="no" active="no"/> +<layer number="2" name="Route2" color="1" fill="3" visible="no" active="no"/> +<layer number="3" name="Route3" color="4" fill="3" visible="no" active="no"/> +<layer number="4" name="Route4" color="1" fill="4" visible="no" active="no"/> +<layer number="5" name="Route5" color="4" fill="4" visible="no" active="no"/> +<layer number="6" name="Route6" color="1" fill="8" visible="no" active="no"/> +<layer number="7" name="Route7" color="4" fill="8" visible="no" active="no"/> +<layer number="8" name="Route8" color="1" fill="2" visible="no" active="no"/> +<layer number="9" name="Route9" color="4" fill="2" visible="no" active="no"/> +<layer number="10" name="Route10" color="1" fill="7" visible="no" active="no"/> +<layer number="11" name="Route11" color="4" fill="7" visible="no" active="no"/> +<layer number="12" name="Route12" color="1" fill="5" visible="no" active="no"/> +<layer number="13" name="Route13" color="4" fill="5" visible="no" active="no"/> +<layer number="14" name="Route14" color="1" fill="6" visible="no" active="no"/> +<layer number="15" name="Route15" color="4" fill="6" visible="no" active="no"/> +<layer number="16" name="Bottom" color="1" fill="1" visible="no" active="no"/> +<layer number="17" name="Pads" color="2" fill="1" visible="no" active="no"/> +<layer number="18" name="Vias" color="2" fill="1" visible="no" active="no"/> +<layer number="19" name="Unrouted" color="6" fill="1" visible="no" active="no"/> +<layer number="20" name="Dimension" color="24" fill="1" visible="no" active="no"/> +<layer number="21" name="tPlace" color="7" fill="1" visible="no" active="no"/> +<layer number="22" name="bPlace" color="7" fill="1" visible="no" active="no"/> +<layer number="23" name="tOrigins" color="15" fill="1" visible="no" active="no"/> +<layer number="24" name="bOrigins" color="15" fill="1" visible="no" active="no"/> +<layer number="25" name="tNames" color="7" fill="1" visible="no" active="no"/> +<layer number="26" name="bNames" color="7" fill="1" visible="no" active="no"/> +<layer number="27" name="tValues" color="7" fill="1" visible="no" active="no"/> +<layer number="28" name="bValues" color="7" fill="1" visible="no" active="no"/> +<layer number="29" name="tStop" color="7" fill="3" visible="no" active="no"/> +<layer number="30" name="bStop" color="7" fill="6" visible="no" active="no"/> +<layer number="31" name="tCream" color="7" fill="4" visible="no" active="no"/> +<layer number="32" name="bCream" color="7" fill="5" visible="no" active="no"/> +<layer number="33" name="tFinish" color="6" fill="3" visible="no" active="no"/> +<layer number="34" name="bFinish" color="6" fill="6" visible="no" active="no"/> +<layer number="35" name="tGlue" color="7" fill="4" visible="no" active="no"/> +<layer number="36" name="bGlue" color="7" fill="5" visible="no" active="no"/> +<layer number="37" name="tTest" color="7" fill="1" visible="no" active="no"/> +<layer number="38" name="bTest" color="7" fill="1" visible="no" active="no"/> +<layer number="39" name="tKeepout" color="4" fill="11" visible="no" active="no"/> +<layer number="40" name="bKeepout" color="1" fill="11" visible="no" active="no"/> +<layer number="41" name="tRestrict" color="4" fill="10" visible="no" active="no"/> +<layer number="42" name="bRestrict" color="1" fill="10" visible="no" active="no"/> +<layer number="43" name="vRestrict" color="2" fill="10" visible="no" active="no"/> +<layer number="44" name="Drills" color="7" fill="1" visible="no" active="no"/> +<layer number="45" name="Holes" color="7" fill="1" visible="no" active="no"/> +<layer number="46" name="Milling" color="3" fill="1" visible="no" active="no"/> +<layer number="47" name="Measures" color="7" fill="1" visible="no" active="no"/> +<layer number="48" name="Document" color="7" fill="1" visible="no" active="no"/> +<layer number="49" name="Reference" color="7" fill="1" visible="no" active="no"/> +<layer number="50" name="dxf" color="7" fill="1" visible="no" active="no"/> +<layer number="51" name="tDocu" color="7" fill="1" visible="no" active="no"/> +<layer number="52" name="bDocu" color="7" fill="1" visible="no" active="no"/> +<layer number="53" name="tGND_GNDA" color="7" fill="9" visible="no" active="no"/> +<layer number="54" name="bGND_GNDA" color="1" fill="9" visible="no" active="no"/> +<layer number="56" name="wert" color="7" fill="1" visible="no" active="no"/> +<layer number="57" name="tCAD" color="7" fill="1" visible="no" active="no"/> +<layer number="59" name="tCarbon" color="7" fill="1" visible="no" active="no"/> +<layer number="60" name="bCarbon" color="7" fill="1" visible="no" active="no"/> +<layer number="88" name="SimResults" color="9" fill="1" visible="yes" active="yes"/> +<layer number="89" name="SimProbes" color="9" fill="1" visible="yes" active="yes"/> +<layer number="90" name="Modules" color="5" fill="1" visible="yes" active="yes"/> +<layer number="91" name="Nets" color="2" fill="1" visible="yes" active="yes"/> +<layer number="92" name="Busses" color="1" fill="1" visible="yes" active="yes"/> +<layer number="93" name="Pins" color="2" fill="1" visible="no" active="yes"/> +<layer number="94" name="Symbols" color="4" fill="1" visible="yes" active="yes"/> +<layer number="95" name="Names" color="7" fill="1" visible="yes" active="yes"/> +<layer number="96" name="Values" color="7" fill="1" visible="yes" active="yes"/> +<layer number="97" name="Info" color="7" fill="1" visible="yes" active="yes"/> +<layer number="98" name="Guide" color="6" fill="1" visible="yes" active="yes"/> +<layer number="99" name="SpiceOrder" color="7" fill="1" visible="yes" active="yes"/> +<layer number="100" name="Muster" color="7" fill="1" visible="no" active="no"/> +<layer number="101" name="Patch_Top" color="12" fill="4" visible="no" active="yes"/> +<layer number="102" name="Vscore" color="7" fill="1" visible="no" active="yes"/> +<layer number="103" name="tMap" color="7" fill="1" visible="no" active="yes"/> +<layer number="104" name="Name" color="7" fill="1" visible="no" active="yes"/> +<layer number="105" name="tPlate" color="7" fill="1" visible="no" active="yes"/> +<layer number="106" name="bPlate" color="7" fill="1" visible="no" active="yes"/> +<layer number="107" name="Crop" color="7" fill="1" visible="no" active="yes"/> +<layer number="108" name="tplace-old" color="10" fill="1" visible="no" active="yes"/> +<layer number="109" name="ref-old" color="11" fill="1" visible="no" active="yes"/> +<layer number="110" name="fp0" color="7" fill="1" visible="no" active="yes"/> +<layer number="111" name="LPC17xx" color="7" fill="1" visible="no" active="yes"/> +<layer number="112" name="tSilk" color="7" fill="1" visible="no" active="yes"/> +<layer number="113" name="IDFDebug" color="7" fill="1" visible="no" active="yes"/> +<layer number="114" name="Badge_Outline" color="7" fill="1" visible="no" active="yes"/> +<layer number="115" name="ReferenceISLANDS" color="7" fill="1" visible="no" active="yes"/> +<layer number="116" name="Patch_BOT" color="9" fill="4" visible="no" active="yes"/> +<layer number="117" name="BACKMAAT1" color="7" fill="1" visible="yes" active="yes"/> +<layer number="118" name="Rect_Pads" color="7" fill="1" visible="no" active="yes"/> +<layer number="119" name="KAP_TEKEN" color="7" fill="1" visible="yes" active="yes"/> +<layer number="120" name="KAP_MAAT1" color="7" fill="1" visible="yes" active="yes"/> +<layer number="121" name="_tsilk" color="7" fill="1" visible="no" active="yes"/> +<layer number="122" name="_bsilk" color="7" fill="1" visible="no" active="yes"/> +<layer number="123" name="tTestmark" color="7" fill="1" visible="no" active="yes"/> +<layer number="124" name="bTestmark" color="7" fill="1" visible="no" active="yes"/> +<layer number="125" name="_tNames" color="7" fill="1" visible="no" active="yes"/> +<layer number="126" name="_bNames" color="7" fill="1" visible="no" active="yes"/> +<layer number="127" name="_tValues" color="7" fill="1" visible="no" active="yes"/> +<layer number="128" name="_bValues" color="7" fill="1" visible="no" active="yes"/> +<layer number="129" name="Mask" color="7" fill="1" visible="no" active="yes"/> +<layer number="130" name="SMDSTROOK" color="7" fill="1" visible="yes" active="yes"/> +<layer number="131" name="tAdjust" color="7" fill="1" visible="no" active="yes"/> +<layer number="132" name="bAdjust" color="7" fill="1" visible="no" active="yes"/> +<layer number="133" name="bottom_silk" color="7" fill="1" visible="yes" active="yes"/> +<layer number="144" name="Drill_legend" color="7" fill="1" visible="no" active="yes"/> +<layer number="150" name="Notes" color="7" fill="1" visible="no" active="yes"/> +<layer number="151" name="HeatSink" color="7" fill="1" visible="no" active="yes"/> +<layer number="152" name="_bDocu" color="7" fill="1" visible="no" active="yes"/> +<layer number="153" name="FabDoc1" color="7" fill="1" visible="no" active="yes"/> +<layer number="154" name="FabDoc2" color="7" fill="1" visible="no" active="yes"/> +<layer number="155" name="FabDoc3" color="7" fill="1" visible="no" active="yes"/> +<layer number="199" name="Contour" color="7" fill="1" visible="no" active="yes"/> +<layer number="200" name="200bmp" color="1" fill="10" visible="no" active="yes"/> +<layer number="201" name="201bmp" color="2" fill="10" visible="no" active="yes"/> +<layer number="202" name="202bmp" color="3" fill="10" visible="no" active="yes"/> +<layer number="203" name="203bmp" color="4" fill="10" visible="no" active="yes"/> +<layer number="204" name="204bmp" color="5" fill="10" visible="no" active="yes"/> +<layer number="205" name="205bmp" color="6" fill="10" visible="no" active="yes"/> +<layer number="206" name="206bmp" color="7" fill="10" visible="no" active="yes"/> +<layer number="207" name="207bmp" color="8" fill="10" visible="no" active="yes"/> +<layer number="208" name="208bmp" color="9" fill="10" visible="no" active="yes"/> +<layer number="209" name="209bmp" color="7" fill="1" visible="no" active="yes"/> +<layer number="210" name="210bmp" color="7" fill="1" visible="no" active="yes"/> +<layer number="211" name="211bmp" color="7" fill="1" visible="no" active="yes"/> +<layer number="212" name="212bmp" color="7" fill="1" visible="no" active="yes"/> +<layer number="213" name="213bmp" color="7" fill="1" visible="no" active="yes"/> +<layer number="214" name="214bmp" color="7" fill="1" visible="no" active="yes"/> +<layer number="215" name="215bmp" color="7" fill="1" visible="no" active="yes"/> +<layer number="216" name="216bmp" color="7" fill="1" visible="no" active="yes"/> +<layer number="217" name="217bmp" color="18" fill="1" visible="no" active="no"/> +<layer number="218" name="218bmp" color="19" fill="1" visible="no" active="no"/> +<layer number="219" name="219bmp" color="20" fill="1" visible="no" active="no"/> +<layer number="220" name="220bmp" color="21" fill="1" visible="no" active="no"/> +<layer number="221" name="221bmp" color="22" fill="1" visible="no" active="no"/> +<layer number="222" name="222bmp" color="23" fill="1" visible="no" active="no"/> +<layer number="223" name="223bmp" color="24" fill="1" visible="no" active="no"/> +<layer number="224" name="224bmp" color="25" fill="1" visible="no" active="no"/> +<layer number="225" name="225bmp" color="7" fill="1" visible="no" active="yes"/> +<layer number="226" name="226bmp" color="7" fill="1" visible="no" active="yes"/> +<layer number="227" name="227bmp" color="7" fill="1" visible="no" active="yes"/> +<layer number="228" name="228bmp" color="7" fill="1" visible="no" active="yes"/> +<layer number="229" name="229bmp" color="7" fill="1" visible="no" active="yes"/> +<layer number="230" name="230bmp" color="7" fill="1" visible="no" active="yes"/> +<layer number="231" name="231bmp" color="7" fill="1" visible="no" active="yes"/> +<layer number="232" name="Eagle3D_PG2" color="7" fill="1" visible="no" active="yes"/> +<layer number="233" name="Eagle3D_PG3" color="7" fill="1" visible="no" active="yes"/> +<layer number="248" name="Housing" color="7" fill="1" visible="no" active="yes"/> +<layer number="249" name="Edge" color="7" fill="1" visible="no" active="yes"/> +<layer number="250" name="Descript" color="3" fill="1" visible="no" active="no"/> +<layer number="251" name="SMDround" color="12" fill="11" visible="no" active="no"/> +<layer number="254" name="cooling" color="7" fill="1" visible="no" active="yes"/> +<layer number="255" name="routoute" color="7" fill="1" visible="no" active="yes"/> +</layers> +<schematic xreflabel="%F%N/%S.%C%R" xrefpart="/%S.%C%R"> +<libraries> +<library name="SparkFun-Connectors"> +<description><h3>SparkFun Connectors</h3> +This library contains electrically-functional connectors. +<br> +<br> +We've spent an enormous amount of time creating and checking these footprints and parts, but it is <b> the end user's responsibility</b> to ensure correctness and suitablity for a given componet or application. +<br> +<br>If you enjoy using this library, please buy one of our products at <a href=" www.sparkfun.com">SparkFun.com</a>. +<br> +<br> +<b>Licensing:</b> Creative Commons ShareAlike 4.0 International - https://creativecommons.org/licenses/by-sa/4.0/ +<br> +<br> +You are welcome to use this library for commercial purposes. For attribution, we ask that when you begin to sell your device using our footprint, you email us with a link to the product being sold. We want bragging rights that we helped (in a very small part) to create your 8th world wonder. We would like the opportunity to feature your device on our homepage.</description> +<packages> +<package name="2X5-PTH-1.27MM-NO_SILK"> +<description><h3>Plated Through Hole - 2x5 ARM Cortex Debug Connector (10-pin)</h3> +<p>tDoc (51) layer border represents maximum dimensions of plastic housing.</p> +<p>Specifications: +<ul><li>Pin count:10</li> +<li>Pin pitch:1.27mm</li> +</ul></p> +<p><a href=”http://portal.fciconnect.com/Comergent//fci/drawing/20021111.pdf”>Datasheet referenced for footprint</a></p> +<p>Example device(s): +<ul><li>CONN_05x2</li> +</ul></p></description> +<pad name="8" x="1.27" y="0.762" drill="0.508" diameter="1"/> +<pad name="6" x="0" y="0.762" drill="0.508" diameter="1"/> +<pad name="4" x="-1.27" y="0.762" drill="0.508" diameter="1"/> +<pad name="2" x="-2.54" y="0.762" drill="0.508" diameter="1"/> +<pad name="10" x="2.54" y="0.762" drill="0.508" diameter="1"/> +<pad name="7" x="1.27" y="-0.762" drill="0.508" diameter="1"/> +<pad name="5" x="0" y="-0.762" drill="0.508" diameter="1"/> +<pad name="3" x="-1.27" y="-0.762" drill="0.508" diameter="1"/> +<pad name="1" x="-2.54" y="-0.762" drill="0.508" diameter="1"/> +<pad name="9" x="2.54" y="-0.762" drill="0.508" diameter="1"/> +<wire x1="-3.403" y1="-1.021" x2="-3.403" y2="-0.259" width="0.254" layer="21"/> +<wire x1="3.175" y1="1.715" x2="-3.175" y2="1.715" width="0.127" layer="51"/> +<wire x1="-3.175" y1="1.715" x2="-3.175" y2="-1.715" width="0.127" layer="51"/> +<wire x1="-3.175" y1="-1.715" x2="3.175" y2="-1.715" width="0.127" layer="51"/> +<wire x1="3.175" y1="-1.715" x2="3.175" y2="1.715" width="0.127" layer="51"/> +<text x="-1.5748" y="1.9304" size="0.6096" layer="25" font="vector" ratio="20">>NAME</text> +<text x="-1.8288" y="-2.4638" size="0.6096" layer="27" font="vector" ratio="20">>VALUE</text> +<wire x1="-0.635" y1="-1.905" x2="0.635" y2="-1.905" width="0.254" layer="21"/> +<wire x1="5.2" y1="1.6" x2="-5.2" y2="1.6" width="0.127" layer="51"/> +<wire x1="-5.2" y1="1.6" x2="-5.2" y2="-1.6" width="0.127" layer="51"/> +<wire x1="-5.2" y1="-1.6" x2="5.2" y2="-1.6" width="0.127" layer="51"/> +<wire x1="5.2" y1="-1.6" x2="5.2" y2="1.6" width="0.127" layer="51"/> +</package> +<package name="2X5-PTH-1.27MM"> +<description><h3>Plated Through Hole - 2x5 ARM Cortex Debug Connector (10-pin)</h3> +<p>tDoc (51) layer border represents maximum dimensions of plastic housing.</p> +<p>Specifications: +<ul><li>Pin count:10</li> +<li>Pin pitch:1.27mm</li> +</ul></p> +<p><a href=”http://portal.fciconnect.com/Comergent//fci/drawing/20021111.pdf”>Datasheet referenced for footprint</a></p> +<p>Example device(s): +<ul><li>CONN_05x2</li> +</ul></p></description> +<pad name="8" x="1.27" y="0.635" drill="0.508" diameter="1"/> +<pad name="6" x="0" y="0.635" drill="0.508" diameter="1"/> +<pad name="4" x="-1.27" y="0.635" drill="0.508" diameter="1"/> +<pad name="2" x="-2.54" y="0.635" drill="0.508" diameter="1"/> +<pad name="10" x="2.54" y="0.635" drill="0.508" diameter="1"/> +<pad name="7" x="1.27" y="-0.635" drill="0.508" diameter="1"/> +<pad name="5" x="0" y="-0.635" drill="0.508" diameter="1"/> +<pad name="3" x="-1.27" y="-0.635" drill="0.508" diameter="1"/> +<pad name="1" x="-2.54" y="-0.635" drill="0.508" diameter="1"/> +<pad name="9" x="2.54" y="-0.635" drill="0.508" diameter="1"/> +<wire x1="-3.403" y1="-1.021" x2="-3.403" y2="-0.259" width="0.254" layer="21"/> +<wire x1="3.175" y1="1.715" x2="-3.175" y2="1.715" width="0.127" layer="21"/> +<wire x1="-3.175" y1="1.715" x2="-3.175" y2="-1.715" width="0.127" layer="21"/> +<wire x1="-3.175" y1="-1.715" x2="3.175" y2="-1.715" width="0.127" layer="21"/> +<wire x1="3.175" y1="-1.715" x2="3.175" y2="1.715" width="0.127" layer="21"/> +<text x="-1.5748" y="1.9304" size="0.6096" layer="25" font="vector" ratio="20">>NAME</text> +<text x="-1.8288" y="-2.4638" size="0.6096" layer="27" font="vector" ratio="20">>VALUE</text> +</package> +<package name="2X5-SMD-1.27MM"> +<description>Shrouded SMD connector for JTAG and SWD applications.</description> +<smd name="6" x="0" y="-1.95" dx="0.76" dy="2.4" layer="1" rot="R180"/> +<smd name="8" x="-1.27" y="-1.95" dx="0.76" dy="2.4" layer="1" rot="R180"/> +<smd name="10" x="-2.54" y="-1.95" dx="0.76" dy="2.4" layer="1" rot="R180"/> +<smd name="4" x="1.27" y="-1.95" dx="0.76" dy="2.4" layer="1" rot="R180"/> +<smd name="2" x="2.54" y="-1.95" dx="0.76" dy="2.4" layer="1" rot="R180"/> +<smd name="1" x="2.54" y="1.95" dx="0.76" dy="2.4" layer="1" rot="R180"/> +<smd name="3" x="1.27" y="1.95" dx="0.76" dy="2.4" layer="1" rot="R180"/> +<smd name="5" x="0" y="1.95" dx="0.76" dy="2.4" layer="1" rot="R180"/> +<smd name="7" x="-1.27" y="1.95" dx="0.76" dy="2.4" layer="1" rot="R180"/> +<smd name="9" x="-2.54" y="1.95" dx="0.76" dy="2.4" layer="1" rot="R180"/> +<rectangle x1="-1.0575" y1="-1.9625" x2="1.0575" y2="-1.5525" layer="51" rot="R270"/> +<wire x1="5.55" y1="-1.7" x2="-5.55" y2="-1.7" width="0.1524" layer="51"/> +<wire x1="-5.55" y1="-1.7" x2="-5.55" y2="1.7" width="0.1524" layer="51"/> +<wire x1="-5.55" y1="1.7" x2="5.55" y2="1.7" width="0.1524" layer="51"/> +<wire x1="5.55" y1="1.7" x2="5.55" y2="-1.7" width="0.1524" layer="51"/> +<rectangle x1="-2.3275" y1="-1.9625" x2="-0.2125" y2="-1.5525" layer="51" rot="R270"/> +<rectangle x1="-3.5975" y1="-1.9625" x2="-1.4825" y2="-1.5525" layer="51" rot="R270"/> +<rectangle x1="0.2125" y1="-1.9625" x2="2.3275" y2="-1.5525" layer="51" rot="R270"/> +<rectangle x1="1.4825" y1="-1.9625" x2="3.5975" y2="-1.5525" layer="51" rot="R270"/> +<rectangle x1="1.4825" y1="1.5525" x2="3.5975" y2="1.9625" layer="51" rot="R90"/> +<rectangle x1="0.2125" y1="1.5525" x2="2.3275" y2="1.9625" layer="51" rot="R90"/> +<rectangle x1="-1.0575" y1="1.5525" x2="1.0575" y2="1.9625" layer="51" rot="R90"/> +<rectangle x1="-2.3275" y1="1.5525" x2="-0.2125" y2="1.9625" layer="51" rot="R90"/> +<rectangle x1="-3.5975" y1="1.5525" x2="-1.4825" y2="1.9625" layer="51" rot="R90"/> +<wire x1="-3.2" y1="2.5" x2="-6.3" y2="2.5" width="0.2032" layer="51"/> +<wire x1="-6.3" y1="2.5" x2="-6.3" y2="-2.5" width="0.2032" layer="51"/> +<wire x1="-6.3" y1="-2.5" x2="-3.2" y2="-2.5" width="0.2032" layer="51"/> +<wire x1="3.2" y1="-2.5" x2="6.3" y2="-2.5" width="0.2032" layer="51"/> +<wire x1="6.3" y1="-2.5" x2="6.3" y2="2.5" width="0.2032" layer="51"/> +<wire x1="6.3" y1="2.5" x2="3.2" y2="2.5" width="0.2032" layer="51"/> +<wire x1="0.6" y1="2.9" x2="0.6" y2="3.4" width="0.2032" layer="21"/> +<wire x1="0.6" y1="3.4" x2="-0.6" y2="3.4" width="0.2032" layer="21"/> +<wire x1="-0.6" y1="3.4" x2="-0.6" y2="2.9" width="0.2032" layer="21"/> +<circle x="3.6" y="3.1" radius="0.1" width="0.2032" layer="21"/> +<wire x1="-3.175" y1="1.905" x2="-3.175" y2="-1.905" width="0.127" layer="51"/> +<wire x1="3.175" y1="1.905" x2="3.175" y2="-1.905" width="0.127" layer="51"/> +</package> +</packages> +<symbols> +<symbol name="CORTEX_DEBUG"> +<description><h3>Cortex Debug Connector</h3> +<p><a href="http://infocenter.arm.com/help/topic/com.arm.doc.faqs/attached/13634/cortex_debug_connectors.pdf">Datasheet</a></p></description> +<pin name="VCC" x="-15.24" y="5.08" length="short"/> +<pin name="GND@3" x="-15.24" y="2.54" length="short"/> +<pin name="GND@5" x="-15.24" y="0" length="short"/> +<pin name="KEY" x="-15.24" y="-2.54" length="short"/> +<pin name="GNDDTCT" x="-15.24" y="-5.08" length="short"/> +<pin name="!RESET" x="15.24" y="-5.08" length="short" rot="R180"/> +<pin name="NC/TDI" x="15.24" y="-2.54" length="short" rot="R180"/> +<pin name="SWO/TDO" x="15.24" y="0" length="short" rot="R180"/> +<pin name="SWDCLK/TCK" x="15.24" y="2.54" length="short" rot="R180"/> +<pin name="SWDIO/TMS" x="15.24" y="5.08" length="short" rot="R180"/> +<wire x1="-12.7" y1="-7.62" x2="-12.7" y2="7.62" width="0.254" layer="94"/> +<wire x1="-12.7" y1="7.62" x2="12.7" y2="7.62" width="0.254" layer="94"/> +<wire x1="12.7" y1="7.62" x2="12.7" y2="-7.62" width="0.254" layer="94"/> +<wire x1="12.7" y1="-7.62" x2="-12.7" y2="-7.62" width="0.254" layer="94"/> +<text x="-12.7" y="7.874" size="1.778" layer="95" font="vector">>Name</text> +<text x="-12.7" y="-9.906" size="1.778" layer="96" font="vector">>Value</text> +</symbol> +</symbols> +<devicesets> +<deviceset name="CORTEX_JTAG_DEBUG" prefix="J"> +<description><h3>Cortex Debug Connector - 10 pin</h3> +<p>Supports JTAG debug, Serial Wire debug, and Serial Wire Viewer. +PTH and SMD connector options available.</p> +<p> <ul><a href=”http://infocenter.arm.com/help/topic/com.arm.doc.faqs/attached/13634/cortex_debug_connectors.pdf”>General Connector Information</a> +<p><b> Products:</b> +<ul><li><a href=”http://www.digikey.com/product-detail/en/cnc-tech/3220-10-0100-00/1175-1627-ND/3883661”>PTH Connector</a> -via Digi-Key</li> +<li><a href=”https://www.sparkfun.com/products/13229”>SparkFun PSoc</a></li> +<li><a href=”https://www.sparkfun.com/products/13810”>SparkFun T</a></li> +</ul></p></description> +<gates> +<gate name="J1" symbol="CORTEX_DEBUG" x="0" y="0"/> +</gates> +<devices> +<device name="_PTH_NS" package="2X5-PTH-1.27MM-NO_SILK"> +<connects> +<connect gate="J1" pin="!RESET" pad="10"/> +<connect gate="J1" pin="GND@3" pad="3"/> +<connect gate="J1" pin="GND@5" pad="5"/> +<connect gate="J1" pin="GNDDTCT" pad="9"/> +<connect gate="J1" pin="KEY" pad="7"/> +<connect gate="J1" pin="NC/TDI" pad="8"/> +<connect gate="J1" pin="SWDCLK/TCK" pad="4"/> +<connect gate="J1" pin="SWDIO/TMS" pad="2"/> +<connect gate="J1" pin="SWO/TDO" pad="6"/> +<connect gate="J1" pin="VCC" pad="1"/> +</connects> +<technologies> +<technology name=""/> +</technologies> +</device> +<device name="_PTH" package="2X5-PTH-1.27MM"> +<connects> +<connect gate="J1" pin="!RESET" pad="10"/> +<connect gate="J1" pin="GND@3" pad="3"/> +<connect gate="J1" pin="GND@5" pad="5"/> +<connect gate="J1" pin="GNDDTCT" pad="9"/> +<connect gate="J1" pin="KEY" pad="7"/> +<connect gate="J1" pin="NC/TDI" pad="8"/> +<connect gate="J1" pin="SWDCLK/TCK" pad="4"/> +<connect gate="J1" pin="SWDIO/TMS" pad="2"/> +<connect gate="J1" pin="SWO/TDO" pad="6"/> +<connect gate="J1" pin="VCC" pad="1"/> +</connects> +<technologies> +<technology name=""/> +</technologies> +</device> +<device name="_SMD" package="2X5-SMD-1.27MM"> +<connects> +<connect gate="J1" pin="!RESET" pad="10"/> +<connect gate="J1" pin="GND@3" pad="3"/> +<connect gate="J1" pin="GND@5" pad="5"/> +<connect gate="J1" pin="GNDDTCT" pad="9"/> +<connect gate="J1" pin="KEY" pad="7"/> +<connect gate="J1" pin="NC/TDI" pad="8"/> +<connect gate="J1" pin="SWDCLK/TCK" pad="4"/> +<connect gate="J1" pin="SWDIO/TMS" pad="2"/> +<connect gate="J1" pin="SWO/TDO" pad="6"/> +<connect gate="J1" pin="VCC" pad="1"/> +</connects> +<technologies> +<technology name=""> +<attribute name="PROD_ID" value="CONN-14503" constant="no"/> +<attribute name="VALUE" value="JTAG" constant="no"/> +</technology> +</technologies> +</device> +</devices> +</deviceset> +</devicesets> +</library> +<library name="passives"> +<packages> +<package name="TACT-SWITCH-KMR6"> +<smd name="P$1" x="-2.05" y="0.8" dx="0.9" dy="1" layer="1" rot="R180"/> +<smd name="P$2" x="2.05" y="0.8" dx="0.9" dy="1" layer="1" rot="R180"/> +<smd name="P$3" x="-2.05" y="-0.8" dx="0.9" dy="1" layer="1" rot="R180"/> +<smd name="P$4" x="2.05" y="-0.8" dx="0.9" dy="1" layer="1" rot="R180"/> +<wire x1="-1.4" y1="0.8" x2="0" y2="0.8" width="0.127" layer="51"/> +<wire x1="0" y1="0.8" x2="1.4" y2="0.8" width="0.127" layer="51"/> +<wire x1="-1.4" y1="-0.8" x2="0" y2="-0.8" width="0.127" layer="51"/> +<wire x1="0" y1="-0.8" x2="1.4" y2="-0.8" width="0.127" layer="51"/> +<wire x1="0" y1="0.8" x2="0" y2="0.6" width="0.127" layer="51"/> +<wire x1="0" y1="0.6" x2="0.4" y2="-0.4" width="0.127" layer="51"/> +<wire x1="0" y1="-0.8" x2="0" y2="-0.5" width="0.127" layer="51"/> +<wire x1="-2.1" y1="0.2" x2="-2.1" y2="-0.2" width="0.127" layer="51"/> +<wire x1="2.1" y1="-0.2" x2="2.1" y2="0.2" width="0.127" layer="51"/> +<wire x1="2.1" y1="1.4" x2="2.1" y2="1.5" width="0.127" layer="51"/> +<wire x1="2.1" y1="1.5" x2="1" y2="1.5" width="0.127" layer="51"/> +<wire x1="1.032" y1="1.5" x2="-2.1" y2="1.5" width="0.127" layer="51"/> +<wire x1="-2.1" y1="1.5" x2="-2.1" y2="1.4" width="0.127" layer="51"/> +<wire x1="-2.1" y1="-1.4" x2="-2.1" y2="-1.5" width="0.127" layer="51"/> +<wire x1="-2.1" y1="-1.5" x2="2.1" y2="-1.5" width="0.127" layer="51"/> +<wire x1="2.1" y1="-1.5" x2="2.1" y2="-1.4" width="0.127" layer="51"/> +</package> +<package name="TACT-SWITCH-SIDE"> +<smd name="P$1" x="-1.8" y="0.725" dx="1.4" dy="1.05" layer="1" rot="R180"/> +<smd name="P$2" x="1.8" y="0.725" dx="1.4" dy="1.05" layer="1" rot="R180"/> +<smd name="P$3" x="-1.8" y="-0.725" dx="1.4" dy="1.05" layer="1" rot="R180"/> +<smd name="P$4" x="1.8" y="-0.725" dx="1.4" dy="1.05" layer="1" rot="R180"/> +<wire x1="-0.9" y1="0.8" x2="0" y2="0.8" width="0.127" layer="51"/> +<wire x1="0" y1="0.8" x2="0.9" y2="0.8" width="0.127" layer="51"/> +<wire x1="-0.9" y1="-0.8" x2="0" y2="-0.8" width="0.127" layer="51"/> +<wire x1="0" y1="-0.8" x2="0.9" y2="-0.8" width="0.127" layer="51"/> +<wire x1="0" y1="0.8" x2="0" y2="0.6" width="0.127" layer="51"/> +<wire x1="0" y1="0.6" x2="0.4" y2="-0.4" width="0.127" layer="51"/> +<wire x1="0" y1="-0.8" x2="0" y2="-0.5" width="0.127" layer="51"/> +<wire x1="-1.75" y1="-1.45" x2="1.75" y2="-1.45" width="0.127" layer="21"/> +<wire x1="-1.75" y1="1.6" x2="-1" y2="1.6" width="0.127" layer="21"/> +<wire x1="-1" y1="1.6" x2="0" y2="1.6" width="0.127" layer="21"/> +<wire x1="0" y1="1.6" x2="1" y2="1.6" width="0.127" layer="21"/> +<wire x1="1" y1="1.6" x2="1.75" y2="1.6" width="0.127" layer="21"/> +<wire x1="-1" y1="1.6" x2="-1" y2="2.3" width="0.127" layer="21"/> +<wire x1="-1" y1="2.3" x2="1" y2="2.3" width="0.127" layer="21"/> +<wire x1="1" y1="2.3" x2="1" y2="1.6" width="0.127" layer="21"/> +</package> +<package name="1206"> +<wire x1="-0.965" y1="0.787" x2="0.965" y2="0.787" width="0.1016" layer="51"/> +<wire x1="-0.965" y1="-0.787" x2="0.965" y2="-0.787" width="0.1016" layer="51"/> +<smd name="1" x="-1.4" y="0" dx="1.6" dy="1.8" layer="1"/> +<smd name="2" x="1.4" y="0" dx="1.6" dy="1.8" layer="1"/> +<text x="-1.27" y="1.143" size="1.016" layer="25">>NAME</text> +<text x="-1.397" y="-2.794" size="1.016" layer="27">>VALUE</text> +<rectangle x1="-1.7018" y1="-0.8509" x2="-0.9517" y2="0.8491" layer="51"/> +<rectangle x1="0.9517" y1="-0.8491" x2="1.7018" y2="0.8509" layer="51"/> +<rectangle x1="-0.1999" y1="-0.4001" x2="0.1999" y2="0.4001" layer="35"/> +</package> +<package name="R2010"> +<description><b>RESISTOR</b><p> +chip</description> +<wire x1="-1.662" y1="1.245" x2="1.662" y2="1.245" width="0.1524" layer="51"/> +<wire x1="-1.637" y1="-1.245" x2="1.687" y2="-1.245" width="0.1524" layer="51"/> +<wire x1="-3.473" y1="1.483" x2="3.473" y2="1.483" width="0.0508" layer="39"/> +<wire x1="3.473" y1="1.483" x2="3.473" y2="-1.483" width="0.0508" layer="39"/> +<wire x1="3.473" y1="-1.483" x2="-3.473" y2="-1.483" width="0.0508" layer="39"/> +<wire x1="-3.473" y1="-1.483" x2="-3.473" y2="1.483" width="0.0508" layer="39"/> +<wire x1="-1.027" y1="1.245" x2="1.027" y2="1.245" width="0.1524" layer="21"/> +<wire x1="-1.002" y1="-1.245" x2="1.016" y2="-1.245" width="0.1524" layer="21"/> +<smd name="1" x="-2.2" y="0" dx="1.8" dy="2.7" layer="1"/> +<smd name="2" x="2.2" y="0" dx="1.8" dy="2.7" layer="1"/> +<text x="-2.54" y="1.5875" size="1.016" layer="25">>NAME</text> +<text x="-2.54" y="-3.302" size="1.016" layer="27">>VALUE</text> +<rectangle x1="-2.4892" y1="-1.3208" x2="-1.6393" y2="1.3292" layer="51"/> +<rectangle x1="1.651" y1="-1.3208" x2="2.5009" y2="1.3292" layer="51"/> +</package> +<package name="0805"> +<smd name="1" x="-1" y="0" dx="0.8" dy="1.3" layer="1"/> +<smd name="2" x="1" y="0" dx="0.8" dy="1.3" layer="1"/> +<text x="-0.762" y="0.8255" size="1.016" layer="25">>NAME</text> +<text x="-1.016" y="-2.032" size="1.016" layer="27">>VALUE</text> +<rectangle x1="-1" y1="-0.6" x2="1" y2="0.6" layer="51"/> +</package> +<package name="0603-RES"> +<wire x1="-0.356" y1="0.432" x2="0.356" y2="0.432" width="0.1016" layer="51"/> +<wire x1="-0.356" y1="-0.419" x2="0.356" y2="-0.419" width="0.1016" layer="51"/> +<smd name="1" x="-0.85" y="0" dx="1.1" dy="1" layer="1"/> +<smd name="2" x="0.85" y="0" dx="1.1" dy="1" layer="1"/> +<text x="-0.889" y="1.397" size="1.016" layer="25">>NAME</text> +<text x="-1.016" y="-2.413" size="1.016" layer="27" ratio="10">>VALUE</text> +<rectangle x1="-0.8382" y1="-0.4699" x2="-0.3381" y2="0.4801" layer="51"/> +<rectangle x1="0.3302" y1="-0.4699" x2="0.8303" y2="0.4801" layer="51"/> +<rectangle x1="-0.1999" y1="-0.3" x2="0.1999" y2="0.3" layer="35"/> +<rectangle x1="-0.2286" y1="-0.381" x2="0.2286" y2="0.381" layer="21"/> +</package> +<package name="R2512"> +<wire x1="-2.362" y1="1.473" x2="2.387" y2="1.473" width="0.1524" layer="51"/> +<wire x1="-2.362" y1="-1.473" x2="2.387" y2="-1.473" width="0.1524" layer="51"/> +<smd name="1" x="-2.8" y="0" dx="1.8" dy="3.2" layer="1"/> +<smd name="2" x="2.8" y="0" dx="1.8" dy="3.2" layer="1"/> +<text x="-2.54" y="1.905" size="1.016" layer="25">>NAME</text> +<text x="-2.54" y="-3.175" size="1.016" layer="27">>VALUE</text> +<rectangle x1="-3.2004" y1="-1.5494" x2="-2.3505" y2="1.5507" layer="51"/> +<rectangle x1="2.3622" y1="-1.5494" x2="3.2121" y2="1.5507" layer="51"/> +</package> +<package name="TO220ACS"> +<description><B>DIODE</B><p> +2-lead molded, vertical</description> +<wire x1="5.08" y1="-1.143" x2="4.953" y2="-4.064" width="0.1524" layer="21"/> +<wire x1="4.699" y1="-4.318" x2="4.953" y2="-4.064" width="0.1524" layer="21"/> +<wire x1="4.699" y1="-4.318" x2="-4.699" y2="-4.318" width="0.1524" layer="21"/> +<wire x1="-4.953" y1="-4.064" x2="-4.699" y2="-4.318" width="0.1524" layer="21"/> +<wire x1="-4.953" y1="-4.064" x2="-5.08" y2="-1.143" width="0.1524" layer="21"/> +<circle x="-4.4958" y="-3.7084" radius="0.254" width="0" layer="21"/> +<pad name="C" x="-2.54" y="-2.54" drill="1.016" shape="long" rot="R90"/> +<pad name="A" x="2.54" y="-2.54" drill="1.016" shape="long" rot="R90"/> +<text x="-5.08" y="-6.0452" size="1.016" layer="25" ratio="10">>NAME</text> +<text x="-5.08" y="-7.62" size="1.016" layer="27" ratio="10">>VALUE</text> +<rectangle x1="-5.334" y1="-0.762" x2="5.334" y2="0" layer="21"/> +<rectangle x1="-5.334" y1="-1.27" x2="-3.429" y2="-0.762" layer="21"/> +<rectangle x1="-3.429" y1="-1.27" x2="-1.651" y2="-0.762" layer="51"/> +<rectangle x1="3.429" y1="-1.27" x2="5.334" y2="-0.762" layer="21"/> +<rectangle x1="1.651" y1="-1.27" x2="3.429" y2="-0.762" layer="51"/> +<rectangle x1="-1.651" y1="-1.27" x2="1.651" y2="-0.762" layer="21"/> +</package> +<package name="0402"> +<description><b>CAPACITOR</b><p> +chip</description> +<wire x1="-0.245" y1="0.224" x2="0.245" y2="0.224" width="0.1524" layer="51"/> +<wire x1="0.245" y1="-0.224" x2="-0.245" y2="-0.224" width="0.1524" layer="51"/> +<smd name="1" x="-0.525" y="0" dx="0.575" dy="0.7" layer="1"/> +<smd name="2" x="0.525" y="0" dx="0.575" dy="0.7" layer="1"/> +<text x="-0.889" y="0.6985" size="1.016" layer="25">>NAME</text> +<text x="-1.0795" y="-1.778" size="1.016" layer="27">>VALUE</text> +<rectangle x1="-0.554" y1="-0.3048" x2="-0.254" y2="0.2951" layer="51"/> +<rectangle x1="0.2588" y1="-0.3048" x2="0.5588" y2="0.2951" layer="51"/> +</package> +<package name="0603-CAP"> +<wire x1="-0.356" y1="0.332" x2="0.356" y2="0.332" width="0.1016" layer="51"/> +<wire x1="-0.356" y1="-0.319" x2="0.356" y2="-0.319" width="0.1016" layer="51"/> +<smd name="1" x="-0.8" y="0" dx="0.8" dy="0.95" layer="1"/> +<smd name="2" x="0.8" y="0" dx="0.8" dy="0.95" layer="1"/> +<text x="-0.889" y="1.397" size="1.016" layer="25">>NAME</text> +<text x="-1.016" y="-2.413" size="1.016" layer="27">>VALUE</text> +<rectangle x1="-0.8382" y1="-0.4" x2="-0.3381" y2="0.4" layer="51"/> +<rectangle x1="0.3302" y1="-0.4" x2="0.8303" y2="0.4" layer="51"/> +</package> +<package name="1210"> +<wire x1="-1.6" y1="1.3" x2="1.6" y2="1.3" width="0.127" layer="51"/> +<wire x1="1.6" y1="1.3" x2="1.6" y2="-1.3" width="0.127" layer="51"/> +<wire x1="1.6" y1="-1.3" x2="-1.6" y2="-1.3" width="0.127" layer="51"/> +<wire x1="-1.6" y1="-1.3" x2="-1.6" y2="1.3" width="0.127" layer="51"/> +<wire x1="-1.6" y1="1.3" x2="1.6" y2="1.3" width="0.2032" layer="51"/> +<wire x1="-1.6" y1="-1.3" x2="1.6" y2="-1.3" width="0.2032" layer="51"/> +<smd name="1" x="-1.6" y="0" dx="1.2" dy="2.5" layer="1"/> +<smd name="2" x="1.6" y="0" dx="1.2" dy="2.5" layer="1"/> +<text x="-2.07" y="1.77" size="1.016" layer="25">>NAME</text> +<text x="-2.17" y="-3.24" size="1.016" layer="27">>VALUE</text> +</package> +<package name="2220-C"> +<smd name="P$1" x="-2.6" y="0" dx="1.2" dy="5" layer="1"/> +<smd name="P$2" x="2.6" y="0" dx="1.2" dy="5" layer="1"/> +<text x="-1.5" y="3" size="0.6096" layer="125">>NAME</text> +<text x="-1.5" y="-3.5" size="0.6096" layer="127">>VALUE</text> +</package> +</packages> +<symbols> +<symbol name="TS2"> +<wire x1="0" y1="1.905" x2="0" y2="2.54" width="0.254" layer="94"/> +<wire x1="-4.445" y1="1.905" x2="-3.175" y2="1.905" width="0.254" layer="94"/> +<wire x1="-4.445" y1="-1.905" x2="-3.175" y2="-1.905" width="0.254" layer="94"/> +<wire x1="-4.445" y1="1.905" x2="-4.445" y2="0" width="0.254" layer="94"/> +<wire x1="-4.445" y1="0" x2="-4.445" y2="-1.905" width="0.254" layer="94"/> +<wire x1="-2.54" y1="0" x2="-1.905" y2="0" width="0.1524" layer="94"/> +<wire x1="-1.27" y1="0" x2="-0.635" y2="0" width="0.1524" layer="94"/> +<wire x1="-4.445" y1="0" x2="-3.175" y2="0" width="0.1524" layer="94"/> +<wire x1="2.54" y1="2.54" x2="0" y2="2.54" width="0.1524" layer="94"/> +<wire x1="2.54" y1="-2.54" x2="0" y2="-2.54" width="0.1524" layer="94"/> +<wire x1="0" y1="-2.54" x2="-1.27" y2="1.905" width="0.254" layer="94"/> +<circle x="0" y="-2.54" radius="0.127" width="0.4064" layer="94"/> +<circle x="0" y="2.54" radius="0.127" width="0.4064" layer="94"/> +<text x="-6.35" y="-2.54" size="1.778" layer="95" rot="R90">>NAME</text> +<text x="-3.81" y="3.175" size="1.778" layer="96" rot="R90">>VALUE</text> +<pin name="P" x="0" y="-5.08" visible="pad" length="short" direction="pas" swaplevel="2" rot="R90"/> +<pin name="S" x="0" y="5.08" visible="pad" length="short" direction="pas" swaplevel="1" rot="R270"/> +<pin name="S1" x="2.54" y="5.08" visible="pad" length="short" direction="pas" swaplevel="1" rot="R270"/> +<pin name="P1" x="2.54" y="-5.08" visible="pad" length="short" direction="pas" swaplevel="2" rot="R90"/> +</symbol> +<symbol name="RESISTOR"> +<wire x1="-2.54" y1="0" x2="-2.159" y2="1.016" width="0.1524" layer="94"/> +<wire x1="-2.159" y1="1.016" x2="-1.524" y2="-1.016" width="0.1524" layer="94"/> +<wire x1="-1.524" y1="-1.016" x2="-0.889" y2="1.016" width="0.1524" layer="94"/> +<wire x1="-0.889" y1="1.016" x2="-0.254" y2="-1.016" width="0.1524" layer="94"/> +<wire x1="-0.254" y1="-1.016" x2="0.381" y2="1.016" width="0.1524" layer="94"/> +<wire x1="0.381" y1="1.016" x2="1.016" y2="-1.016" width="0.1524" layer="94"/> +<wire x1="1.016" y1="-1.016" x2="1.651" y2="1.016" width="0.1524" layer="94"/> +<wire x1="1.651" y1="1.016" x2="2.286" y2="-1.016" width="0.1524" layer="94"/> +<wire x1="2.286" y1="-1.016" x2="2.54" y2="0" width="0.1524" layer="94"/> +<text x="-3.81" y="1.4986" size="1.778" layer="95">>NAME</text> +<text x="-3.81" y="-3.302" size="1.778" layer="96">>VALUE</text> +<pin name="2" x="5.08" y="0" visible="off" length="short" direction="pas" swaplevel="1" rot="R180"/> +<pin name="1" x="-5.08" y="0" visible="off" length="short" direction="pas" swaplevel="1"/> +<text x="-3.81" y="-6.858" size="1.27" layer="97">>PRECISION</text> +<text x="-3.81" y="-5.08" size="1.27" layer="97">>PACKAGE</text> +</symbol> +<symbol name="CAP"> +<wire x1="0" y1="2.54" x2="0" y2="2.032" width="0.1524" layer="94"/> +<wire x1="0" y1="0" x2="0" y2="0.508" width="0.1524" layer="94"/> +<text x="1.524" y="2.921" size="1.778" layer="95">>NAME</text> +<text x="1.524" y="-2.159" size="1.778" layer="96">>VALUE</text> +<rectangle x1="-2.032" y1="0.508" x2="2.032" y2="1.016" layer="94"/> +<rectangle x1="-2.032" y1="1.524" x2="2.032" y2="2.032" layer="94"/> +<pin name="1" x="0" y="5.08" visible="off" length="short" direction="pas" swaplevel="1" rot="R270"/> +<pin name="2" x="0" y="-2.54" visible="off" length="short" direction="pas" swaplevel="1" rot="R90"/> +<text x="1.524" y="-4.064" size="1.27" layer="97">>PACKAGE</text> +<text x="1.524" y="-5.842" size="1.27" layer="97">>VOLTAGE</text> +<text x="1.524" y="-7.62" size="1.27" layer="97">>TYPE</text> +</symbol> +</symbols> +<devicesets> +<deviceset name="2-8X4-5_SWITCH" prefix="S"> +<gates> +<gate name="G$1" symbol="TS2" x="0" y="0"/> +</gates> +<devices> +<device name="" package="TACT-SWITCH-KMR6"> +<connects> +<connect gate="G$1" pin="P" pad="P$1"/> +<connect gate="G$1" pin="P1" pad="P$2"/> +<connect gate="G$1" pin="S" pad="P$3"/> +<connect gate="G$1" pin="S1" pad="P$4"/> +</connects> +<technologies> +<technology name=""/> +</technologies> +</device> +<device name="SIDE" package="TACT-SWITCH-SIDE"> +<connects> +<connect gate="G$1" pin="P" pad="P$1"/> +<connect gate="G$1" pin="P1" pad="P$2"/> +<connect gate="G$1" pin="S" pad="P$3"/> +<connect gate="G$1" pin="S1" pad="P$4"/> +</connects> +<technologies> +<technology name=""/> +</technologies> +</device> +</devices> +</deviceset> +<deviceset name="RESISTOR" prefix="R" uservalue="yes"> +<description><b>Resistor</b> +Basic schematic elements and footprints for 0603, 1206, and PTH resistors.</description> +<gates> +<gate name="G$1" symbol="RESISTOR" x="0" y="0"/> +</gates> +<devices> +<device name="1206" package="1206"> +<connects> +<connect gate="G$1" pin="1" pad="1"/> +<connect gate="G$1" pin="2" pad="2"/> +</connects> +<technologies> +<technology name=""> +<attribute name="PACKAGE" value="1206" constant="no"/> +<attribute name="PRECISION" value="" constant="no"/> +</technology> +</technologies> +</device> +<device name="2010" package="R2010"> +<connects> +<connect gate="G$1" pin="1" pad="1"/> +<connect gate="G$1" pin="2" pad="2"/> +</connects> +<technologies> +<technology name=""> +<attribute name="PACKAGE" value="2010"/> +<attribute name="PRECISION" value="" constant="no"/> +</technology> +</technologies> +</device> +<device name="0805-RES" package="0805"> +<connects> +<connect gate="G$1" pin="1" pad="1"/> +<connect gate="G$1" pin="2" pad="2"/> +</connects> +<technologies> +<technology name=""> +<attribute name="PACKAGE" value="0805"/> +<attribute name="PRECISION" value="" constant="no"/> +</technology> +</technologies> +</device> +<device name="0603-RES" package="0603-RES"> +<connects> +<connect gate="G$1" pin="1" pad="1"/> +<connect gate="G$1" pin="2" pad="2"/> +</connects> +<technologies> +<technology name=""> +<attribute name="PACKAGE" value="0603"/> +<attribute name="PRECISION" value="" constant="no"/> +</technology> +</technologies> +</device> +<device name="2512" package="R2512"> +<connects> +<connect gate="G$1" pin="1" pad="1"/> +<connect gate="G$1" pin="2" pad="2"/> +</connects> +<technologies> +<technology name=""> +<attribute name="PACKAGE" value="2512"/> +<attribute name="PRECISION" value="" constant="no"/> +</technology> +</technologies> +</device> +<device name="TO220ACS" package="TO220ACS"> +<connects> +<connect gate="G$1" pin="1" pad="A"/> +<connect gate="G$1" pin="2" pad="C"/> +</connects> +<technologies> +<technology name=""/> +</technologies> +</device> +<device name="0402" package="0402"> +<connects> +<connect gate="G$1" pin="1" pad="1"/> +<connect gate="G$1" pin="2" pad="2"/> +</connects> +<technologies> +<technology name=""/> +</technologies> +</device> +</devices> +</deviceset> +<deviceset name="CAP" prefix="C" uservalue="yes"> +<description><b>Capacitor</b> +Standard 0603 ceramic capacitor, and 0.1" leaded capacitor.</description> +<gates> +<gate name="G$1" symbol="CAP" x="0" y="0"/> +</gates> +<devices> +<device name="0805" package="0805"> +<connects> +<connect gate="G$1" pin="1" pad="1"/> +<connect gate="G$1" pin="2" pad="2"/> +</connects> +<technologies> +<technology name=""> +<attribute name="PACKAGE" value="0805"/> +<attribute name="TYPE" value="" constant="no"/> +<attribute name="VOLTAGE" value="" constant="no"/> +</technology> +</technologies> +</device> +<device name="0603-CAP" package="0603-CAP"> +<connects> +<connect gate="G$1" pin="1" pad="1"/> +<connect gate="G$1" pin="2" pad="2"/> +</connects> +<technologies> +<technology name=""> +<attribute name="PACKAGE" value="0603"/> +<attribute name="TYPE" value="" constant="no"/> +<attribute name="VOLTAGE" value="" constant="no"/> +</technology> +</technologies> +</device> +<device name="1210" package="1210"> +<connects> +<connect gate="G$1" pin="1" pad="1"/> +<connect gate="G$1" pin="2" pad="2"/> +</connects> +<technologies> +<technology name=""> +<attribute name="PACKAGE" value="1210" constant="no"/> +<attribute name="TYPE" value="" constant="no"/> +<attribute name="VOLTAGE" value="" constant="no"/> +</technology> +</technologies> +</device> +<device name="1206" package="1206"> +<connects> +<connect gate="G$1" pin="1" pad="1"/> +<connect gate="G$1" pin="2" pad="2"/> +</connects> +<technologies> +<technology name=""> +<attribute name="PACKAGE" value="1206" constant="no"/> +<attribute name="TYPE" value="" constant="no"/> +<attribute name="VOLTAGE" value="" constant="no"/> +</technology> +</technologies> +</device> +<device name="2220" package="2220-C"> +<connects> +<connect gate="G$1" pin="1" pad="P$1"/> +<connect gate="G$1" pin="2" pad="P$2"/> +</connects> +<technologies> +<technology name=""/> +</technologies> +</device> +<device name="0402" package="0402"> +<connects> +<connect gate="G$1" pin="1" pad="1"/> +<connect gate="G$1" pin="2" pad="2"/> +</connects> +<technologies> +<technology name=""/> +</technologies> +</device> +</devices> +</deviceset> +</devicesets> +</library> +<library name="supply1"> +<description><b>Supply Symbols</b><p> + GND, VCC, 0V, +5V, -5V, etc.<p> + Please keep in mind, that these devices are necessary for the + automatic wiring of the supply signals.<p> + The pin name defined in the symbol is identical to the net which is to be wired automatically.<p> + In this library the device names are the same as the pin names of the symbols, therefore the correct signal names appear next to the supply symbols in the schematic.<p> + <author>Created by librarian@cadsoft.de</author></description> +<packages> +</packages> +<symbols> +<symbol name="+3V3" urn="urn:adsk.eagle:symbol:26950/1"> +<wire x1="1.27" y1="-1.905" x2="0" y2="0" width="0.254" layer="94"/> +<wire x1="0" y1="0" x2="-1.27" y2="-1.905" width="0.254" layer="94"/> +<text x="-2.54" y="-5.08" size="1.778" layer="96" rot="R90">>VALUE</text> +<pin name="+3V3" x="0" y="-2.54" visible="off" length="short" direction="sup" rot="R90"/> +</symbol> +<symbol name="+5V" urn="urn:adsk.eagle:symbol:26929/1"> +<wire x1="1.27" y1="-1.905" x2="0" y2="0" width="0.254" layer="94"/> +<wire x1="0" y1="0" x2="-1.27" y2="-1.905" width="0.254" layer="94"/> +<text x="-2.54" y="-5.08" size="1.778" layer="96" rot="R90">>VALUE</text> +<pin name="+5V" x="0" y="-2.54" visible="off" length="short" direction="sup" rot="R90"/> +</symbol> +<symbol name="GND" urn="urn:adsk.eagle:symbol:26925/1"> +<wire x1="-1.905" y1="0" x2="1.905" y2="0" width="0.254" layer="94"/> +<text x="-2.54" y="-2.54" size="1.778" layer="96">>VALUE</text> +<pin name="GND" x="0" y="2.54" visible="off" length="short" direction="sup" rot="R270"/> +</symbol> +</symbols> +<devicesets> +<deviceset name="+3V3" urn="urn:adsk.eagle:component:26981/1" prefix="+3V3"> +<description><b>SUPPLY SYMBOL</b></description> +<gates> +<gate name="G$1" symbol="+3V3" x="0" y="0"/> +</gates> +<devices> +<device name=""> +<technologies> +<technology name=""/> +</technologies> +</device> +</devices> +</deviceset> +<deviceset name="+5V" urn="urn:adsk.eagle:component:26963/1" prefix="P+"> +<description><b>SUPPLY SYMBOL</b></description> +<gates> +<gate name="1" symbol="+5V" x="0" y="0"/> +</gates> +<devices> +<device name=""> +<technologies> +<technology name=""/> +</technologies> +</device> +</devices> +</deviceset> +<deviceset name="GND" urn="urn:adsk.eagle:component:26954/1" prefix="GND"> +<description><b>SUPPLY SYMBOL</b></description> +<gates> +<gate name="1" symbol="GND" x="0" y="0"/> +</gates> +<devices> +<device name=""> +<technologies> +<technology name=""/> +</technologies> +</device> +</devices> +</deviceset> +</devicesets> +</library> +<library name="power"> +<packages> +<package name="SOT23-5"> +<description><b>Small Outline Transistor</b>, 5 lead</description> +<wire x1="-1.544" y1="0.713" x2="1.544" y2="0.713" width="0.1524" layer="51"/> +<wire x1="1.544" y1="0.713" x2="1.544" y2="-0.712" width="0.1524" layer="51"/> +<wire x1="1.544" y1="-0.712" x2="-1.544" y2="-0.712" width="0.1524" layer="51"/> +<wire x1="-1.544" y1="-0.712" x2="-1.544" y2="0.713" width="0.1524" layer="51"/> +<smd name="5" x="-0.95" y="1.306" dx="0.5334" dy="1.1938" layer="1"/> +<smd name="4" x="0.95" y="1.306" dx="0.5334" dy="1.1938" layer="1"/> +<smd name="1" x="-0.95" y="-1.306" dx="0.5334" dy="1.1938" layer="1"/> +<smd name="2" x="0" y="-1.306" dx="0.5334" dy="1.1938" layer="1"/> +<smd name="3" x="0.95" y="-1.306" dx="0.5334" dy="1.1938" layer="1"/> +<text x="-1.778" y="-1.778" size="1.27" layer="25" ratio="10" rot="R90">>NAME</text> +<text x="3.048" y="-1.778" size="1.27" layer="27" ratio="10" rot="R90">>VALUE</text> +<rectangle x1="-1.1875" y1="0.7126" x2="-0.7125" y2="1.5439" layer="51"/> +<rectangle x1="0.7125" y1="0.7126" x2="1.1875" y2="1.5439" layer="51"/> +<rectangle x1="-1.1875" y1="-1.5437" x2="-0.7125" y2="-0.7124" layer="51"/> +<rectangle x1="-0.2375" y1="-1.5437" x2="0.2375" y2="-0.7124" layer="51"/> +<rectangle x1="0.7125" y1="-1.5437" x2="1.1875" y2="-0.7124" layer="51"/> +<wire x1="-1.5" y1="-1.9" x2="-1.5" y2="-1.2" width="0.127" layer="21"/> +</package> +</packages> +<symbols> +<symbol name="VREG-AP2112"> +<pin name="VIN" x="-12.7" y="2.54" length="middle"/> +<pin name="EN" x="-12.7" y="-2.54" length="middle"/> +<pin name="GND" x="0" y="-10.16" length="middle" rot="R90"/> +<pin name="VOUT" x="12.7" y="2.54" length="middle" rot="R180"/> +<wire x1="-7.62" y1="5.08" x2="-7.62" y2="-5.08" width="0.254" layer="94"/> +<wire x1="-7.62" y1="-5.08" x2="7.62" y2="-5.08" width="0.254" layer="94"/> +<wire x1="7.62" y1="-5.08" x2="7.62" y2="5.08" width="0.254" layer="94"/> +<wire x1="7.62" y1="5.08" x2="-7.62" y2="5.08" width="0.254" layer="94"/> +<text x="-2.54" y="7.62" size="1.27" layer="95">>NAME</text> +<text x="2.54" y="-7.62" size="1.27" layer="96">>VALUE</text> +</symbol> +</symbols> +<devicesets> +<deviceset name="VREG-AP2112" prefix="U"> +<gates> +<gate name="G$1" symbol="VREG-AP2112" x="0" y="0"/> +</gates> +<devices> +<device name="" package="SOT23-5"> +<connects> +<connect gate="G$1" pin="EN" pad="3"/> +<connect gate="G$1" pin="GND" pad="2"/> +<connect gate="G$1" pin="VIN" pad="1"/> +<connect gate="G$1" pin="VOUT" pad="5"/> +</connects> +<technologies> +<technology name=""/> +</technologies> +</device> +</devices> +</deviceset> +</devicesets> +</library> +<library name="connector"> +<packages> +<package name="DX4R005HJ5_100"> +<wire x1="3.25" y1="-2.6" x2="-3.25" y2="-2.6" width="0.127" layer="21"/> +<wire x1="-3.25" y1="2.6" x2="-3.25" y2="0" width="0.127" layer="51"/> +<wire x1="3.25" y1="2.6" x2="3.25" y2="0" width="0.127" layer="51"/> +<wire x1="-1.75" y1="2.6" x2="1.75" y2="2.6" width="0.127" layer="51"/> +<wire x1="-3.25" y1="-2.2" x2="-3.25" y2="-2.6" width="0.127" layer="51"/> +<wire x1="3.25" y1="-2.6" x2="3.25" y2="-2.2" width="0.127" layer="51"/> +<smd name="GND@3" x="-2.175" y="-1.1" dx="2.15" dy="1.9" layer="1"/> +<smd name="GND@4" x="2.175" y="-1.1" dx="2.15" dy="1.9" layer="1"/> +<smd name="GND@1" x="-2.5" y="1.95" dx="1.2" dy="1.3" layer="1"/> +<smd name="GND@2" x="2.5" y="1.95" dx="1.2" dy="1.3" layer="1"/> +<smd name="D+" x="0" y="1.6" dx="0.35" dy="1.35" layer="1"/> +<smd name="D-" x="-0.65" y="1.6" dx="0.35" dy="1.35" layer="1"/> +<smd name="VBUS" x="-1.3" y="1.6" dx="0.35" dy="1.35" layer="1"/> +<smd name="ID" x="0.65" y="1.6" dx="0.35" dy="1.35" layer="1"/> +<smd name="GND" x="1.3" y="1.6" dx="0.35" dy="1.35" layer="1"/> +<text x="4.1275" y="-1.5875" size="0.6096" layer="27" font="vector" rot="R90">>Value</text> +<text x="-3.4925" y="-1.27" size="0.6096" layer="25" font="vector" rot="R90">>Name</text> +</package> +<package name="DX4R005HJ5"> +<wire x1="3.25" y1="-2.6" x2="-3.25" y2="-2.6" width="0.127" layer="51"/> +<wire x1="-3.25" y1="2.6" x2="-3.25" y2="0" width="0.127" layer="21"/> +<wire x1="3.25" y1="2.6" x2="3.25" y2="0" width="0.127" layer="21"/> +<wire x1="-1.75" y1="2.6" x2="1.75" y2="2.6" width="0.127" layer="51"/> +<wire x1="-3.25" y1="-2.2" x2="-3.25" y2="-2.6" width="0.127" layer="51"/> +<wire x1="3.25" y1="-2.6" x2="3.25" y2="-2.2" width="0.127" layer="51"/> +<smd name="GND@3" x="-2.475" y="-1.1" dx="2.75" dy="1.9" layer="1"/> +<smd name="GND@4" x="2.475" y="-1.1" dx="2.75" dy="1.9" layer="1"/> +<smd name="GND@1" x="-2.5" y="1.95" dx="1.2" dy="1.3" layer="1"/> +<smd name="GND@2" x="2.5" y="1.95" dx="1.2" dy="1.3" layer="1"/> +<smd name="D+" x="0" y="1.9" dx="0.4" dy="1.95" layer="1"/> +<smd name="D-" x="-0.65" y="1.9" dx="0.4" dy="1.95" layer="1"/> +<smd name="VBUS" x="-1.3" y="1.9" dx="0.4" dy="1.95" layer="1"/> +<smd name="ID" x="0.65" y="1.9" dx="0.4" dy="1.95" layer="1"/> +<smd name="GND" x="1.3" y="1.9" dx="0.4" dy="1.95" layer="1"/> +<text x="-3.4925" y="-1.27" size="0.6096" layer="25" font="vector" rot="R90">>Name</text> +<text x="4.1275" y="-1.5875" size="0.6096" layer="25" font="vector" rot="R90">>Value</text> +</package> +<package name="DX4R005HJ5_64"> +<wire x1="3.25" y1="-2.6" x2="-3.25" y2="-2.6" width="0.127" layer="21"/> +<wire x1="-3.25" y1="2.6" x2="-3.25" y2="0" width="0.127" layer="51"/> +<wire x1="3.25" y1="2.6" x2="3.25" y2="0" width="0.127" layer="51"/> +<wire x1="-1.75" y1="2.6" x2="1.75" y2="2.6" width="0.127" layer="51"/> +<wire x1="-3.25" y1="-2.2" x2="-3.25" y2="-2.6" width="0.127" layer="51"/> +<wire x1="3.25" y1="-2.6" x2="3.25" y2="-2.2" width="0.127" layer="51"/> +<smd name="GND@3" x="-2.175" y="-1.1" dx="2.15" dy="1.9" layer="1"/> +<smd name="GND@4" x="2.175" y="-1.1" dx="2.15" dy="1.9" layer="1"/> +<smd name="GND@1" x="-2.5" y="1.95" dx="1.2" dy="1.3" layer="1"/> +<smd name="GND@2" x="2.5" y="1.95" dx="1.2" dy="1.3" layer="1"/> +<smd name="D+" x="0" y="1.6" dx="0.254" dy="1.35" layer="1"/> +<smd name="D-" x="-0.65" y="1.6" dx="0.254" dy="1.35" layer="1"/> +<smd name="VBUS" x="-1.3" y="1.6" dx="0.254" dy="1.35" layer="1"/> +<smd name="ID" x="0.65" y="1.6" dx="0.254" dy="1.35" layer="1"/> +<smd name="GND" x="1.3" y="1.6" dx="0.254" dy="1.35" layer="1"/> +<text x="-3.4925" y="-1.27" size="0.6096" layer="25" font="vector" rot="R90">>Name</text> +<text x="4.1275" y="-1.5875" size="0.6096" layer="27" font="vector" rot="R90">>Value</text> +</package> +<package name="USB_MICRO_609-4613-1-ND"> +<smd name="HD0" x="-3.8" y="0" dx="1.9" dy="1.8" layer="1"/> +<smd name="HD4" x="-3.1" y="2.55" dx="2.1" dy="1.6" layer="1"/> +<smd name="HD5" x="3.1" y="2.55" dx="2.1" dy="1.6" layer="1"/> +<smd name="D+" x="0" y="2.675" dx="0.4" dy="1.35" layer="1"/> +<smd name="D-" x="-0.65" y="2.675" dx="0.4" dy="1.35" layer="1"/> +<smd name="VBUS" x="-1.3" y="2.675" dx="0.4" dy="1.35" layer="1"/> +<smd name="ID" x="0.65" y="2.675" dx="0.4" dy="1.35" layer="1"/> +<smd name="GND" x="1.3" y="2.675" dx="0.4" dy="1.35" layer="1"/> +<text x="4.9275" y="1.2125" size="0.6096" layer="27" font="vector" rot="R90">>Value</text> +<text x="-4.3925" y="1.13" size="0.6096" layer="25" font="vector" rot="R90">>Name</text> +<smd name="HD1" x="-1.05" y="0" dx="1.9" dy="1.8" layer="1"/> +<smd name="HD2" x="1.05" y="0" dx="1.9" dy="1.8" layer="1"/> +<smd name="HD3" x="3.8" y="0" dx="1.9" dy="1.8" layer="1"/> +<wire x1="-4.7" y1="-1.45" x2="4.7" y2="-1.45" width="0.127" layer="51"/> +<text x="0" y="-1.3" size="0.8128" layer="51" font="vector" align="bottom-center">\\ PCB Edge /</text> +<wire x1="-3.9" y1="3" x2="-3.9" y2="-2.5" width="0.127" layer="51"/> +<wire x1="-3.9" y1="-2.5" x2="3.9" y2="-2.5" width="0.127" layer="51"/> +<wire x1="3.9" y1="-2.5" x2="3.9" y2="3" width="0.127" layer="51"/> +<wire x1="3.9" y1="3" x2="-3.9" y2="3" width="0.127" layer="51"/> +<wire x1="-3.9" y1="1.1" x2="-3.9" y2="1.5" width="0.127" layer="21"/> +<wire x1="3.9" y1="1.1" x2="3.9" y2="1.5" width="0.127" layer="21"/> +<wire x1="1.8" y1="3" x2="1.7" y2="3" width="0.127" layer="21"/> +<wire x1="-1.7" y1="3" x2="-1.8" y2="3" width="0.127" layer="21"/> +<wire x1="4.4" y1="3" x2="4.7" y2="3" width="0.127" layer="21"/> +<wire x1="-4.4" y1="3" x2="-4.7" y2="3" width="0.127" layer="21"/> +<wire x1="-3.9" y1="3.6" x2="-3.9" y2="3.8" width="0.127" layer="21"/> +<wire x1="3.9" y1="3.6" x2="3.9" y2="3.8" width="0.127" layer="21"/> +</package> +</packages> +<symbols> +<symbol name="USB-1"> +<wire x1="6.35" y1="-2.54" x2="6.35" y2="2.54" width="0.254" layer="94"/> +<wire x1="6.35" y1="2.54" x2="-3.81" y2="2.54" width="0.254" layer="94"/> +<wire x1="-3.81" y1="2.54" x2="-3.81" y2="-2.54" width="0.254" layer="94"/> +<text x="-2.54" y="-1.27" size="2.54" layer="94">USB</text> +<text x="-4.445" y="-1.905" size="1.27" layer="95" font="vector" rot="R90">>Name</text> +<text x="8.255" y="-1.905" size="1.27" layer="96" font="vector" rot="R90">>Value</text> +<pin name="D+" x="5.08" y="5.08" visible="pad" length="short" rot="R270"/> +<pin name="D-" x="2.54" y="5.08" visible="pad" length="short" rot="R270"/> +<pin name="VBUS" x="0" y="5.08" visible="pad" length="short" rot="R270"/> +<pin name="GND" x="-2.54" y="5.08" visible="pad" length="short" rot="R270"/> +</symbol> +</symbols> +<devicesets> +<deviceset name="USB" prefix="X"> +<description>SMD micro USB connector as found in the fablab inventory. +Three footprint variants included: +<ol> +<li>609-4613-1-ND used by Jake +<li> original, as described by manufacturer's datasheet +<li> for milling with the 1/100" bit +<li> for milling with the 1/64" bit +</ol> +<p>Made by Zaerc.</description> +<gates> +<gate name="G$1" symbol="USB-1" x="0" y="0"/> +</gates> +<devices> +<device name="_1/100" package="DX4R005HJ5_100"> +<connects> +<connect gate="G$1" pin="D+" pad="D+"/> +<connect gate="G$1" pin="D-" pad="D-"/> +<connect gate="G$1" pin="GND" pad="GND"/> +<connect gate="G$1" pin="VBUS" pad="VBUS"/> +</connects> +<technologies> +<technology name=""/> +</technologies> +</device> +<device name="_ORIG" package="DX4R005HJ5"> +<connects> +<connect gate="G$1" pin="D+" pad="D+"/> +<connect gate="G$1" pin="D-" pad="D-"/> +<connect gate="G$1" pin="GND" pad="GND"/> +<connect gate="G$1" pin="VBUS" pad="VBUS"/> +</connects> +<technologies> +<technology name=""/> +</technologies> +</device> +<device name="_1/64" package="DX4R005HJ5_64"> +<connects> +<connect gate="G$1" pin="D+" pad="D+"/> +<connect gate="G$1" pin="D-" pad="D-"/> +<connect gate="G$1" pin="GND" pad="GND"/> +<connect gate="G$1" pin="VBUS" pad="VBUS"/> +</connects> +<technologies> +<technology name=""/> +</technologies> +</device> +<device name="" package="USB_MICRO_609-4613-1-ND"> +<connects> +<connect gate="G$1" pin="D+" pad="D+"/> +<connect gate="G$1" pin="D-" pad="D-"/> +<connect gate="G$1" pin="GND" pad="GND"/> +<connect gate="G$1" pin="VBUS" pad="VBUS"/> +</connects> +<technologies> +<technology name=""/> +</technologies> +</device> +</devices> +</deviceset> +</devicesets> +</library> +<library name="microcontrollers"> +<packages> +<package name="QFP80P900X900X120-32N"> +<wire x1="-3.55" y1="-3.55" x2="-3.55" y2="3.55" width="0.127" layer="51"/> +<wire x1="-3.55" y1="3.55" x2="3.55" y2="3.55" width="0.127" layer="51"/> +<wire x1="3.55" y1="3.55" x2="3.55" y2="-3.55" width="0.127" layer="51"/> +<wire x1="3.55" y1="-3.55" x2="-3.55" y2="-3.55" width="0.127" layer="51"/> +<wire x1="-3.25" y1="3.55" x2="-3.55" y2="3.55" width="0.127" layer="21"/> +<wire x1="-3.55" y1="3.55" x2="-3.55" y2="3.25" width="0.127" layer="21"/> +<wire x1="3.25" y1="3.55" x2="3.55" y2="3.55" width="0.127" layer="21"/> +<wire x1="3.55" y1="3.55" x2="3.55" y2="3.25" width="0.127" layer="21"/> +<wire x1="-3.55" y1="-3.25" x2="-3.55" y2="-3.55" width="0.127" layer="21"/> +<wire x1="-3.55" y1="-3.55" x2="-3.25" y2="-3.55" width="0.127" layer="21"/> +<wire x1="3.25" y1="-3.55" x2="3.55" y2="-3.55" width="0.127" layer="21"/> +<wire x1="3.55" y1="-3.55" x2="3.55" y2="-3.25" width="0.127" layer="21"/> +<text x="-3.202909375" y="5.80526875" size="0.8135375" layer="25">>NAME</text> +<text x="-3.40625" y="-6.211390625" size="0.81429375" layer="27">>VALUE</text> +<circle x="-5.8" y="2.8" radius="0.1" width="0.2" layer="21"/> +<circle x="-5.8" y="2.8" radius="0.1" width="0.2" layer="51"/> +<smd name="1" x="-4.18" y="2.8" dx="1.6" dy="0.55" layer="1" roundness="25"/> +<smd name="2" x="-4.18" y="2" dx="1.6" dy="0.55" layer="1" roundness="25"/> +<smd name="3" x="-4.18" y="1.2" dx="1.6" dy="0.55" layer="1" roundness="25"/> +<smd name="4" x="-4.18" y="0.4" dx="1.6" dy="0.55" layer="1" roundness="25"/> +<smd name="5" x="-4.18" y="-0.4" dx="1.6" dy="0.55" layer="1" roundness="25"/> +<smd name="6" x="-4.18" y="-1.2" dx="1.6" dy="0.55" layer="1" roundness="25"/> +<smd name="7" x="-4.18" y="-2" dx="1.6" dy="0.55" layer="1" roundness="25"/> +<smd name="8" x="-4.18" y="-2.8" dx="1.6" dy="0.55" layer="1" roundness="25"/> +<smd name="9" x="-2.8" y="-4.18" dx="1.6" dy="0.55" layer="1" roundness="25" rot="R90"/> +<smd name="10" x="-2" y="-4.18" dx="1.6" dy="0.55" layer="1" roundness="25" rot="R90"/> +<smd name="11" x="-1.2" y="-4.18" dx="1.6" dy="0.55" layer="1" roundness="25" rot="R90"/> +<smd name="12" x="-0.4" y="-4.18" dx="1.6" dy="0.55" layer="1" roundness="25" rot="R90"/> +<smd name="13" x="0.4" y="-4.18" dx="1.6" dy="0.55" layer="1" roundness="25" rot="R90"/> +<smd name="14" x="1.2" y="-4.18" dx="1.6" dy="0.55" layer="1" roundness="25" rot="R90"/> +<smd name="15" x="2" y="-4.18" dx="1.6" dy="0.55" layer="1" roundness="25" rot="R90"/> +<smd name="16" x="2.8" y="-4.18" dx="1.6" dy="0.55" layer="1" roundness="25" rot="R90"/> +<smd name="17" x="4.18" y="-2.8" dx="1.6" dy="0.55" layer="1" roundness="25" rot="R180"/> +<smd name="18" x="4.18" y="-2" dx="1.6" dy="0.55" layer="1" roundness="25" rot="R180"/> +<smd name="19" x="4.18" y="-1.2" dx="1.6" dy="0.55" layer="1" roundness="25" rot="R180"/> +<smd name="20" x="4.18" y="-0.4" dx="1.6" dy="0.55" layer="1" roundness="25" rot="R180"/> +<smd name="21" x="4.18" y="0.4" dx="1.6" dy="0.55" layer="1" roundness="25" rot="R180"/> +<smd name="22" x="4.18" y="1.2" dx="1.6" dy="0.55" layer="1" roundness="25" rot="R180"/> +<smd name="23" x="4.18" y="2" dx="1.6" dy="0.55" layer="1" roundness="25" rot="R180"/> +<smd name="24" x="4.18" y="2.8" dx="1.6" dy="0.55" layer="1" roundness="25" rot="R180"/> +<smd name="25" x="2.8" y="4.18" dx="1.6" dy="0.55" layer="1" roundness="25" rot="R270"/> +<smd name="26" x="2" y="4.18" dx="1.6" dy="0.55" layer="1" roundness="25" rot="R270"/> +<smd name="27" x="1.2" y="4.18" dx="1.6" dy="0.55" layer="1" roundness="25" rot="R270"/> +<smd name="28" x="0.4" y="4.18" dx="1.6" dy="0.55" layer="1" roundness="25" rot="R270"/> +<smd name="29" x="-0.4" y="4.18" dx="1.6" dy="0.55" layer="1" roundness="25" rot="R270"/> +<smd name="30" x="-1.2" y="4.18" dx="1.6" dy="0.55" layer="1" roundness="25" rot="R270"/> +<smd name="31" x="-2" y="4.18" dx="1.6" dy="0.55" layer="1" roundness="25" rot="R270"/> +<smd name="32" x="-2.8" y="4.18" dx="1.6" dy="0.55" layer="1" roundness="25" rot="R270"/> +</package> +<package name="QFN-64-9X9MM-SMALLPAD"> +<description><h3>64-pin QFN 9x9mm, 0.5mm pitch</h3> +<p>Package used by ATmega128RFA1</p> +<p><a href="http://www.atmel.com/Images/Atmel-8266-MCU_Wireless-ATmega128RFA1_Datasheet.pdf">Example Datasheet</a></p></description> +<wire x1="-4.492" y1="-4.5" x2="4.508" y2="-4.5" width="0.09" layer="51"/> +<wire x1="4.508" y1="-4.5" x2="4.508" y2="4.5" width="0.09" layer="51"/> +<wire x1="4.508" y1="4.5" x2="-4.492" y2="4.5" width="0.09" layer="51"/> +<wire x1="-4.492" y1="4.5" x2="-4.492" y2="-4.5" width="0.09" layer="51"/> +<wire x1="-4.6" y1="4.6" x2="-4.6" y2="4.1" width="0.2032" layer="21"/> +<wire x1="-4.6" y1="4.6" x2="-4.1" y2="4.6" width="0.2032" layer="21"/> +<wire x1="4.6" y1="4.6" x2="4.1" y2="4.6" width="0.2032" layer="21"/> +<wire x1="4.6" y1="4.6" x2="4.6" y2="4.1" width="0.2032" layer="21"/> +<circle x="-4.842" y="4.85" radius="0.2" width="0" layer="21"/> +<circle x="-3.442" y="3.45" radius="0.2" width="0.09" layer="51"/> +<smd name="26" x="0.75" y="-4.5" dx="0.275" dy="0.7" layer="1" rot="R180"/> +<smd name="25" x="0.25" y="-4.5" dx="0.275" dy="0.7" layer="1" rot="R180"/> +<smd name="24" x="-0.25" y="-4.5" dx="0.275" dy="0.7" layer="1" rot="R180"/> +<smd name="27" x="1.25" y="-4.5" dx="0.275" dy="0.7" layer="1" rot="R180"/> +<smd name="28" x="1.75" y="-4.5" dx="0.275" dy="0.7" layer="1" rot="R180"/> +<smd name="23" x="-0.75" y="-4.5" dx="0.275" dy="0.7" layer="1" rot="R180"/> +<smd name="22" x="-1.25" y="-4.5" dx="0.275" dy="0.7" layer="1" rot="R180"/> +<smd name="21" x="-1.75" y="-4.5" dx="0.275" dy="0.7" layer="1" rot="R180"/> +<smd name="6" x="-4.5" y="1.25" dx="0.275" dy="0.7" layer="1" rot="R270"/> +<smd name="5" x="-4.5" y="1.75" dx="0.275" dy="0.7" layer="1" rot="R270"/> +<smd name="4" x="-4.5" y="2.25" dx="0.275" dy="0.7" layer="1" rot="R270"/> +<smd name="7" x="-4.5" y="0.75" dx="0.275" dy="0.7" layer="1" rot="R270"/> +<smd name="8" x="-4.5" y="0.25" dx="0.275" dy="0.7" layer="1" rot="R270"/> +<smd name="3" x="-4.5" y="2.75" dx="0.275" dy="0.7" layer="1" rot="R270"/> +<smd name="2" x="-4.5" y="3.25" dx="0.275" dy="0.7" layer="1" rot="R270"/> +<smd name="9" x="-4.5" y="-0.25" dx="0.275" dy="0.7" layer="1" rot="R270"/> +<smd name="10" x="-4.5" y="-0.75" dx="0.275" dy="0.7" layer="1" rot="R270"/> +<smd name="1" x="-4.5" y="3.75" dx="0.275" dy="0.7" layer="1" rot="R270"/> +<smd name="16" x="-4.5" y="-3.75" dx="0.275" dy="0.7" layer="1" rot="R90"/> +<smd name="15" x="-4.5" y="-3.25" dx="0.275" dy="0.7" layer="1" rot="R90"/> +<smd name="14" x="-4.5" y="-2.75" dx="0.275" dy="0.7" layer="1" rot="R270"/> +<smd name="17" x="-3.75" y="-4.5" dx="0.275" dy="0.7" layer="1" rot="R180"/> +<smd name="18" x="-3.25" y="-4.5" dx="0.275" dy="0.7" layer="1" rot="R180"/> +<smd name="13" x="-4.5" y="-2.25" dx="0.275" dy="0.7" layer="1" rot="R270"/> +<smd name="12" x="-4.5" y="-1.75" dx="0.275" dy="0.7" layer="1" rot="R270"/> +<smd name="19" x="-2.75" y="-4.5" dx="0.275" dy="0.7" layer="1" rot="R180"/> +<smd name="20" x="-2.25" y="-4.5" dx="0.275" dy="0.7" layer="1" rot="R180"/> +<smd name="11" x="-4.5" y="-1.25" dx="0.275" dy="0.7" layer="1" rot="R270"/> +<smd name="29" x="2.25" y="-4.5" dx="0.275" dy="0.7" layer="1"/> +<smd name="30" x="2.75" y="-4.5" dx="0.275" dy="0.7" layer="1"/> +<smd name="31" x="3.25" y="-4.5" dx="0.275" dy="0.7" layer="1"/> +<smd name="32" x="3.75" y="-4.5" dx="0.275" dy="0.7" layer="1"/> +<smd name="33" x="4.5" y="-3.75" dx="0.275" dy="0.7" layer="1" rot="R90"/> +<smd name="34" x="4.5" y="-3.25" dx="0.275" dy="0.7" layer="1" rot="R90"/> +<smd name="35" x="4.5" y="-2.75" dx="0.275" dy="0.7" layer="1" rot="R90"/> +<smd name="36" x="4.5" y="-2.25" dx="0.275" dy="0.7" layer="1" rot="R90"/> +<smd name="37" x="4.5" y="-1.75" dx="0.275" dy="0.7" layer="1" rot="R90"/> +<smd name="38" x="4.5" y="-1.25" dx="0.275" dy="0.7" layer="1" rot="R90"/> +<smd name="39" x="4.5" y="-0.75" dx="0.275" dy="0.7" layer="1" rot="R90"/> +<smd name="40" x="4.5" y="-0.25" dx="0.275" dy="0.7" layer="1" rot="R90"/> +<smd name="41" x="4.5" y="0.25" dx="0.275" dy="0.7" layer="1" rot="R90"/> +<smd name="42" x="4.5" y="0.75" dx="0.275" dy="0.7" layer="1" rot="R90"/> +<smd name="43" x="4.5" y="1.25" dx="0.275" dy="0.7" layer="1" rot="R90"/> +<smd name="44" x="4.5" y="1.75" dx="0.275" dy="0.7" layer="1" rot="R90"/> +<smd name="45" x="4.5" y="2.25" dx="0.275" dy="0.7" layer="1" rot="R90"/> +<smd name="46" x="4.5" y="2.75" dx="0.275" dy="0.7" layer="1" rot="R90"/> +<smd name="47" x="4.5" y="3.25" dx="0.275" dy="0.7" layer="1" rot="R90"/> +<smd name="48" x="4.5" y="3.75" dx="0.275" dy="0.7" layer="1" rot="R90"/> +<smd name="49" x="3.75" y="4.5" dx="0.275" dy="0.7" layer="1"/> +<smd name="50" x="3.25" y="4.5" dx="0.275" dy="0.7" layer="1"/> +<smd name="51" x="2.75" y="4.5" dx="0.275" dy="0.7" layer="1"/> +<smd name="52" x="2.25" y="4.5" dx="0.275" dy="0.7" layer="1"/> +<smd name="53" x="1.75" y="4.5" dx="0.275" dy="0.7" layer="1"/> +<smd name="54" x="1.25" y="4.5" dx="0.275" dy="0.7" layer="1"/> +<smd name="55" x="0.75" y="4.5" dx="0.275" dy="0.7" layer="1"/> +<smd name="56" x="0.25" y="4.5" dx="0.275" dy="0.7" layer="1"/> +<smd name="57" x="-0.25" y="4.5" dx="0.275" dy="0.7" layer="1"/> +<smd name="58" x="-0.75" y="4.5" dx="0.275" dy="0.7" layer="1"/> +<smd name="59" x="-1.25" y="4.5" dx="0.275" dy="0.7" layer="1"/> +<smd name="60" x="-1.75" y="4.5" dx="0.275" dy="0.7" layer="1"/> +<smd name="61" x="-2.25" y="4.5" dx="0.275" dy="0.7" layer="1"/> +<smd name="62" x="-2.75" y="4.5" dx="0.275" dy="0.7" layer="1"/> +<smd name="63" x="-3.25" y="4.5" dx="0.275" dy="0.7" layer="1"/> +<smd name="64" x="-3.75" y="4.5" dx="0.275" dy="0.7" layer="1"/> +<text x="0" y="1.27" size="0.6096" layer="25" font="vector" ratio="20" align="bottom-center">>NAME</text> +<text x="0" y="-1.27" size="0.6096" layer="27" font="vector" ratio="20" align="top-center">>VALUE</text> +<wire x1="4.6" y1="-4.6" x2="4.1" y2="-4.6" width="0.2032" layer="21"/> +<wire x1="4.6" y1="-4.6" x2="4.6" y2="-4.1" width="0.2032" layer="21"/> +<wire x1="-4.6" y1="-4.6" x2="-4.6" y2="-4.1" width="0.2032" layer="21"/> +<wire x1="-4.6" y1="-4.6" x2="-4.1" y2="-4.6" width="0.2032" layer="21"/> +<smd name="P$1" x="0" y="0" dx="4.8" dy="4.8" layer="1" cream="no"/> +<polygon width="0.127" layer="31"> +<vertex x="1.03" y="1.03"/> +<vertex x="1.03" y="2.17"/> +<vertex x="2.17" y="2.17"/> +<vertex x="2.17" y="1.03"/> +</polygon> +<polygon width="0.127" layer="31"> +<vertex x="-2.17" y="1.03"/> +<vertex x="-2.17" y="2.17"/> +<vertex x="-1.03" y="2.17"/> +<vertex x="-1.03" y="1.03"/> +</polygon> +<polygon width="0.127" layer="31"> +<vertex x="-2.17" y="-2.17"/> +<vertex x="-2.17" y="-1.03"/> +<vertex x="-1.03" y="-1.03"/> +<vertex x="-1.03" y="-2.17"/> +</polygon> +<polygon width="0.127" layer="31"> +<vertex x="1.03" y="-2.17"/> +<vertex x="1.03" y="-1.03"/> +<vertex x="2.17" y="-1.03"/> +<vertex x="2.17" y="-2.17"/> +</polygon> +<polygon width="0.127" layer="31"> +<vertex x="-0.57" y="-0.57"/> +<vertex x="-0.57" y="0.57"/> +<vertex x="0.57" y="0.57"/> +<vertex x="0.57" y="-0.57"/> +</polygon> +</package> +</packages> +<symbols> +<symbol name="ATSAMD21E18A-AF"> +<wire x1="22.86" y1="-33.02" x2="-20.32" y2="-33.02" width="0.254" layer="94"/> +<wire x1="-20.32" y1="-33.02" x2="-20.32" y2="35.56" width="0.254" layer="94"/> +<wire x1="-20.32" y1="35.56" x2="22.86" y2="35.56" width="0.254" layer="94"/> +<wire x1="22.86" y1="35.56" x2="22.86" y2="-33.02" width="0.254" layer="94"/> +<text x="-20.3338" y="35.5978" size="1.780409375" layer="95">>NAME</text> +<text x="-20.338" y="-35.614" size="1.78115" layer="96">>VALUE</text> +<pin name="PA00" x="27.94" y="33.02" length="middle" rot="R180"/> +<pin name="PA01" x="27.94" y="30.48" length="middle" rot="R180"/> +<pin name="PA02" x="27.94" y="27.94" length="middle" rot="R180"/> +<pin name="PA03" x="27.94" y="25.4" length="middle" rot="R180"/> +<pin name="PA04" x="27.94" y="22.86" length="middle" rot="R180"/> +<pin name="PA05" x="27.94" y="20.32" length="middle" rot="R180"/> +<pin name="PA06" x="27.94" y="17.78" length="middle" rot="R180"/> +<pin name="PA07" x="27.94" y="15.24" length="middle" rot="R180"/> +<pin name="VDDANA" x="-25.4" y="25.4" length="middle" direction="pwr"/> +<pin name="GND" x="-25.4" y="-30.48" length="middle" direction="pwr"/> +<pin name="PA08" x="27.94" y="12.7" length="middle" rot="R180"/> +<pin name="PA09" x="27.94" y="10.16" length="middle" rot="R180"/> +<pin name="PA10" x="27.94" y="7.62" length="middle" rot="R180"/> +<pin name="PA11" x="27.94" y="5.08" length="middle" rot="R180"/> +<pin name="PA14" x="27.94" y="2.54" length="middle" rot="R180"/> +<pin name="PA15" x="27.94" y="0" length="middle" rot="R180"/> +<pin name="PA16" x="27.94" y="-2.54" length="middle" rot="R180"/> +<pin name="PA17" x="27.94" y="-5.08" length="middle" rot="R180"/> +<pin name="PA18" x="27.94" y="-7.62" length="middle" rot="R180"/> +<pin name="PA19" x="27.94" y="-10.16" length="middle" rot="R180"/> +<pin name="PA22" x="27.94" y="-12.7" length="middle" rot="R180"/> +<pin name="PA23" x="27.94" y="-15.24" length="middle" rot="R180"/> +<pin name="PA24" x="27.94" y="-17.78" length="middle" rot="R180"/> +<pin name="PA25" x="27.94" y="-20.32" length="middle" rot="R180"/> +<pin name="PA27" x="27.94" y="-22.86" length="middle" rot="R180"/> +<pin name="!RESET" x="-25.4" y="-17.78" length="middle" direction="in"/> +<pin name="PA28" x="27.94" y="-25.4" length="middle" rot="R180"/> +<pin name="VDDCORE" x="-25.4" y="17.78" length="middle" direction="pwr"/> +<pin name="VDDIN" x="-25.4" y="33.02" length="middle" direction="pwr"/> +<pin name="PA30" x="27.94" y="-27.94" length="middle" rot="R180"/> +<pin name="PA31" x="27.94" y="-30.48" length="middle" rot="R180"/> +</symbol> +<symbol name="ATSAMD51J"> +<pin name="GND" x="-35.56" y="-132.08" length="middle"/> +<pin name="VDDCORE" x="-35.56" y="-45.72" length="middle"/> +<pin name="VDDANA" x="-35.56" y="-15.24" length="middle"/> +<pin name="VDDIO" x="-35.56" y="0" length="middle"/> +<pin name="PA00/XIN32/SER1-0/TC2-0" x="43.18" y="0" length="middle" rot="R180"/> +<pin name="PA01/XOUT32/SER1-1/TC2-1" x="43.18" y="-2.54" length="middle" rot="R180"/> +<pin name="PA02/ADC0-1/DAC-0" x="43.18" y="-5.08" length="middle" rot="R180"/> +<pin name="PA03/ANAREF-VREFA/ADC0-1" x="43.18" y="-7.62" length="middle" rot="R180"/> +<pin name="PA04/ANAREF-VREFB/ADC0-4/SER0-0/TC0-0" x="43.18" y="-10.16" length="middle" rot="R180"/> +<pin name="PA05/ADC0-5/DAC-1/SER0-1/TC0-1" x="43.18" y="-12.7" length="middle" rot="R180"/> +<pin name="PA06/ANAREF-VREFC/ADC0-6/SER0-2/TC1-0" x="43.18" y="-15.24" length="middle" rot="R180"/> +<pin name="PA07/ADC0-7/SER0-3/TC1-1" x="43.18" y="-17.78" length="middle" rot="R180"/> +<pin name="PA08/ADC0-8/ADC1-2/SER0-0/SER2-1/TC0-0/TCC0-0" x="43.18" y="-20.32" length="middle" rot="R180"/> +<pin name="PA09/ADC0-9/ADC1-3/SER0-1/SER2-0/TC0-1/TCC0-1" x="43.18" y="-22.86" length="middle" rot="R180"/> +<pin name="PA10/ADC0-10/SER0-2/SER2-2/TC1-0/TCC0-2" x="43.18" y="-25.4" length="middle" rot="R180"/> +<pin name="PA11/ADC0-11/SER0-3/SER2-3/TC1-1/TCC0-3" x="43.18" y="-27.94" length="middle" rot="R180"/> +<pin name="PA12/SER2-0/SER4-1/TC2-0/TCC0-6" x="43.18" y="-30.48" length="middle" rot="R180"/> +<pin name="PA13/SER2-1/SER4-0/TC2-1/TCC0-7" x="43.18" y="-33.02" length="middle" rot="R180"/> +<pin name="PA14/XIN0/SER2-2/SER4-2/TC3-0" x="43.18" y="-35.56" length="middle" rot="R180"/> +<pin name="PA15/XOUT0/SER2-3/SER4-3/TC3-1" x="43.18" y="-38.1" length="middle" rot="R180"/> +<pin name="PA16/SER1-0/SER3-1/TC2-0/TCC0-4" x="43.18" y="-40.64" length="middle" rot="R180"/> +<pin name="PA17/SER1-1/SER3-0/TC2-1/TCC0-5" x="43.18" y="-43.18" length="middle" rot="R180"/> +<pin name="PA18/SER1-2/SER3-2/TC3-0" x="43.18" y="-45.72" length="middle" rot="R180"/> +<pin name="PA19/SER1-3/SER3-3/TC3-1" x="43.18" y="-48.26" length="middle" rot="R180"/> +<pin name="PA20/SER5-2/SER3-2/TC7-0" x="43.18" y="-50.8" length="middle" rot="R180"/> +<pin name="PA21/SER5-3/SER3-3/TC7-1" x="43.18" y="-53.34" length="middle" rot="R180"/> +<pin name="PA22/SER3-0/SER5-1/TC4-0" x="43.18" y="-55.88" length="middle" rot="R180"/> +<pin name="PA23/SER3-1/SER5-0/TC4-1" x="43.18" y="-58.42" length="middle" rot="R180"/> +<pin name="PA24/SER3-2/SER5-2/TC5-0/PDEC0-0/USBDM" x="43.18" y="-60.96" length="middle" rot="R180"/> +<pin name="PA25/SER3-3/SER5-3/TC5-1/PDEC0-1/USBDP" x="43.18" y="-63.5" length="middle" rot="R180"/> +<pin name="PA27/GCLK-1" x="43.18" y="-66.04" length="middle" rot="R180"/> +<pin name="PA30/SER7-2/SER1-2/TC6-0/SWCLK" x="43.18" y="-68.58" length="middle" rot="R180"/> +<pin name="PA31/SER7-3/SER1-3/TC6-1/SWDIO" x="43.18" y="-71.12" length="middle" rot="R180"/> +<pin name="PB00/ADC0-12/SER5-2/TC7-0" x="43.18" y="-78.74" length="middle" rot="R180"/> +<pin name="PB01/ADC0-13/SER5-3/TC7-1" x="43.18" y="-81.28" length="middle" rot="R180"/> +<pin name="PB03/ADC0/SER5-1/TC6" x="43.18" y="-86.36" length="middle" rot="R180"/> +<pin name="PB04/ADC1-6" x="43.18" y="-88.9" length="middle" rot="R180"/> +<pin name="PB05/ADC1-7" x="43.18" y="-91.44" length="middle" rot="R180"/> +<pin name="PB06/ADC1-8" x="43.18" y="-93.98" length="middle" rot="R180"/> +<pin name="PB07/ADC1-9" x="43.18" y="-96.52" length="middle" rot="R180"/> +<pin name="PB08/ADC0-2/ADC1-9/SER4-0/TC4-0" x="43.18" y="-99.06" length="middle" rot="R180"/> +<pin name="PB09/ADC0-3/ADC1-1/SER4-1/TC4-1" x="43.18" y="-101.6" length="middle" rot="R180"/> +<pin name="PB10/SER4-2/TC5-0/TCC0-4" x="43.18" y="-104.14" length="middle" rot="R180"/> +<pin name="PB11/SER4-3/TC5-1/TCC0-5" x="43.18" y="-106.68" length="middle" rot="R180"/> +<pin name="PB12/SER4-0/TC4-0" x="43.18" y="-109.22" length="middle" rot="R180"/> +<pin name="PB13/SER4-1/TC4-1" x="43.18" y="-111.76" length="middle" rot="R180"/> +<pin name="PB14/SER4-2/TC5-0" x="43.18" y="-114.3" length="middle" rot="R180"/> +<pin name="PB15/SER4-3/TC5-1" x="43.18" y="-116.84" length="middle" rot="R180"/> +<pin name="PB16/SER5-0/TC6-0" x="43.18" y="-119.38" length="middle" rot="R180"/> +<pin name="PB17/SER5-1/TC6-1" x="43.18" y="-121.92" length="middle" rot="R180"/> +<pin name="PB22/XIN1/SER1-2/SER5-2/PDEC0-2/TC7-0" x="43.18" y="-124.46" length="middle" rot="R180"/> +<pin name="PB23/XOUT1/SER1-3/SER5-3/TC7-1" x="43.18" y="-127" length="middle" rot="R180"/> +<pin name="PB30/SER7-0/SER5-1/TC0-0/SWO" x="43.18" y="-129.54" length="middle" rot="R180"/> +<pin name="RESETN" x="-35.56" y="-119.38" length="middle"/> +<pin name="PB31/SER7-1/SER5-0/TC0-1" x="43.18" y="-132.08" length="middle" rot="R180"/> +<pin name="PB02/ADC0-14/SER5-0/TC6-0" x="43.18" y="-83.82" length="middle" rot="R180"/> +<wire x1="-30.48" y1="5.08" x2="38.1" y2="5.08" width="0.254" layer="94"/> +<wire x1="38.1" y1="5.08" x2="38.1" y2="-137.16" width="0.254" layer="94"/> +<wire x1="38.1" y1="-137.16" x2="-30.48" y2="-137.16" width="0.254" layer="94"/> +<wire x1="-30.48" y1="-137.16" x2="-30.48" y2="5.08" width="0.254" layer="94"/> +<text x="-5.08" y="7.62" size="1.778" layer="95">>NAME</text> +<text x="-5.08" y="-142.24" size="1.778" layer="96">>VALUE</text> +<pin name="VSW" x="-35.56" y="-30.48" length="middle"/> +</symbol> +</symbols> +<devicesets> +<deviceset name="ATSAMD21E18A-AF" prefix="U"> +<description>The SAM D21 is a series of low-power microcontrollers using the 32-bit ARM® + Cortex® +-M0+ processor, +and ranging from 32- to 64-pins with up to 256KB Flash and 32KB of SRAM. The SAM D21 operate at a +maximum frequency of 48MHz and reach 2.46 CoreMark® +/MHz. <a href="https://pricing.snapeda.com/parts/ATSAMD21E18A-AF/Microchip/view-part?ref=eda">Check prices</a></description> +<gates> +<gate name="G$1" symbol="ATSAMD21E18A-AF" x="0" y="0"/> +</gates> +<devices> +<device name="" package="QFP80P900X900X120-32N"> +<connects> +<connect gate="G$1" pin="!RESET" pad="26"/> +<connect gate="G$1" pin="GND" pad="10 28"/> +<connect gate="G$1" pin="PA00" pad="1"/> +<connect gate="G$1" pin="PA01" pad="2"/> +<connect gate="G$1" pin="PA02" pad="3"/> +<connect gate="G$1" pin="PA03" pad="4"/> +<connect gate="G$1" pin="PA04" pad="5"/> +<connect gate="G$1" pin="PA05" pad="6"/> +<connect gate="G$1" pin="PA06" pad="7"/> +<connect gate="G$1" pin="PA07" pad="8"/> +<connect gate="G$1" pin="PA08" pad="11"/> +<connect gate="G$1" pin="PA09" pad="12"/> +<connect gate="G$1" pin="PA10" pad="13"/> +<connect gate="G$1" pin="PA11" pad="14"/> +<connect gate="G$1" pin="PA14" pad="15"/> +<connect gate="G$1" pin="PA15" pad="16"/> +<connect gate="G$1" pin="PA16" pad="17"/> +<connect gate="G$1" pin="PA17" pad="18"/> +<connect gate="G$1" pin="PA18" pad="19"/> +<connect gate="G$1" pin="PA19" pad="20"/> +<connect gate="G$1" pin="PA22" pad="21"/> +<connect gate="G$1" pin="PA23" pad="22"/> +<connect gate="G$1" pin="PA24" pad="23"/> +<connect gate="G$1" pin="PA25" pad="24"/> +<connect gate="G$1" pin="PA27" pad="25"/> +<connect gate="G$1" pin="PA28" pad="27"/> +<connect gate="G$1" pin="PA30" pad="31"/> +<connect gate="G$1" pin="PA31" pad="32"/> +<connect gate="G$1" pin="VDDANA" pad="9"/> +<connect gate="G$1" pin="VDDCORE" pad="29"/> +<connect gate="G$1" pin="VDDIN" pad="30"/> +</connects> +<technologies> +<technology name=""> +<attribute name="AVAILABILITY" value="Warning"/> +<attribute name="DESCRIPTION" value=" ARM® Cortex®-M0+ Automotive, AEC-Q100, SAM D21E, Functional Safety (FuSa) Microcontroller IC 32-Bit 48MHz 256KB (256K x 8) FLASH 32-TQFP (7x7) "/> +<attribute name="MF" value="Microchip"/> +<attribute name="MP" value="ATSAMD21E18A-AF"/> +<attribute name="PACKAGE" value="TQFP-32 Microchip"/> +<attribute name="PRICE" value="None"/> +<attribute name="PURCHASE-URL" value="https://pricing.snapeda.com/search/part/ATSAMD21E18A-AF/?ref=eda"/> +</technology> +</technologies> +</device> +</devices> +</deviceset> +<deviceset name="ATSAMD51J" prefix="U"> +<gates> +<gate name="G$1" symbol="ATSAMD51J" x="0" y="0"/> +</gates> +<devices> +<device name="QFN64" package="QFN-64-9X9MM-SMALLPAD"> +<connects> +<connect gate="G$1" pin="GND" pad="7 22 33 47 54 P$1"/> +<connect gate="G$1" pin="PA00/XIN32/SER1-0/TC2-0" pad="1"/> +<connect gate="G$1" pin="PA01/XOUT32/SER1-1/TC2-1" pad="2"/> +<connect gate="G$1" pin="PA02/ADC0-1/DAC-0" pad="3"/> +<connect gate="G$1" pin="PA03/ANAREF-VREFA/ADC0-1" pad="4"/> +<connect gate="G$1" pin="PA04/ANAREF-VREFB/ADC0-4/SER0-0/TC0-0" pad="13"/> +<connect gate="G$1" pin="PA05/ADC0-5/DAC-1/SER0-1/TC0-1" pad="14"/> +<connect gate="G$1" pin="PA06/ANAREF-VREFC/ADC0-6/SER0-2/TC1-0" pad="15"/> +<connect gate="G$1" pin="PA07/ADC0-7/SER0-3/TC1-1" pad="16"/> +<connect gate="G$1" pin="PA08/ADC0-8/ADC1-2/SER0-0/SER2-1/TC0-0/TCC0-0" pad="17"/> +<connect gate="G$1" pin="PA09/ADC0-9/ADC1-3/SER0-1/SER2-0/TC0-1/TCC0-1" pad="18"/> +<connect gate="G$1" pin="PA10/ADC0-10/SER0-2/SER2-2/TC1-0/TCC0-2" pad="19"/> +<connect gate="G$1" pin="PA11/ADC0-11/SER0-3/SER2-3/TC1-1/TCC0-3" pad="20"/> +<connect gate="G$1" pin="PA12/SER2-0/SER4-1/TC2-0/TCC0-6" pad="29"/> +<connect gate="G$1" pin="PA13/SER2-1/SER4-0/TC2-1/TCC0-7" pad="30"/> +<connect gate="G$1" pin="PA14/XIN0/SER2-2/SER4-2/TC3-0" pad="31"/> +<connect gate="G$1" pin="PA15/XOUT0/SER2-3/SER4-3/TC3-1" pad="32"/> +<connect gate="G$1" pin="PA16/SER1-0/SER3-1/TC2-0/TCC0-4" pad="35"/> +<connect gate="G$1" pin="PA17/SER1-1/SER3-0/TC2-1/TCC0-5" pad="36"/> +<connect gate="G$1" pin="PA18/SER1-2/SER3-2/TC3-0" pad="37"/> +<connect gate="G$1" pin="PA19/SER1-3/SER3-3/TC3-1" pad="38"/> +<connect gate="G$1" pin="PA20/SER5-2/SER3-2/TC7-0" pad="41"/> +<connect gate="G$1" pin="PA21/SER5-3/SER3-3/TC7-1" pad="42"/> +<connect gate="G$1" pin="PA22/SER3-0/SER5-1/TC4-0" pad="43"/> +<connect gate="G$1" pin="PA23/SER3-1/SER5-0/TC4-1" pad="44"/> +<connect gate="G$1" pin="PA24/SER3-2/SER5-2/TC5-0/PDEC0-0/USBDM" pad="45"/> +<connect gate="G$1" pin="PA25/SER3-3/SER5-3/TC5-1/PDEC0-1/USBDP" pad="46"/> +<connect gate="G$1" pin="PA27/GCLK-1" pad="51"/> +<connect gate="G$1" pin="PA30/SER7-2/SER1-2/TC6-0/SWCLK" pad="57"/> +<connect gate="G$1" pin="PA31/SER7-3/SER1-3/TC6-1/SWDIO" pad="58"/> +<connect gate="G$1" pin="PB00/ADC0-12/SER5-2/TC7-0" pad="61"/> +<connect gate="G$1" pin="PB01/ADC0-13/SER5-3/TC7-1" pad="62"/> +<connect gate="G$1" pin="PB02/ADC0-14/SER5-0/TC6-0" pad="63"/> +<connect gate="G$1" pin="PB03/ADC0/SER5-1/TC6" pad="64"/> +<connect gate="G$1" pin="PB04/ADC1-6" pad="5"/> +<connect gate="G$1" pin="PB05/ADC1-7" pad="6"/> +<connect gate="G$1" pin="PB06/ADC1-8" pad="9"/> +<connect gate="G$1" pin="PB07/ADC1-9" pad="10"/> +<connect gate="G$1" pin="PB08/ADC0-2/ADC1-9/SER4-0/TC4-0" pad="11"/> +<connect gate="G$1" pin="PB09/ADC0-3/ADC1-1/SER4-1/TC4-1" pad="12"/> +<connect gate="G$1" pin="PB10/SER4-2/TC5-0/TCC0-4" pad="23"/> +<connect gate="G$1" pin="PB11/SER4-3/TC5-1/TCC0-5" pad="24"/> +<connect gate="G$1" pin="PB12/SER4-0/TC4-0" pad="25"/> +<connect gate="G$1" pin="PB13/SER4-1/TC4-1" pad="26"/> +<connect gate="G$1" pin="PB14/SER4-2/TC5-0" pad="27"/> +<connect gate="G$1" pin="PB15/SER4-3/TC5-1" pad="28"/> +<connect gate="G$1" pin="PB16/SER5-0/TC6-0" pad="39"/> +<connect gate="G$1" pin="PB17/SER5-1/TC6-1" pad="40"/> +<connect gate="G$1" pin="PB22/XIN1/SER1-2/SER5-2/PDEC0-2/TC7-0" pad="49"/> +<connect gate="G$1" pin="PB23/XOUT1/SER1-3/SER5-3/TC7-1" pad="50"/> +<connect gate="G$1" pin="PB30/SER7-0/SER5-1/TC0-0/SWO" pad="59"/> +<connect gate="G$1" pin="PB31/SER7-1/SER5-0/TC0-1" pad="60"/> +<connect gate="G$1" pin="RESETN" pad="52"/> +<connect gate="G$1" pin="VDDANA" pad="8"/> +<connect gate="G$1" pin="VDDCORE" pad="53"/> +<connect gate="G$1" pin="VDDIO" pad="21 34 48 56"/> +<connect gate="G$1" pin="VSW" pad="55"/> +</connects> +<technologies> +<technology name=""/> +</technologies> +</device> +</devices> +</deviceset> +</devicesets> +</library> +</libraries> +<attributes> +</attributes> +<variantdefs> +</variantdefs> +<classes> +<class number="0" name="default" width="0" drill="0"> +</class> +</classes> +<parts> +<part name="J1" library="SparkFun-Connectors" deviceset="CORTEX_JTAG_DEBUG" device="_SMD" value="JTAG"/> +<part name="S1" library="passives" deviceset="2-8X4-5_SWITCH" device=""/> +<part name="C1" library="passives" deviceset="CAP" device="0805" value="10uF"/> +<part name="+3V1" library="supply1" deviceset="+3V3" device=""/> +<part name="P+1" library="supply1" deviceset="+5V" device=""/> +<part name="GND1" library="supply1" deviceset="GND" device=""/> +<part name="U2" library="power" deviceset="VREG-AP2112" device=""/> +<part name="C4" library="passives" deviceset="CAP" device="0805" value="1uF"/> +<part name="C6" library="passives" deviceset="CAP" device="0805" value="0.1uF"/> +<part name="+3V2" library="supply1" deviceset="+3V3" device=""/> +<part name="GND5" library="supply1" deviceset="GND" device=""/> +<part name="GND6" library="supply1" deviceset="GND" device=""/> +<part name="R2" library="passives" deviceset="RESISTOR" device="0805-RES" value="10k"/> +<part name="+3V3" library="supply1" deviceset="+3V3" device=""/> +<part name="R3" library="passives" deviceset="RESISTOR" device="0805-RES" value="10k"/> +<part name="+3V4" library="supply1" deviceset="+3V3" device=""/> +<part name="GND7" library="supply1" deviceset="GND" device=""/> +<part name="+3V5" library="supply1" deviceset="+3V3" device=""/> +<part name="C7" library="passives" deviceset="CAP" device="0805" value="1uF"/> +<part name="X1" library="connector" deviceset="USB" device=""/> +<part name="P+2" library="supply1" deviceset="+5V" device=""/> +<part name="GND8" library="supply1" deviceset="GND" device=""/> +<part name="U1" library="microcontrollers" deviceset="ATSAMD21E18A-AF" device=""/> +<part name="U3" library="microcontrollers" deviceset="ATSAMD51J" device="QFN64"/> +<part name="+3V6" library="supply1" deviceset="+3V3" device=""/> +<part name="GND2" library="supply1" deviceset="GND" device=""/> +<part name="C2" library="passives" deviceset="CAP" device="0805" value="1uF"/> +<part name="GND3" library="supply1" deviceset="GND" device=""/> +</parts> +<sheets> +<sheet> +<plain> +</plain> +<instances> +<instance part="J1" gate="J1" x="-53.34" y="30.48" smashed="yes"> +<attribute name="NAME" x="-66.04" y="38.354" size="1.778" layer="95" font="vector"/> +<attribute name="VALUE" x="-66.04" y="20.574" size="1.778" layer="96" font="vector"/> +</instance> +<instance part="S1" gate="G$1" x="-20.32" y="17.78" smashed="yes"> +<attribute name="NAME" x="-26.67" y="15.24" size="1.778" layer="95" rot="R90"/> +<attribute name="VALUE" x="-38.1" y="7.62" size="1.778" layer="96"/> +</instance> +<instance part="C1" gate="G$1" x="-78.74" y="127" smashed="yes"> +<attribute name="NAME" x="-77.216" y="129.921" size="1.778" layer="95"/> +<attribute name="VALUE" x="-77.216" y="124.841" size="1.778" layer="96"/> +<attribute name="PACKAGE" x="-77.216" y="122.936" size="1.27" layer="97"/> +<attribute name="VOLTAGE" x="-77.216" y="121.158" size="1.27" layer="97"/> +<attribute name="TYPE" x="-77.216" y="119.38" size="1.27" layer="97"/> +</instance> +<instance part="+3V1" gate="G$1" x="-78.74" y="43.18" smashed="yes"> +<attribute name="VALUE" x="-81.28" y="38.1" size="1.778" layer="96" rot="R90"/> +</instance> +<instance part="P+1" gate="1" x="-78.74" y="152.4" smashed="yes"> +<attribute name="VALUE" x="-81.28" y="147.32" size="1.778" layer="96" rot="R90"/> +</instance> +<instance part="GND1" gate="1" x="-78.74" y="15.24" smashed="yes"> +<attribute name="VALUE" x="-81.28" y="12.7" size="1.778" layer="96"/> +</instance> +<instance part="U2" gate="G$1" x="-60.96" y="139.7" smashed="yes"> +<attribute name="NAME" x="-63.5" y="147.32" size="1.27" layer="95"/> +<attribute name="VALUE" x="-58.42" y="132.08" size="1.27" layer="96"/> +</instance> +<instance part="C4" gate="G$1" x="-7.62" y="60.96" smashed="yes" rot="R90"> +<attribute name="NAME" x="-10.541" y="62.484" size="1.778" layer="95" rot="R90"/> +<attribute name="VALUE" x="-5.461" y="62.484" size="1.778" layer="96" rot="R90"/> +<attribute name="PACKAGE" x="-3.556" y="62.484" size="1.27" layer="97" rot="R90"/> +<attribute name="VOLTAGE" x="-1.778" y="62.484" size="1.27" layer="97" rot="R90"/> +<attribute name="TYPE" x="0" y="62.484" size="1.27" layer="97" rot="R90"/> +</instance> +<instance part="C6" gate="G$1" x="-20.32" y="139.7" smashed="yes"> +<attribute name="NAME" x="-18.796" y="142.621" size="1.778" layer="95"/> +<attribute name="VALUE" x="-18.796" y="137.541" size="1.778" layer="96"/> +<attribute name="PACKAGE" x="-18.796" y="135.636" size="1.27" layer="97"/> +<attribute name="VOLTAGE" x="-18.796" y="133.858" size="1.27" layer="97"/> +<attribute name="TYPE" x="-18.796" y="132.08" size="1.27" layer="97"/> +</instance> +<instance part="+3V2" gate="G$1" x="-20.32" y="152.4" smashed="yes"> +<attribute name="VALUE" x="-22.86" y="147.32" size="1.778" layer="96" rot="R90"/> +</instance> +<instance part="GND5" gate="1" x="-20.32" y="129.54" smashed="yes"> +<attribute name="VALUE" x="-22.86" y="127" size="1.778" layer="96"/> +</instance> +<instance part="GND6" gate="1" x="-5.08" y="5.08" smashed="yes"> +<attribute name="VALUE" x="-7.62" y="2.54" size="1.778" layer="96"/> +</instance> +<instance part="R2" gate="G$1" x="-5.08" y="40.64" smashed="yes" rot="R270"> +<attribute name="NAME" x="-3.5814" y="44.45" size="1.778" layer="95" rot="R270"/> +<attribute name="VALUE" x="-8.382" y="44.45" size="1.778" layer="96" rot="R270"/> +<attribute name="PRECISION" x="-11.938" y="44.45" size="1.27" layer="97" rot="R270"/> +<attribute name="PACKAGE" x="-10.16" y="44.45" size="1.27" layer="97" rot="R270"/> +</instance> +<instance part="+3V3" gate="G$1" x="-5.08" y="53.34" smashed="yes"> +<attribute name="VALUE" x="-7.62" y="48.26" size="1.778" layer="96" rot="R90"/> +</instance> +<instance part="R3" gate="G$1" x="-20.32" y="40.64" smashed="yes" rot="R270"> +<attribute name="NAME" x="-18.8214" y="44.45" size="1.778" layer="95" rot="R270"/> +<attribute name="VALUE" x="-23.622" y="44.45" size="1.778" layer="96" rot="R270"/> +<attribute name="PRECISION" x="-27.178" y="44.45" size="1.27" layer="97" rot="R270"/> +<attribute name="PACKAGE" x="-25.4" y="44.45" size="1.27" layer="97" rot="R270"/> +</instance> +<instance part="+3V4" gate="G$1" x="-20.32" y="53.34" smashed="yes"> +<attribute name="VALUE" x="-22.86" y="48.26" size="1.778" layer="96" rot="R90"/> +</instance> +<instance part="GND7" gate="1" x="-60.96" y="116.84" smashed="yes"> +<attribute name="VALUE" x="-63.5" y="114.3" size="1.778" layer="96"/> +</instance> +<instance part="+3V5" gate="G$1" x="-43.18" y="152.4" smashed="yes"> +<attribute name="VALUE" x="-45.72" y="147.32" size="1.778" layer="96" rot="R90"/> +</instance> +<instance part="C7" gate="G$1" x="-43.18" y="127" smashed="yes"> +<attribute name="NAME" x="-41.656" y="129.921" size="1.778" layer="95"/> +<attribute name="VALUE" x="-41.656" y="124.841" size="1.778" layer="96"/> +<attribute name="PACKAGE" x="-41.656" y="122.936" size="1.27" layer="97"/> +<attribute name="VOLTAGE" x="-41.656" y="121.158" size="1.27" layer="97"/> +<attribute name="TYPE" x="-41.656" y="119.38" size="1.27" layer="97"/> +</instance> +<instance part="X1" gate="G$1" x="-76.2" y="60.96" smashed="yes" rot="R270"> +<attribute name="NAME" x="-78.105" y="65.405" size="1.27" layer="95" font="vector"/> +<attribute name="VALUE" x="-78.105" y="52.705" size="1.27" layer="96" font="vector"/> +</instance> +<instance part="P+2" gate="1" x="-48.26" y="68.58" smashed="yes"> +<attribute name="VALUE" x="-48.26" y="71.12" size="1.778" layer="96" rot="R90"/> +</instance> +<instance part="GND8" gate="1" x="-55.88" y="68.58" smashed="yes" rot="R180"> +<attribute name="VALUE" x="-53.34" y="71.12" size="1.778" layer="96" rot="R180"/> +</instance> +<instance part="U1" gate="G$1" x="27.94" y="43.18" smashed="yes"> +<attribute name="NAME" x="7.6062" y="78.7778" size="1.780409375" layer="95"/> +<attribute name="VALUE" x="7.602" y="7.566" size="1.78115" layer="96"/> +</instance> +<instance part="U3" gate="G$1" x="149.86" y="147.32" smashed="yes"> +<attribute name="NAME" x="144.78" y="154.94" size="1.778" layer="95"/> +<attribute name="VALUE" x="144.78" y="5.08" size="1.778" layer="96"/> +</instance> +<instance part="+3V6" gate="G$1" x="-5.08" y="83.82" smashed="yes"> +<attribute name="VALUE" x="-7.62" y="78.74" size="1.778" layer="96" rot="R90"/> +</instance> +<instance part="GND2" gate="1" x="-27.94" y="60.96" smashed="yes" rot="R270"> +<attribute name="VALUE" x="-30.48" y="63.5" size="1.778" layer="96" rot="R270"/> +</instance> +<instance part="C2" gate="G$1" x="-7.62" y="68.58" smashed="yes" rot="R90"> +<attribute name="NAME" x="-10.541" y="70.104" size="1.778" layer="95" rot="R90"/> +<attribute name="VALUE" x="-5.461" y="70.104" size="1.778" layer="96" rot="R90"/> +<attribute name="PACKAGE" x="-3.556" y="70.104" size="1.27" layer="97" rot="R90"/> +<attribute name="VOLTAGE" x="-1.778" y="70.104" size="1.27" layer="97" rot="R90"/> +<attribute name="TYPE" x="0" y="70.104" size="1.27" layer="97" rot="R90"/> +</instance> +<instance part="GND3" gate="1" x="-27.94" y="68.58" smashed="yes" rot="R270"> +<attribute name="VALUE" x="-30.48" y="71.12" size="1.778" layer="96" rot="R270"/> +</instance> +</instances> +<busses> +</busses> +<nets> +<net name="GND" class="0"> +<segment> +<pinref part="GND1" gate="1" pin="GND"/> +<wire x1="-78.74" y1="17.78" x2="-78.74" y2="25.4" width="0.1524" layer="91"/> +<wire x1="-78.74" y1="25.4" x2="-78.74" y2="30.48" width="0.1524" layer="91"/> +<wire x1="-78.74" y1="30.48" x2="-78.74" y2="33.02" width="0.1524" layer="91"/> +<pinref part="J1" gate="J1" pin="GND@3"/> +<wire x1="-68.58" y1="33.02" x2="-78.74" y2="33.02" width="0.1524" layer="91"/> +<pinref part="J1" gate="J1" pin="GND@5"/> +<wire x1="-68.58" y1="30.48" x2="-78.74" y2="30.48" width="0.1524" layer="91"/> +<junction x="-78.74" y="30.48"/> +<pinref part="J1" gate="J1" pin="GNDDTCT"/> +<wire x1="-68.58" y1="25.4" x2="-78.74" y2="25.4" width="0.1524" layer="91"/> +<junction x="-78.74" y="25.4"/> +</segment> +<segment> +<pinref part="GND5" gate="1" pin="GND"/> +<pinref part="C6" gate="G$1" pin="2"/> +<wire x1="-20.32" y1="132.08" x2="-20.32" y2="137.16" width="0.1524" layer="91"/> +</segment> +<segment> +<wire x1="2.54" y1="12.7" x2="-5.08" y2="12.7" width="0.1524" layer="91"/> +<pinref part="GND6" gate="1" pin="GND"/> +<wire x1="-5.08" y1="12.7" x2="-5.08" y2="7.62" width="0.1524" layer="91"/> +<pinref part="S1" gate="G$1" pin="P"/> +<pinref part="S1" gate="G$1" pin="P1"/> +<wire x1="-20.32" y1="12.7" x2="-17.78" y2="12.7" width="0.1524" layer="91"/> +<wire x1="-17.78" y1="12.7" x2="-5.08" y2="12.7" width="0.1524" layer="91"/> +<junction x="-17.78" y="12.7"/> +<junction x="-5.08" y="12.7"/> +<pinref part="U1" gate="G$1" pin="GND"/> +</segment> +<segment> +<pinref part="U2" gate="G$1" pin="GND"/> +<wire x1="-60.96" y1="129.54" x2="-60.96" y2="121.92" width="0.1524" layer="91"/> +<pinref part="GND7" gate="1" pin="GND"/> +<pinref part="C1" gate="G$1" pin="2"/> +<wire x1="-60.96" y1="121.92" x2="-60.96" y2="119.38" width="0.1524" layer="91"/> +<wire x1="-78.74" y1="124.46" x2="-78.74" y2="121.92" width="0.1524" layer="91"/> +<wire x1="-78.74" y1="121.92" x2="-60.96" y2="121.92" width="0.1524" layer="91"/> +<junction x="-60.96" y="121.92"/> +<pinref part="C7" gate="G$1" pin="2"/> +<wire x1="-43.18" y1="124.46" x2="-43.18" y2="121.92" width="0.1524" layer="91"/> +<wire x1="-43.18" y1="121.92" x2="-60.96" y2="121.92" width="0.1524" layer="91"/> +</segment> +<segment> +<pinref part="X1" gate="G$1" pin="GND"/> +<wire x1="-71.12" y1="63.5" x2="-55.88" y2="63.5" width="0.1524" layer="91"/> +<pinref part="GND8" gate="1" pin="GND"/> +<wire x1="-55.88" y1="63.5" x2="-55.88" y2="66.04" width="0.1524" layer="91"/> +</segment> +<segment> +<pinref part="GND2" gate="1" pin="GND"/> +<pinref part="C4" gate="G$1" pin="1"/> +<wire x1="-25.4" y1="60.96" x2="-12.7" y2="60.96" width="0.1524" layer="91"/> +</segment> +<segment> +<pinref part="GND3" gate="1" pin="GND"/> +<pinref part="C2" gate="G$1" pin="1"/> +<wire x1="-25.4" y1="68.58" x2="-12.7" y2="68.58" width="0.1524" layer="91"/> +</segment> +</net> +<net name="+3V3" class="0"> +<segment> +<pinref part="+3V1" gate="G$1" pin="+3V3"/> +<wire x1="-78.74" y1="40.64" x2="-78.74" y2="35.56" width="0.1524" layer="91"/> +<pinref part="J1" gate="J1" pin="VCC"/> +<wire x1="-78.74" y1="35.56" x2="-68.58" y2="35.56" width="0.1524" layer="91"/> +</segment> +<segment> +<pinref part="+3V2" gate="G$1" pin="+3V3"/> +<pinref part="C6" gate="G$1" pin="1"/> +<wire x1="-20.32" y1="149.86" x2="-20.32" y2="144.78" width="0.1524" layer="91"/> +<wire x1="2.54" y1="129.54" x2="-2.54" y2="129.54" width="0.1524" layer="91"/> +<wire x1="-2.54" y1="129.54" x2="-2.54" y2="144.78" width="0.1524" layer="91"/> +<wire x1="-2.54" y1="144.78" x2="2.54" y2="144.78" width="0.1524" layer="91"/> +<wire x1="-20.32" y1="144.78" x2="-2.54" y2="144.78" width="0.1524" layer="91"/> +<junction x="-20.32" y="144.78"/> +<junction x="-2.54" y="144.78"/> +</segment> +<segment> +<pinref part="R2" gate="G$1" pin="1"/> +<pinref part="+3V3" gate="G$1" pin="+3V3"/> +<wire x1="-5.08" y1="45.72" x2="-5.08" y2="50.8" width="0.1524" layer="91"/> +</segment> +<segment> +<pinref part="+3V4" gate="G$1" pin="+3V3"/> +<pinref part="R3" gate="G$1" pin="1"/> +<wire x1="-20.32" y1="50.8" x2="-20.32" y2="45.72" width="0.1524" layer="91"/> +</segment> +<segment> +<pinref part="U2" gate="G$1" pin="VOUT"/> +<wire x1="-48.26" y1="142.24" x2="-43.18" y2="142.24" width="0.1524" layer="91"/> +<pinref part="+3V5" gate="G$1" pin="+3V3"/> +<wire x1="-43.18" y1="142.24" x2="-43.18" y2="149.86" width="0.1524" layer="91"/> +<pinref part="C7" gate="G$1" pin="1"/> +<wire x1="-43.18" y1="142.24" x2="-43.18" y2="132.08" width="0.1524" layer="91"/> +<junction x="-43.18" y="142.24"/> +</segment> +<segment> +<pinref part="+3V6" gate="G$1" pin="+3V3"/> +<pinref part="C2" gate="G$1" pin="2"/> +<wire x1="-5.08" y1="81.28" x2="-5.08" y2="76.2" width="0.1524" layer="91"/> +<pinref part="U1" gate="G$1" pin="VDDANA"/> +<wire x1="-5.08" y1="76.2" x2="-5.08" y2="68.58" width="0.1524" layer="91"/> +<wire x1="-5.08" y1="68.58" x2="2.54" y2="68.58" width="0.1524" layer="91"/> +<junction x="-5.08" y="68.58"/> +<pinref part="U1" gate="G$1" pin="VDDIN"/> +<wire x1="2.54" y1="76.2" x2="-5.08" y2="76.2" width="0.1524" layer="91"/> +<junction x="-5.08" y="76.2"/> +</segment> +</net> +<net name="N$6" class="0"> +<segment> +<pinref part="J1" gate="J1" pin="!RESET"/> +<wire x1="-38.1" y1="25.4" x2="-20.32" y2="25.4" width="0.1524" layer="91"/> +<pinref part="S1" gate="G$1" pin="S"/> +<wire x1="-20.32" y1="25.4" x2="-5.08" y2="25.4" width="0.1524" layer="91"/> +<wire x1="-5.08" y1="25.4" x2="2.54" y2="25.4" width="0.1524" layer="91"/> +<wire x1="-20.32" y1="22.86" x2="-20.32" y2="25.4" width="0.1524" layer="91"/> +<junction x="-20.32" y="25.4"/> +<pinref part="S1" gate="G$1" pin="S1"/> +<wire x1="-17.78" y1="22.86" x2="-20.32" y2="22.86" width="0.1524" layer="91"/> +<junction x="-20.32" y="22.86"/> +<pinref part="R2" gate="G$1" pin="2"/> +<wire x1="-5.08" y1="25.4" x2="-5.08" y2="35.56" width="0.1524" layer="91"/> +<junction x="-5.08" y="25.4"/> +<pinref part="U1" gate="G$1" pin="!RESET"/> +</segment> +</net> +<net name="SWDCLK" class="0"> +<segment> +<pinref part="J1" gate="J1" pin="SWDCLK/TCK"/> +<wire x1="-38.1" y1="33.02" x2="-20.32" y2="33.02" width="0.1524" layer="91"/> +<label x="-35.56" y="33.02" size="1.778" layer="95"/> +<pinref part="R3" gate="G$1" pin="2"/> +<wire x1="-20.32" y1="33.02" x2="-20.32" y2="35.56" width="0.1524" layer="91"/> +</segment> +<segment> +<wire x1="81.28" y1="76.2" x2="96.52" y2="76.2" width="0.1524" layer="91"/> +<label x="83.82" y="76.2" size="1.778" layer="95"/> +</segment> +<segment> +<pinref part="U1" gate="G$1" pin="PA30"/> +<wire x1="55.88" y1="15.24" x2="71.12" y2="15.24" width="0.1524" layer="91"/> +<label x="58.42" y="15.24" size="1.778" layer="95"/> +</segment> +</net> +<net name="SWDIO" class="0"> +<segment> +<pinref part="J1" gate="J1" pin="SWDIO/TMS"/> +<wire x1="-38.1" y1="35.56" x2="-22.86" y2="35.56" width="0.1524" layer="91"/> +<label x="-35.56" y="35.56" size="1.778" layer="95"/> +</segment> +<segment> +<wire x1="81.28" y1="73.66" x2="96.52" y2="73.66" width="0.1524" layer="91"/> +<label x="83.82" y="73.66" size="1.778" layer="95"/> +</segment> +<segment> +<pinref part="U1" gate="G$1" pin="PA31"/> +<wire x1="55.88" y1="12.7" x2="71.12" y2="12.7" width="0.1524" layer="91"/> +<label x="58.42" y="12.7" size="1.778" layer="95"/> +</segment> +</net> +<net name="USBDP" class="0"> +<segment> +<wire x1="81.28" y1="81.28" x2="96.52" y2="81.28" width="0.1524" layer="91"/> +<label x="83.82" y="81.28" size="1.778" layer="95"/> +</segment> +<segment> +<pinref part="X1" gate="G$1" pin="D+"/> +<wire x1="-71.12" y1="55.88" x2="-58.42" y2="55.88" width="0.1524" layer="91"/> +<label x="-68.58" y="55.88" size="1.778" layer="95"/> +</segment> +<segment> +<pinref part="U1" gate="G$1" pin="PA25"/> +<wire x1="55.88" y1="22.86" x2="71.12" y2="22.86" width="0.1524" layer="91"/> +<label x="58.42" y="22.86" size="1.778" layer="95"/> +</segment> +</net> +<net name="USBDM" class="0"> +<segment> +<wire x1="81.28" y1="83.82" x2="96.52" y2="83.82" width="0.1524" layer="91"/> +<label x="83.82" y="83.82" size="1.778" layer="95"/> +</segment> +<segment> +<pinref part="X1" gate="G$1" pin="D-"/> +<wire x1="-71.12" y1="58.42" x2="-58.42" y2="58.42" width="0.1524" layer="91"/> +<label x="-68.58" y="58.42" size="1.778" layer="95"/> +</segment> +<segment> +<pinref part="U1" gate="G$1" pin="PA24"/> +<wire x1="55.88" y1="25.4" x2="71.12" y2="25.4" width="0.1524" layer="91"/> +<label x="58.42" y="25.4" size="1.778" layer="95"/> +</segment> +</net> +<net name="+5V" class="0"> +<segment> +<pinref part="P+1" gate="1" pin="+5V"/> +<pinref part="C1" gate="G$1" pin="1"/> +<wire x1="-78.74" y1="149.86" x2="-78.74" y2="142.24" width="0.1524" layer="91"/> +<pinref part="U2" gate="G$1" pin="VIN"/> +<wire x1="-78.74" y1="142.24" x2="-78.74" y2="132.08" width="0.1524" layer="91"/> +<wire x1="-73.66" y1="142.24" x2="-76.2" y2="142.24" width="0.1524" layer="91"/> +<junction x="-78.74" y="142.24"/> +<pinref part="U2" gate="G$1" pin="EN"/> +<wire x1="-76.2" y1="142.24" x2="-78.74" y2="142.24" width="0.1524" layer="91"/> +<wire x1="-73.66" y1="137.16" x2="-76.2" y2="137.16" width="0.1524" layer="91"/> +<wire x1="-76.2" y1="137.16" x2="-76.2" y2="142.24" width="0.1524" layer="91"/> +<junction x="-76.2" y="142.24"/> +</segment> +<segment> +<pinref part="X1" gate="G$1" pin="VBUS"/> +<wire x1="-71.12" y1="60.96" x2="-48.26" y2="60.96" width="0.1524" layer="91"/> +<pinref part="P+2" gate="1" pin="+5V"/> +<wire x1="-48.26" y1="60.96" x2="-48.26" y2="66.04" width="0.1524" layer="91"/> +</segment> +</net> +<net name="N$1" class="0"> +<segment> +<pinref part="C4" gate="G$1" pin="2"/> +<pinref part="U1" gate="G$1" pin="VDDCORE"/> +<wire x1="-5.08" y1="60.96" x2="2.54" y2="60.96" width="0.1524" layer="91"/> +</segment> +</net> +</nets> +</sheet> +</sheets> +</schematic> +</drawing> +<compatibility> +<note version="8.3" severity="warning"> +Since Version 8.3, EAGLE supports URNs for individual library +assets (packages, symbols, and devices). The URNs of those assets +will not be understood (or retained) with this version. +</note> +</compatibility> +</eagle> diff --git a/samd21-example/samd21-barebones/samd21-barebones.s#3 b/samd21-example/samd21-barebones/samd21-barebones.s#3 new file mode 100644 index 0000000000000000000000000000000000000000..8368aeda5922fe87e1b6fc5be4a4c5aa91568b79 --- /dev/null +++ b/samd21-example/samd21-barebones/samd21-barebones.s#3 @@ -0,0 +1,1841 @@ +<?xml version="1.0" encoding="utf-8"?> +<!DOCTYPE eagle SYSTEM "eagle.dtd"> +<eagle version="9.6.0"> +<drawing> +<settings> +<setting alwaysvectorfont="no"/> +<setting verticaltext="up"/> +</settings> +<grid distance="0.1" unitdist="inch" unit="inch" style="lines" multiple="1" display="yes" altdistance="0.01" altunitdist="inch" altunit="inch"/> +<layers> +<layer number="1" name="Top" color="4" fill="1" visible="no" active="no"/> +<layer number="2" name="Route2" color="1" fill="3" visible="no" active="no"/> +<layer number="3" name="Route3" color="4" fill="3" visible="no" active="no"/> +<layer number="4" name="Route4" color="1" fill="4" visible="no" active="no"/> +<layer number="5" name="Route5" color="4" fill="4" visible="no" active="no"/> +<layer number="6" name="Route6" color="1" fill="8" visible="no" active="no"/> +<layer number="7" name="Route7" color="4" fill="8" visible="no" active="no"/> +<layer number="8" name="Route8" color="1" fill="2" visible="no" active="no"/> +<layer number="9" name="Route9" color="4" fill="2" visible="no" active="no"/> +<layer number="10" name="Route10" color="1" fill="7" visible="no" active="no"/> +<layer number="11" name="Route11" color="4" fill="7" visible="no" active="no"/> +<layer number="12" name="Route12" color="1" fill="5" visible="no" active="no"/> +<layer number="13" name="Route13" color="4" fill="5" visible="no" active="no"/> +<layer number="14" name="Route14" color="1" fill="6" visible="no" active="no"/> +<layer number="15" name="Route15" color="4" fill="6" visible="no" active="no"/> +<layer number="16" name="Bottom" color="1" fill="1" visible="no" active="no"/> +<layer number="17" name="Pads" color="2" fill="1" visible="no" active="no"/> +<layer number="18" name="Vias" color="2" fill="1" visible="no" active="no"/> +<layer number="19" name="Unrouted" color="6" fill="1" visible="no" active="no"/> +<layer number="20" name="Dimension" color="24" fill="1" visible="no" active="no"/> +<layer number="21" name="tPlace" color="7" fill="1" visible="no" active="no"/> +<layer number="22" name="bPlace" color="7" fill="1" visible="no" active="no"/> +<layer number="23" name="tOrigins" color="15" fill="1" visible="no" active="no"/> +<layer number="24" name="bOrigins" color="15" fill="1" visible="no" active="no"/> +<layer number="25" name="tNames" color="7" fill="1" visible="no" active="no"/> +<layer number="26" name="bNames" color="7" fill="1" visible="no" active="no"/> +<layer number="27" name="tValues" color="7" fill="1" visible="no" active="no"/> +<layer number="28" name="bValues" color="7" fill="1" visible="no" active="no"/> +<layer number="29" name="tStop" color="7" fill="3" visible="no" active="no"/> +<layer number="30" name="bStop" color="7" fill="6" visible="no" active="no"/> +<layer number="31" name="tCream" color="7" fill="4" visible="no" active="no"/> +<layer number="32" name="bCream" color="7" fill="5" visible="no" active="no"/> +<layer number="33" name="tFinish" color="6" fill="3" visible="no" active="no"/> +<layer number="34" name="bFinish" color="6" fill="6" visible="no" active="no"/> +<layer number="35" name="tGlue" color="7" fill="4" visible="no" active="no"/> +<layer number="36" name="bGlue" color="7" fill="5" visible="no" active="no"/> +<layer number="37" name="tTest" color="7" fill="1" visible="no" active="no"/> +<layer number="38" name="bTest" color="7" fill="1" visible="no" active="no"/> +<layer number="39" name="tKeepout" color="4" fill="11" visible="no" active="no"/> +<layer number="40" name="bKeepout" color="1" fill="11" visible="no" active="no"/> +<layer number="41" name="tRestrict" color="4" fill="10" visible="no" active="no"/> +<layer number="42" name="bRestrict" color="1" fill="10" visible="no" active="no"/> +<layer number="43" name="vRestrict" color="2" fill="10" visible="no" active="no"/> +<layer number="44" name="Drills" color="7" fill="1" visible="no" active="no"/> +<layer number="45" name="Holes" color="7" fill="1" visible="no" active="no"/> +<layer number="46" name="Milling" color="3" fill="1" visible="no" active="no"/> +<layer number="47" name="Measures" color="7" fill="1" visible="no" active="no"/> +<layer number="48" name="Document" color="7" fill="1" visible="no" active="no"/> +<layer number="49" name="Reference" color="7" fill="1" visible="no" active="no"/> +<layer number="50" name="dxf" color="7" fill="1" visible="no" active="no"/> +<layer number="51" name="tDocu" color="7" fill="1" visible="no" active="no"/> +<layer number="52" name="bDocu" color="7" fill="1" visible="no" active="no"/> +<layer number="53" name="tGND_GNDA" color="7" fill="9" visible="no" active="no"/> +<layer number="54" name="bGND_GNDA" color="1" fill="9" visible="no" active="no"/> +<layer number="56" name="wert" color="7" fill="1" visible="no" active="no"/> +<layer number="57" name="tCAD" color="7" fill="1" visible="no" active="no"/> +<layer number="59" name="tCarbon" color="7" fill="1" visible="no" active="no"/> +<layer number="60" name="bCarbon" color="7" fill="1" visible="no" active="no"/> +<layer number="88" name="SimResults" color="9" fill="1" visible="yes" active="yes"/> +<layer number="89" name="SimProbes" color="9" fill="1" visible="yes" active="yes"/> +<layer number="90" name="Modules" color="5" fill="1" visible="yes" active="yes"/> +<layer number="91" name="Nets" color="2" fill="1" visible="yes" active="yes"/> +<layer number="92" name="Busses" color="1" fill="1" visible="yes" active="yes"/> +<layer number="93" name="Pins" color="2" fill="1" visible="no" active="yes"/> +<layer number="94" name="Symbols" color="4" fill="1" visible="yes" active="yes"/> +<layer number="95" name="Names" color="7" fill="1" visible="yes" active="yes"/> +<layer number="96" name="Values" color="7" fill="1" visible="yes" active="yes"/> +<layer number="97" name="Info" color="7" fill="1" visible="yes" active="yes"/> +<layer number="98" name="Guide" color="6" fill="1" visible="yes" active="yes"/> +<layer number="99" name="SpiceOrder" color="7" fill="1" visible="yes" active="yes"/> +<layer number="100" name="Muster" color="7" fill="1" visible="no" active="no"/> +<layer number="101" name="Patch_Top" color="12" fill="4" visible="no" active="yes"/> +<layer number="102" name="Vscore" color="7" fill="1" visible="no" active="yes"/> +<layer number="103" name="tMap" color="7" fill="1" visible="no" active="yes"/> +<layer number="104" name="Name" color="7" fill="1" visible="no" active="yes"/> +<layer number="105" name="tPlate" color="7" fill="1" visible="no" active="yes"/> +<layer number="106" name="bPlate" color="7" fill="1" visible="no" active="yes"/> +<layer number="107" name="Crop" color="7" fill="1" visible="no" active="yes"/> +<layer number="108" name="tplace-old" color="10" fill="1" visible="no" active="yes"/> +<layer number="109" name="ref-old" color="11" fill="1" visible="no" active="yes"/> +<layer number="110" name="fp0" color="7" fill="1" visible="no" active="yes"/> +<layer number="111" name="LPC17xx" color="7" fill="1" visible="no" active="yes"/> +<layer number="112" name="tSilk" color="7" fill="1" visible="no" active="yes"/> +<layer number="113" name="IDFDebug" color="7" fill="1" visible="no" active="yes"/> +<layer number="114" name="Badge_Outline" color="7" fill="1" visible="no" active="yes"/> +<layer number="115" name="ReferenceISLANDS" color="7" fill="1" visible="no" active="yes"/> +<layer number="116" name="Patch_BOT" color="9" fill="4" visible="no" active="yes"/> +<layer number="117" name="BACKMAAT1" color="7" fill="1" visible="yes" active="yes"/> +<layer number="118" name="Rect_Pads" color="7" fill="1" visible="no" active="yes"/> +<layer number="119" name="KAP_TEKEN" color="7" fill="1" visible="yes" active="yes"/> +<layer number="120" name="KAP_MAAT1" color="7" fill="1" visible="yes" active="yes"/> +<layer number="121" name="_tsilk" color="7" fill="1" visible="no" active="yes"/> +<layer number="122" name="_bsilk" color="7" fill="1" visible="no" active="yes"/> +<layer number="123" name="tTestmark" color="7" fill="1" visible="no" active="yes"/> +<layer number="124" name="bTestmark" color="7" fill="1" visible="no" active="yes"/> +<layer number="125" name="_tNames" color="7" fill="1" visible="no" active="yes"/> +<layer number="126" name="_bNames" color="7" fill="1" visible="no" active="yes"/> +<layer number="127" name="_tValues" color="7" fill="1" visible="no" active="yes"/> +<layer number="128" name="_bValues" color="7" fill="1" visible="no" active="yes"/> +<layer number="129" name="Mask" color="7" fill="1" visible="no" active="yes"/> +<layer number="130" name="SMDSTROOK" color="7" fill="1" visible="yes" active="yes"/> +<layer number="131" name="tAdjust" color="7" fill="1" visible="no" active="yes"/> +<layer number="132" name="bAdjust" color="7" fill="1" visible="no" active="yes"/> +<layer number="133" name="bottom_silk" color="7" fill="1" visible="yes" active="yes"/> +<layer number="144" name="Drill_legend" color="7" fill="1" visible="no" active="yes"/> +<layer number="150" name="Notes" color="7" fill="1" visible="no" active="yes"/> +<layer number="151" name="HeatSink" color="7" fill="1" visible="no" active="yes"/> +<layer number="152" name="_bDocu" color="7" fill="1" visible="no" active="yes"/> +<layer number="153" name="FabDoc1" color="7" fill="1" visible="no" active="yes"/> +<layer number="154" name="FabDoc2" color="7" fill="1" visible="no" active="yes"/> +<layer number="155" name="FabDoc3" color="7" fill="1" visible="no" active="yes"/> +<layer number="199" name="Contour" color="7" fill="1" visible="no" active="yes"/> +<layer number="200" name="200bmp" color="1" fill="10" visible="no" active="yes"/> +<layer number="201" name="201bmp" color="2" fill="10" visible="no" active="yes"/> +<layer number="202" name="202bmp" color="3" fill="10" visible="no" active="yes"/> +<layer number="203" name="203bmp" color="4" fill="10" visible="no" active="yes"/> +<layer number="204" name="204bmp" color="5" fill="10" visible="no" active="yes"/> +<layer number="205" name="205bmp" color="6" fill="10" visible="no" active="yes"/> +<layer number="206" name="206bmp" color="7" fill="10" visible="no" active="yes"/> +<layer number="207" name="207bmp" color="8" fill="10" visible="no" active="yes"/> +<layer number="208" name="208bmp" color="9" fill="10" visible="no" active="yes"/> +<layer number="209" name="209bmp" color="7" fill="1" visible="no" active="yes"/> +<layer number="210" name="210bmp" color="7" fill="1" visible="no" active="yes"/> +<layer number="211" name="211bmp" color="7" fill="1" visible="no" active="yes"/> +<layer number="212" name="212bmp" color="7" fill="1" visible="no" active="yes"/> +<layer number="213" name="213bmp" color="7" fill="1" visible="no" active="yes"/> +<layer number="214" name="214bmp" color="7" fill="1" visible="no" active="yes"/> +<layer number="215" name="215bmp" color="7" fill="1" visible="no" active="yes"/> +<layer number="216" name="216bmp" color="7" fill="1" visible="no" active="yes"/> +<layer number="217" name="217bmp" color="18" fill="1" visible="no" active="no"/> +<layer number="218" name="218bmp" color="19" fill="1" visible="no" active="no"/> +<layer number="219" name="219bmp" color="20" fill="1" visible="no" active="no"/> +<layer number="220" name="220bmp" color="21" fill="1" visible="no" active="no"/> +<layer number="221" name="221bmp" color="22" fill="1" visible="no" active="no"/> +<layer number="222" name="222bmp" color="23" fill="1" visible="no" active="no"/> +<layer number="223" name="223bmp" color="24" fill="1" visible="no" active="no"/> +<layer number="224" name="224bmp" color="25" fill="1" visible="no" active="no"/> +<layer number="225" name="225bmp" color="7" fill="1" visible="no" active="yes"/> +<layer number="226" name="226bmp" color="7" fill="1" visible="no" active="yes"/> +<layer number="227" name="227bmp" color="7" fill="1" visible="no" active="yes"/> +<layer number="228" name="228bmp" color="7" fill="1" visible="no" active="yes"/> +<layer number="229" name="229bmp" color="7" fill="1" visible="no" active="yes"/> +<layer number="230" name="230bmp" color="7" fill="1" visible="no" active="yes"/> +<layer number="231" name="231bmp" color="7" fill="1" visible="no" active="yes"/> +<layer number="232" name="Eagle3D_PG2" color="7" fill="1" visible="no" active="yes"/> +<layer number="233" name="Eagle3D_PG3" color="7" fill="1" visible="no" active="yes"/> +<layer number="248" name="Housing" color="7" fill="1" visible="no" active="yes"/> +<layer number="249" name="Edge" color="7" fill="1" visible="no" active="yes"/> +<layer number="250" name="Descript" color="3" fill="1" visible="no" active="no"/> +<layer number="251" name="SMDround" color="12" fill="11" visible="no" active="no"/> +<layer number="254" name="cooling" color="7" fill="1" visible="no" active="yes"/> +<layer number="255" name="routoute" color="7" fill="1" visible="no" active="yes"/> +</layers> +<schematic xreflabel="%F%N/%S.%C%R" xrefpart="/%S.%C%R"> +<libraries> +<library name="SparkFun-Connectors"> +<description><h3>SparkFun Connectors</h3> +This library contains electrically-functional connectors. +<br> +<br> +We've spent an enormous amount of time creating and checking these footprints and parts, but it is <b> the end user's responsibility</b> to ensure correctness and suitablity for a given componet or application. +<br> +<br>If you enjoy using this library, please buy one of our products at <a href=" www.sparkfun.com">SparkFun.com</a>. +<br> +<br> +<b>Licensing:</b> Creative Commons ShareAlike 4.0 International - https://creativecommons.org/licenses/by-sa/4.0/ +<br> +<br> +You are welcome to use this library for commercial purposes. For attribution, we ask that when you begin to sell your device using our footprint, you email us with a link to the product being sold. We want bragging rights that we helped (in a very small part) to create your 8th world wonder. We would like the opportunity to feature your device on our homepage.</description> +<packages> +<package name="2X5-PTH-1.27MM-NO_SILK"> +<description><h3>Plated Through Hole - 2x5 ARM Cortex Debug Connector (10-pin)</h3> +<p>tDoc (51) layer border represents maximum dimensions of plastic housing.</p> +<p>Specifications: +<ul><li>Pin count:10</li> +<li>Pin pitch:1.27mm</li> +</ul></p> +<p><a href=”http://portal.fciconnect.com/Comergent//fci/drawing/20021111.pdf”>Datasheet referenced for footprint</a></p> +<p>Example device(s): +<ul><li>CONN_05x2</li> +</ul></p></description> +<pad name="8" x="1.27" y="0.762" drill="0.508" diameter="1"/> +<pad name="6" x="0" y="0.762" drill="0.508" diameter="1"/> +<pad name="4" x="-1.27" y="0.762" drill="0.508" diameter="1"/> +<pad name="2" x="-2.54" y="0.762" drill="0.508" diameter="1"/> +<pad name="10" x="2.54" y="0.762" drill="0.508" diameter="1"/> +<pad name="7" x="1.27" y="-0.762" drill="0.508" diameter="1"/> +<pad name="5" x="0" y="-0.762" drill="0.508" diameter="1"/> +<pad name="3" x="-1.27" y="-0.762" drill="0.508" diameter="1"/> +<pad name="1" x="-2.54" y="-0.762" drill="0.508" diameter="1"/> +<pad name="9" x="2.54" y="-0.762" drill="0.508" diameter="1"/> +<wire x1="-3.403" y1="-1.021" x2="-3.403" y2="-0.259" width="0.254" layer="21"/> +<wire x1="3.175" y1="1.715" x2="-3.175" y2="1.715" width="0.127" layer="51"/> +<wire x1="-3.175" y1="1.715" x2="-3.175" y2="-1.715" width="0.127" layer="51"/> +<wire x1="-3.175" y1="-1.715" x2="3.175" y2="-1.715" width="0.127" layer="51"/> +<wire x1="3.175" y1="-1.715" x2="3.175" y2="1.715" width="0.127" layer="51"/> +<text x="-1.5748" y="1.9304" size="0.6096" layer="25" font="vector" ratio="20">>NAME</text> +<text x="-1.8288" y="-2.4638" size="0.6096" layer="27" font="vector" ratio="20">>VALUE</text> +<wire x1="-0.635" y1="-1.905" x2="0.635" y2="-1.905" width="0.254" layer="21"/> +<wire x1="5.2" y1="1.6" x2="-5.2" y2="1.6" width="0.127" layer="51"/> +<wire x1="-5.2" y1="1.6" x2="-5.2" y2="-1.6" width="0.127" layer="51"/> +<wire x1="-5.2" y1="-1.6" x2="5.2" y2="-1.6" width="0.127" layer="51"/> +<wire x1="5.2" y1="-1.6" x2="5.2" y2="1.6" width="0.127" layer="51"/> +</package> +<package name="2X5-PTH-1.27MM"> +<description><h3>Plated Through Hole - 2x5 ARM Cortex Debug Connector (10-pin)</h3> +<p>tDoc (51) layer border represents maximum dimensions of plastic housing.</p> +<p>Specifications: +<ul><li>Pin count:10</li> +<li>Pin pitch:1.27mm</li> +</ul></p> +<p><a href=”http://portal.fciconnect.com/Comergent//fci/drawing/20021111.pdf”>Datasheet referenced for footprint</a></p> +<p>Example device(s): +<ul><li>CONN_05x2</li> +</ul></p></description> +<pad name="8" x="1.27" y="0.635" drill="0.508" diameter="1"/> +<pad name="6" x="0" y="0.635" drill="0.508" diameter="1"/> +<pad name="4" x="-1.27" y="0.635" drill="0.508" diameter="1"/> +<pad name="2" x="-2.54" y="0.635" drill="0.508" diameter="1"/> +<pad name="10" x="2.54" y="0.635" drill="0.508" diameter="1"/> +<pad name="7" x="1.27" y="-0.635" drill="0.508" diameter="1"/> +<pad name="5" x="0" y="-0.635" drill="0.508" diameter="1"/> +<pad name="3" x="-1.27" y="-0.635" drill="0.508" diameter="1"/> +<pad name="1" x="-2.54" y="-0.635" drill="0.508" diameter="1"/> +<pad name="9" x="2.54" y="-0.635" drill="0.508" diameter="1"/> +<wire x1="-3.403" y1="-1.021" x2="-3.403" y2="-0.259" width="0.254" layer="21"/> +<wire x1="3.175" y1="1.715" x2="-3.175" y2="1.715" width="0.127" layer="21"/> +<wire x1="-3.175" y1="1.715" x2="-3.175" y2="-1.715" width="0.127" layer="21"/> +<wire x1="-3.175" y1="-1.715" x2="3.175" y2="-1.715" width="0.127" layer="21"/> +<wire x1="3.175" y1="-1.715" x2="3.175" y2="1.715" width="0.127" layer="21"/> +<text x="-1.5748" y="1.9304" size="0.6096" layer="25" font="vector" ratio="20">>NAME</text> +<text x="-1.8288" y="-2.4638" size="0.6096" layer="27" font="vector" ratio="20">>VALUE</text> +</package> +<package name="2X5-SMD-1.27MM"> +<description>Shrouded SMD connector for JTAG and SWD applications.</description> +<smd name="6" x="0" y="-1.95" dx="0.76" dy="2.4" layer="1" rot="R180"/> +<smd name="8" x="-1.27" y="-1.95" dx="0.76" dy="2.4" layer="1" rot="R180"/> +<smd name="10" x="-2.54" y="-1.95" dx="0.76" dy="2.4" layer="1" rot="R180"/> +<smd name="4" x="1.27" y="-1.95" dx="0.76" dy="2.4" layer="1" rot="R180"/> +<smd name="2" x="2.54" y="-1.95" dx="0.76" dy="2.4" layer="1" rot="R180"/> +<smd name="1" x="2.54" y="1.95" dx="0.76" dy="2.4" layer="1" rot="R180"/> +<smd name="3" x="1.27" y="1.95" dx="0.76" dy="2.4" layer="1" rot="R180"/> +<smd name="5" x="0" y="1.95" dx="0.76" dy="2.4" layer="1" rot="R180"/> +<smd name="7" x="-1.27" y="1.95" dx="0.76" dy="2.4" layer="1" rot="R180"/> +<smd name="9" x="-2.54" y="1.95" dx="0.76" dy="2.4" layer="1" rot="R180"/> +<rectangle x1="-1.0575" y1="-1.9625" x2="1.0575" y2="-1.5525" layer="51" rot="R270"/> +<wire x1="5.55" y1="-1.7" x2="-5.55" y2="-1.7" width="0.1524" layer="51"/> +<wire x1="-5.55" y1="-1.7" x2="-5.55" y2="1.7" width="0.1524" layer="51"/> +<wire x1="-5.55" y1="1.7" x2="5.55" y2="1.7" width="0.1524" layer="51"/> +<wire x1="5.55" y1="1.7" x2="5.55" y2="-1.7" width="0.1524" layer="51"/> +<rectangle x1="-2.3275" y1="-1.9625" x2="-0.2125" y2="-1.5525" layer="51" rot="R270"/> +<rectangle x1="-3.5975" y1="-1.9625" x2="-1.4825" y2="-1.5525" layer="51" rot="R270"/> +<rectangle x1="0.2125" y1="-1.9625" x2="2.3275" y2="-1.5525" layer="51" rot="R270"/> +<rectangle x1="1.4825" y1="-1.9625" x2="3.5975" y2="-1.5525" layer="51" rot="R270"/> +<rectangle x1="1.4825" y1="1.5525" x2="3.5975" y2="1.9625" layer="51" rot="R90"/> +<rectangle x1="0.2125" y1="1.5525" x2="2.3275" y2="1.9625" layer="51" rot="R90"/> +<rectangle x1="-1.0575" y1="1.5525" x2="1.0575" y2="1.9625" layer="51" rot="R90"/> +<rectangle x1="-2.3275" y1="1.5525" x2="-0.2125" y2="1.9625" layer="51" rot="R90"/> +<rectangle x1="-3.5975" y1="1.5525" x2="-1.4825" y2="1.9625" layer="51" rot="R90"/> +<wire x1="-3.2" y1="2.5" x2="-6.3" y2="2.5" width="0.2032" layer="51"/> +<wire x1="-6.3" y1="2.5" x2="-6.3" y2="-2.5" width="0.2032" layer="51"/> +<wire x1="-6.3" y1="-2.5" x2="-3.2" y2="-2.5" width="0.2032" layer="51"/> +<wire x1="3.2" y1="-2.5" x2="6.3" y2="-2.5" width="0.2032" layer="51"/> +<wire x1="6.3" y1="-2.5" x2="6.3" y2="2.5" width="0.2032" layer="51"/> +<wire x1="6.3" y1="2.5" x2="3.2" y2="2.5" width="0.2032" layer="51"/> +<wire x1="0.6" y1="2.9" x2="0.6" y2="3.4" width="0.2032" layer="21"/> +<wire x1="0.6" y1="3.4" x2="-0.6" y2="3.4" width="0.2032" layer="21"/> +<wire x1="-0.6" y1="3.4" x2="-0.6" y2="2.9" width="0.2032" layer="21"/> +<circle x="3.6" y="3.1" radius="0.1" width="0.2032" layer="21"/> +<wire x1="-3.175" y1="1.905" x2="-3.175" y2="-1.905" width="0.127" layer="51"/> +<wire x1="3.175" y1="1.905" x2="3.175" y2="-1.905" width="0.127" layer="51"/> +</package> +</packages> +<symbols> +<symbol name="CORTEX_DEBUG"> +<description><h3>Cortex Debug Connector</h3> +<p><a href="http://infocenter.arm.com/help/topic/com.arm.doc.faqs/attached/13634/cortex_debug_connectors.pdf">Datasheet</a></p></description> +<pin name="VCC" x="-15.24" y="5.08" length="short"/> +<pin name="GND@3" x="-15.24" y="2.54" length="short"/> +<pin name="GND@5" x="-15.24" y="0" length="short"/> +<pin name="KEY" x="-15.24" y="-2.54" length="short"/> +<pin name="GNDDTCT" x="-15.24" y="-5.08" length="short"/> +<pin name="!RESET" x="15.24" y="-5.08" length="short" rot="R180"/> +<pin name="NC/TDI" x="15.24" y="-2.54" length="short" rot="R180"/> +<pin name="SWO/TDO" x="15.24" y="0" length="short" rot="R180"/> +<pin name="SWDCLK/TCK" x="15.24" y="2.54" length="short" rot="R180"/> +<pin name="SWDIO/TMS" x="15.24" y="5.08" length="short" rot="R180"/> +<wire x1="-12.7" y1="-7.62" x2="-12.7" y2="7.62" width="0.254" layer="94"/> +<wire x1="-12.7" y1="7.62" x2="12.7" y2="7.62" width="0.254" layer="94"/> +<wire x1="12.7" y1="7.62" x2="12.7" y2="-7.62" width="0.254" layer="94"/> +<wire x1="12.7" y1="-7.62" x2="-12.7" y2="-7.62" width="0.254" layer="94"/> +<text x="-12.7" y="7.874" size="1.778" layer="95" font="vector">>Name</text> +<text x="-12.7" y="-9.906" size="1.778" layer="96" font="vector">>Value</text> +</symbol> +</symbols> +<devicesets> +<deviceset name="CORTEX_JTAG_DEBUG" prefix="J"> +<description><h3>Cortex Debug Connector - 10 pin</h3> +<p>Supports JTAG debug, Serial Wire debug, and Serial Wire Viewer. +PTH and SMD connector options available.</p> +<p> <ul><a href=”http://infocenter.arm.com/help/topic/com.arm.doc.faqs/attached/13634/cortex_debug_connectors.pdf”>General Connector Information</a> +<p><b> Products:</b> +<ul><li><a href=”http://www.digikey.com/product-detail/en/cnc-tech/3220-10-0100-00/1175-1627-ND/3883661”>PTH Connector</a> -via Digi-Key</li> +<li><a href=”https://www.sparkfun.com/products/13229”>SparkFun PSoc</a></li> +<li><a href=”https://www.sparkfun.com/products/13810”>SparkFun T</a></li> +</ul></p></description> +<gates> +<gate name="J1" symbol="CORTEX_DEBUG" x="0" y="0"/> +</gates> +<devices> +<device name="_PTH_NS" package="2X5-PTH-1.27MM-NO_SILK"> +<connects> +<connect gate="J1" pin="!RESET" pad="10"/> +<connect gate="J1" pin="GND@3" pad="3"/> +<connect gate="J1" pin="GND@5" pad="5"/> +<connect gate="J1" pin="GNDDTCT" pad="9"/> +<connect gate="J1" pin="KEY" pad="7"/> +<connect gate="J1" pin="NC/TDI" pad="8"/> +<connect gate="J1" pin="SWDCLK/TCK" pad="4"/> +<connect gate="J1" pin="SWDIO/TMS" pad="2"/> +<connect gate="J1" pin="SWO/TDO" pad="6"/> +<connect gate="J1" pin="VCC" pad="1"/> +</connects> +<technologies> +<technology name=""/> +</technologies> +</device> +<device name="_PTH" package="2X5-PTH-1.27MM"> +<connects> +<connect gate="J1" pin="!RESET" pad="10"/> +<connect gate="J1" pin="GND@3" pad="3"/> +<connect gate="J1" pin="GND@5" pad="5"/> +<connect gate="J1" pin="GNDDTCT" pad="9"/> +<connect gate="J1" pin="KEY" pad="7"/> +<connect gate="J1" pin="NC/TDI" pad="8"/> +<connect gate="J1" pin="SWDCLK/TCK" pad="4"/> +<connect gate="J1" pin="SWDIO/TMS" pad="2"/> +<connect gate="J1" pin="SWO/TDO" pad="6"/> +<connect gate="J1" pin="VCC" pad="1"/> +</connects> +<technologies> +<technology name=""/> +</technologies> +</device> +<device name="_SMD" package="2X5-SMD-1.27MM"> +<connects> +<connect gate="J1" pin="!RESET" pad="10"/> +<connect gate="J1" pin="GND@3" pad="3"/> +<connect gate="J1" pin="GND@5" pad="5"/> +<connect gate="J1" pin="GNDDTCT" pad="9"/> +<connect gate="J1" pin="KEY" pad="7"/> +<connect gate="J1" pin="NC/TDI" pad="8"/> +<connect gate="J1" pin="SWDCLK/TCK" pad="4"/> +<connect gate="J1" pin="SWDIO/TMS" pad="2"/> +<connect gate="J1" pin="SWO/TDO" pad="6"/> +<connect gate="J1" pin="VCC" pad="1"/> +</connects> +<technologies> +<technology name=""> +<attribute name="PROD_ID" value="CONN-14503" constant="no"/> +<attribute name="VALUE" value="JTAG" constant="no"/> +</technology> +</technologies> +</device> +</devices> +</deviceset> +</devicesets> +</library> +<library name="passives"> +<packages> +<package name="TACT-SWITCH-KMR6"> +<smd name="P$1" x="-2.05" y="0.8" dx="0.9" dy="1" layer="1" rot="R180"/> +<smd name="P$2" x="2.05" y="0.8" dx="0.9" dy="1" layer="1" rot="R180"/> +<smd name="P$3" x="-2.05" y="-0.8" dx="0.9" dy="1" layer="1" rot="R180"/> +<smd name="P$4" x="2.05" y="-0.8" dx="0.9" dy="1" layer="1" rot="R180"/> +<wire x1="-1.4" y1="0.8" x2="0" y2="0.8" width="0.127" layer="51"/> +<wire x1="0" y1="0.8" x2="1.4" y2="0.8" width="0.127" layer="51"/> +<wire x1="-1.4" y1="-0.8" x2="0" y2="-0.8" width="0.127" layer="51"/> +<wire x1="0" y1="-0.8" x2="1.4" y2="-0.8" width="0.127" layer="51"/> +<wire x1="0" y1="0.8" x2="0" y2="0.6" width="0.127" layer="51"/> +<wire x1="0" y1="0.6" x2="0.4" y2="-0.4" width="0.127" layer="51"/> +<wire x1="0" y1="-0.8" x2="0" y2="-0.5" width="0.127" layer="51"/> +<wire x1="-2.1" y1="0.2" x2="-2.1" y2="-0.2" width="0.127" layer="51"/> +<wire x1="2.1" y1="-0.2" x2="2.1" y2="0.2" width="0.127" layer="51"/> +<wire x1="2.1" y1="1.4" x2="2.1" y2="1.5" width="0.127" layer="51"/> +<wire x1="2.1" y1="1.5" x2="1" y2="1.5" width="0.127" layer="51"/> +<wire x1="1.032" y1="1.5" x2="-2.1" y2="1.5" width="0.127" layer="51"/> +<wire x1="-2.1" y1="1.5" x2="-2.1" y2="1.4" width="0.127" layer="51"/> +<wire x1="-2.1" y1="-1.4" x2="-2.1" y2="-1.5" width="0.127" layer="51"/> +<wire x1="-2.1" y1="-1.5" x2="2.1" y2="-1.5" width="0.127" layer="51"/> +<wire x1="2.1" y1="-1.5" x2="2.1" y2="-1.4" width="0.127" layer="51"/> +</package> +<package name="TACT-SWITCH-SIDE"> +<smd name="P$1" x="-1.8" y="0.725" dx="1.4" dy="1.05" layer="1" rot="R180"/> +<smd name="P$2" x="1.8" y="0.725" dx="1.4" dy="1.05" layer="1" rot="R180"/> +<smd name="P$3" x="-1.8" y="-0.725" dx="1.4" dy="1.05" layer="1" rot="R180"/> +<smd name="P$4" x="1.8" y="-0.725" dx="1.4" dy="1.05" layer="1" rot="R180"/> +<wire x1="-0.9" y1="0.8" x2="0" y2="0.8" width="0.127" layer="51"/> +<wire x1="0" y1="0.8" x2="0.9" y2="0.8" width="0.127" layer="51"/> +<wire x1="-0.9" y1="-0.8" x2="0" y2="-0.8" width="0.127" layer="51"/> +<wire x1="0" y1="-0.8" x2="0.9" y2="-0.8" width="0.127" layer="51"/> +<wire x1="0" y1="0.8" x2="0" y2="0.6" width="0.127" layer="51"/> +<wire x1="0" y1="0.6" x2="0.4" y2="-0.4" width="0.127" layer="51"/> +<wire x1="0" y1="-0.8" x2="0" y2="-0.5" width="0.127" layer="51"/> +<wire x1="-1.75" y1="-1.45" x2="1.75" y2="-1.45" width="0.127" layer="21"/> +<wire x1="-1.75" y1="1.6" x2="-1" y2="1.6" width="0.127" layer="21"/> +<wire x1="-1" y1="1.6" x2="0" y2="1.6" width="0.127" layer="21"/> +<wire x1="0" y1="1.6" x2="1" y2="1.6" width="0.127" layer="21"/> +<wire x1="1" y1="1.6" x2="1.75" y2="1.6" width="0.127" layer="21"/> +<wire x1="-1" y1="1.6" x2="-1" y2="2.3" width="0.127" layer="21"/> +<wire x1="-1" y1="2.3" x2="1" y2="2.3" width="0.127" layer="21"/> +<wire x1="1" y1="2.3" x2="1" y2="1.6" width="0.127" layer="21"/> +</package> +<package name="1206"> +<wire x1="-0.965" y1="0.787" x2="0.965" y2="0.787" width="0.1016" layer="51"/> +<wire x1="-0.965" y1="-0.787" x2="0.965" y2="-0.787" width="0.1016" layer="51"/> +<smd name="1" x="-1.4" y="0" dx="1.6" dy="1.8" layer="1"/> +<smd name="2" x="1.4" y="0" dx="1.6" dy="1.8" layer="1"/> +<text x="-1.27" y="1.143" size="1.016" layer="25">>NAME</text> +<text x="-1.397" y="-2.794" size="1.016" layer="27">>VALUE</text> +<rectangle x1="-1.7018" y1="-0.8509" x2="-0.9517" y2="0.8491" layer="51"/> +<rectangle x1="0.9517" y1="-0.8491" x2="1.7018" y2="0.8509" layer="51"/> +<rectangle x1="-0.1999" y1="-0.4001" x2="0.1999" y2="0.4001" layer="35"/> +</package> +<package name="R2010"> +<description><b>RESISTOR</b><p> +chip</description> +<wire x1="-1.662" y1="1.245" x2="1.662" y2="1.245" width="0.1524" layer="51"/> +<wire x1="-1.637" y1="-1.245" x2="1.687" y2="-1.245" width="0.1524" layer="51"/> +<wire x1="-3.473" y1="1.483" x2="3.473" y2="1.483" width="0.0508" layer="39"/> +<wire x1="3.473" y1="1.483" x2="3.473" y2="-1.483" width="0.0508" layer="39"/> +<wire x1="3.473" y1="-1.483" x2="-3.473" y2="-1.483" width="0.0508" layer="39"/> +<wire x1="-3.473" y1="-1.483" x2="-3.473" y2="1.483" width="0.0508" layer="39"/> +<wire x1="-1.027" y1="1.245" x2="1.027" y2="1.245" width="0.1524" layer="21"/> +<wire x1="-1.002" y1="-1.245" x2="1.016" y2="-1.245" width="0.1524" layer="21"/> +<smd name="1" x="-2.2" y="0" dx="1.8" dy="2.7" layer="1"/> +<smd name="2" x="2.2" y="0" dx="1.8" dy="2.7" layer="1"/> +<text x="-2.54" y="1.5875" size="1.016" layer="25">>NAME</text> +<text x="-2.54" y="-3.302" size="1.016" layer="27">>VALUE</text> +<rectangle x1="-2.4892" y1="-1.3208" x2="-1.6393" y2="1.3292" layer="51"/> +<rectangle x1="1.651" y1="-1.3208" x2="2.5009" y2="1.3292" layer="51"/> +</package> +<package name="0805"> +<smd name="1" x="-1" y="0" dx="0.8" dy="1.3" layer="1"/> +<smd name="2" x="1" y="0" dx="0.8" dy="1.3" layer="1"/> +<text x="-0.762" y="0.8255" size="1.016" layer="25">>NAME</text> +<text x="-1.016" y="-2.032" size="1.016" layer="27">>VALUE</text> +<rectangle x1="-1" y1="-0.6" x2="1" y2="0.6" layer="51"/> +</package> +<package name="0603-RES"> +<wire x1="-0.356" y1="0.432" x2="0.356" y2="0.432" width="0.1016" layer="51"/> +<wire x1="-0.356" y1="-0.419" x2="0.356" y2="-0.419" width="0.1016" layer="51"/> +<smd name="1" x="-0.85" y="0" dx="1.1" dy="1" layer="1"/> +<smd name="2" x="0.85" y="0" dx="1.1" dy="1" layer="1"/> +<text x="-0.889" y="1.397" size="1.016" layer="25">>NAME</text> +<text x="-1.016" y="-2.413" size="1.016" layer="27" ratio="10">>VALUE</text> +<rectangle x1="-0.8382" y1="-0.4699" x2="-0.3381" y2="0.4801" layer="51"/> +<rectangle x1="0.3302" y1="-0.4699" x2="0.8303" y2="0.4801" layer="51"/> +<rectangle x1="-0.1999" y1="-0.3" x2="0.1999" y2="0.3" layer="35"/> +<rectangle x1="-0.2286" y1="-0.381" x2="0.2286" y2="0.381" layer="21"/> +</package> +<package name="R2512"> +<wire x1="-2.362" y1="1.473" x2="2.387" y2="1.473" width="0.1524" layer="51"/> +<wire x1="-2.362" y1="-1.473" x2="2.387" y2="-1.473" width="0.1524" layer="51"/> +<smd name="1" x="-2.8" y="0" dx="1.8" dy="3.2" layer="1"/> +<smd name="2" x="2.8" y="0" dx="1.8" dy="3.2" layer="1"/> +<text x="-2.54" y="1.905" size="1.016" layer="25">>NAME</text> +<text x="-2.54" y="-3.175" size="1.016" layer="27">>VALUE</text> +<rectangle x1="-3.2004" y1="-1.5494" x2="-2.3505" y2="1.5507" layer="51"/> +<rectangle x1="2.3622" y1="-1.5494" x2="3.2121" y2="1.5507" layer="51"/> +</package> +<package name="TO220ACS"> +<description><B>DIODE</B><p> +2-lead molded, vertical</description> +<wire x1="5.08" y1="-1.143" x2="4.953" y2="-4.064" width="0.1524" layer="21"/> +<wire x1="4.699" y1="-4.318" x2="4.953" y2="-4.064" width="0.1524" layer="21"/> +<wire x1="4.699" y1="-4.318" x2="-4.699" y2="-4.318" width="0.1524" layer="21"/> +<wire x1="-4.953" y1="-4.064" x2="-4.699" y2="-4.318" width="0.1524" layer="21"/> +<wire x1="-4.953" y1="-4.064" x2="-5.08" y2="-1.143" width="0.1524" layer="21"/> +<circle x="-4.4958" y="-3.7084" radius="0.254" width="0" layer="21"/> +<pad name="C" x="-2.54" y="-2.54" drill="1.016" shape="long" rot="R90"/> +<pad name="A" x="2.54" y="-2.54" drill="1.016" shape="long" rot="R90"/> +<text x="-5.08" y="-6.0452" size="1.016" layer="25" ratio="10">>NAME</text> +<text x="-5.08" y="-7.62" size="1.016" layer="27" ratio="10">>VALUE</text> +<rectangle x1="-5.334" y1="-0.762" x2="5.334" y2="0" layer="21"/> +<rectangle x1="-5.334" y1="-1.27" x2="-3.429" y2="-0.762" layer="21"/> +<rectangle x1="-3.429" y1="-1.27" x2="-1.651" y2="-0.762" layer="51"/> +<rectangle x1="3.429" y1="-1.27" x2="5.334" y2="-0.762" layer="21"/> +<rectangle x1="1.651" y1="-1.27" x2="3.429" y2="-0.762" layer="51"/> +<rectangle x1="-1.651" y1="-1.27" x2="1.651" y2="-0.762" layer="21"/> +</package> +<package name="0402"> +<description><b>CAPACITOR</b><p> +chip</description> +<wire x1="-0.245" y1="0.224" x2="0.245" y2="0.224" width="0.1524" layer="51"/> +<wire x1="0.245" y1="-0.224" x2="-0.245" y2="-0.224" width="0.1524" layer="51"/> +<smd name="1" x="-0.525" y="0" dx="0.575" dy="0.7" layer="1"/> +<smd name="2" x="0.525" y="0" dx="0.575" dy="0.7" layer="1"/> +<text x="-0.889" y="0.6985" size="1.016" layer="25">>NAME</text> +<text x="-1.0795" y="-1.778" size="1.016" layer="27">>VALUE</text> +<rectangle x1="-0.554" y1="-0.3048" x2="-0.254" y2="0.2951" layer="51"/> +<rectangle x1="0.2588" y1="-0.3048" x2="0.5588" y2="0.2951" layer="51"/> +</package> +<package name="0603-CAP"> +<wire x1="-0.356" y1="0.332" x2="0.356" y2="0.332" width="0.1016" layer="51"/> +<wire x1="-0.356" y1="-0.319" x2="0.356" y2="-0.319" width="0.1016" layer="51"/> +<smd name="1" x="-0.8" y="0" dx="0.8" dy="0.95" layer="1"/> +<smd name="2" x="0.8" y="0" dx="0.8" dy="0.95" layer="1"/> +<text x="-0.889" y="1.397" size="1.016" layer="25">>NAME</text> +<text x="-1.016" y="-2.413" size="1.016" layer="27">>VALUE</text> +<rectangle x1="-0.8382" y1="-0.4" x2="-0.3381" y2="0.4" layer="51"/> +<rectangle x1="0.3302" y1="-0.4" x2="0.8303" y2="0.4" layer="51"/> +</package> +<package name="1210"> +<wire x1="-1.6" y1="1.3" x2="1.6" y2="1.3" width="0.127" layer="51"/> +<wire x1="1.6" y1="1.3" x2="1.6" y2="-1.3" width="0.127" layer="51"/> +<wire x1="1.6" y1="-1.3" x2="-1.6" y2="-1.3" width="0.127" layer="51"/> +<wire x1="-1.6" y1="-1.3" x2="-1.6" y2="1.3" width="0.127" layer="51"/> +<wire x1="-1.6" y1="1.3" x2="1.6" y2="1.3" width="0.2032" layer="51"/> +<wire x1="-1.6" y1="-1.3" x2="1.6" y2="-1.3" width="0.2032" layer="51"/> +<smd name="1" x="-1.6" y="0" dx="1.2" dy="2.5" layer="1"/> +<smd name="2" x="1.6" y="0" dx="1.2" dy="2.5" layer="1"/> +<text x="-2.07" y="1.77" size="1.016" layer="25">>NAME</text> +<text x="-2.17" y="-3.24" size="1.016" layer="27">>VALUE</text> +</package> +<package name="2220-C"> +<smd name="P$1" x="-2.6" y="0" dx="1.2" dy="5" layer="1"/> +<smd name="P$2" x="2.6" y="0" dx="1.2" dy="5" layer="1"/> +<text x="-1.5" y="3" size="0.6096" layer="125">>NAME</text> +<text x="-1.5" y="-3.5" size="0.6096" layer="127">>VALUE</text> +</package> +</packages> +<symbols> +<symbol name="TS2"> +<wire x1="0" y1="1.905" x2="0" y2="2.54" width="0.254" layer="94"/> +<wire x1="-4.445" y1="1.905" x2="-3.175" y2="1.905" width="0.254" layer="94"/> +<wire x1="-4.445" y1="-1.905" x2="-3.175" y2="-1.905" width="0.254" layer="94"/> +<wire x1="-4.445" y1="1.905" x2="-4.445" y2="0" width="0.254" layer="94"/> +<wire x1="-4.445" y1="0" x2="-4.445" y2="-1.905" width="0.254" layer="94"/> +<wire x1="-2.54" y1="0" x2="-1.905" y2="0" width="0.1524" layer="94"/> +<wire x1="-1.27" y1="0" x2="-0.635" y2="0" width="0.1524" layer="94"/> +<wire x1="-4.445" y1="0" x2="-3.175" y2="0" width="0.1524" layer="94"/> +<wire x1="2.54" y1="2.54" x2="0" y2="2.54" width="0.1524" layer="94"/> +<wire x1="2.54" y1="-2.54" x2="0" y2="-2.54" width="0.1524" layer="94"/> +<wire x1="0" y1="-2.54" x2="-1.27" y2="1.905" width="0.254" layer="94"/> +<circle x="0" y="-2.54" radius="0.127" width="0.4064" layer="94"/> +<circle x="0" y="2.54" radius="0.127" width="0.4064" layer="94"/> +<text x="-6.35" y="-2.54" size="1.778" layer="95" rot="R90">>NAME</text> +<text x="-3.81" y="3.175" size="1.778" layer="96" rot="R90">>VALUE</text> +<pin name="P" x="0" y="-5.08" visible="pad" length="short" direction="pas" swaplevel="2" rot="R90"/> +<pin name="S" x="0" y="5.08" visible="pad" length="short" direction="pas" swaplevel="1" rot="R270"/> +<pin name="S1" x="2.54" y="5.08" visible="pad" length="short" direction="pas" swaplevel="1" rot="R270"/> +<pin name="P1" x="2.54" y="-5.08" visible="pad" length="short" direction="pas" swaplevel="2" rot="R90"/> +</symbol> +<symbol name="RESISTOR"> +<wire x1="-2.54" y1="0" x2="-2.159" y2="1.016" width="0.1524" layer="94"/> +<wire x1="-2.159" y1="1.016" x2="-1.524" y2="-1.016" width="0.1524" layer="94"/> +<wire x1="-1.524" y1="-1.016" x2="-0.889" y2="1.016" width="0.1524" layer="94"/> +<wire x1="-0.889" y1="1.016" x2="-0.254" y2="-1.016" width="0.1524" layer="94"/> +<wire x1="-0.254" y1="-1.016" x2="0.381" y2="1.016" width="0.1524" layer="94"/> +<wire x1="0.381" y1="1.016" x2="1.016" y2="-1.016" width="0.1524" layer="94"/> +<wire x1="1.016" y1="-1.016" x2="1.651" y2="1.016" width="0.1524" layer="94"/> +<wire x1="1.651" y1="1.016" x2="2.286" y2="-1.016" width="0.1524" layer="94"/> +<wire x1="2.286" y1="-1.016" x2="2.54" y2="0" width="0.1524" layer="94"/> +<text x="-3.81" y="1.4986" size="1.778" layer="95">>NAME</text> +<text x="-3.81" y="-3.302" size="1.778" layer="96">>VALUE</text> +<pin name="2" x="5.08" y="0" visible="off" length="short" direction="pas" swaplevel="1" rot="R180"/> +<pin name="1" x="-5.08" y="0" visible="off" length="short" direction="pas" swaplevel="1"/> +<text x="-3.81" y="-6.858" size="1.27" layer="97">>PRECISION</text> +<text x="-3.81" y="-5.08" size="1.27" layer="97">>PACKAGE</text> +</symbol> +<symbol name="CAP"> +<wire x1="0" y1="2.54" x2="0" y2="2.032" width="0.1524" layer="94"/> +<wire x1="0" y1="0" x2="0" y2="0.508" width="0.1524" layer="94"/> +<text x="1.524" y="2.921" size="1.778" layer="95">>NAME</text> +<text x="1.524" y="-2.159" size="1.778" layer="96">>VALUE</text> +<rectangle x1="-2.032" y1="0.508" x2="2.032" y2="1.016" layer="94"/> +<rectangle x1="-2.032" y1="1.524" x2="2.032" y2="2.032" layer="94"/> +<pin name="1" x="0" y="5.08" visible="off" length="short" direction="pas" swaplevel="1" rot="R270"/> +<pin name="2" x="0" y="-2.54" visible="off" length="short" direction="pas" swaplevel="1" rot="R90"/> +<text x="1.524" y="-4.064" size="1.27" layer="97">>PACKAGE</text> +<text x="1.524" y="-5.842" size="1.27" layer="97">>VOLTAGE</text> +<text x="1.524" y="-7.62" size="1.27" layer="97">>TYPE</text> +</symbol> +</symbols> +<devicesets> +<deviceset name="2-8X4-5_SWITCH" prefix="S"> +<gates> +<gate name="G$1" symbol="TS2" x="0" y="0"/> +</gates> +<devices> +<device name="" package="TACT-SWITCH-KMR6"> +<connects> +<connect gate="G$1" pin="P" pad="P$1"/> +<connect gate="G$1" pin="P1" pad="P$2"/> +<connect gate="G$1" pin="S" pad="P$3"/> +<connect gate="G$1" pin="S1" pad="P$4"/> +</connects> +<technologies> +<technology name=""/> +</technologies> +</device> +<device name="SIDE" package="TACT-SWITCH-SIDE"> +<connects> +<connect gate="G$1" pin="P" pad="P$1"/> +<connect gate="G$1" pin="P1" pad="P$2"/> +<connect gate="G$1" pin="S" pad="P$3"/> +<connect gate="G$1" pin="S1" pad="P$4"/> +</connects> +<technologies> +<technology name=""/> +</technologies> +</device> +</devices> +</deviceset> +<deviceset name="RESISTOR" prefix="R" uservalue="yes"> +<description><b>Resistor</b> +Basic schematic elements and footprints for 0603, 1206, and PTH resistors.</description> +<gates> +<gate name="G$1" symbol="RESISTOR" x="0" y="0"/> +</gates> +<devices> +<device name="1206" package="1206"> +<connects> +<connect gate="G$1" pin="1" pad="1"/> +<connect gate="G$1" pin="2" pad="2"/> +</connects> +<technologies> +<technology name=""> +<attribute name="PACKAGE" value="1206" constant="no"/> +<attribute name="PRECISION" value="" constant="no"/> +</technology> +</technologies> +</device> +<device name="2010" package="R2010"> +<connects> +<connect gate="G$1" pin="1" pad="1"/> +<connect gate="G$1" pin="2" pad="2"/> +</connects> +<technologies> +<technology name=""> +<attribute name="PACKAGE" value="2010"/> +<attribute name="PRECISION" value="" constant="no"/> +</technology> +</technologies> +</device> +<device name="0805-RES" package="0805"> +<connects> +<connect gate="G$1" pin="1" pad="1"/> +<connect gate="G$1" pin="2" pad="2"/> +</connects> +<technologies> +<technology name=""> +<attribute name="PACKAGE" value="0805"/> +<attribute name="PRECISION" value="" constant="no"/> +</technology> +</technologies> +</device> +<device name="0603-RES" package="0603-RES"> +<connects> +<connect gate="G$1" pin="1" pad="1"/> +<connect gate="G$1" pin="2" pad="2"/> +</connects> +<technologies> +<technology name=""> +<attribute name="PACKAGE" value="0603"/> +<attribute name="PRECISION" value="" constant="no"/> +</technology> +</technologies> +</device> +<device name="2512" package="R2512"> +<connects> +<connect gate="G$1" pin="1" pad="1"/> +<connect gate="G$1" pin="2" pad="2"/> +</connects> +<technologies> +<technology name=""> +<attribute name="PACKAGE" value="2512"/> +<attribute name="PRECISION" value="" constant="no"/> +</technology> +</technologies> +</device> +<device name="TO220ACS" package="TO220ACS"> +<connects> +<connect gate="G$1" pin="1" pad="A"/> +<connect gate="G$1" pin="2" pad="C"/> +</connects> +<technologies> +<technology name=""/> +</technologies> +</device> +<device name="0402" package="0402"> +<connects> +<connect gate="G$1" pin="1" pad="1"/> +<connect gate="G$1" pin="2" pad="2"/> +</connects> +<technologies> +<technology name=""/> +</technologies> +</device> +</devices> +</deviceset> +<deviceset name="CAP" prefix="C" uservalue="yes"> +<description><b>Capacitor</b> +Standard 0603 ceramic capacitor, and 0.1" leaded capacitor.</description> +<gates> +<gate name="G$1" symbol="CAP" x="0" y="0"/> +</gates> +<devices> +<device name="0805" package="0805"> +<connects> +<connect gate="G$1" pin="1" pad="1"/> +<connect gate="G$1" pin="2" pad="2"/> +</connects> +<technologies> +<technology name=""> +<attribute name="PACKAGE" value="0805"/> +<attribute name="TYPE" value="" constant="no"/> +<attribute name="VOLTAGE" value="" constant="no"/> +</technology> +</technologies> +</device> +<device name="0603-CAP" package="0603-CAP"> +<connects> +<connect gate="G$1" pin="1" pad="1"/> +<connect gate="G$1" pin="2" pad="2"/> +</connects> +<technologies> +<technology name=""> +<attribute name="PACKAGE" value="0603"/> +<attribute name="TYPE" value="" constant="no"/> +<attribute name="VOLTAGE" value="" constant="no"/> +</technology> +</technologies> +</device> +<device name="1210" package="1210"> +<connects> +<connect gate="G$1" pin="1" pad="1"/> +<connect gate="G$1" pin="2" pad="2"/> +</connects> +<technologies> +<technology name=""> +<attribute name="PACKAGE" value="1210" constant="no"/> +<attribute name="TYPE" value="" constant="no"/> +<attribute name="VOLTAGE" value="" constant="no"/> +</technology> +</technologies> +</device> +<device name="1206" package="1206"> +<connects> +<connect gate="G$1" pin="1" pad="1"/> +<connect gate="G$1" pin="2" pad="2"/> +</connects> +<technologies> +<technology name=""> +<attribute name="PACKAGE" value="1206" constant="no"/> +<attribute name="TYPE" value="" constant="no"/> +<attribute name="VOLTAGE" value="" constant="no"/> +</technology> +</technologies> +</device> +<device name="2220" package="2220-C"> +<connects> +<connect gate="G$1" pin="1" pad="P$1"/> +<connect gate="G$1" pin="2" pad="P$2"/> +</connects> +<technologies> +<technology name=""/> +</technologies> +</device> +<device name="0402" package="0402"> +<connects> +<connect gate="G$1" pin="1" pad="1"/> +<connect gate="G$1" pin="2" pad="2"/> +</connects> +<technologies> +<technology name=""/> +</technologies> +</device> +</devices> +</deviceset> +</devicesets> +</library> +<library name="supply1"> +<description><b>Supply Symbols</b><p> + GND, VCC, 0V, +5V, -5V, etc.<p> + Please keep in mind, that these devices are necessary for the + automatic wiring of the supply signals.<p> + The pin name defined in the symbol is identical to the net which is to be wired automatically.<p> + In this library the device names are the same as the pin names of the symbols, therefore the correct signal names appear next to the supply symbols in the schematic.<p> + <author>Created by librarian@cadsoft.de</author></description> +<packages> +</packages> +<symbols> +<symbol name="+3V3" urn="urn:adsk.eagle:symbol:26950/1"> +<wire x1="1.27" y1="-1.905" x2="0" y2="0" width="0.254" layer="94"/> +<wire x1="0" y1="0" x2="-1.27" y2="-1.905" width="0.254" layer="94"/> +<text x="-2.54" y="-5.08" size="1.778" layer="96" rot="R90">>VALUE</text> +<pin name="+3V3" x="0" y="-2.54" visible="off" length="short" direction="sup" rot="R90"/> +</symbol> +<symbol name="+5V" urn="urn:adsk.eagle:symbol:26929/1"> +<wire x1="1.27" y1="-1.905" x2="0" y2="0" width="0.254" layer="94"/> +<wire x1="0" y1="0" x2="-1.27" y2="-1.905" width="0.254" layer="94"/> +<text x="-2.54" y="-5.08" size="1.778" layer="96" rot="R90">>VALUE</text> +<pin name="+5V" x="0" y="-2.54" visible="off" length="short" direction="sup" rot="R90"/> +</symbol> +<symbol name="GND" urn="urn:adsk.eagle:symbol:26925/1"> +<wire x1="-1.905" y1="0" x2="1.905" y2="0" width="0.254" layer="94"/> +<text x="-2.54" y="-2.54" size="1.778" layer="96">>VALUE</text> +<pin name="GND" x="0" y="2.54" visible="off" length="short" direction="sup" rot="R270"/> +</symbol> +</symbols> +<devicesets> +<deviceset name="+3V3" urn="urn:adsk.eagle:component:26981/1" prefix="+3V3"> +<description><b>SUPPLY SYMBOL</b></description> +<gates> +<gate name="G$1" symbol="+3V3" x="0" y="0"/> +</gates> +<devices> +<device name=""> +<technologies> +<technology name=""/> +</technologies> +</device> +</devices> +</deviceset> +<deviceset name="+5V" urn="urn:adsk.eagle:component:26963/1" prefix="P+"> +<description><b>SUPPLY SYMBOL</b></description> +<gates> +<gate name="1" symbol="+5V" x="0" y="0"/> +</gates> +<devices> +<device name=""> +<technologies> +<technology name=""/> +</technologies> +</device> +</devices> +</deviceset> +<deviceset name="GND" urn="urn:adsk.eagle:component:26954/1" prefix="GND"> +<description><b>SUPPLY SYMBOL</b></description> +<gates> +<gate name="1" symbol="GND" x="0" y="0"/> +</gates> +<devices> +<device name=""> +<technologies> +<technology name=""/> +</technologies> +</device> +</devices> +</deviceset> +</devicesets> +</library> +<library name="power"> +<packages> +<package name="SOT23-5"> +<description><b>Small Outline Transistor</b>, 5 lead</description> +<wire x1="-1.544" y1="0.713" x2="1.544" y2="0.713" width="0.1524" layer="51"/> +<wire x1="1.544" y1="0.713" x2="1.544" y2="-0.712" width="0.1524" layer="51"/> +<wire x1="1.544" y1="-0.712" x2="-1.544" y2="-0.712" width="0.1524" layer="51"/> +<wire x1="-1.544" y1="-0.712" x2="-1.544" y2="0.713" width="0.1524" layer="51"/> +<smd name="5" x="-0.95" y="1.306" dx="0.5334" dy="1.1938" layer="1"/> +<smd name="4" x="0.95" y="1.306" dx="0.5334" dy="1.1938" layer="1"/> +<smd name="1" x="-0.95" y="-1.306" dx="0.5334" dy="1.1938" layer="1"/> +<smd name="2" x="0" y="-1.306" dx="0.5334" dy="1.1938" layer="1"/> +<smd name="3" x="0.95" y="-1.306" dx="0.5334" dy="1.1938" layer="1"/> +<text x="-1.778" y="-1.778" size="1.27" layer="25" ratio="10" rot="R90">>NAME</text> +<text x="3.048" y="-1.778" size="1.27" layer="27" ratio="10" rot="R90">>VALUE</text> +<rectangle x1="-1.1875" y1="0.7126" x2="-0.7125" y2="1.5439" layer="51"/> +<rectangle x1="0.7125" y1="0.7126" x2="1.1875" y2="1.5439" layer="51"/> +<rectangle x1="-1.1875" y1="-1.5437" x2="-0.7125" y2="-0.7124" layer="51"/> +<rectangle x1="-0.2375" y1="-1.5437" x2="0.2375" y2="-0.7124" layer="51"/> +<rectangle x1="0.7125" y1="-1.5437" x2="1.1875" y2="-0.7124" layer="51"/> +<wire x1="-1.5" y1="-1.9" x2="-1.5" y2="-1.2" width="0.127" layer="21"/> +</package> +</packages> +<symbols> +<symbol name="VREG-AP2112"> +<pin name="VIN" x="-12.7" y="2.54" length="middle"/> +<pin name="EN" x="-12.7" y="-2.54" length="middle"/> +<pin name="GND" x="0" y="-10.16" length="middle" rot="R90"/> +<pin name="VOUT" x="12.7" y="2.54" length="middle" rot="R180"/> +<wire x1="-7.62" y1="5.08" x2="-7.62" y2="-5.08" width="0.254" layer="94"/> +<wire x1="-7.62" y1="-5.08" x2="7.62" y2="-5.08" width="0.254" layer="94"/> +<wire x1="7.62" y1="-5.08" x2="7.62" y2="5.08" width="0.254" layer="94"/> +<wire x1="7.62" y1="5.08" x2="-7.62" y2="5.08" width="0.254" layer="94"/> +<text x="-2.54" y="7.62" size="1.27" layer="95">>NAME</text> +<text x="2.54" y="-7.62" size="1.27" layer="96">>VALUE</text> +</symbol> +</symbols> +<devicesets> +<deviceset name="VREG-AP2112" prefix="U"> +<gates> +<gate name="G$1" symbol="VREG-AP2112" x="0" y="0"/> +</gates> +<devices> +<device name="" package="SOT23-5"> +<connects> +<connect gate="G$1" pin="EN" pad="3"/> +<connect gate="G$1" pin="GND" pad="2"/> +<connect gate="G$1" pin="VIN" pad="1"/> +<connect gate="G$1" pin="VOUT" pad="5"/> +</connects> +<technologies> +<technology name=""/> +</technologies> +</device> +</devices> +</deviceset> +</devicesets> +</library> +<library name="connector"> +<packages> +<package name="DX4R005HJ5_100"> +<wire x1="3.25" y1="-2.6" x2="-3.25" y2="-2.6" width="0.127" layer="21"/> +<wire x1="-3.25" y1="2.6" x2="-3.25" y2="0" width="0.127" layer="51"/> +<wire x1="3.25" y1="2.6" x2="3.25" y2="0" width="0.127" layer="51"/> +<wire x1="-1.75" y1="2.6" x2="1.75" y2="2.6" width="0.127" layer="51"/> +<wire x1="-3.25" y1="-2.2" x2="-3.25" y2="-2.6" width="0.127" layer="51"/> +<wire x1="3.25" y1="-2.6" x2="3.25" y2="-2.2" width="0.127" layer="51"/> +<smd name="GND@3" x="-2.175" y="-1.1" dx="2.15" dy="1.9" layer="1"/> +<smd name="GND@4" x="2.175" y="-1.1" dx="2.15" dy="1.9" layer="1"/> +<smd name="GND@1" x="-2.5" y="1.95" dx="1.2" dy="1.3" layer="1"/> +<smd name="GND@2" x="2.5" y="1.95" dx="1.2" dy="1.3" layer="1"/> +<smd name="D+" x="0" y="1.6" dx="0.35" dy="1.35" layer="1"/> +<smd name="D-" x="-0.65" y="1.6" dx="0.35" dy="1.35" layer="1"/> +<smd name="VBUS" x="-1.3" y="1.6" dx="0.35" dy="1.35" layer="1"/> +<smd name="ID" x="0.65" y="1.6" dx="0.35" dy="1.35" layer="1"/> +<smd name="GND" x="1.3" y="1.6" dx="0.35" dy="1.35" layer="1"/> +<text x="4.1275" y="-1.5875" size="0.6096" layer="27" font="vector" rot="R90">>Value</text> +<text x="-3.4925" y="-1.27" size="0.6096" layer="25" font="vector" rot="R90">>Name</text> +</package> +<package name="DX4R005HJ5"> +<wire x1="3.25" y1="-2.6" x2="-3.25" y2="-2.6" width="0.127" layer="51"/> +<wire x1="-3.25" y1="2.6" x2="-3.25" y2="0" width="0.127" layer="21"/> +<wire x1="3.25" y1="2.6" x2="3.25" y2="0" width="0.127" layer="21"/> +<wire x1="-1.75" y1="2.6" x2="1.75" y2="2.6" width="0.127" layer="51"/> +<wire x1="-3.25" y1="-2.2" x2="-3.25" y2="-2.6" width="0.127" layer="51"/> +<wire x1="3.25" y1="-2.6" x2="3.25" y2="-2.2" width="0.127" layer="51"/> +<smd name="GND@3" x="-2.475" y="-1.1" dx="2.75" dy="1.9" layer="1"/> +<smd name="GND@4" x="2.475" y="-1.1" dx="2.75" dy="1.9" layer="1"/> +<smd name="GND@1" x="-2.5" y="1.95" dx="1.2" dy="1.3" layer="1"/> +<smd name="GND@2" x="2.5" y="1.95" dx="1.2" dy="1.3" layer="1"/> +<smd name="D+" x="0" y="1.9" dx="0.4" dy="1.95" layer="1"/> +<smd name="D-" x="-0.65" y="1.9" dx="0.4" dy="1.95" layer="1"/> +<smd name="VBUS" x="-1.3" y="1.9" dx="0.4" dy="1.95" layer="1"/> +<smd name="ID" x="0.65" y="1.9" dx="0.4" dy="1.95" layer="1"/> +<smd name="GND" x="1.3" y="1.9" dx="0.4" dy="1.95" layer="1"/> +<text x="-3.4925" y="-1.27" size="0.6096" layer="25" font="vector" rot="R90">>Name</text> +<text x="4.1275" y="-1.5875" size="0.6096" layer="25" font="vector" rot="R90">>Value</text> +</package> +<package name="DX4R005HJ5_64"> +<wire x1="3.25" y1="-2.6" x2="-3.25" y2="-2.6" width="0.127" layer="21"/> +<wire x1="-3.25" y1="2.6" x2="-3.25" y2="0" width="0.127" layer="51"/> +<wire x1="3.25" y1="2.6" x2="3.25" y2="0" width="0.127" layer="51"/> +<wire x1="-1.75" y1="2.6" x2="1.75" y2="2.6" width="0.127" layer="51"/> +<wire x1="-3.25" y1="-2.2" x2="-3.25" y2="-2.6" width="0.127" layer="51"/> +<wire x1="3.25" y1="-2.6" x2="3.25" y2="-2.2" width="0.127" layer="51"/> +<smd name="GND@3" x="-2.175" y="-1.1" dx="2.15" dy="1.9" layer="1"/> +<smd name="GND@4" x="2.175" y="-1.1" dx="2.15" dy="1.9" layer="1"/> +<smd name="GND@1" x="-2.5" y="1.95" dx="1.2" dy="1.3" layer="1"/> +<smd name="GND@2" x="2.5" y="1.95" dx="1.2" dy="1.3" layer="1"/> +<smd name="D+" x="0" y="1.6" dx="0.254" dy="1.35" layer="1"/> +<smd name="D-" x="-0.65" y="1.6" dx="0.254" dy="1.35" layer="1"/> +<smd name="VBUS" x="-1.3" y="1.6" dx="0.254" dy="1.35" layer="1"/> +<smd name="ID" x="0.65" y="1.6" dx="0.254" dy="1.35" layer="1"/> +<smd name="GND" x="1.3" y="1.6" dx="0.254" dy="1.35" layer="1"/> +<text x="-3.4925" y="-1.27" size="0.6096" layer="25" font="vector" rot="R90">>Name</text> +<text x="4.1275" y="-1.5875" size="0.6096" layer="27" font="vector" rot="R90">>Value</text> +</package> +<package name="USB_MICRO_609-4613-1-ND"> +<smd name="HD0" x="-3.8" y="0" dx="1.9" dy="1.8" layer="1"/> +<smd name="HD4" x="-3.1" y="2.55" dx="2.1" dy="1.6" layer="1"/> +<smd name="HD5" x="3.1" y="2.55" dx="2.1" dy="1.6" layer="1"/> +<smd name="D+" x="0" y="2.675" dx="0.4" dy="1.35" layer="1"/> +<smd name="D-" x="-0.65" y="2.675" dx="0.4" dy="1.35" layer="1"/> +<smd name="VBUS" x="-1.3" y="2.675" dx="0.4" dy="1.35" layer="1"/> +<smd name="ID" x="0.65" y="2.675" dx="0.4" dy="1.35" layer="1"/> +<smd name="GND" x="1.3" y="2.675" dx="0.4" dy="1.35" layer="1"/> +<text x="4.9275" y="1.2125" size="0.6096" layer="27" font="vector" rot="R90">>Value</text> +<text x="-4.3925" y="1.13" size="0.6096" layer="25" font="vector" rot="R90">>Name</text> +<smd name="HD1" x="-1.05" y="0" dx="1.9" dy="1.8" layer="1"/> +<smd name="HD2" x="1.05" y="0" dx="1.9" dy="1.8" layer="1"/> +<smd name="HD3" x="3.8" y="0" dx="1.9" dy="1.8" layer="1"/> +<wire x1="-4.7" y1="-1.45" x2="4.7" y2="-1.45" width="0.127" layer="51"/> +<text x="0" y="-1.3" size="0.8128" layer="51" font="vector" align="bottom-center">\\ PCB Edge /</text> +<wire x1="-3.9" y1="3" x2="-3.9" y2="-2.5" width="0.127" layer="51"/> +<wire x1="-3.9" y1="-2.5" x2="3.9" y2="-2.5" width="0.127" layer="51"/> +<wire x1="3.9" y1="-2.5" x2="3.9" y2="3" width="0.127" layer="51"/> +<wire x1="3.9" y1="3" x2="-3.9" y2="3" width="0.127" layer="51"/> +<wire x1="-3.9" y1="1.1" x2="-3.9" y2="1.5" width="0.127" layer="21"/> +<wire x1="3.9" y1="1.1" x2="3.9" y2="1.5" width="0.127" layer="21"/> +<wire x1="1.8" y1="3" x2="1.7" y2="3" width="0.127" layer="21"/> +<wire x1="-1.7" y1="3" x2="-1.8" y2="3" width="0.127" layer="21"/> +<wire x1="4.4" y1="3" x2="4.7" y2="3" width="0.127" layer="21"/> +<wire x1="-4.4" y1="3" x2="-4.7" y2="3" width="0.127" layer="21"/> +<wire x1="-3.9" y1="3.6" x2="-3.9" y2="3.8" width="0.127" layer="21"/> +<wire x1="3.9" y1="3.6" x2="3.9" y2="3.8" width="0.127" layer="21"/> +</package> +</packages> +<symbols> +<symbol name="USB-1"> +<wire x1="6.35" y1="-2.54" x2="6.35" y2="2.54" width="0.254" layer="94"/> +<wire x1="6.35" y1="2.54" x2="-3.81" y2="2.54" width="0.254" layer="94"/> +<wire x1="-3.81" y1="2.54" x2="-3.81" y2="-2.54" width="0.254" layer="94"/> +<text x="-2.54" y="-1.27" size="2.54" layer="94">USB</text> +<text x="-4.445" y="-1.905" size="1.27" layer="95" font="vector" rot="R90">>Name</text> +<text x="8.255" y="-1.905" size="1.27" layer="96" font="vector" rot="R90">>Value</text> +<pin name="D+" x="5.08" y="5.08" visible="pad" length="short" rot="R270"/> +<pin name="D-" x="2.54" y="5.08" visible="pad" length="short" rot="R270"/> +<pin name="VBUS" x="0" y="5.08" visible="pad" length="short" rot="R270"/> +<pin name="GND" x="-2.54" y="5.08" visible="pad" length="short" rot="R270"/> +</symbol> +</symbols> +<devicesets> +<deviceset name="USB" prefix="X"> +<description>SMD micro USB connector as found in the fablab inventory. +Three footprint variants included: +<ol> +<li>609-4613-1-ND used by Jake +<li> original, as described by manufacturer's datasheet +<li> for milling with the 1/100" bit +<li> for milling with the 1/64" bit +</ol> +<p>Made by Zaerc.</description> +<gates> +<gate name="G$1" symbol="USB-1" x="0" y="0"/> +</gates> +<devices> +<device name="_1/100" package="DX4R005HJ5_100"> +<connects> +<connect gate="G$1" pin="D+" pad="D+"/> +<connect gate="G$1" pin="D-" pad="D-"/> +<connect gate="G$1" pin="GND" pad="GND"/> +<connect gate="G$1" pin="VBUS" pad="VBUS"/> +</connects> +<technologies> +<technology name=""/> +</technologies> +</device> +<device name="_ORIG" package="DX4R005HJ5"> +<connects> +<connect gate="G$1" pin="D+" pad="D+"/> +<connect gate="G$1" pin="D-" pad="D-"/> +<connect gate="G$1" pin="GND" pad="GND"/> +<connect gate="G$1" pin="VBUS" pad="VBUS"/> +</connects> +<technologies> +<technology name=""/> +</technologies> +</device> +<device name="_1/64" package="DX4R005HJ5_64"> +<connects> +<connect gate="G$1" pin="D+" pad="D+"/> +<connect gate="G$1" pin="D-" pad="D-"/> +<connect gate="G$1" pin="GND" pad="GND"/> +<connect gate="G$1" pin="VBUS" pad="VBUS"/> +</connects> +<technologies> +<technology name=""/> +</technologies> +</device> +<device name="" package="USB_MICRO_609-4613-1-ND"> +<connects> +<connect gate="G$1" pin="D+" pad="D+"/> +<connect gate="G$1" pin="D-" pad="D-"/> +<connect gate="G$1" pin="GND" pad="GND"/> +<connect gate="G$1" pin="VBUS" pad="VBUS"/> +</connects> +<technologies> +<technology name=""/> +</technologies> +</device> +</devices> +</deviceset> +</devicesets> +</library> +<library name="microcontrollers"> +<packages> +<package name="QFP80P900X900X120-32N"> +<wire x1="-3.55" y1="-3.55" x2="-3.55" y2="3.55" width="0.127" layer="51"/> +<wire x1="-3.55" y1="3.55" x2="3.55" y2="3.55" width="0.127" layer="51"/> +<wire x1="3.55" y1="3.55" x2="3.55" y2="-3.55" width="0.127" layer="51"/> +<wire x1="3.55" y1="-3.55" x2="-3.55" y2="-3.55" width="0.127" layer="51"/> +<wire x1="-3.25" y1="3.55" x2="-3.55" y2="3.55" width="0.127" layer="21"/> +<wire x1="-3.55" y1="3.55" x2="-3.55" y2="3.25" width="0.127" layer="21"/> +<wire x1="3.25" y1="3.55" x2="3.55" y2="3.55" width="0.127" layer="21"/> +<wire x1="3.55" y1="3.55" x2="3.55" y2="3.25" width="0.127" layer="21"/> +<wire x1="-3.55" y1="-3.25" x2="-3.55" y2="-3.55" width="0.127" layer="21"/> +<wire x1="-3.55" y1="-3.55" x2="-3.25" y2="-3.55" width="0.127" layer="21"/> +<wire x1="3.25" y1="-3.55" x2="3.55" y2="-3.55" width="0.127" layer="21"/> +<wire x1="3.55" y1="-3.55" x2="3.55" y2="-3.25" width="0.127" layer="21"/> +<text x="-3.202909375" y="5.80526875" size="0.8135375" layer="25">>NAME</text> +<text x="-3.40625" y="-6.211390625" size="0.81429375" layer="27">>VALUE</text> +<circle x="-5.8" y="2.8" radius="0.1" width="0.2" layer="21"/> +<circle x="-5.8" y="2.8" radius="0.1" width="0.2" layer="51"/> +<smd name="1" x="-4.18" y="2.8" dx="1.6" dy="0.55" layer="1" roundness="25"/> +<smd name="2" x="-4.18" y="2" dx="1.6" dy="0.55" layer="1" roundness="25"/> +<smd name="3" x="-4.18" y="1.2" dx="1.6" dy="0.55" layer="1" roundness="25"/> +<smd name="4" x="-4.18" y="0.4" dx="1.6" dy="0.55" layer="1" roundness="25"/> +<smd name="5" x="-4.18" y="-0.4" dx="1.6" dy="0.55" layer="1" roundness="25"/> +<smd name="6" x="-4.18" y="-1.2" dx="1.6" dy="0.55" layer="1" roundness="25"/> +<smd name="7" x="-4.18" y="-2" dx="1.6" dy="0.55" layer="1" roundness="25"/> +<smd name="8" x="-4.18" y="-2.8" dx="1.6" dy="0.55" layer="1" roundness="25"/> +<smd name="9" x="-2.8" y="-4.18" dx="1.6" dy="0.55" layer="1" roundness="25" rot="R90"/> +<smd name="10" x="-2" y="-4.18" dx="1.6" dy="0.55" layer="1" roundness="25" rot="R90"/> +<smd name="11" x="-1.2" y="-4.18" dx="1.6" dy="0.55" layer="1" roundness="25" rot="R90"/> +<smd name="12" x="-0.4" y="-4.18" dx="1.6" dy="0.55" layer="1" roundness="25" rot="R90"/> +<smd name="13" x="0.4" y="-4.18" dx="1.6" dy="0.55" layer="1" roundness="25" rot="R90"/> +<smd name="14" x="1.2" y="-4.18" dx="1.6" dy="0.55" layer="1" roundness="25" rot="R90"/> +<smd name="15" x="2" y="-4.18" dx="1.6" dy="0.55" layer="1" roundness="25" rot="R90"/> +<smd name="16" x="2.8" y="-4.18" dx="1.6" dy="0.55" layer="1" roundness="25" rot="R90"/> +<smd name="17" x="4.18" y="-2.8" dx="1.6" dy="0.55" layer="1" roundness="25" rot="R180"/> +<smd name="18" x="4.18" y="-2" dx="1.6" dy="0.55" layer="1" roundness="25" rot="R180"/> +<smd name="19" x="4.18" y="-1.2" dx="1.6" dy="0.55" layer="1" roundness="25" rot="R180"/> +<smd name="20" x="4.18" y="-0.4" dx="1.6" dy="0.55" layer="1" roundness="25" rot="R180"/> +<smd name="21" x="4.18" y="0.4" dx="1.6" dy="0.55" layer="1" roundness="25" rot="R180"/> +<smd name="22" x="4.18" y="1.2" dx="1.6" dy="0.55" layer="1" roundness="25" rot="R180"/> +<smd name="23" x="4.18" y="2" dx="1.6" dy="0.55" layer="1" roundness="25" rot="R180"/> +<smd name="24" x="4.18" y="2.8" dx="1.6" dy="0.55" layer="1" roundness="25" rot="R180"/> +<smd name="25" x="2.8" y="4.18" dx="1.6" dy="0.55" layer="1" roundness="25" rot="R270"/> +<smd name="26" x="2" y="4.18" dx="1.6" dy="0.55" layer="1" roundness="25" rot="R270"/> +<smd name="27" x="1.2" y="4.18" dx="1.6" dy="0.55" layer="1" roundness="25" rot="R270"/> +<smd name="28" x="0.4" y="4.18" dx="1.6" dy="0.55" layer="1" roundness="25" rot="R270"/> +<smd name="29" x="-0.4" y="4.18" dx="1.6" dy="0.55" layer="1" roundness="25" rot="R270"/> +<smd name="30" x="-1.2" y="4.18" dx="1.6" dy="0.55" layer="1" roundness="25" rot="R270"/> +<smd name="31" x="-2" y="4.18" dx="1.6" dy="0.55" layer="1" roundness="25" rot="R270"/> +<smd name="32" x="-2.8" y="4.18" dx="1.6" dy="0.55" layer="1" roundness="25" rot="R270"/> +</package> +<package name="QFN-64-9X9MM-SMALLPAD"> +<description><h3>64-pin QFN 9x9mm, 0.5mm pitch</h3> +<p>Package used by ATmega128RFA1</p> +<p><a href="http://www.atmel.com/Images/Atmel-8266-MCU_Wireless-ATmega128RFA1_Datasheet.pdf">Example Datasheet</a></p></description> +<wire x1="-4.492" y1="-4.5" x2="4.508" y2="-4.5" width="0.09" layer="51"/> +<wire x1="4.508" y1="-4.5" x2="4.508" y2="4.5" width="0.09" layer="51"/> +<wire x1="4.508" y1="4.5" x2="-4.492" y2="4.5" width="0.09" layer="51"/> +<wire x1="-4.492" y1="4.5" x2="-4.492" y2="-4.5" width="0.09" layer="51"/> +<wire x1="-4.6" y1="4.6" x2="-4.6" y2="4.1" width="0.2032" layer="21"/> +<wire x1="-4.6" y1="4.6" x2="-4.1" y2="4.6" width="0.2032" layer="21"/> +<wire x1="4.6" y1="4.6" x2="4.1" y2="4.6" width="0.2032" layer="21"/> +<wire x1="4.6" y1="4.6" x2="4.6" y2="4.1" width="0.2032" layer="21"/> +<circle x="-4.842" y="4.85" radius="0.2" width="0" layer="21"/> +<circle x="-3.442" y="3.45" radius="0.2" width="0.09" layer="51"/> +<smd name="26" x="0.75" y="-4.5" dx="0.275" dy="0.7" layer="1" rot="R180"/> +<smd name="25" x="0.25" y="-4.5" dx="0.275" dy="0.7" layer="1" rot="R180"/> +<smd name="24" x="-0.25" y="-4.5" dx="0.275" dy="0.7" layer="1" rot="R180"/> +<smd name="27" x="1.25" y="-4.5" dx="0.275" dy="0.7" layer="1" rot="R180"/> +<smd name="28" x="1.75" y="-4.5" dx="0.275" dy="0.7" layer="1" rot="R180"/> +<smd name="23" x="-0.75" y="-4.5" dx="0.275" dy="0.7" layer="1" rot="R180"/> +<smd name="22" x="-1.25" y="-4.5" dx="0.275" dy="0.7" layer="1" rot="R180"/> +<smd name="21" x="-1.75" y="-4.5" dx="0.275" dy="0.7" layer="1" rot="R180"/> +<smd name="6" x="-4.5" y="1.25" dx="0.275" dy="0.7" layer="1" rot="R270"/> +<smd name="5" x="-4.5" y="1.75" dx="0.275" dy="0.7" layer="1" rot="R270"/> +<smd name="4" x="-4.5" y="2.25" dx="0.275" dy="0.7" layer="1" rot="R270"/> +<smd name="7" x="-4.5" y="0.75" dx="0.275" dy="0.7" layer="1" rot="R270"/> +<smd name="8" x="-4.5" y="0.25" dx="0.275" dy="0.7" layer="1" rot="R270"/> +<smd name="3" x="-4.5" y="2.75" dx="0.275" dy="0.7" layer="1" rot="R270"/> +<smd name="2" x="-4.5" y="3.25" dx="0.275" dy="0.7" layer="1" rot="R270"/> +<smd name="9" x="-4.5" y="-0.25" dx="0.275" dy="0.7" layer="1" rot="R270"/> +<smd name="10" x="-4.5" y="-0.75" dx="0.275" dy="0.7" layer="1" rot="R270"/> +<smd name="1" x="-4.5" y="3.75" dx="0.275" dy="0.7" layer="1" rot="R270"/> +<smd name="16" x="-4.5" y="-3.75" dx="0.275" dy="0.7" layer="1" rot="R90"/> +<smd name="15" x="-4.5" y="-3.25" dx="0.275" dy="0.7" layer="1" rot="R90"/> +<smd name="14" x="-4.5" y="-2.75" dx="0.275" dy="0.7" layer="1" rot="R270"/> +<smd name="17" x="-3.75" y="-4.5" dx="0.275" dy="0.7" layer="1" rot="R180"/> +<smd name="18" x="-3.25" y="-4.5" dx="0.275" dy="0.7" layer="1" rot="R180"/> +<smd name="13" x="-4.5" y="-2.25" dx="0.275" dy="0.7" layer="1" rot="R270"/> +<smd name="12" x="-4.5" y="-1.75" dx="0.275" dy="0.7" layer="1" rot="R270"/> +<smd name="19" x="-2.75" y="-4.5" dx="0.275" dy="0.7" layer="1" rot="R180"/> +<smd name="20" x="-2.25" y="-4.5" dx="0.275" dy="0.7" layer="1" rot="R180"/> +<smd name="11" x="-4.5" y="-1.25" dx="0.275" dy="0.7" layer="1" rot="R270"/> +<smd name="29" x="2.25" y="-4.5" dx="0.275" dy="0.7" layer="1"/> +<smd name="30" x="2.75" y="-4.5" dx="0.275" dy="0.7" layer="1"/> +<smd name="31" x="3.25" y="-4.5" dx="0.275" dy="0.7" layer="1"/> +<smd name="32" x="3.75" y="-4.5" dx="0.275" dy="0.7" layer="1"/> +<smd name="33" x="4.5" y="-3.75" dx="0.275" dy="0.7" layer="1" rot="R90"/> +<smd name="34" x="4.5" y="-3.25" dx="0.275" dy="0.7" layer="1" rot="R90"/> +<smd name="35" x="4.5" y="-2.75" dx="0.275" dy="0.7" layer="1" rot="R90"/> +<smd name="36" x="4.5" y="-2.25" dx="0.275" dy="0.7" layer="1" rot="R90"/> +<smd name="37" x="4.5" y="-1.75" dx="0.275" dy="0.7" layer="1" rot="R90"/> +<smd name="38" x="4.5" y="-1.25" dx="0.275" dy="0.7" layer="1" rot="R90"/> +<smd name="39" x="4.5" y="-0.75" dx="0.275" dy="0.7" layer="1" rot="R90"/> +<smd name="40" x="4.5" y="-0.25" dx="0.275" dy="0.7" layer="1" rot="R90"/> +<smd name="41" x="4.5" y="0.25" dx="0.275" dy="0.7" layer="1" rot="R90"/> +<smd name="42" x="4.5" y="0.75" dx="0.275" dy="0.7" layer="1" rot="R90"/> +<smd name="43" x="4.5" y="1.25" dx="0.275" dy="0.7" layer="1" rot="R90"/> +<smd name="44" x="4.5" y="1.75" dx="0.275" dy="0.7" layer="1" rot="R90"/> +<smd name="45" x="4.5" y="2.25" dx="0.275" dy="0.7" layer="1" rot="R90"/> +<smd name="46" x="4.5" y="2.75" dx="0.275" dy="0.7" layer="1" rot="R90"/> +<smd name="47" x="4.5" y="3.25" dx="0.275" dy="0.7" layer="1" rot="R90"/> +<smd name="48" x="4.5" y="3.75" dx="0.275" dy="0.7" layer="1" rot="R90"/> +<smd name="49" x="3.75" y="4.5" dx="0.275" dy="0.7" layer="1"/> +<smd name="50" x="3.25" y="4.5" dx="0.275" dy="0.7" layer="1"/> +<smd name="51" x="2.75" y="4.5" dx="0.275" dy="0.7" layer="1"/> +<smd name="52" x="2.25" y="4.5" dx="0.275" dy="0.7" layer="1"/> +<smd name="53" x="1.75" y="4.5" dx="0.275" dy="0.7" layer="1"/> +<smd name="54" x="1.25" y="4.5" dx="0.275" dy="0.7" layer="1"/> +<smd name="55" x="0.75" y="4.5" dx="0.275" dy="0.7" layer="1"/> +<smd name="56" x="0.25" y="4.5" dx="0.275" dy="0.7" layer="1"/> +<smd name="57" x="-0.25" y="4.5" dx="0.275" dy="0.7" layer="1"/> +<smd name="58" x="-0.75" y="4.5" dx="0.275" dy="0.7" layer="1"/> +<smd name="59" x="-1.25" y="4.5" dx="0.275" dy="0.7" layer="1"/> +<smd name="60" x="-1.75" y="4.5" dx="0.275" dy="0.7" layer="1"/> +<smd name="61" x="-2.25" y="4.5" dx="0.275" dy="0.7" layer="1"/> +<smd name="62" x="-2.75" y="4.5" dx="0.275" dy="0.7" layer="1"/> +<smd name="63" x="-3.25" y="4.5" dx="0.275" dy="0.7" layer="1"/> +<smd name="64" x="-3.75" y="4.5" dx="0.275" dy="0.7" layer="1"/> +<text x="0" y="1.27" size="0.6096" layer="25" font="vector" ratio="20" align="bottom-center">>NAME</text> +<text x="0" y="-1.27" size="0.6096" layer="27" font="vector" ratio="20" align="top-center">>VALUE</text> +<wire x1="4.6" y1="-4.6" x2="4.1" y2="-4.6" width="0.2032" layer="21"/> +<wire x1="4.6" y1="-4.6" x2="4.6" y2="-4.1" width="0.2032" layer="21"/> +<wire x1="-4.6" y1="-4.6" x2="-4.6" y2="-4.1" width="0.2032" layer="21"/> +<wire x1="-4.6" y1="-4.6" x2="-4.1" y2="-4.6" width="0.2032" layer="21"/> +<smd name="P$1" x="0" y="0" dx="4.8" dy="4.8" layer="1" cream="no"/> +<polygon width="0.127" layer="31"> +<vertex x="1.03" y="1.03"/> +<vertex x="1.03" y="2.17"/> +<vertex x="2.17" y="2.17"/> +<vertex x="2.17" y="1.03"/> +</polygon> +<polygon width="0.127" layer="31"> +<vertex x="-2.17" y="1.03"/> +<vertex x="-2.17" y="2.17"/> +<vertex x="-1.03" y="2.17"/> +<vertex x="-1.03" y="1.03"/> +</polygon> +<polygon width="0.127" layer="31"> +<vertex x="-2.17" y="-2.17"/> +<vertex x="-2.17" y="-1.03"/> +<vertex x="-1.03" y="-1.03"/> +<vertex x="-1.03" y="-2.17"/> +</polygon> +<polygon width="0.127" layer="31"> +<vertex x="1.03" y="-2.17"/> +<vertex x="1.03" y="-1.03"/> +<vertex x="2.17" y="-1.03"/> +<vertex x="2.17" y="-2.17"/> +</polygon> +<polygon width="0.127" layer="31"> +<vertex x="-0.57" y="-0.57"/> +<vertex x="-0.57" y="0.57"/> +<vertex x="0.57" y="0.57"/> +<vertex x="0.57" y="-0.57"/> +</polygon> +</package> +</packages> +<symbols> +<symbol name="ATSAMD21E18A-AF"> +<wire x1="22.86" y1="-33.02" x2="-20.32" y2="-33.02" width="0.254" layer="94"/> +<wire x1="-20.32" y1="-33.02" x2="-20.32" y2="35.56" width="0.254" layer="94"/> +<wire x1="-20.32" y1="35.56" x2="22.86" y2="35.56" width="0.254" layer="94"/> +<wire x1="22.86" y1="35.56" x2="22.86" y2="-33.02" width="0.254" layer="94"/> +<text x="-20.3338" y="35.5978" size="1.780409375" layer="95">>NAME</text> +<text x="-20.338" y="-35.614" size="1.78115" layer="96">>VALUE</text> +<pin name="PA00" x="27.94" y="33.02" length="middle" rot="R180"/> +<pin name="PA01" x="27.94" y="30.48" length="middle" rot="R180"/> +<pin name="PA02" x="27.94" y="27.94" length="middle" rot="R180"/> +<pin name="PA03" x="27.94" y="25.4" length="middle" rot="R180"/> +<pin name="PA04" x="27.94" y="22.86" length="middle" rot="R180"/> +<pin name="PA05" x="27.94" y="20.32" length="middle" rot="R180"/> +<pin name="PA06" x="27.94" y="17.78" length="middle" rot="R180"/> +<pin name="PA07" x="27.94" y="15.24" length="middle" rot="R180"/> +<pin name="VDDANA" x="-25.4" y="25.4" length="middle" direction="pwr"/> +<pin name="GND" x="-25.4" y="-30.48" length="middle" direction="pwr"/> +<pin name="PA08" x="27.94" y="12.7" length="middle" rot="R180"/> +<pin name="PA09" x="27.94" y="10.16" length="middle" rot="R180"/> +<pin name="PA10" x="27.94" y="7.62" length="middle" rot="R180"/> +<pin name="PA11" x="27.94" y="5.08" length="middle" rot="R180"/> +<pin name="PA14" x="27.94" y="2.54" length="middle" rot="R180"/> +<pin name="PA15" x="27.94" y="0" length="middle" rot="R180"/> +<pin name="PA16" x="27.94" y="-2.54" length="middle" rot="R180"/> +<pin name="PA17" x="27.94" y="-5.08" length="middle" rot="R180"/> +<pin name="PA18" x="27.94" y="-7.62" length="middle" rot="R180"/> +<pin name="PA19" x="27.94" y="-10.16" length="middle" rot="R180"/> +<pin name="PA22" x="27.94" y="-12.7" length="middle" rot="R180"/> +<pin name="PA23" x="27.94" y="-15.24" length="middle" rot="R180"/> +<pin name="PA24" x="27.94" y="-17.78" length="middle" rot="R180"/> +<pin name="PA25" x="27.94" y="-20.32" length="middle" rot="R180"/> +<pin name="PA27" x="27.94" y="-22.86" length="middle" rot="R180"/> +<pin name="!RESET" x="-25.4" y="-17.78" length="middle" direction="in"/> +<pin name="PA28" x="27.94" y="-25.4" length="middle" rot="R180"/> +<pin name="VDDCORE" x="-25.4" y="17.78" length="middle" direction="pwr"/> +<pin name="VDDIN" x="-25.4" y="33.02" length="middle" direction="pwr"/> +<pin name="PA30" x="27.94" y="-27.94" length="middle" rot="R180"/> +<pin name="PA31" x="27.94" y="-30.48" length="middle" rot="R180"/> +</symbol> +<symbol name="ATSAMD51J"> +<pin name="GND" x="-35.56" y="-132.08" length="middle"/> +<pin name="VDDCORE" x="-35.56" y="-45.72" length="middle"/> +<pin name="VDDANA" x="-35.56" y="-15.24" length="middle"/> +<pin name="VDDIO" x="-35.56" y="0" length="middle"/> +<pin name="PA00/XIN32/SER1-0/TC2-0" x="43.18" y="0" length="middle" rot="R180"/> +<pin name="PA01/XOUT32/SER1-1/TC2-1" x="43.18" y="-2.54" length="middle" rot="R180"/> +<pin name="PA02/ADC0-1/DAC-0" x="43.18" y="-5.08" length="middle" rot="R180"/> +<pin name="PA03/ANAREF-VREFA/ADC0-1" x="43.18" y="-7.62" length="middle" rot="R180"/> +<pin name="PA04/ANAREF-VREFB/ADC0-4/SER0-0/TC0-0" x="43.18" y="-10.16" length="middle" rot="R180"/> +<pin name="PA05/ADC0-5/DAC-1/SER0-1/TC0-1" x="43.18" y="-12.7" length="middle" rot="R180"/> +<pin name="PA06/ANAREF-VREFC/ADC0-6/SER0-2/TC1-0" x="43.18" y="-15.24" length="middle" rot="R180"/> +<pin name="PA07/ADC0-7/SER0-3/TC1-1" x="43.18" y="-17.78" length="middle" rot="R180"/> +<pin name="PA08/ADC0-8/ADC1-2/SER0-0/SER2-1/TC0-0/TCC0-0" x="43.18" y="-20.32" length="middle" rot="R180"/> +<pin name="PA09/ADC0-9/ADC1-3/SER0-1/SER2-0/TC0-1/TCC0-1" x="43.18" y="-22.86" length="middle" rot="R180"/> +<pin name="PA10/ADC0-10/SER0-2/SER2-2/TC1-0/TCC0-2" x="43.18" y="-25.4" length="middle" rot="R180"/> +<pin name="PA11/ADC0-11/SER0-3/SER2-3/TC1-1/TCC0-3" x="43.18" y="-27.94" length="middle" rot="R180"/> +<pin name="PA12/SER2-0/SER4-1/TC2-0/TCC0-6" x="43.18" y="-30.48" length="middle" rot="R180"/> +<pin name="PA13/SER2-1/SER4-0/TC2-1/TCC0-7" x="43.18" y="-33.02" length="middle" rot="R180"/> +<pin name="PA14/XIN0/SER2-2/SER4-2/TC3-0" x="43.18" y="-35.56" length="middle" rot="R180"/> +<pin name="PA15/XOUT0/SER2-3/SER4-3/TC3-1" x="43.18" y="-38.1" length="middle" rot="R180"/> +<pin name="PA16/SER1-0/SER3-1/TC2-0/TCC0-4" x="43.18" y="-40.64" length="middle" rot="R180"/> +<pin name="PA17/SER1-1/SER3-0/TC2-1/TCC0-5" x="43.18" y="-43.18" length="middle" rot="R180"/> +<pin name="PA18/SER1-2/SER3-2/TC3-0" x="43.18" y="-45.72" length="middle" rot="R180"/> +<pin name="PA19/SER1-3/SER3-3/TC3-1" x="43.18" y="-48.26" length="middle" rot="R180"/> +<pin name="PA20/SER5-2/SER3-2/TC7-0" x="43.18" y="-50.8" length="middle" rot="R180"/> +<pin name="PA21/SER5-3/SER3-3/TC7-1" x="43.18" y="-53.34" length="middle" rot="R180"/> +<pin name="PA22/SER3-0/SER5-1/TC4-0" x="43.18" y="-55.88" length="middle" rot="R180"/> +<pin name="PA23/SER3-1/SER5-0/TC4-1" x="43.18" y="-58.42" length="middle" rot="R180"/> +<pin name="PA24/SER3-2/SER5-2/TC5-0/PDEC0-0/USBDM" x="43.18" y="-60.96" length="middle" rot="R180"/> +<pin name="PA25/SER3-3/SER5-3/TC5-1/PDEC0-1/USBDP" x="43.18" y="-63.5" length="middle" rot="R180"/> +<pin name="PA27/GCLK-1" x="43.18" y="-66.04" length="middle" rot="R180"/> +<pin name="PA30/SER7-2/SER1-2/TC6-0/SWCLK" x="43.18" y="-68.58" length="middle" rot="R180"/> +<pin name="PA31/SER7-3/SER1-3/TC6-1/SWDIO" x="43.18" y="-71.12" length="middle" rot="R180"/> +<pin name="PB00/ADC0-12/SER5-2/TC7-0" x="43.18" y="-78.74" length="middle" rot="R180"/> +<pin name="PB01/ADC0-13/SER5-3/TC7-1" x="43.18" y="-81.28" length="middle" rot="R180"/> +<pin name="PB03/ADC0/SER5-1/TC6" x="43.18" y="-86.36" length="middle" rot="R180"/> +<pin name="PB04/ADC1-6" x="43.18" y="-88.9" length="middle" rot="R180"/> +<pin name="PB05/ADC1-7" x="43.18" y="-91.44" length="middle" rot="R180"/> +<pin name="PB06/ADC1-8" x="43.18" y="-93.98" length="middle" rot="R180"/> +<pin name="PB07/ADC1-9" x="43.18" y="-96.52" length="middle" rot="R180"/> +<pin name="PB08/ADC0-2/ADC1-9/SER4-0/TC4-0" x="43.18" y="-99.06" length="middle" rot="R180"/> +<pin name="PB09/ADC0-3/ADC1-1/SER4-1/TC4-1" x="43.18" y="-101.6" length="middle" rot="R180"/> +<pin name="PB10/SER4-2/TC5-0/TCC0-4" x="43.18" y="-104.14" length="middle" rot="R180"/> +<pin name="PB11/SER4-3/TC5-1/TCC0-5" x="43.18" y="-106.68" length="middle" rot="R180"/> +<pin name="PB12/SER4-0/TC4-0" x="43.18" y="-109.22" length="middle" rot="R180"/> +<pin name="PB13/SER4-1/TC4-1" x="43.18" y="-111.76" length="middle" rot="R180"/> +<pin name="PB14/SER4-2/TC5-0" x="43.18" y="-114.3" length="middle" rot="R180"/> +<pin name="PB15/SER4-3/TC5-1" x="43.18" y="-116.84" length="middle" rot="R180"/> +<pin name="PB16/SER5-0/TC6-0" x="43.18" y="-119.38" length="middle" rot="R180"/> +<pin name="PB17/SER5-1/TC6-1" x="43.18" y="-121.92" length="middle" rot="R180"/> +<pin name="PB22/XIN1/SER1-2/SER5-2/PDEC0-2/TC7-0" x="43.18" y="-124.46" length="middle" rot="R180"/> +<pin name="PB23/XOUT1/SER1-3/SER5-3/TC7-1" x="43.18" y="-127" length="middle" rot="R180"/> +<pin name="PB30/SER7-0/SER5-1/TC0-0/SWO" x="43.18" y="-129.54" length="middle" rot="R180"/> +<pin name="RESETN" x="-35.56" y="-119.38" length="middle"/> +<pin name="PB31/SER7-1/SER5-0/TC0-1" x="43.18" y="-132.08" length="middle" rot="R180"/> +<pin name="PB02/ADC0-14/SER5-0/TC6-0" x="43.18" y="-83.82" length="middle" rot="R180"/> +<wire x1="-30.48" y1="5.08" x2="38.1" y2="5.08" width="0.254" layer="94"/> +<wire x1="38.1" y1="5.08" x2="38.1" y2="-137.16" width="0.254" layer="94"/> +<wire x1="38.1" y1="-137.16" x2="-30.48" y2="-137.16" width="0.254" layer="94"/> +<wire x1="-30.48" y1="-137.16" x2="-30.48" y2="5.08" width="0.254" layer="94"/> +<text x="-5.08" y="7.62" size="1.778" layer="95">>NAME</text> +<text x="-5.08" y="-142.24" size="1.778" layer="96">>VALUE</text> +<pin name="VSW" x="-35.56" y="-30.48" length="middle"/> +</symbol> +</symbols> +<devicesets> +<deviceset name="ATSAMD21E18A-AF" prefix="U"> +<description>The SAM D21 is a series of low-power microcontrollers using the 32-bit ARM® + Cortex® +-M0+ processor, +and ranging from 32- to 64-pins with up to 256KB Flash and 32KB of SRAM. The SAM D21 operate at a +maximum frequency of 48MHz and reach 2.46 CoreMark® +/MHz. <a href="https://pricing.snapeda.com/parts/ATSAMD21E18A-AF/Microchip/view-part?ref=eda">Check prices</a></description> +<gates> +<gate name="G$1" symbol="ATSAMD21E18A-AF" x="0" y="0"/> +</gates> +<devices> +<device name="" package="QFP80P900X900X120-32N"> +<connects> +<connect gate="G$1" pin="!RESET" pad="26"/> +<connect gate="G$1" pin="GND" pad="10 28"/> +<connect gate="G$1" pin="PA00" pad="1"/> +<connect gate="G$1" pin="PA01" pad="2"/> +<connect gate="G$1" pin="PA02" pad="3"/> +<connect gate="G$1" pin="PA03" pad="4"/> +<connect gate="G$1" pin="PA04" pad="5"/> +<connect gate="G$1" pin="PA05" pad="6"/> +<connect gate="G$1" pin="PA06" pad="7"/> +<connect gate="G$1" pin="PA07" pad="8"/> +<connect gate="G$1" pin="PA08" pad="11"/> +<connect gate="G$1" pin="PA09" pad="12"/> +<connect gate="G$1" pin="PA10" pad="13"/> +<connect gate="G$1" pin="PA11" pad="14"/> +<connect gate="G$1" pin="PA14" pad="15"/> +<connect gate="G$1" pin="PA15" pad="16"/> +<connect gate="G$1" pin="PA16" pad="17"/> +<connect gate="G$1" pin="PA17" pad="18"/> +<connect gate="G$1" pin="PA18" pad="19"/> +<connect gate="G$1" pin="PA19" pad="20"/> +<connect gate="G$1" pin="PA22" pad="21"/> +<connect gate="G$1" pin="PA23" pad="22"/> +<connect gate="G$1" pin="PA24" pad="23"/> +<connect gate="G$1" pin="PA25" pad="24"/> +<connect gate="G$1" pin="PA27" pad="25"/> +<connect gate="G$1" pin="PA28" pad="27"/> +<connect gate="G$1" pin="PA30" pad="31"/> +<connect gate="G$1" pin="PA31" pad="32"/> +<connect gate="G$1" pin="VDDANA" pad="9"/> +<connect gate="G$1" pin="VDDCORE" pad="29"/> +<connect gate="G$1" pin="VDDIN" pad="30"/> +</connects> +<technologies> +<technology name=""> +<attribute name="AVAILABILITY" value="Warning"/> +<attribute name="DESCRIPTION" value=" ARM® Cortex®-M0+ Automotive, AEC-Q100, SAM D21E, Functional Safety (FuSa) Microcontroller IC 32-Bit 48MHz 256KB (256K x 8) FLASH 32-TQFP (7x7) "/> +<attribute name="MF" value="Microchip"/> +<attribute name="MP" value="ATSAMD21E18A-AF"/> +<attribute name="PACKAGE" value="TQFP-32 Microchip"/> +<attribute name="PRICE" value="None"/> +<attribute name="PURCHASE-URL" value="https://pricing.snapeda.com/search/part/ATSAMD21E18A-AF/?ref=eda"/> +</technology> +</technologies> +</device> +</devices> +</deviceset> +<deviceset name="ATSAMD51J" prefix="U"> +<gates> +<gate name="G$1" symbol="ATSAMD51J" x="0" y="0"/> +</gates> +<devices> +<device name="QFN64" package="QFN-64-9X9MM-SMALLPAD"> +<connects> +<connect gate="G$1" pin="GND" pad="7 22 33 47 54 P$1"/> +<connect gate="G$1" pin="PA00/XIN32/SER1-0/TC2-0" pad="1"/> +<connect gate="G$1" pin="PA01/XOUT32/SER1-1/TC2-1" pad="2"/> +<connect gate="G$1" pin="PA02/ADC0-1/DAC-0" pad="3"/> +<connect gate="G$1" pin="PA03/ANAREF-VREFA/ADC0-1" pad="4"/> +<connect gate="G$1" pin="PA04/ANAREF-VREFB/ADC0-4/SER0-0/TC0-0" pad="13"/> +<connect gate="G$1" pin="PA05/ADC0-5/DAC-1/SER0-1/TC0-1" pad="14"/> +<connect gate="G$1" pin="PA06/ANAREF-VREFC/ADC0-6/SER0-2/TC1-0" pad="15"/> +<connect gate="G$1" pin="PA07/ADC0-7/SER0-3/TC1-1" pad="16"/> +<connect gate="G$1" pin="PA08/ADC0-8/ADC1-2/SER0-0/SER2-1/TC0-0/TCC0-0" pad="17"/> +<connect gate="G$1" pin="PA09/ADC0-9/ADC1-3/SER0-1/SER2-0/TC0-1/TCC0-1" pad="18"/> +<connect gate="G$1" pin="PA10/ADC0-10/SER0-2/SER2-2/TC1-0/TCC0-2" pad="19"/> +<connect gate="G$1" pin="PA11/ADC0-11/SER0-3/SER2-3/TC1-1/TCC0-3" pad="20"/> +<connect gate="G$1" pin="PA12/SER2-0/SER4-1/TC2-0/TCC0-6" pad="29"/> +<connect gate="G$1" pin="PA13/SER2-1/SER4-0/TC2-1/TCC0-7" pad="30"/> +<connect gate="G$1" pin="PA14/XIN0/SER2-2/SER4-2/TC3-0" pad="31"/> +<connect gate="G$1" pin="PA15/XOUT0/SER2-3/SER4-3/TC3-1" pad="32"/> +<connect gate="G$1" pin="PA16/SER1-0/SER3-1/TC2-0/TCC0-4" pad="35"/> +<connect gate="G$1" pin="PA17/SER1-1/SER3-0/TC2-1/TCC0-5" pad="36"/> +<connect gate="G$1" pin="PA18/SER1-2/SER3-2/TC3-0" pad="37"/> +<connect gate="G$1" pin="PA19/SER1-3/SER3-3/TC3-1" pad="38"/> +<connect gate="G$1" pin="PA20/SER5-2/SER3-2/TC7-0" pad="41"/> +<connect gate="G$1" pin="PA21/SER5-3/SER3-3/TC7-1" pad="42"/> +<connect gate="G$1" pin="PA22/SER3-0/SER5-1/TC4-0" pad="43"/> +<connect gate="G$1" pin="PA23/SER3-1/SER5-0/TC4-1" pad="44"/> +<connect gate="G$1" pin="PA24/SER3-2/SER5-2/TC5-0/PDEC0-0/USBDM" pad="45"/> +<connect gate="G$1" pin="PA25/SER3-3/SER5-3/TC5-1/PDEC0-1/USBDP" pad="46"/> +<connect gate="G$1" pin="PA27/GCLK-1" pad="51"/> +<connect gate="G$1" pin="PA30/SER7-2/SER1-2/TC6-0/SWCLK" pad="57"/> +<connect gate="G$1" pin="PA31/SER7-3/SER1-3/TC6-1/SWDIO" pad="58"/> +<connect gate="G$1" pin="PB00/ADC0-12/SER5-2/TC7-0" pad="61"/> +<connect gate="G$1" pin="PB01/ADC0-13/SER5-3/TC7-1" pad="62"/> +<connect gate="G$1" pin="PB02/ADC0-14/SER5-0/TC6-0" pad="63"/> +<connect gate="G$1" pin="PB03/ADC0/SER5-1/TC6" pad="64"/> +<connect gate="G$1" pin="PB04/ADC1-6" pad="5"/> +<connect gate="G$1" pin="PB05/ADC1-7" pad="6"/> +<connect gate="G$1" pin="PB06/ADC1-8" pad="9"/> +<connect gate="G$1" pin="PB07/ADC1-9" pad="10"/> +<connect gate="G$1" pin="PB08/ADC0-2/ADC1-9/SER4-0/TC4-0" pad="11"/> +<connect gate="G$1" pin="PB09/ADC0-3/ADC1-1/SER4-1/TC4-1" pad="12"/> +<connect gate="G$1" pin="PB10/SER4-2/TC5-0/TCC0-4" pad="23"/> +<connect gate="G$1" pin="PB11/SER4-3/TC5-1/TCC0-5" pad="24"/> +<connect gate="G$1" pin="PB12/SER4-0/TC4-0" pad="25"/> +<connect gate="G$1" pin="PB13/SER4-1/TC4-1" pad="26"/> +<connect gate="G$1" pin="PB14/SER4-2/TC5-0" pad="27"/> +<connect gate="G$1" pin="PB15/SER4-3/TC5-1" pad="28"/> +<connect gate="G$1" pin="PB16/SER5-0/TC6-0" pad="39"/> +<connect gate="G$1" pin="PB17/SER5-1/TC6-1" pad="40"/> +<connect gate="G$1" pin="PB22/XIN1/SER1-2/SER5-2/PDEC0-2/TC7-0" pad="49"/> +<connect gate="G$1" pin="PB23/XOUT1/SER1-3/SER5-3/TC7-1" pad="50"/> +<connect gate="G$1" pin="PB30/SER7-0/SER5-1/TC0-0/SWO" pad="59"/> +<connect gate="G$1" pin="PB31/SER7-1/SER5-0/TC0-1" pad="60"/> +<connect gate="G$1" pin="RESETN" pad="52"/> +<connect gate="G$1" pin="VDDANA" pad="8"/> +<connect gate="G$1" pin="VDDCORE" pad="53"/> +<connect gate="G$1" pin="VDDIO" pad="21 34 48 56"/> +<connect gate="G$1" pin="VSW" pad="55"/> +</connects> +<technologies> +<technology name=""/> +</technologies> +</device> +</devices> +</deviceset> +</devicesets> +</library> +</libraries> +<attributes> +</attributes> +<variantdefs> +</variantdefs> +<classes> +<class number="0" name="default" width="0" drill="0"> +</class> +</classes> +<parts> +<part name="J1" library="SparkFun-Connectors" deviceset="CORTEX_JTAG_DEBUG" device="_SMD" value="JTAG"/> +<part name="S1" library="passives" deviceset="2-8X4-5_SWITCH" device=""/> +<part name="C1" library="passives" deviceset="CAP" device="0805" value="10uF"/> +<part name="+3V1" library="supply1" deviceset="+3V3" device=""/> +<part name="P+1" library="supply1" deviceset="+5V" device=""/> +<part name="GND1" library="supply1" deviceset="GND" device=""/> +<part name="U2" library="power" deviceset="VREG-AP2112" device=""/> +<part name="C4" library="passives" deviceset="CAP" device="0805" value="1uF"/> +<part name="C5" library="passives" deviceset="CAP" device="0805" value="10uF"/> +<part name="GND4" library="supply1" deviceset="GND" device=""/> +<part name="C6" library="passives" deviceset="CAP" device="0805" value="0.1uF"/> +<part name="+3V2" library="supply1" deviceset="+3V3" device=""/> +<part name="GND5" library="supply1" deviceset="GND" device=""/> +<part name="GND6" library="supply1" deviceset="GND" device=""/> +<part name="R2" library="passives" deviceset="RESISTOR" device="0805-RES" value="10k"/> +<part name="+3V3" library="supply1" deviceset="+3V3" device=""/> +<part name="R3" library="passives" deviceset="RESISTOR" device="0805-RES" value="10k"/> +<part name="+3V4" library="supply1" deviceset="+3V3" device=""/> +<part name="GND7" library="supply1" deviceset="GND" device=""/> +<part name="+3V5" library="supply1" deviceset="+3V3" device=""/> +<part name="C7" library="passives" deviceset="CAP" device="0805" value="1uF"/> +<part name="X1" library="connector" deviceset="USB" device=""/> +<part name="P+2" library="supply1" deviceset="+5V" device=""/> +<part name="GND8" library="supply1" deviceset="GND" device=""/> +<part name="U1" library="microcontrollers" deviceset="ATSAMD21E18A-AF" device=""/> +<part name="U3" library="microcontrollers" deviceset="ATSAMD51J" device="QFN64"/> +</parts> +<sheets> +<sheet> +<plain> +</plain> +<instances> +<instance part="J1" gate="J1" x="-53.34" y="30.48" smashed="yes"> +<attribute name="NAME" x="-66.04" y="38.354" size="1.778" layer="95" font="vector"/> +<attribute name="VALUE" x="-66.04" y="20.574" size="1.778" layer="96" font="vector"/> +</instance> +<instance part="S1" gate="G$1" x="-20.32" y="17.78" smashed="yes"> +<attribute name="NAME" x="-26.67" y="15.24" size="1.778" layer="95" rot="R90"/> +<attribute name="VALUE" x="-38.1" y="7.62" size="1.778" layer="96"/> +</instance> +<instance part="C1" gate="G$1" x="-78.74" y="127" smashed="yes"> +<attribute name="NAME" x="-77.216" y="129.921" size="1.778" layer="95"/> +<attribute name="VALUE" x="-77.216" y="124.841" size="1.778" layer="96"/> +<attribute name="PACKAGE" x="-77.216" y="122.936" size="1.27" layer="97"/> +<attribute name="VOLTAGE" x="-77.216" y="121.158" size="1.27" layer="97"/> +<attribute name="TYPE" x="-77.216" y="119.38" size="1.27" layer="97"/> +</instance> +<instance part="+3V1" gate="G$1" x="-78.74" y="43.18" smashed="yes"> +<attribute name="VALUE" x="-81.28" y="38.1" size="1.778" layer="96" rot="R90"/> +</instance> +<instance part="P+1" gate="1" x="-78.74" y="152.4" smashed="yes"> +<attribute name="VALUE" x="-81.28" y="147.32" size="1.778" layer="96" rot="R90"/> +</instance> +<instance part="GND1" gate="1" x="-78.74" y="15.24" smashed="yes"> +<attribute name="VALUE" x="-81.28" y="12.7" size="1.778" layer="96"/> +</instance> +<instance part="U2" gate="G$1" x="-60.96" y="139.7" smashed="yes"> +<attribute name="NAME" x="-63.5" y="147.32" size="1.27" layer="95"/> +<attribute name="VALUE" x="-58.42" y="132.08" size="1.27" layer="96"/> +</instance> +<instance part="C4" gate="G$1" x="-7.62" y="93.98" smashed="yes"> +<attribute name="NAME" x="-6.096" y="96.901" size="1.778" layer="95"/> +<attribute name="VALUE" x="-6.096" y="91.821" size="1.778" layer="96"/> +<attribute name="PACKAGE" x="-6.096" y="89.916" size="1.27" layer="97"/> +<attribute name="VOLTAGE" x="-6.096" y="88.138" size="1.27" layer="97"/> +<attribute name="TYPE" x="-6.096" y="86.36" size="1.27" layer="97"/> +</instance> +<instance part="C5" gate="G$1" x="-20.32" y="93.98" smashed="yes"> +<attribute name="NAME" x="-18.796" y="96.901" size="1.778" layer="95"/> +<attribute name="VALUE" x="-18.796" y="91.821" size="1.778" layer="96"/> +<attribute name="PACKAGE" x="-18.796" y="89.916" size="1.27" layer="97"/> +<attribute name="VOLTAGE" x="-18.796" y="88.138" size="1.27" layer="97"/> +<attribute name="TYPE" x="-18.796" y="86.36" size="1.27" layer="97"/> +</instance> +<instance part="GND4" gate="1" x="-20.32" y="83.82" smashed="yes"> +<attribute name="VALUE" x="-22.86" y="81.28" size="1.778" layer="96"/> +</instance> +<instance part="C6" gate="G$1" x="-20.32" y="139.7" smashed="yes"> +<attribute name="NAME" x="-18.796" y="142.621" size="1.778" layer="95"/> +<attribute name="VALUE" x="-18.796" y="137.541" size="1.778" layer="96"/> +<attribute name="PACKAGE" x="-18.796" y="135.636" size="1.27" layer="97"/> +<attribute name="VOLTAGE" x="-18.796" y="133.858" size="1.27" layer="97"/> +<attribute name="TYPE" x="-18.796" y="132.08" size="1.27" layer="97"/> +</instance> +<instance part="+3V2" gate="G$1" x="-20.32" y="152.4" smashed="yes"> +<attribute name="VALUE" x="-22.86" y="147.32" size="1.778" layer="96" rot="R90"/> +</instance> +<instance part="GND5" gate="1" x="-20.32" y="129.54" smashed="yes"> +<attribute name="VALUE" x="-22.86" y="127" size="1.778" layer="96"/> +</instance> +<instance part="GND6" gate="1" x="-5.08" y="5.08" smashed="yes"> +<attribute name="VALUE" x="-7.62" y="2.54" size="1.778" layer="96"/> +</instance> +<instance part="R2" gate="G$1" x="-5.08" y="40.64" smashed="yes" rot="R270"> +<attribute name="NAME" x="-3.5814" y="44.45" size="1.778" layer="95" rot="R270"/> +<attribute name="VALUE" x="-8.382" y="44.45" size="1.778" layer="96" rot="R270"/> +<attribute name="PRECISION" x="-11.938" y="44.45" size="1.27" layer="97" rot="R270"/> +<attribute name="PACKAGE" x="-10.16" y="44.45" size="1.27" layer="97" rot="R270"/> +</instance> +<instance part="+3V3" gate="G$1" x="-5.08" y="53.34" smashed="yes"> +<attribute name="VALUE" x="-7.62" y="48.26" size="1.778" layer="96" rot="R90"/> +</instance> +<instance part="R3" gate="G$1" x="-20.32" y="40.64" smashed="yes" rot="R270"> +<attribute name="NAME" x="-18.8214" y="44.45" size="1.778" layer="95" rot="R270"/> +<attribute name="VALUE" x="-23.622" y="44.45" size="1.778" layer="96" rot="R270"/> +<attribute name="PRECISION" x="-27.178" y="44.45" size="1.27" layer="97" rot="R270"/> +<attribute name="PACKAGE" x="-25.4" y="44.45" size="1.27" layer="97" rot="R270"/> +</instance> +<instance part="+3V4" gate="G$1" x="-20.32" y="53.34" smashed="yes"> +<attribute name="VALUE" x="-22.86" y="48.26" size="1.778" layer="96" rot="R90"/> +</instance> +<instance part="GND7" gate="1" x="-60.96" y="116.84" smashed="yes"> +<attribute name="VALUE" x="-63.5" y="114.3" size="1.778" layer="96"/> +</instance> +<instance part="+3V5" gate="G$1" x="-43.18" y="152.4" smashed="yes"> +<attribute name="VALUE" x="-45.72" y="147.32" size="1.778" layer="96" rot="R90"/> +</instance> +<instance part="C7" gate="G$1" x="-43.18" y="127" smashed="yes"> +<attribute name="NAME" x="-41.656" y="129.921" size="1.778" layer="95"/> +<attribute name="VALUE" x="-41.656" y="124.841" size="1.778" layer="96"/> +<attribute name="PACKAGE" x="-41.656" y="122.936" size="1.27" layer="97"/> +<attribute name="VOLTAGE" x="-41.656" y="121.158" size="1.27" layer="97"/> +<attribute name="TYPE" x="-41.656" y="119.38" size="1.27" layer="97"/> +</instance> +<instance part="X1" gate="G$1" x="-76.2" y="60.96" smashed="yes" rot="R270"> +<attribute name="NAME" x="-78.105" y="65.405" size="1.27" layer="95" font="vector"/> +<attribute name="VALUE" x="-78.105" y="52.705" size="1.27" layer="96" font="vector"/> +</instance> +<instance part="P+2" gate="1" x="-48.26" y="68.58" smashed="yes"> +<attribute name="VALUE" x="-48.26" y="71.12" size="1.778" layer="96" rot="R90"/> +</instance> +<instance part="GND8" gate="1" x="-55.88" y="68.58" smashed="yes" rot="R180"> +<attribute name="VALUE" x="-53.34" y="71.12" size="1.778" layer="96" rot="R180"/> +</instance> +<instance part="U1" gate="G$1" x="27.94" y="43.18" smashed="yes"> +<attribute name="NAME" x="7.6062" y="78.7778" size="1.780409375" layer="95"/> +<attribute name="VALUE" x="7.602" y="7.566" size="1.78115" layer="96"/> +</instance> +<instance part="U3" gate="G$1" x="149.86" y="147.32" smashed="yes"> +<attribute name="NAME" x="144.78" y="154.94" size="1.778" layer="95"/> +<attribute name="VALUE" x="144.78" y="5.08" size="1.778" layer="96"/> +</instance> +</instances> +<busses> +</busses> +<nets> +<net name="GND" class="0"> +<segment> +<pinref part="GND1" gate="1" pin="GND"/> +<wire x1="-78.74" y1="17.78" x2="-78.74" y2="25.4" width="0.1524" layer="91"/> +<wire x1="-78.74" y1="25.4" x2="-78.74" y2="30.48" width="0.1524" layer="91"/> +<wire x1="-78.74" y1="30.48" x2="-78.74" y2="33.02" width="0.1524" layer="91"/> +<pinref part="J1" gate="J1" pin="GND@3"/> +<wire x1="-68.58" y1="33.02" x2="-78.74" y2="33.02" width="0.1524" layer="91"/> +<pinref part="J1" gate="J1" pin="GND@5"/> +<wire x1="-68.58" y1="30.48" x2="-78.74" y2="30.48" width="0.1524" layer="91"/> +<junction x="-78.74" y="30.48"/> +<pinref part="J1" gate="J1" pin="GNDDTCT"/> +<wire x1="-68.58" y1="25.4" x2="-78.74" y2="25.4" width="0.1524" layer="91"/> +<junction x="-78.74" y="25.4"/> +</segment> +<segment> +<pinref part="GND5" gate="1" pin="GND"/> +<pinref part="C6" gate="G$1" pin="2"/> +<wire x1="-20.32" y1="132.08" x2="-20.32" y2="137.16" width="0.1524" layer="91"/> +</segment> +<segment> +<wire x1="2.54" y1="12.7" x2="-5.08" y2="12.7" width="0.1524" layer="91"/> +<pinref part="GND6" gate="1" pin="GND"/> +<wire x1="-5.08" y1="12.7" x2="-5.08" y2="7.62" width="0.1524" layer="91"/> +<pinref part="S1" gate="G$1" pin="P"/> +<pinref part="S1" gate="G$1" pin="P1"/> +<wire x1="-20.32" y1="12.7" x2="-17.78" y2="12.7" width="0.1524" layer="91"/> +<wire x1="-17.78" y1="12.7" x2="-5.08" y2="12.7" width="0.1524" layer="91"/> +<junction x="-17.78" y="12.7"/> +<junction x="-5.08" y="12.7"/> +<pinref part="U1" gate="G$1" pin="GND"/> +</segment> +<segment> +<pinref part="U2" gate="G$1" pin="GND"/> +<wire x1="-60.96" y1="129.54" x2="-60.96" y2="121.92" width="0.1524" layer="91"/> +<pinref part="GND7" gate="1" pin="GND"/> +<pinref part="C1" gate="G$1" pin="2"/> +<wire x1="-60.96" y1="121.92" x2="-60.96" y2="119.38" width="0.1524" layer="91"/> +<wire x1="-78.74" y1="124.46" x2="-78.74" y2="121.92" width="0.1524" layer="91"/> +<wire x1="-78.74" y1="121.92" x2="-60.96" y2="121.92" width="0.1524" layer="91"/> +<junction x="-60.96" y="121.92"/> +<pinref part="C7" gate="G$1" pin="2"/> +<wire x1="-43.18" y1="124.46" x2="-43.18" y2="121.92" width="0.1524" layer="91"/> +<wire x1="-43.18" y1="121.92" x2="-60.96" y2="121.92" width="0.1524" layer="91"/> +</segment> +<segment> +<pinref part="X1" gate="G$1" pin="GND"/> +<wire x1="-71.12" y1="63.5" x2="-55.88" y2="63.5" width="0.1524" layer="91"/> +<pinref part="GND8" gate="1" pin="GND"/> +<wire x1="-55.88" y1="63.5" x2="-55.88" y2="66.04" width="0.1524" layer="91"/> +</segment> +</net> +<net name="+3V3" class="0"> +<segment> +<pinref part="+3V1" gate="G$1" pin="+3V3"/> +<wire x1="-78.74" y1="40.64" x2="-78.74" y2="35.56" width="0.1524" layer="91"/> +<pinref part="J1" gate="J1" pin="VCC"/> +<wire x1="-78.74" y1="35.56" x2="-68.58" y2="35.56" width="0.1524" layer="91"/> +</segment> +<segment> +<pinref part="+3V2" gate="G$1" pin="+3V3"/> +<pinref part="C6" gate="G$1" pin="1"/> +<wire x1="-20.32" y1="149.86" x2="-20.32" y2="144.78" width="0.1524" layer="91"/> +<wire x1="2.54" y1="129.54" x2="-2.54" y2="129.54" width="0.1524" layer="91"/> +<wire x1="-2.54" y1="129.54" x2="-2.54" y2="144.78" width="0.1524" layer="91"/> +<wire x1="-2.54" y1="144.78" x2="2.54" y2="144.78" width="0.1524" layer="91"/> +<wire x1="-20.32" y1="144.78" x2="-2.54" y2="144.78" width="0.1524" layer="91"/> +<junction x="-20.32" y="144.78"/> +<junction x="-2.54" y="144.78"/> +</segment> +<segment> +<pinref part="R2" gate="G$1" pin="1"/> +<pinref part="+3V3" gate="G$1" pin="+3V3"/> +<wire x1="-5.08" y1="45.72" x2="-5.08" y2="50.8" width="0.1524" layer="91"/> +</segment> +<segment> +<pinref part="+3V4" gate="G$1" pin="+3V3"/> +<pinref part="R3" gate="G$1" pin="1"/> +<wire x1="-20.32" y1="50.8" x2="-20.32" y2="45.72" width="0.1524" layer="91"/> +</segment> +<segment> +<pinref part="U2" gate="G$1" pin="VOUT"/> +<wire x1="-48.26" y1="142.24" x2="-43.18" y2="142.24" width="0.1524" layer="91"/> +<pinref part="+3V5" gate="G$1" pin="+3V3"/> +<wire x1="-43.18" y1="142.24" x2="-43.18" y2="149.86" width="0.1524" layer="91"/> +<pinref part="C7" gate="G$1" pin="1"/> +<wire x1="-43.18" y1="142.24" x2="-43.18" y2="132.08" width="0.1524" layer="91"/> +<junction x="-43.18" y="142.24"/> +</segment> +</net> +<net name="N$6" class="0"> +<segment> +<pinref part="J1" gate="J1" pin="!RESET"/> +<wire x1="-38.1" y1="25.4" x2="-20.32" y2="25.4" width="0.1524" layer="91"/> +<pinref part="S1" gate="G$1" pin="S"/> +<wire x1="-20.32" y1="25.4" x2="-5.08" y2="25.4" width="0.1524" layer="91"/> +<wire x1="-5.08" y1="25.4" x2="2.54" y2="25.4" width="0.1524" layer="91"/> +<wire x1="-20.32" y1="22.86" x2="-20.32" y2="25.4" width="0.1524" layer="91"/> +<junction x="-20.32" y="25.4"/> +<pinref part="S1" gate="G$1" pin="S1"/> +<wire x1="-17.78" y1="22.86" x2="-20.32" y2="22.86" width="0.1524" layer="91"/> +<junction x="-20.32" y="22.86"/> +<pinref part="R2" gate="G$1" pin="2"/> +<wire x1="-5.08" y1="25.4" x2="-5.08" y2="35.56" width="0.1524" layer="91"/> +<junction x="-5.08" y="25.4"/> +<pinref part="U1" gate="G$1" pin="!RESET"/> +</segment> +</net> +<net name="SWDCLK" class="0"> +<segment> +<pinref part="J1" gate="J1" pin="SWDCLK/TCK"/> +<wire x1="-38.1" y1="33.02" x2="-20.32" y2="33.02" width="0.1524" layer="91"/> +<label x="-35.56" y="33.02" size="1.778" layer="95"/> +<pinref part="R3" gate="G$1" pin="2"/> +<wire x1="-20.32" y1="33.02" x2="-20.32" y2="35.56" width="0.1524" layer="91"/> +</segment> +<segment> +<wire x1="81.28" y1="76.2" x2="96.52" y2="76.2" width="0.1524" layer="91"/> +<label x="83.82" y="76.2" size="1.778" layer="95"/> +</segment> +</net> +<net name="SWDIO" class="0"> +<segment> +<pinref part="J1" gate="J1" pin="SWDIO/TMS"/> +<wire x1="-38.1" y1="35.56" x2="-22.86" y2="35.56" width="0.1524" layer="91"/> +<label x="-35.56" y="35.56" size="1.778" layer="95"/> +</segment> +<segment> +<wire x1="81.28" y1="73.66" x2="96.52" y2="73.66" width="0.1524" layer="91"/> +<label x="83.82" y="73.66" size="1.778" layer="95"/> +</segment> +</net> +<net name="USBDP" class="0"> +<segment> +<wire x1="81.28" y1="81.28" x2="96.52" y2="81.28" width="0.1524" layer="91"/> +<label x="83.82" y="81.28" size="1.778" layer="95"/> +</segment> +<segment> +<pinref part="X1" gate="G$1" pin="D+"/> +<wire x1="-71.12" y1="55.88" x2="-58.42" y2="55.88" width="0.1524" layer="91"/> +<label x="-68.58" y="55.88" size="1.778" layer="95"/> +</segment> +</net> +<net name="USBDM" class="0"> +<segment> +<wire x1="81.28" y1="83.82" x2="96.52" y2="83.82" width="0.1524" layer="91"/> +<label x="83.82" y="83.82" size="1.778" layer="95"/> +</segment> +<segment> +<pinref part="X1" gate="G$1" pin="D-"/> +<wire x1="-71.12" y1="58.42" x2="-58.42" y2="58.42" width="0.1524" layer="91"/> +<label x="-68.58" y="58.42" size="1.778" layer="95"/> +</segment> +</net> +<net name="+5V" class="0"> +<segment> +<pinref part="P+1" gate="1" pin="+5V"/> +<pinref part="C1" gate="G$1" pin="1"/> +<wire x1="-78.74" y1="149.86" x2="-78.74" y2="142.24" width="0.1524" layer="91"/> +<pinref part="U2" gate="G$1" pin="VIN"/> +<wire x1="-78.74" y1="142.24" x2="-78.74" y2="132.08" width="0.1524" layer="91"/> +<wire x1="-73.66" y1="142.24" x2="-76.2" y2="142.24" width="0.1524" layer="91"/> +<junction x="-78.74" y="142.24"/> +<pinref part="U2" gate="G$1" pin="EN"/> +<wire x1="-76.2" y1="142.24" x2="-78.74" y2="142.24" width="0.1524" layer="91"/> +<wire x1="-73.66" y1="137.16" x2="-76.2" y2="137.16" width="0.1524" layer="91"/> +<wire x1="-76.2" y1="137.16" x2="-76.2" y2="142.24" width="0.1524" layer="91"/> +<junction x="-76.2" y="142.24"/> +</segment> +<segment> +<pinref part="X1" gate="G$1" pin="VBUS"/> +<wire x1="-71.12" y1="60.96" x2="-48.26" y2="60.96" width="0.1524" layer="91"/> +<pinref part="P+2" gate="1" pin="+5V"/> +<wire x1="-48.26" y1="60.96" x2="-48.26" y2="66.04" width="0.1524" layer="91"/> +</segment> +</net> +</nets> +</sheet> +</sheets> +</schematic> +</drawing> +<compatibility> +<note version="8.3" severity="warning"> +Since Version 8.3, EAGLE supports URNs for individual library +assets (packages, symbols, and devices). The URNs of those assets +will not be understood (or retained) with this version. +</note> +</compatibility> +</eagle> diff --git a/samd21-example/samd21-barebones/samd21-barebones.s#4 b/samd21-example/samd21-barebones/samd21-barebones.s#4 new file mode 100644 index 0000000000000000000000000000000000000000..bd9e8e29222d6ea9f92266baefa9e992e50d06b4 --- /dev/null +++ b/samd21-example/samd21-barebones/samd21-barebones.s#4 @@ -0,0 +1,2091 @@ +<?xml version="1.0" encoding="utf-8"?> +<!DOCTYPE eagle SYSTEM "eagle.dtd"> +<eagle version="9.6.0"> +<drawing> +<settings> +<setting alwaysvectorfont="no"/> +<setting verticaltext="up"/> +</settings> +<grid distance="0.1" unitdist="inch" unit="inch" style="lines" multiple="1" display="yes" altdistance="0.01" altunitdist="inch" altunit="inch"/> +<layers> +<layer number="1" name="Top" color="4" fill="1" visible="yes" active="no"/> +<layer number="2" name="Route2" color="1" fill="3" visible="yes" active="no"/> +<layer number="3" name="Route3" color="4" fill="3" visible="yes" active="no"/> +<layer number="4" name="Route4" color="1" fill="4" visible="yes" active="no"/> +<layer number="5" name="Route5" color="4" fill="4" visible="yes" active="no"/> +<layer number="6" name="Route6" color="1" fill="8" visible="yes" active="no"/> +<layer number="7" name="Route7" color="4" fill="8" visible="yes" active="no"/> +<layer number="8" name="Route8" color="1" fill="2" visible="yes" active="no"/> +<layer number="9" name="Route9" color="4" fill="2" visible="yes" active="no"/> +<layer number="10" name="Route10" color="1" fill="7" visible="yes" active="no"/> +<layer number="11" name="Route11" color="4" fill="7" visible="yes" active="no"/> +<layer number="12" name="Route12" color="1" fill="5" visible="yes" active="no"/> +<layer number="13" name="Route13" color="4" fill="5" visible="yes" active="no"/> +<layer number="14" name="Route14" color="1" fill="6" visible="yes" active="no"/> +<layer number="15" name="Route15" color="4" fill="6" visible="yes" active="no"/> +<layer number="16" name="Bottom" color="1" fill="1" visible="yes" active="no"/> +<layer number="17" name="Pads" color="2" fill="1" visible="yes" active="no"/> +<layer number="18" name="Vias" color="2" fill="1" visible="yes" active="no"/> +<layer number="19" name="Unrouted" color="6" fill="1" visible="yes" active="no"/> +<layer number="20" name="Dimension" color="24" fill="1" visible="yes" active="no"/> +<layer number="21" name="tPlace" color="7" fill="1" visible="yes" active="no"/> +<layer number="22" name="bPlace" color="7" fill="1" visible="yes" active="no"/> +<layer number="23" name="tOrigins" color="15" fill="1" visible="yes" active="no"/> +<layer number="24" name="bOrigins" color="15" fill="1" visible="yes" active="no"/> +<layer number="25" name="tNames" color="7" fill="1" visible="yes" active="no"/> +<layer number="26" name="bNames" color="7" fill="1" visible="yes" active="no"/> +<layer number="27" name="tValues" color="7" fill="1" visible="yes" active="no"/> +<layer number="28" name="bValues" color="7" fill="1" visible="yes" active="no"/> +<layer number="29" name="tStop" color="7" fill="3" visible="no" active="no"/> +<layer number="30" name="bStop" color="7" fill="6" visible="no" active="no"/> +<layer number="31" name="tCream" color="7" fill="4" visible="no" active="no"/> +<layer number="32" name="bCream" color="7" fill="5" visible="no" active="no"/> +<layer number="33" name="tFinish" color="6" fill="3" visible="no" active="no"/> +<layer number="34" name="bFinish" color="6" fill="6" visible="no" active="no"/> +<layer number="35" name="tGlue" color="7" fill="4" visible="no" active="no"/> +<layer number="36" name="bGlue" color="7" fill="5" visible="no" active="no"/> +<layer number="37" name="tTest" color="7" fill="1" visible="yes" active="no"/> +<layer number="38" name="bTest" color="7" fill="1" visible="yes" active="no"/> +<layer number="39" name="tKeepout" color="4" fill="11" visible="no" active="no"/> +<layer number="40" name="bKeepout" color="1" fill="11" visible="no" active="no"/> +<layer number="41" name="tRestrict" color="4" fill="10" visible="no" active="no"/> +<layer number="42" name="bRestrict" color="1" fill="10" visible="no" active="no"/> +<layer number="43" name="vRestrict" color="2" fill="10" visible="no" active="no"/> +<layer number="44" name="Drills" color="7" fill="1" visible="no" active="no"/> +<layer number="45" name="Holes" color="7" fill="1" visible="no" active="no"/> +<layer number="46" name="Milling" color="3" fill="1" visible="yes" active="no"/> +<layer number="47" name="Measures" color="7" fill="1" visible="yes" active="no"/> +<layer number="48" name="Document" color="7" fill="1" visible="yes" active="no"/> +<layer number="49" name="Reference" color="7" fill="1" visible="yes" active="no"/> +<layer number="50" name="dxf" color="7" fill="1" visible="yes" active="no"/> +<layer number="51" name="tDocu" color="7" fill="1" visible="yes" active="no"/> +<layer number="52" name="bDocu" color="7" fill="1" visible="yes" active="no"/> +<layer number="53" name="tGND_GNDA" color="7" fill="9" visible="yes" active="no"/> +<layer number="54" name="bGND_GNDA" color="1" fill="9" visible="yes" active="no"/> +<layer number="56" name="wert" color="7" fill="1" visible="yes" active="no"/> +<layer number="57" name="tCAD" color="7" fill="1" visible="yes" active="no"/> +<layer number="59" name="tCarbon" color="7" fill="1" visible="yes" active="no"/> +<layer number="60" name="bCarbon" color="7" fill="1" visible="yes" active="no"/> +<layer number="88" name="SimResults" color="9" fill="1" visible="yes" active="yes"/> +<layer number="89" name="SimProbes" color="9" fill="1" visible="yes" active="yes"/> +<layer number="90" name="Modules" color="5" fill="1" visible="yes" active="yes"/> +<layer number="91" name="Nets" color="2" fill="1" visible="yes" active="yes"/> +<layer number="92" name="Busses" color="1" fill="1" visible="yes" active="yes"/> +<layer number="93" name="Pins" color="2" fill="1" visible="no" active="yes"/> +<layer number="94" name="Symbols" color="4" fill="1" visible="yes" active="yes"/> +<layer number="95" name="Names" color="7" fill="1" visible="yes" active="yes"/> +<layer number="96" name="Values" color="7" fill="1" visible="yes" active="yes"/> +<layer number="97" name="Info" color="7" fill="1" visible="yes" active="yes"/> +<layer number="98" name="Guide" color="6" fill="1" visible="yes" active="yes"/> +<layer number="99" name="SpiceOrder" color="7" fill="1" visible="yes" active="yes"/> +<layer number="100" name="Muster" color="7" fill="1" visible="no" active="no"/> +<layer number="101" name="Patch_Top" color="12" fill="4" visible="no" active="yes"/> +<layer number="102" name="Vscore" color="7" fill="1" visible="no" active="yes"/> +<layer number="103" name="tMap" color="7" fill="1" visible="no" active="yes"/> +<layer number="104" name="Name" color="7" fill="1" visible="no" active="yes"/> +<layer number="105" name="tPlate" color="7" fill="1" visible="no" active="yes"/> +<layer number="106" name="bPlate" color="7" fill="1" visible="no" active="yes"/> +<layer number="107" name="Crop" color="7" fill="1" visible="no" active="yes"/> +<layer number="108" name="tplace-old" color="10" fill="1" visible="no" active="yes"/> +<layer number="109" name="ref-old" color="11" fill="1" visible="no" active="yes"/> +<layer number="110" name="fp0" color="7" fill="1" visible="no" active="yes"/> +<layer number="111" name="LPC17xx" color="7" fill="1" visible="no" active="yes"/> +<layer number="112" name="tSilk" color="7" fill="1" visible="no" active="yes"/> +<layer number="113" name="IDFDebug" color="7" fill="1" visible="no" active="yes"/> +<layer number="114" name="Badge_Outline" color="7" fill="1" visible="no" active="yes"/> +<layer number="115" name="ReferenceISLANDS" color="7" fill="1" visible="no" active="yes"/> +<layer number="116" name="Patch_BOT" color="9" fill="4" visible="no" active="yes"/> +<layer number="117" name="BACKMAAT1" color="7" fill="1" visible="yes" active="yes"/> +<layer number="118" name="Rect_Pads" color="7" fill="1" visible="no" active="yes"/> +<layer number="119" name="KAP_TEKEN" color="7" fill="1" visible="yes" active="yes"/> +<layer number="120" name="KAP_MAAT1" color="7" fill="1" visible="yes" active="yes"/> +<layer number="121" name="_tsilk" color="7" fill="1" visible="no" active="yes"/> +<layer number="122" name="_bsilk" color="7" fill="1" visible="no" active="yes"/> +<layer number="123" name="tTestmark" color="7" fill="1" visible="no" active="yes"/> +<layer number="124" name="bTestmark" color="7" fill="1" visible="no" active="yes"/> +<layer number="125" name="_tNames" color="7" fill="1" visible="no" active="yes"/> +<layer number="126" name="_bNames" color="7" fill="1" visible="no" active="yes"/> +<layer number="127" name="_tValues" color="7" fill="1" visible="no" active="yes"/> +<layer number="128" name="_bValues" color="7" fill="1" visible="no" active="yes"/> +<layer number="129" name="Mask" color="7" fill="1" visible="no" active="yes"/> +<layer number="130" name="SMDSTROOK" color="7" fill="1" visible="yes" active="yes"/> +<layer number="131" name="tAdjust" color="7" fill="1" visible="no" active="yes"/> +<layer number="132" name="bAdjust" color="7" fill="1" visible="no" active="yes"/> +<layer number="133" name="bottom_silk" color="7" fill="1" visible="yes" active="yes"/> +<layer number="144" name="Drill_legend" color="7" fill="1" visible="no" active="yes"/> +<layer number="150" name="Notes" color="7" fill="1" visible="no" active="yes"/> +<layer number="151" name="HeatSink" color="7" fill="1" visible="no" active="yes"/> +<layer number="152" name="_bDocu" color="7" fill="1" visible="no" active="yes"/> +<layer number="153" name="FabDoc1" color="7" fill="1" visible="no" active="yes"/> +<layer number="154" name="FabDoc2" color="7" fill="1" visible="no" active="yes"/> +<layer number="155" name="FabDoc3" color="7" fill="1" visible="no" active="yes"/> +<layer number="199" name="Contour" color="7" fill="1" visible="no" active="yes"/> +<layer number="200" name="200bmp" color="1" fill="10" visible="no" active="yes"/> +<layer number="201" name="201bmp" color="2" fill="10" visible="no" active="yes"/> +<layer number="202" name="202bmp" color="3" fill="10" visible="no" active="yes"/> +<layer number="203" name="203bmp" color="4" fill="10" visible="no" active="yes"/> +<layer number="204" name="204bmp" color="5" fill="10" visible="no" active="yes"/> +<layer number="205" name="205bmp" color="6" fill="10" visible="no" active="yes"/> +<layer number="206" name="206bmp" color="7" fill="10" visible="no" active="yes"/> +<layer number="207" name="207bmp" color="8" fill="10" visible="no" active="yes"/> +<layer number="208" name="208bmp" color="9" fill="10" visible="no" active="yes"/> +<layer number="209" name="209bmp" color="7" fill="1" visible="no" active="yes"/> +<layer number="210" name="210bmp" color="7" fill="1" visible="no" active="yes"/> +<layer number="211" name="211bmp" color="7" fill="1" visible="no" active="yes"/> +<layer number="212" name="212bmp" color="7" fill="1" visible="no" active="yes"/> +<layer number="213" name="213bmp" color="7" fill="1" visible="no" active="yes"/> +<layer number="214" name="214bmp" color="7" fill="1" visible="no" active="yes"/> +<layer number="215" name="215bmp" color="7" fill="1" visible="no" active="yes"/> +<layer number="216" name="216bmp" color="7" fill="1" visible="no" active="yes"/> +<layer number="217" name="217bmp" color="18" fill="1" visible="no" active="no"/> +<layer number="218" name="218bmp" color="19" fill="1" visible="no" active="no"/> +<layer number="219" name="219bmp" color="20" fill="1" visible="no" active="no"/> +<layer number="220" name="220bmp" color="21" fill="1" visible="no" active="no"/> +<layer number="221" name="221bmp" color="22" fill="1" visible="no" active="no"/> +<layer number="222" name="222bmp" color="23" fill="1" visible="no" active="no"/> +<layer number="223" name="223bmp" color="24" fill="1" visible="no" active="no"/> +<layer number="224" name="224bmp" color="25" fill="1" visible="no" active="no"/> +<layer number="225" name="225bmp" color="7" fill="1" visible="no" active="yes"/> +<layer number="226" name="226bmp" color="7" fill="1" visible="no" active="yes"/> +<layer number="227" name="227bmp" color="7" fill="1" visible="no" active="yes"/> +<layer number="228" name="228bmp" color="7" fill="1" visible="no" active="yes"/> +<layer number="229" name="229bmp" color="7" fill="1" visible="no" active="yes"/> +<layer number="230" name="230bmp" color="7" fill="1" visible="no" active="yes"/> +<layer number="231" name="231bmp" color="7" fill="1" visible="no" active="yes"/> +<layer number="232" name="Eagle3D_PG2" color="7" fill="1" visible="no" active="yes"/> +<layer number="233" name="Eagle3D_PG3" color="7" fill="1" visible="no" active="yes"/> +<layer number="248" name="Housing" color="7" fill="1" visible="no" active="yes"/> +<layer number="249" name="Edge" color="7" fill="1" visible="no" active="yes"/> +<layer number="250" name="Descript" color="3" fill="1" visible="no" active="no"/> +<layer number="251" name="SMDround" color="12" fill="11" visible="no" active="no"/> +<layer number="254" name="cooling" color="7" fill="1" visible="no" active="yes"/> +<layer number="255" name="routoute" color="7" fill="1" visible="no" active="yes"/> +</layers> +<schematic xreflabel="%F%N/%S.%C%R" xrefpart="/%S.%C%R"> +<libraries> +<library name="microcontrollers"> +<packages> +<package name="QFN-64-9X9MM-SMALLPAD"> +<description><h3>64-pin QFN 9x9mm, 0.5mm pitch</h3> +<p>Package used by ATmega128RFA1</p> +<p><a href="http://www.atmel.com/Images/Atmel-8266-MCU_Wireless-ATmega128RFA1_Datasheet.pdf">Example Datasheet</a></p></description> +<wire x1="-4.492" y1="-4.5" x2="4.508" y2="-4.5" width="0.09" layer="51"/> +<wire x1="4.508" y1="-4.5" x2="4.508" y2="4.5" width="0.09" layer="51"/> +<wire x1="4.508" y1="4.5" x2="-4.492" y2="4.5" width="0.09" layer="51"/> +<wire x1="-4.492" y1="4.5" x2="-4.492" y2="-4.5" width="0.09" layer="51"/> +<wire x1="-4.6" y1="4.6" x2="-4.6" y2="4.1" width="0.2032" layer="21"/> +<wire x1="-4.6" y1="4.6" x2="-4.1" y2="4.6" width="0.2032" layer="21"/> +<wire x1="4.6" y1="4.6" x2="4.1" y2="4.6" width="0.2032" layer="21"/> +<wire x1="4.6" y1="4.6" x2="4.6" y2="4.1" width="0.2032" layer="21"/> +<circle x="-4.842" y="4.85" radius="0.2" width="0" layer="21"/> +<circle x="-3.442" y="3.45" radius="0.2" width="0.09" layer="51"/> +<smd name="26" x="0.75" y="-4.5" dx="0.275" dy="0.7" layer="1" rot="R180"/> +<smd name="25" x="0.25" y="-4.5" dx="0.275" dy="0.7" layer="1" rot="R180"/> +<smd name="24" x="-0.25" y="-4.5" dx="0.275" dy="0.7" layer="1" rot="R180"/> +<smd name="27" x="1.25" y="-4.5" dx="0.275" dy="0.7" layer="1" rot="R180"/> +<smd name="28" x="1.75" y="-4.5" dx="0.275" dy="0.7" layer="1" rot="R180"/> +<smd name="23" x="-0.75" y="-4.5" dx="0.275" dy="0.7" layer="1" rot="R180"/> +<smd name="22" x="-1.25" y="-4.5" dx="0.275" dy="0.7" layer="1" rot="R180"/> +<smd name="21" x="-1.75" y="-4.5" dx="0.275" dy="0.7" layer="1" rot="R180"/> +<smd name="6" x="-4.5" y="1.25" dx="0.275" dy="0.7" layer="1" rot="R270"/> +<smd name="5" x="-4.5" y="1.75" dx="0.275" dy="0.7" layer="1" rot="R270"/> +<smd name="4" x="-4.5" y="2.25" dx="0.275" dy="0.7" layer="1" rot="R270"/> +<smd name="7" x="-4.5" y="0.75" dx="0.275" dy="0.7" layer="1" rot="R270"/> +<smd name="8" x="-4.5" y="0.25" dx="0.275" dy="0.7" layer="1" rot="R270"/> +<smd name="3" x="-4.5" y="2.75" dx="0.275" dy="0.7" layer="1" rot="R270"/> +<smd name="2" x="-4.5" y="3.25" dx="0.275" dy="0.7" layer="1" rot="R270"/> +<smd name="9" x="-4.5" y="-0.25" dx="0.275" dy="0.7" layer="1" rot="R270"/> +<smd name="10" x="-4.5" y="-0.75" dx="0.275" dy="0.7" layer="1" rot="R270"/> +<smd name="1" x="-4.5" y="3.75" dx="0.275" dy="0.7" layer="1" rot="R270"/> +<smd name="16" x="-4.5" y="-3.75" dx="0.275" dy="0.7" layer="1" rot="R90"/> +<smd name="15" x="-4.5" y="-3.25" dx="0.275" dy="0.7" layer="1" rot="R90"/> +<smd name="14" x="-4.5" y="-2.75" dx="0.275" dy="0.7" layer="1" rot="R270"/> +<smd name="17" x="-3.75" y="-4.5" dx="0.275" dy="0.7" layer="1" rot="R180"/> +<smd name="18" x="-3.25" y="-4.5" dx="0.275" dy="0.7" layer="1" rot="R180"/> +<smd name="13" x="-4.5" y="-2.25" dx="0.275" dy="0.7" layer="1" rot="R270"/> +<smd name="12" x="-4.5" y="-1.75" dx="0.275" dy="0.7" layer="1" rot="R270"/> +<smd name="19" x="-2.75" y="-4.5" dx="0.275" dy="0.7" layer="1" rot="R180"/> +<smd name="20" x="-2.25" y="-4.5" dx="0.275" dy="0.7" layer="1" rot="R180"/> +<smd name="11" x="-4.5" y="-1.25" dx="0.275" dy="0.7" layer="1" rot="R270"/> +<smd name="29" x="2.25" y="-4.5" dx="0.275" dy="0.7" layer="1"/> +<smd name="30" x="2.75" y="-4.5" dx="0.275" dy="0.7" layer="1"/> +<smd name="31" x="3.25" y="-4.5" dx="0.275" dy="0.7" layer="1"/> +<smd name="32" x="3.75" y="-4.5" dx="0.275" dy="0.7" layer="1"/> +<smd name="33" x="4.5" y="-3.75" dx="0.275" dy="0.7" layer="1" rot="R90"/> +<smd name="34" x="4.5" y="-3.25" dx="0.275" dy="0.7" layer="1" rot="R90"/> +<smd name="35" x="4.5" y="-2.75" dx="0.275" dy="0.7" layer="1" rot="R90"/> +<smd name="36" x="4.5" y="-2.25" dx="0.275" dy="0.7" layer="1" rot="R90"/> +<smd name="37" x="4.5" y="-1.75" dx="0.275" dy="0.7" layer="1" rot="R90"/> +<smd name="38" x="4.5" y="-1.25" dx="0.275" dy="0.7" layer="1" rot="R90"/> +<smd name="39" x="4.5" y="-0.75" dx="0.275" dy="0.7" layer="1" rot="R90"/> +<smd name="40" x="4.5" y="-0.25" dx="0.275" dy="0.7" layer="1" rot="R90"/> +<smd name="41" x="4.5" y="0.25" dx="0.275" dy="0.7" layer="1" rot="R90"/> +<smd name="42" x="4.5" y="0.75" dx="0.275" dy="0.7" layer="1" rot="R90"/> +<smd name="43" x="4.5" y="1.25" dx="0.275" dy="0.7" layer="1" rot="R90"/> +<smd name="44" x="4.5" y="1.75" dx="0.275" dy="0.7" layer="1" rot="R90"/> +<smd name="45" x="4.5" y="2.25" dx="0.275" dy="0.7" layer="1" rot="R90"/> +<smd name="46" x="4.5" y="2.75" dx="0.275" dy="0.7" layer="1" rot="R90"/> +<smd name="47" x="4.5" y="3.25" dx="0.275" dy="0.7" layer="1" rot="R90"/> +<smd name="48" x="4.5" y="3.75" dx="0.275" dy="0.7" layer="1" rot="R90"/> +<smd name="49" x="3.75" y="4.5" dx="0.275" dy="0.7" layer="1"/> +<smd name="50" x="3.25" y="4.5" dx="0.275" dy="0.7" layer="1"/> +<smd name="51" x="2.75" y="4.5" dx="0.275" dy="0.7" layer="1"/> +<smd name="52" x="2.25" y="4.5" dx="0.275" dy="0.7" layer="1"/> +<smd name="53" x="1.75" y="4.5" dx="0.275" dy="0.7" layer="1"/> +<smd name="54" x="1.25" y="4.5" dx="0.275" dy="0.7" layer="1"/> +<smd name="55" x="0.75" y="4.5" dx="0.275" dy="0.7" layer="1"/> +<smd name="56" x="0.25" y="4.5" dx="0.275" dy="0.7" layer="1"/> +<smd name="57" x="-0.25" y="4.5" dx="0.275" dy="0.7" layer="1"/> +<smd name="58" x="-0.75" y="4.5" dx="0.275" dy="0.7" layer="1"/> +<smd name="59" x="-1.25" y="4.5" dx="0.275" dy="0.7" layer="1"/> +<smd name="60" x="-1.75" y="4.5" dx="0.275" dy="0.7" layer="1"/> +<smd name="61" x="-2.25" y="4.5" dx="0.275" dy="0.7" layer="1"/> +<smd name="62" x="-2.75" y="4.5" dx="0.275" dy="0.7" layer="1"/> +<smd name="63" x="-3.25" y="4.5" dx="0.275" dy="0.7" layer="1"/> +<smd name="64" x="-3.75" y="4.5" dx="0.275" dy="0.7" layer="1"/> +<text x="0" y="1.27" size="0.6096" layer="25" font="vector" ratio="20" align="bottom-center">>NAME</text> +<text x="0" y="-1.27" size="0.6096" layer="27" font="vector" ratio="20" align="top-center">>VALUE</text> +<wire x1="4.6" y1="-4.6" x2="4.1" y2="-4.6" width="0.2032" layer="21"/> +<wire x1="4.6" y1="-4.6" x2="4.6" y2="-4.1" width="0.2032" layer="21"/> +<wire x1="-4.6" y1="-4.6" x2="-4.6" y2="-4.1" width="0.2032" layer="21"/> +<wire x1="-4.6" y1="-4.6" x2="-4.1" y2="-4.6" width="0.2032" layer="21"/> +<smd name="P$1" x="0" y="0" dx="4.8" dy="4.8" layer="1" cream="no"/> +<polygon width="0.127" layer="31"> +<vertex x="1.03" y="1.03"/> +<vertex x="1.03" y="2.17"/> +<vertex x="2.17" y="2.17"/> +<vertex x="2.17" y="1.03"/> +</polygon> +<polygon width="0.127" layer="31"> +<vertex x="-2.17" y="1.03"/> +<vertex x="-2.17" y="2.17"/> +<vertex x="-1.03" y="2.17"/> +<vertex x="-1.03" y="1.03"/> +</polygon> +<polygon width="0.127" layer="31"> +<vertex x="-2.17" y="-2.17"/> +<vertex x="-2.17" y="-1.03"/> +<vertex x="-1.03" y="-1.03"/> +<vertex x="-1.03" y="-2.17"/> +</polygon> +<polygon width="0.127" layer="31"> +<vertex x="1.03" y="-2.17"/> +<vertex x="1.03" y="-1.03"/> +<vertex x="2.17" y="-1.03"/> +<vertex x="2.17" y="-2.17"/> +</polygon> +<polygon width="0.127" layer="31"> +<vertex x="-0.57" y="-0.57"/> +<vertex x="-0.57" y="0.57"/> +<vertex x="0.57" y="0.57"/> +<vertex x="0.57" y="-0.57"/> +</polygon> +</package> +</packages> +<symbols> +<symbol name="ATSAMD51J"> +<pin name="GND" x="-35.56" y="-132.08" length="middle"/> +<pin name="VDDCORE" x="-35.56" y="-45.72" length="middle"/> +<pin name="VDDANA" x="-35.56" y="-15.24" length="middle"/> +<pin name="VDDIO" x="-35.56" y="0" length="middle"/> +<pin name="PA00/XIN32/SER1-0/TC2-0" x="43.18" y="0" length="middle" rot="R180"/> +<pin name="PA01/XOUT32/SER1-1/TC2-1" x="43.18" y="-2.54" length="middle" rot="R180"/> +<pin name="PA02/ADC0-1/DAC-0" x="43.18" y="-5.08" length="middle" rot="R180"/> +<pin name="PA03/ANAREF-VREFA/ADC0-1" x="43.18" y="-7.62" length="middle" rot="R180"/> +<pin name="PA04/ANAREF-VREFB/ADC0-4/SER0-0/TC0-0" x="43.18" y="-10.16" length="middle" rot="R180"/> +<pin name="PA05/ADC0-5/DAC-1/SER0-1/TC0-1" x="43.18" y="-12.7" length="middle" rot="R180"/> +<pin name="PA06/ANAREF-VREFC/ADC0-6/SER0-2/TC1-0" x="43.18" y="-15.24" length="middle" rot="R180"/> +<pin name="PA07/ADC0-7/SER0-3/TC1-1" x="43.18" y="-17.78" length="middle" rot="R180"/> +<pin name="PA08/ADC0-8/ADC1-2/SER0-0/SER2-1/TC0-0/TCC0-0" x="43.18" y="-20.32" length="middle" rot="R180"/> +<pin name="PA09/ADC0-9/ADC1-3/SER0-1/SER2-0/TC0-1/TCC0-1" x="43.18" y="-22.86" length="middle" rot="R180"/> +<pin name="PA10/ADC0-10/SER0-2/SER2-2/TC1-0/TCC0-2" x="43.18" y="-25.4" length="middle" rot="R180"/> +<pin name="PA11/ADC0-11/SER0-3/SER2-3/TC1-1/TCC0-3" x="43.18" y="-27.94" length="middle" rot="R180"/> +<pin name="PA12/SER2-0/SER4-1/TC2-0/TCC0-6" x="43.18" y="-30.48" length="middle" rot="R180"/> +<pin name="PA13/SER2-1/SER4-0/TC2-1/TCC0-7" x="43.18" y="-33.02" length="middle" rot="R180"/> +<pin name="PA14/XIN0/SER2-2/SER4-2/TC3-0" x="43.18" y="-35.56" length="middle" rot="R180"/> +<pin name="PA15/XOUT0/SER2-3/SER4-3/TC3-1" x="43.18" y="-38.1" length="middle" rot="R180"/> +<pin name="PA16/SER1-0/SER3-1/TC2-0/TCC0-4" x="43.18" y="-40.64" length="middle" rot="R180"/> +<pin name="PA17/SER1-1/SER3-0/TC2-1/TCC0-5" x="43.18" y="-43.18" length="middle" rot="R180"/> +<pin name="PA18/SER1-2/SER3-2/TC3-0" x="43.18" y="-45.72" length="middle" rot="R180"/> +<pin name="PA19/SER1-3/SER3-3/TC3-1" x="43.18" y="-48.26" length="middle" rot="R180"/> +<pin name="PA20/SER5-2/SER3-2/TC7-0" x="43.18" y="-50.8" length="middle" rot="R180"/> +<pin name="PA21/SER5-3/SER3-3/TC7-1" x="43.18" y="-53.34" length="middle" rot="R180"/> +<pin name="PA22/SER3-0/SER5-1/TC4-0" x="43.18" y="-55.88" length="middle" rot="R180"/> +<pin name="PA23/SER3-1/SER5-0/TC4-1" x="43.18" y="-58.42" length="middle" rot="R180"/> +<pin name="PA24/SER3-2/SER5-2/TC5-0/PDEC0-0/USBDM" x="43.18" y="-60.96" length="middle" rot="R180"/> +<pin name="PA25/SER3-3/SER5-3/TC5-1/PDEC0-1/USBDP" x="43.18" y="-63.5" length="middle" rot="R180"/> +<pin name="PA27/GCLK-1" x="43.18" y="-66.04" length="middle" rot="R180"/> +<pin name="PA30/SER7-2/SER1-2/TC6-0/SWCLK" x="43.18" y="-68.58" length="middle" rot="R180"/> +<pin name="PA31/SER7-3/SER1-3/TC6-1/SWDIO" x="43.18" y="-71.12" length="middle" rot="R180"/> +<pin name="PB00/ADC0-12/SER5-2/TC7-0" x="43.18" y="-78.74" length="middle" rot="R180"/> +<pin name="PB01/ADC0-13/SER5-3/TC7-1" x="43.18" y="-81.28" length="middle" rot="R180"/> +<pin name="PB03/ADC0/SER5-1/TC6" x="43.18" y="-86.36" length="middle" rot="R180"/> +<pin name="PB04/ADC1-6" x="43.18" y="-88.9" length="middle" rot="R180"/> +<pin name="PB05/ADC1-7" x="43.18" y="-91.44" length="middle" rot="R180"/> +<pin name="PB06/ADC1-8" x="43.18" y="-93.98" length="middle" rot="R180"/> +<pin name="PB07/ADC1-9" x="43.18" y="-96.52" length="middle" rot="R180"/> +<pin name="PB08/ADC0-2/ADC1-9/SER4-0/TC4-0" x="43.18" y="-99.06" length="middle" rot="R180"/> +<pin name="PB09/ADC0-3/ADC1-1/SER4-1/TC4-1" x="43.18" y="-101.6" length="middle" rot="R180"/> +<pin name="PB10/SER4-2/TC5-0/TCC0-4" x="43.18" y="-104.14" length="middle" rot="R180"/> +<pin name="PB11/SER4-3/TC5-1/TCC0-5" x="43.18" y="-106.68" length="middle" rot="R180"/> +<pin name="PB12/SER4-0/TC4-0" x="43.18" y="-109.22" length="middle" rot="R180"/> +<pin name="PB13/SER4-1/TC4-1" x="43.18" y="-111.76" length="middle" rot="R180"/> +<pin name="PB14/SER4-2/TC5-0" x="43.18" y="-114.3" length="middle" rot="R180"/> +<pin name="PB15/SER4-3/TC5-1" x="43.18" y="-116.84" length="middle" rot="R180"/> +<pin name="PB16/SER5-0/TC6-0" x="43.18" y="-119.38" length="middle" rot="R180"/> +<pin name="PB17/SER5-1/TC6-1" x="43.18" y="-121.92" length="middle" rot="R180"/> +<pin name="PB22/XIN1/SER1-2/SER5-2/PDEC0-2/TC7-0" x="43.18" y="-124.46" length="middle" rot="R180"/> +<pin name="PB23/XOUT1/SER1-3/SER5-3/TC7-1" x="43.18" y="-127" length="middle" rot="R180"/> +<pin name="PB30/SER7-0/SER5-1/TC0-0/SWO" x="43.18" y="-129.54" length="middle" rot="R180"/> +<pin name="RESETN" x="-35.56" y="-119.38" length="middle"/> +<pin name="PB31/SER7-1/SER5-0/TC0-1" x="43.18" y="-132.08" length="middle" rot="R180"/> +<pin name="PB02/ADC0-14/SER5-0/TC6-0" x="43.18" y="-83.82" length="middle" rot="R180"/> +<wire x1="-30.48" y1="5.08" x2="38.1" y2="5.08" width="0.254" layer="94"/> +<wire x1="38.1" y1="5.08" x2="38.1" y2="-137.16" width="0.254" layer="94"/> +<wire x1="38.1" y1="-137.16" x2="-30.48" y2="-137.16" width="0.254" layer="94"/> +<wire x1="-30.48" y1="-137.16" x2="-30.48" y2="5.08" width="0.254" layer="94"/> +<text x="-5.08" y="7.62" size="1.778" layer="95">>NAME</text> +<text x="-5.08" y="-142.24" size="1.778" layer="96">>VALUE</text> +<pin name="VSW" x="-35.56" y="-30.48" length="middle"/> +</symbol> +</symbols> +<devicesets> +<deviceset name="ATSAMD51J" prefix="U"> +<gates> +<gate name="G$1" symbol="ATSAMD51J" x="0" y="0"/> +</gates> +<devices> +<device name="QFN64" package="QFN-64-9X9MM-SMALLPAD"> +<connects> +<connect gate="G$1" pin="GND" pad="7 22 33 47 54 P$1"/> +<connect gate="G$1" pin="PA00/XIN32/SER1-0/TC2-0" pad="1"/> +<connect gate="G$1" pin="PA01/XOUT32/SER1-1/TC2-1" pad="2"/> +<connect gate="G$1" pin="PA02/ADC0-1/DAC-0" pad="3"/> +<connect gate="G$1" pin="PA03/ANAREF-VREFA/ADC0-1" pad="4"/> +<connect gate="G$1" pin="PA04/ANAREF-VREFB/ADC0-4/SER0-0/TC0-0" pad="13"/> +<connect gate="G$1" pin="PA05/ADC0-5/DAC-1/SER0-1/TC0-1" pad="14"/> +<connect gate="G$1" pin="PA06/ANAREF-VREFC/ADC0-6/SER0-2/TC1-0" pad="15"/> +<connect gate="G$1" pin="PA07/ADC0-7/SER0-3/TC1-1" pad="16"/> +<connect gate="G$1" pin="PA08/ADC0-8/ADC1-2/SER0-0/SER2-1/TC0-0/TCC0-0" pad="17"/> +<connect gate="G$1" pin="PA09/ADC0-9/ADC1-3/SER0-1/SER2-0/TC0-1/TCC0-1" pad="18"/> +<connect gate="G$1" pin="PA10/ADC0-10/SER0-2/SER2-2/TC1-0/TCC0-2" pad="19"/> +<connect gate="G$1" pin="PA11/ADC0-11/SER0-3/SER2-3/TC1-1/TCC0-3" pad="20"/> +<connect gate="G$1" pin="PA12/SER2-0/SER4-1/TC2-0/TCC0-6" pad="29"/> +<connect gate="G$1" pin="PA13/SER2-1/SER4-0/TC2-1/TCC0-7" pad="30"/> +<connect gate="G$1" pin="PA14/XIN0/SER2-2/SER4-2/TC3-0" pad="31"/> +<connect gate="G$1" pin="PA15/XOUT0/SER2-3/SER4-3/TC3-1" pad="32"/> +<connect gate="G$1" pin="PA16/SER1-0/SER3-1/TC2-0/TCC0-4" pad="35"/> +<connect gate="G$1" pin="PA17/SER1-1/SER3-0/TC2-1/TCC0-5" pad="36"/> +<connect gate="G$1" pin="PA18/SER1-2/SER3-2/TC3-0" pad="37"/> +<connect gate="G$1" pin="PA19/SER1-3/SER3-3/TC3-1" pad="38"/> +<connect gate="G$1" pin="PA20/SER5-2/SER3-2/TC7-0" pad="41"/> +<connect gate="G$1" pin="PA21/SER5-3/SER3-3/TC7-1" pad="42"/> +<connect gate="G$1" pin="PA22/SER3-0/SER5-1/TC4-0" pad="43"/> +<connect gate="G$1" pin="PA23/SER3-1/SER5-0/TC4-1" pad="44"/> +<connect gate="G$1" pin="PA24/SER3-2/SER5-2/TC5-0/PDEC0-0/USBDM" pad="45"/> +<connect gate="G$1" pin="PA25/SER3-3/SER5-3/TC5-1/PDEC0-1/USBDP" pad="46"/> +<connect gate="G$1" pin="PA27/GCLK-1" pad="51"/> +<connect gate="G$1" pin="PA30/SER7-2/SER1-2/TC6-0/SWCLK" pad="57"/> +<connect gate="G$1" pin="PA31/SER7-3/SER1-3/TC6-1/SWDIO" pad="58"/> +<connect gate="G$1" pin="PB00/ADC0-12/SER5-2/TC7-0" pad="61"/> +<connect gate="G$1" pin="PB01/ADC0-13/SER5-3/TC7-1" pad="62"/> +<connect gate="G$1" pin="PB02/ADC0-14/SER5-0/TC6-0" pad="63"/> +<connect gate="G$1" pin="PB03/ADC0/SER5-1/TC6" pad="64"/> +<connect gate="G$1" pin="PB04/ADC1-6" pad="5"/> +<connect gate="G$1" pin="PB05/ADC1-7" pad="6"/> +<connect gate="G$1" pin="PB06/ADC1-8" pad="9"/> +<connect gate="G$1" pin="PB07/ADC1-9" pad="10"/> +<connect gate="G$1" pin="PB08/ADC0-2/ADC1-9/SER4-0/TC4-0" pad="11"/> +<connect gate="G$1" pin="PB09/ADC0-3/ADC1-1/SER4-1/TC4-1" pad="12"/> +<connect gate="G$1" pin="PB10/SER4-2/TC5-0/TCC0-4" pad="23"/> +<connect gate="G$1" pin="PB11/SER4-3/TC5-1/TCC0-5" pad="24"/> +<connect gate="G$1" pin="PB12/SER4-0/TC4-0" pad="25"/> +<connect gate="G$1" pin="PB13/SER4-1/TC4-1" pad="26"/> +<connect gate="G$1" pin="PB14/SER4-2/TC5-0" pad="27"/> +<connect gate="G$1" pin="PB15/SER4-3/TC5-1" pad="28"/> +<connect gate="G$1" pin="PB16/SER5-0/TC6-0" pad="39"/> +<connect gate="G$1" pin="PB17/SER5-1/TC6-1" pad="40"/> +<connect gate="G$1" pin="PB22/XIN1/SER1-2/SER5-2/PDEC0-2/TC7-0" pad="49"/> +<connect gate="G$1" pin="PB23/XOUT1/SER1-3/SER5-3/TC7-1" pad="50"/> +<connect gate="G$1" pin="PB30/SER7-0/SER5-1/TC0-0/SWO" pad="59"/> +<connect gate="G$1" pin="PB31/SER7-1/SER5-0/TC0-1" pad="60"/> +<connect gate="G$1" pin="RESETN" pad="52"/> +<connect gate="G$1" pin="VDDANA" pad="8"/> +<connect gate="G$1" pin="VDDCORE" pad="53"/> +<connect gate="G$1" pin="VDDIO" pad="21 34 48 56"/> +<connect gate="G$1" pin="VSW" pad="55"/> +</connects> +<technologies> +<technology name=""/> +</technologies> +</device> +</devices> +</deviceset> +</devicesets> +</library> +<library name="SparkFun-Connectors"> +<description><h3>SparkFun Connectors</h3> +This library contains electrically-functional connectors. +<br> +<br> +We've spent an enormous amount of time creating and checking these footprints and parts, but it is <b> the end user's responsibility</b> to ensure correctness and suitablity for a given componet or application. +<br> +<br>If you enjoy using this library, please buy one of our products at <a href=" www.sparkfun.com">SparkFun.com</a>. +<br> +<br> +<b>Licensing:</b> Creative Commons ShareAlike 4.0 International - https://creativecommons.org/licenses/by-sa/4.0/ +<br> +<br> +You are welcome to use this library for commercial purposes. For attribution, we ask that when you begin to sell your device using our footprint, you email us with a link to the product being sold. We want bragging rights that we helped (in a very small part) to create your 8th world wonder. We would like the opportunity to feature your device on our homepage.</description> +<packages> +<package name="2X5-PTH-1.27MM-NO_SILK"> +<description><h3>Plated Through Hole - 2x5 ARM Cortex Debug Connector (10-pin)</h3> +<p>tDoc (51) layer border represents maximum dimensions of plastic housing.</p> +<p>Specifications: +<ul><li>Pin count:10</li> +<li>Pin pitch:1.27mm</li> +</ul></p> +<p><a href=”http://portal.fciconnect.com/Comergent//fci/drawing/20021111.pdf”>Datasheet referenced for footprint</a></p> +<p>Example device(s): +<ul><li>CONN_05x2</li> +</ul></p></description> +<pad name="8" x="1.27" y="0.762" drill="0.508" diameter="1"/> +<pad name="6" x="0" y="0.762" drill="0.508" diameter="1"/> +<pad name="4" x="-1.27" y="0.762" drill="0.508" diameter="1"/> +<pad name="2" x="-2.54" y="0.762" drill="0.508" diameter="1"/> +<pad name="10" x="2.54" y="0.762" drill="0.508" diameter="1"/> +<pad name="7" x="1.27" y="-0.762" drill="0.508" diameter="1"/> +<pad name="5" x="0" y="-0.762" drill="0.508" diameter="1"/> +<pad name="3" x="-1.27" y="-0.762" drill="0.508" diameter="1"/> +<pad name="1" x="-2.54" y="-0.762" drill="0.508" diameter="1"/> +<pad name="9" x="2.54" y="-0.762" drill="0.508" diameter="1"/> +<wire x1="-3.403" y1="-1.021" x2="-3.403" y2="-0.259" width="0.254" layer="21"/> +<wire x1="3.175" y1="1.715" x2="-3.175" y2="1.715" width="0.127" layer="51"/> +<wire x1="-3.175" y1="1.715" x2="-3.175" y2="-1.715" width="0.127" layer="51"/> +<wire x1="-3.175" y1="-1.715" x2="3.175" y2="-1.715" width="0.127" layer="51"/> +<wire x1="3.175" y1="-1.715" x2="3.175" y2="1.715" width="0.127" layer="51"/> +<text x="-1.5748" y="1.9304" size="0.6096" layer="25" font="vector" ratio="20">>NAME</text> +<text x="-1.8288" y="-2.4638" size="0.6096" layer="27" font="vector" ratio="20">>VALUE</text> +<wire x1="-0.635" y1="-1.905" x2="0.635" y2="-1.905" width="0.254" layer="21"/> +<wire x1="5.2" y1="1.6" x2="-5.2" y2="1.6" width="0.127" layer="51"/> +<wire x1="-5.2" y1="1.6" x2="-5.2" y2="-1.6" width="0.127" layer="51"/> +<wire x1="-5.2" y1="-1.6" x2="5.2" y2="-1.6" width="0.127" layer="51"/> +<wire x1="5.2" y1="-1.6" x2="5.2" y2="1.6" width="0.127" layer="51"/> +</package> +<package name="2X5-PTH-1.27MM"> +<description><h3>Plated Through Hole - 2x5 ARM Cortex Debug Connector (10-pin)</h3> +<p>tDoc (51) layer border represents maximum dimensions of plastic housing.</p> +<p>Specifications: +<ul><li>Pin count:10</li> +<li>Pin pitch:1.27mm</li> +</ul></p> +<p><a href=”http://portal.fciconnect.com/Comergent//fci/drawing/20021111.pdf”>Datasheet referenced for footprint</a></p> +<p>Example device(s): +<ul><li>CONN_05x2</li> +</ul></p></description> +<pad name="8" x="1.27" y="0.635" drill="0.508" diameter="1"/> +<pad name="6" x="0" y="0.635" drill="0.508" diameter="1"/> +<pad name="4" x="-1.27" y="0.635" drill="0.508" diameter="1"/> +<pad name="2" x="-2.54" y="0.635" drill="0.508" diameter="1"/> +<pad name="10" x="2.54" y="0.635" drill="0.508" diameter="1"/> +<pad name="7" x="1.27" y="-0.635" drill="0.508" diameter="1"/> +<pad name="5" x="0" y="-0.635" drill="0.508" diameter="1"/> +<pad name="3" x="-1.27" y="-0.635" drill="0.508" diameter="1"/> +<pad name="1" x="-2.54" y="-0.635" drill="0.508" diameter="1"/> +<pad name="9" x="2.54" y="-0.635" drill="0.508" diameter="1"/> +<wire x1="-3.403" y1="-1.021" x2="-3.403" y2="-0.259" width="0.254" layer="21"/> +<wire x1="3.175" y1="1.715" x2="-3.175" y2="1.715" width="0.127" layer="21"/> +<wire x1="-3.175" y1="1.715" x2="-3.175" y2="-1.715" width="0.127" layer="21"/> +<wire x1="-3.175" y1="-1.715" x2="3.175" y2="-1.715" width="0.127" layer="21"/> +<wire x1="3.175" y1="-1.715" x2="3.175" y2="1.715" width="0.127" layer="21"/> +<text x="-1.5748" y="1.9304" size="0.6096" layer="25" font="vector" ratio="20">>NAME</text> +<text x="-1.8288" y="-2.4638" size="0.6096" layer="27" font="vector" ratio="20">>VALUE</text> +</package> +<package name="2X5-SMD-1.27MM"> +<description>Shrouded SMD connector for JTAG and SWD applications.</description> +<smd name="6" x="0" y="-1.95" dx="0.76" dy="2.4" layer="1" rot="R180"/> +<smd name="8" x="-1.27" y="-1.95" dx="0.76" dy="2.4" layer="1" rot="R180"/> +<smd name="10" x="-2.54" y="-1.95" dx="0.76" dy="2.4" layer="1" rot="R180"/> +<smd name="4" x="1.27" y="-1.95" dx="0.76" dy="2.4" layer="1" rot="R180"/> +<smd name="2" x="2.54" y="-1.95" dx="0.76" dy="2.4" layer="1" rot="R180"/> +<smd name="1" x="2.54" y="1.95" dx="0.76" dy="2.4" layer="1" rot="R180"/> +<smd name="3" x="1.27" y="1.95" dx="0.76" dy="2.4" layer="1" rot="R180"/> +<smd name="5" x="0" y="1.95" dx="0.76" dy="2.4" layer="1" rot="R180"/> +<smd name="7" x="-1.27" y="1.95" dx="0.76" dy="2.4" layer="1" rot="R180"/> +<smd name="9" x="-2.54" y="1.95" dx="0.76" dy="2.4" layer="1" rot="R180"/> +<rectangle x1="-1.0575" y1="-1.9625" x2="1.0575" y2="-1.5525" layer="51" rot="R270"/> +<wire x1="5.55" y1="-1.7" x2="-5.55" y2="-1.7" width="0.1524" layer="51"/> +<wire x1="-5.55" y1="-1.7" x2="-5.55" y2="1.7" width="0.1524" layer="51"/> +<wire x1="-5.55" y1="1.7" x2="5.55" y2="1.7" width="0.1524" layer="51"/> +<wire x1="5.55" y1="1.7" x2="5.55" y2="-1.7" width="0.1524" layer="51"/> +<rectangle x1="-2.3275" y1="-1.9625" x2="-0.2125" y2="-1.5525" layer="51" rot="R270"/> +<rectangle x1="-3.5975" y1="-1.9625" x2="-1.4825" y2="-1.5525" layer="51" rot="R270"/> +<rectangle x1="0.2125" y1="-1.9625" x2="2.3275" y2="-1.5525" layer="51" rot="R270"/> +<rectangle x1="1.4825" y1="-1.9625" x2="3.5975" y2="-1.5525" layer="51" rot="R270"/> +<rectangle x1="1.4825" y1="1.5525" x2="3.5975" y2="1.9625" layer="51" rot="R90"/> +<rectangle x1="0.2125" y1="1.5525" x2="2.3275" y2="1.9625" layer="51" rot="R90"/> +<rectangle x1="-1.0575" y1="1.5525" x2="1.0575" y2="1.9625" layer="51" rot="R90"/> +<rectangle x1="-2.3275" y1="1.5525" x2="-0.2125" y2="1.9625" layer="51" rot="R90"/> +<rectangle x1="-3.5975" y1="1.5525" x2="-1.4825" y2="1.9625" layer="51" rot="R90"/> +<wire x1="-3.2" y1="2.5" x2="-6.3" y2="2.5" width="0.2032" layer="51"/> +<wire x1="-6.3" y1="2.5" x2="-6.3" y2="-2.5" width="0.2032" layer="51"/> +<wire x1="-6.3" y1="-2.5" x2="-3.2" y2="-2.5" width="0.2032" layer="51"/> +<wire x1="3.2" y1="-2.5" x2="6.3" y2="-2.5" width="0.2032" layer="51"/> +<wire x1="6.3" y1="-2.5" x2="6.3" y2="2.5" width="0.2032" layer="51"/> +<wire x1="6.3" y1="2.5" x2="3.2" y2="2.5" width="0.2032" layer="51"/> +<wire x1="0.6" y1="2.9" x2="0.6" y2="3.4" width="0.2032" layer="21"/> +<wire x1="0.6" y1="3.4" x2="-0.6" y2="3.4" width="0.2032" layer="21"/> +<wire x1="-0.6" y1="3.4" x2="-0.6" y2="2.9" width="0.2032" layer="21"/> +<circle x="3.6" y="3.1" radius="0.1" width="0.2032" layer="21"/> +<wire x1="-3.175" y1="1.905" x2="-3.175" y2="-1.905" width="0.127" layer="51"/> +<wire x1="3.175" y1="1.905" x2="3.175" y2="-1.905" width="0.127" layer="51"/> +</package> +</packages> +<symbols> +<symbol name="CORTEX_DEBUG"> +<description><h3>Cortex Debug Connector</h3> +<p><a href="http://infocenter.arm.com/help/topic/com.arm.doc.faqs/attached/13634/cortex_debug_connectors.pdf">Datasheet</a></p></description> +<pin name="VCC" x="-15.24" y="5.08" length="short"/> +<pin name="GND@3" x="-15.24" y="2.54" length="short"/> +<pin name="GND@5" x="-15.24" y="0" length="short"/> +<pin name="KEY" x="-15.24" y="-2.54" length="short"/> +<pin name="GNDDTCT" x="-15.24" y="-5.08" length="short"/> +<pin name="!RESET" x="15.24" y="-5.08" length="short" rot="R180"/> +<pin name="NC/TDI" x="15.24" y="-2.54" length="short" rot="R180"/> +<pin name="SWO/TDO" x="15.24" y="0" length="short" rot="R180"/> +<pin name="SWDCLK/TCK" x="15.24" y="2.54" length="short" rot="R180"/> +<pin name="SWDIO/TMS" x="15.24" y="5.08" length="short" rot="R180"/> +<wire x1="-12.7" y1="-7.62" x2="-12.7" y2="7.62" width="0.254" layer="94"/> +<wire x1="-12.7" y1="7.62" x2="12.7" y2="7.62" width="0.254" layer="94"/> +<wire x1="12.7" y1="7.62" x2="12.7" y2="-7.62" width="0.254" layer="94"/> +<wire x1="12.7" y1="-7.62" x2="-12.7" y2="-7.62" width="0.254" layer="94"/> +<text x="-12.7" y="7.874" size="1.778" layer="95" font="vector">>Name</text> +<text x="-12.7" y="-9.906" size="1.778" layer="96" font="vector">>Value</text> +</symbol> +</symbols> +<devicesets> +<deviceset name="CORTEX_JTAG_DEBUG" prefix="J"> +<description><h3>Cortex Debug Connector - 10 pin</h3> +<p>Supports JTAG debug, Serial Wire debug, and Serial Wire Viewer. +PTH and SMD connector options available.</p> +<p> <ul><a href=”http://infocenter.arm.com/help/topic/com.arm.doc.faqs/attached/13634/cortex_debug_connectors.pdf”>General Connector Information</a> +<p><b> Products:</b> +<ul><li><a href=”http://www.digikey.com/product-detail/en/cnc-tech/3220-10-0100-00/1175-1627-ND/3883661”>PTH Connector</a> -via Digi-Key</li> +<li><a href=”https://www.sparkfun.com/products/13229”>SparkFun PSoc</a></li> +<li><a href=”https://www.sparkfun.com/products/13810”>SparkFun T</a></li> +</ul></p></description> +<gates> +<gate name="J1" symbol="CORTEX_DEBUG" x="0" y="0"/> +</gates> +<devices> +<device name="_PTH_NS" package="2X5-PTH-1.27MM-NO_SILK"> +<connects> +<connect gate="J1" pin="!RESET" pad="10"/> +<connect gate="J1" pin="GND@3" pad="3"/> +<connect gate="J1" pin="GND@5" pad="5"/> +<connect gate="J1" pin="GNDDTCT" pad="9"/> +<connect gate="J1" pin="KEY" pad="7"/> +<connect gate="J1" pin="NC/TDI" pad="8"/> +<connect gate="J1" pin="SWDCLK/TCK" pad="4"/> +<connect gate="J1" pin="SWDIO/TMS" pad="2"/> +<connect gate="J1" pin="SWO/TDO" pad="6"/> +<connect gate="J1" pin="VCC" pad="1"/> +</connects> +<technologies> +<technology name=""/> +</technologies> +</device> +<device name="_PTH" package="2X5-PTH-1.27MM"> +<connects> +<connect gate="J1" pin="!RESET" pad="10"/> +<connect gate="J1" pin="GND@3" pad="3"/> +<connect gate="J1" pin="GND@5" pad="5"/> +<connect gate="J1" pin="GNDDTCT" pad="9"/> +<connect gate="J1" pin="KEY" pad="7"/> +<connect gate="J1" pin="NC/TDI" pad="8"/> +<connect gate="J1" pin="SWDCLK/TCK" pad="4"/> +<connect gate="J1" pin="SWDIO/TMS" pad="2"/> +<connect gate="J1" pin="SWO/TDO" pad="6"/> +<connect gate="J1" pin="VCC" pad="1"/> +</connects> +<technologies> +<technology name=""/> +</technologies> +</device> +<device name="_SMD" package="2X5-SMD-1.27MM"> +<connects> +<connect gate="J1" pin="!RESET" pad="10"/> +<connect gate="J1" pin="GND@3" pad="3"/> +<connect gate="J1" pin="GND@5" pad="5"/> +<connect gate="J1" pin="GNDDTCT" pad="9"/> +<connect gate="J1" pin="KEY" pad="7"/> +<connect gate="J1" pin="NC/TDI" pad="8"/> +<connect gate="J1" pin="SWDCLK/TCK" pad="4"/> +<connect gate="J1" pin="SWDIO/TMS" pad="2"/> +<connect gate="J1" pin="SWO/TDO" pad="6"/> +<connect gate="J1" pin="VCC" pad="1"/> +</connects> +<technologies> +<technology name=""> +<attribute name="PROD_ID" value="CONN-14503" constant="no"/> +<attribute name="VALUE" value="JTAG" constant="no"/> +</technology> +</technologies> +</device> +</devices> +</deviceset> +</devicesets> +</library> +<library name="passives"> +<packages> +<package name="TACT-SWITCH-KMR6"> +<smd name="P$1" x="-2.05" y="0.8" dx="0.9" dy="1" layer="1" rot="R180"/> +<smd name="P$2" x="2.05" y="0.8" dx="0.9" dy="1" layer="1" rot="R180"/> +<smd name="P$3" x="-2.05" y="-0.8" dx="0.9" dy="1" layer="1" rot="R180"/> +<smd name="P$4" x="2.05" y="-0.8" dx="0.9" dy="1" layer="1" rot="R180"/> +<wire x1="-1.4" y1="0.8" x2="0" y2="0.8" width="0.127" layer="51"/> +<wire x1="0" y1="0.8" x2="1.4" y2="0.8" width="0.127" layer="51"/> +<wire x1="-1.4" y1="-0.8" x2="0" y2="-0.8" width="0.127" layer="51"/> +<wire x1="0" y1="-0.8" x2="1.4" y2="-0.8" width="0.127" layer="51"/> +<wire x1="0" y1="0.8" x2="0" y2="0.6" width="0.127" layer="51"/> +<wire x1="0" y1="0.6" x2="0.4" y2="-0.4" width="0.127" layer="51"/> +<wire x1="0" y1="-0.8" x2="0" y2="-0.5" width="0.127" layer="51"/> +<wire x1="-2.1" y1="0.2" x2="-2.1" y2="-0.2" width="0.127" layer="51"/> +<wire x1="2.1" y1="-0.2" x2="2.1" y2="0.2" width="0.127" layer="51"/> +<wire x1="2.1" y1="1.4" x2="2.1" y2="1.5" width="0.127" layer="51"/> +<wire x1="2.1" y1="1.5" x2="1" y2="1.5" width="0.127" layer="51"/> +<wire x1="1.032" y1="1.5" x2="-2.1" y2="1.5" width="0.127" layer="51"/> +<wire x1="-2.1" y1="1.5" x2="-2.1" y2="1.4" width="0.127" layer="51"/> +<wire x1="-2.1" y1="-1.4" x2="-2.1" y2="-1.5" width="0.127" layer="51"/> +<wire x1="-2.1" y1="-1.5" x2="2.1" y2="-1.5" width="0.127" layer="51"/> +<wire x1="2.1" y1="-1.5" x2="2.1" y2="-1.4" width="0.127" layer="51"/> +</package> +<package name="TACT-SWITCH-SIDE"> +<smd name="P$1" x="-1.8" y="0.725" dx="1.4" dy="1.05" layer="1" rot="R180"/> +<smd name="P$2" x="1.8" y="0.725" dx="1.4" dy="1.05" layer="1" rot="R180"/> +<smd name="P$3" x="-1.8" y="-0.725" dx="1.4" dy="1.05" layer="1" rot="R180"/> +<smd name="P$4" x="1.8" y="-0.725" dx="1.4" dy="1.05" layer="1" rot="R180"/> +<wire x1="-0.9" y1="0.8" x2="0" y2="0.8" width="0.127" layer="51"/> +<wire x1="0" y1="0.8" x2="0.9" y2="0.8" width="0.127" layer="51"/> +<wire x1="-0.9" y1="-0.8" x2="0" y2="-0.8" width="0.127" layer="51"/> +<wire x1="0" y1="-0.8" x2="0.9" y2="-0.8" width="0.127" layer="51"/> +<wire x1="0" y1="0.8" x2="0" y2="0.6" width="0.127" layer="51"/> +<wire x1="0" y1="0.6" x2="0.4" y2="-0.4" width="0.127" layer="51"/> +<wire x1="0" y1="-0.8" x2="0" y2="-0.5" width="0.127" layer="51"/> +<wire x1="-1.75" y1="-1.45" x2="1.75" y2="-1.45" width="0.127" layer="21"/> +<wire x1="-1.75" y1="1.6" x2="-1" y2="1.6" width="0.127" layer="21"/> +<wire x1="-1" y1="1.6" x2="0" y2="1.6" width="0.127" layer="21"/> +<wire x1="0" y1="1.6" x2="1" y2="1.6" width="0.127" layer="21"/> +<wire x1="1" y1="1.6" x2="1.75" y2="1.6" width="0.127" layer="21"/> +<wire x1="-1" y1="1.6" x2="-1" y2="2.3" width="0.127" layer="21"/> +<wire x1="-1" y1="2.3" x2="1" y2="2.3" width="0.127" layer="21"/> +<wire x1="1" y1="2.3" x2="1" y2="1.6" width="0.127" layer="21"/> +</package> +<package name="1206"> +<wire x1="-0.965" y1="0.787" x2="0.965" y2="0.787" width="0.1016" layer="51"/> +<wire x1="-0.965" y1="-0.787" x2="0.965" y2="-0.787" width="0.1016" layer="51"/> +<smd name="1" x="-1.4" y="0" dx="1.6" dy="1.8" layer="1"/> +<smd name="2" x="1.4" y="0" dx="1.6" dy="1.8" layer="1"/> +<text x="-1.27" y="1.143" size="1.016" layer="25">>NAME</text> +<text x="-1.397" y="-2.794" size="1.016" layer="27">>VALUE</text> +<rectangle x1="-1.7018" y1="-0.8509" x2="-0.9517" y2="0.8491" layer="51"/> +<rectangle x1="0.9517" y1="-0.8491" x2="1.7018" y2="0.8509" layer="51"/> +<rectangle x1="-0.1999" y1="-0.4001" x2="0.1999" y2="0.4001" layer="35"/> +</package> +<package name="R2010"> +<description><b>RESISTOR</b><p> +chip</description> +<wire x1="-1.662" y1="1.245" x2="1.662" y2="1.245" width="0.1524" layer="51"/> +<wire x1="-1.637" y1="-1.245" x2="1.687" y2="-1.245" width="0.1524" layer="51"/> +<wire x1="-3.473" y1="1.483" x2="3.473" y2="1.483" width="0.0508" layer="39"/> +<wire x1="3.473" y1="1.483" x2="3.473" y2="-1.483" width="0.0508" layer="39"/> +<wire x1="3.473" y1="-1.483" x2="-3.473" y2="-1.483" width="0.0508" layer="39"/> +<wire x1="-3.473" y1="-1.483" x2="-3.473" y2="1.483" width="0.0508" layer="39"/> +<wire x1="-1.027" y1="1.245" x2="1.027" y2="1.245" width="0.1524" layer="21"/> +<wire x1="-1.002" y1="-1.245" x2="1.016" y2="-1.245" width="0.1524" layer="21"/> +<smd name="1" x="-2.2" y="0" dx="1.8" dy="2.7" layer="1"/> +<smd name="2" x="2.2" y="0" dx="1.8" dy="2.7" layer="1"/> +<text x="-2.54" y="1.5875" size="1.016" layer="25">>NAME</text> +<text x="-2.54" y="-3.302" size="1.016" layer="27">>VALUE</text> +<rectangle x1="-2.4892" y1="-1.3208" x2="-1.6393" y2="1.3292" layer="51"/> +<rectangle x1="1.651" y1="-1.3208" x2="2.5009" y2="1.3292" layer="51"/> +</package> +<package name="0805"> +<smd name="1" x="-1" y="0" dx="0.8" dy="1.3" layer="1"/> +<smd name="2" x="1" y="0" dx="0.8" dy="1.3" layer="1"/> +<text x="-0.762" y="0.8255" size="1.016" layer="25">>NAME</text> +<text x="-1.016" y="-2.032" size="1.016" layer="27">>VALUE</text> +<rectangle x1="-1" y1="-0.6" x2="1" y2="0.6" layer="51"/> +</package> +<package name="0603-RES"> +<wire x1="-0.356" y1="0.432" x2="0.356" y2="0.432" width="0.1016" layer="51"/> +<wire x1="-0.356" y1="-0.419" x2="0.356" y2="-0.419" width="0.1016" layer="51"/> +<smd name="1" x="-0.85" y="0" dx="1.1" dy="1" layer="1"/> +<smd name="2" x="0.85" y="0" dx="1.1" dy="1" layer="1"/> +<text x="-0.889" y="1.397" size="1.016" layer="25">>NAME</text> +<text x="-1.016" y="-2.413" size="1.016" layer="27" ratio="10">>VALUE</text> +<rectangle x1="-0.8382" y1="-0.4699" x2="-0.3381" y2="0.4801" layer="51"/> +<rectangle x1="0.3302" y1="-0.4699" x2="0.8303" y2="0.4801" layer="51"/> +<rectangle x1="-0.1999" y1="-0.3" x2="0.1999" y2="0.3" layer="35"/> +<rectangle x1="-0.2286" y1="-0.381" x2="0.2286" y2="0.381" layer="21"/> +</package> +<package name="R2512"> +<wire x1="-2.362" y1="1.473" x2="2.387" y2="1.473" width="0.1524" layer="51"/> +<wire x1="-2.362" y1="-1.473" x2="2.387" y2="-1.473" width="0.1524" layer="51"/> +<smd name="1" x="-2.8" y="0" dx="1.8" dy="3.2" layer="1"/> +<smd name="2" x="2.8" y="0" dx="1.8" dy="3.2" layer="1"/> +<text x="-2.54" y="1.905" size="1.016" layer="25">>NAME</text> +<text x="-2.54" y="-3.175" size="1.016" layer="27">>VALUE</text> +<rectangle x1="-3.2004" y1="-1.5494" x2="-2.3505" y2="1.5507" layer="51"/> +<rectangle x1="2.3622" y1="-1.5494" x2="3.2121" y2="1.5507" layer="51"/> +</package> +<package name="TO220ACS"> +<description><B>DIODE</B><p> +2-lead molded, vertical</description> +<wire x1="5.08" y1="-1.143" x2="4.953" y2="-4.064" width="0.1524" layer="21"/> +<wire x1="4.699" y1="-4.318" x2="4.953" y2="-4.064" width="0.1524" layer="21"/> +<wire x1="4.699" y1="-4.318" x2="-4.699" y2="-4.318" width="0.1524" layer="21"/> +<wire x1="-4.953" y1="-4.064" x2="-4.699" y2="-4.318" width="0.1524" layer="21"/> +<wire x1="-4.953" y1="-4.064" x2="-5.08" y2="-1.143" width="0.1524" layer="21"/> +<circle x="-4.4958" y="-3.7084" radius="0.254" width="0" layer="21"/> +<pad name="C" x="-2.54" y="-2.54" drill="1.016" shape="long" rot="R90"/> +<pad name="A" x="2.54" y="-2.54" drill="1.016" shape="long" rot="R90"/> +<text x="-5.08" y="-6.0452" size="1.016" layer="25" ratio="10">>NAME</text> +<text x="-5.08" y="-7.62" size="1.016" layer="27" ratio="10">>VALUE</text> +<rectangle x1="-5.334" y1="-0.762" x2="5.334" y2="0" layer="21"/> +<rectangle x1="-5.334" y1="-1.27" x2="-3.429" y2="-0.762" layer="21"/> +<rectangle x1="-3.429" y1="-1.27" x2="-1.651" y2="-0.762" layer="51"/> +<rectangle x1="3.429" y1="-1.27" x2="5.334" y2="-0.762" layer="21"/> +<rectangle x1="1.651" y1="-1.27" x2="3.429" y2="-0.762" layer="51"/> +<rectangle x1="-1.651" y1="-1.27" x2="1.651" y2="-0.762" layer="21"/> +</package> +<package name="0402"> +<description><b>CAPACITOR</b><p> +chip</description> +<wire x1="-0.245" y1="0.224" x2="0.245" y2="0.224" width="0.1524" layer="51"/> +<wire x1="0.245" y1="-0.224" x2="-0.245" y2="-0.224" width="0.1524" layer="51"/> +<smd name="1" x="-0.525" y="0" dx="0.575" dy="0.7" layer="1"/> +<smd name="2" x="0.525" y="0" dx="0.575" dy="0.7" layer="1"/> +<text x="-0.889" y="0.6985" size="1.016" layer="25">>NAME</text> +<text x="-1.0795" y="-1.778" size="1.016" layer="27">>VALUE</text> +<rectangle x1="-0.554" y1="-0.3048" x2="-0.254" y2="0.2951" layer="51"/> +<rectangle x1="0.2588" y1="-0.3048" x2="0.5588" y2="0.2951" layer="51"/> +</package> +<package name="2-SMD-3.2X1.5MM"> +<smd name="P$1" x="-1.25" y="0" dx="1.9" dy="1.1" layer="1" rot="R90"/> +<smd name="P$2" x="1.25" y="0" dx="1.9" dy="1.1" layer="1" rot="R90"/> +<wire x1="-0.6" y1="0.9" x2="0.6" y2="0.9" width="0.127" layer="51"/> +<wire x1="-0.6" y1="-0.9" x2="0.6" y2="-0.9" width="0.127" layer="51"/> +<text x="-2.54" y="1.27" size="1.27" layer="25">>NAME</text> +<text x="-2.54" y="-2.54" size="1.27" layer="27">>VALUE</text> +</package> +<package name="0603-CAP"> +<wire x1="-0.356" y1="0.332" x2="0.356" y2="0.332" width="0.1016" layer="51"/> +<wire x1="-0.356" y1="-0.319" x2="0.356" y2="-0.319" width="0.1016" layer="51"/> +<smd name="1" x="-0.8" y="0" dx="0.8" dy="0.95" layer="1"/> +<smd name="2" x="0.8" y="0" dx="0.8" dy="0.95" layer="1"/> +<text x="-0.889" y="1.397" size="1.016" layer="25">>NAME</text> +<text x="-1.016" y="-2.413" size="1.016" layer="27">>VALUE</text> +<rectangle x1="-0.8382" y1="-0.4" x2="-0.3381" y2="0.4" layer="51"/> +<rectangle x1="0.3302" y1="-0.4" x2="0.8303" y2="0.4" layer="51"/> +</package> +<package name="1210"> +<wire x1="-1.6" y1="1.3" x2="1.6" y2="1.3" width="0.127" layer="51"/> +<wire x1="1.6" y1="1.3" x2="1.6" y2="-1.3" width="0.127" layer="51"/> +<wire x1="1.6" y1="-1.3" x2="-1.6" y2="-1.3" width="0.127" layer="51"/> +<wire x1="-1.6" y1="-1.3" x2="-1.6" y2="1.3" width="0.127" layer="51"/> +<wire x1="-1.6" y1="1.3" x2="1.6" y2="1.3" width="0.2032" layer="51"/> +<wire x1="-1.6" y1="-1.3" x2="1.6" y2="-1.3" width="0.2032" layer="51"/> +<smd name="1" x="-1.6" y="0" dx="1.2" dy="2.5" layer="1"/> +<smd name="2" x="1.6" y="0" dx="1.2" dy="2.5" layer="1"/> +<text x="-2.07" y="1.77" size="1.016" layer="25">>NAME</text> +<text x="-2.17" y="-3.24" size="1.016" layer="27">>VALUE</text> +</package> +<package name="2220-C"> +<smd name="P$1" x="-2.6" y="0" dx="1.2" dy="5" layer="1"/> +<smd name="P$2" x="2.6" y="0" dx="1.2" dy="5" layer="1"/> +<text x="-1.5" y="3" size="0.6096" layer="125">>NAME</text> +<text x="-1.5" y="-3.5" size="0.6096" layer="127">>VALUE</text> +</package> +<package name="744777920-INDUCTOR"> +<smd name="P$1" x="0" y="3" dx="1.7" dy="2" layer="1"/> +<smd name="P$2" x="0" y="-3" dx="1.7" dy="2" layer="1"/> +<wire x1="-4" y1="0" x2="-4" y2="3" width="0.127" layer="21"/> +<wire x1="-4" y1="3" x2="-3" y2="4" width="0.127" layer="21" curve="-90"/> +<wire x1="-3" y1="4" x2="3" y2="4" width="0.127" layer="21"/> +<wire x1="3" y1="4" x2="4" y2="3" width="0.127" layer="21" curve="-90"/> +<wire x1="4" y1="3" x2="4" y2="-3" width="0.127" layer="21"/> +<wire x1="4" y1="-3" x2="3" y2="-4" width="0.127" layer="21" curve="-90"/> +<wire x1="3" y1="-4" x2="-3" y2="-4" width="0.127" layer="21"/> +<wire x1="-3" y1="-4" x2="-4" y2="-3" width="0.127" layer="21" curve="-90"/> +<wire x1="-4" y1="-3" x2="-4" y2="0" width="0.127" layer="21"/> +<rectangle x1="-4" y1="-4" x2="4" y2="4" layer="39"/> +<text x="5.08" y="2.54" size="1.016" layer="25">>NAME</text> +<text x="5.08" y="1.27" size="1.016" layer="27">>VALUE</text> +</package> +<package name="SPM6530-IND"> +<smd name="1" x="0" y="2.775" dx="3.4" dy="1.85" layer="1"/> +<smd name="2" x="0" y="-2.775" dx="3.4" dy="1.85" layer="1"/> +<wire x1="-3.25" y1="3.85" x2="-3.25" y2="-3.85" width="0.127" layer="21"/> +<wire x1="-3.25" y1="-3.85" x2="3.25" y2="-3.85" width="0.127" layer="21"/> +<wire x1="3.25" y1="-3.85" x2="3.25" y2="3.85" width="0.127" layer="21"/> +<wire x1="3.25" y1="3.85" x2="-3.25" y2="3.85" width="0.127" layer="21"/> +<text x="3.81" y="2.54" size="1.016" layer="25">>NAME</text> +<text x="3.81" y="-3.81" size="1.016" layer="27">>VALUE</text> +</package> +<package name="IHLP-5050FD-01-IND"> +<smd name="1" x="0" y="5.4102" dx="4.953" dy="2.9464" layer="1"/> +<smd name="2" x="0" y="-5.4102" dx="4.953" dy="2.9464" layer="1"/> +<wire x1="6.4516" y1="6.604" x2="6.4516" y2="-6.604" width="0.127" layer="21"/> +<wire x1="3.81" y1="-6.604" x2="6.4516" y2="-6.604" width="0.127" layer="21"/> +<wire x1="6.4516" y1="6.604" x2="3.81" y2="6.604" width="0.127" layer="21"/> +<wire x1="-3.81" y1="6.604" x2="-6.4516" y2="6.604" width="0.127" layer="21"/> +<wire x1="-6.4516" y1="6.604" x2="-6.4516" y2="-6.604" width="0.127" layer="21"/> +<wire x1="-6.4516" y1="-6.604" x2="-3.81" y2="-6.604" width="0.127" layer="21"/> +<text x="5.08" y="7.62" size="1.016" layer="25">>NAME</text> +<text x="5.08" y="-8.89" size="1.016" layer="27">>VALUE</text> +</package> +<package name="7443340330-IND"> +<smd name="P$1" x="0" y="3.35" dx="3" dy="2.3" layer="1"/> +<smd name="P$2" x="0" y="-3.35" dx="3" dy="2.3" layer="1"/> +<wire x1="-2" y1="4" x2="-4" y2="4" width="0.127" layer="21"/> +<wire x1="-4" y1="4" x2="-4" y2="-4" width="0.127" layer="21"/> +<wire x1="-4" y1="-4" x2="-2" y2="-4" width="0.127" layer="21"/> +<wire x1="2" y1="-4" x2="4" y2="-4" width="0.127" layer="21"/> +<wire x1="4" y1="-4" x2="4" y2="4" width="0.127" layer="21"/> +<wire x1="4" y1="4" x2="2" y2="4" width="0.127" layer="21"/> +<text x="3" y="5" size="1.016" layer="25">>NAME</text> +<text x="3" y="-6" size="1.016" layer="27">>VALUE</text> +<rectangle x1="-1.15" y1="2.95" x2="1.15" y2="4.45" layer="51"/> +<rectangle x1="-1.15" y1="-4.45" x2="1.15" y2="-2.95" layer="51"/> +</package> +<package name="0402-RES"> +<description><b>CAPACITOR</b><p> +chip</description> +<wire x1="-0.245" y1="0.224" x2="0.245" y2="0.224" width="0.1524" layer="51"/> +<wire x1="0.245" y1="-0.224" x2="-0.245" y2="-0.224" width="0.1524" layer="51"/> +<wire x1="-1.473" y1="0.483" x2="1.473" y2="0.483" width="0.0508" layer="39"/> +<wire x1="1.473" y1="0.483" x2="1.473" y2="-0.483" width="0.0508" layer="39"/> +<wire x1="1.473" y1="-0.483" x2="-1.473" y2="-0.483" width="0.0508" layer="39"/> +<wire x1="-1.473" y1="-0.483" x2="-1.473" y2="0.483" width="0.0508" layer="39"/> +<smd name="1" x="-0.65" y="0" dx="0.7" dy="0.9" layer="1"/> +<smd name="2" x="0.65" y="0" dx="0.7" dy="0.9" layer="1"/> +<text x="-0.889" y="0.6985" size="1.016" layer="25">>NAME</text> +<text x="-1.0795" y="-1.778" size="1.016" layer="27">>VALUE</text> +<rectangle x1="-0.554" y1="-0.3048" x2="-0.254" y2="0.2951" layer="51"/> +<rectangle x1="0.2588" y1="-0.3048" x2="0.5588" y2="0.2951" layer="51"/> +<rectangle x1="-0.1999" y1="-0.3" x2="0.1999" y2="0.3" layer="35"/> +<rectangle x1="-0.2032" y1="-0.3556" x2="0.2032" y2="0.3556" layer="21"/> +</package> +<package name="8X8-IND"> +<smd name="1" x="0" y="3.2" dx="2.2" dy="1.6" layer="1"/> +<smd name="2" x="0" y="-3.2" dx="2.2" dy="1.6" layer="1"/> +<wire x1="2" y1="-4" x2="4" y2="-4" width="0.127" layer="21"/> +<wire x1="4" y1="-4" x2="4" y2="4" width="0.127" layer="21"/> +<wire x1="4" y1="4" x2="2" y2="4" width="0.127" layer="21"/> +<wire x1="-2" y1="4" x2="-4" y2="4" width="0.127" layer="21"/> +<wire x1="-4" y1="4" x2="-4" y2="-4" width="0.127" layer="21"/> +<wire x1="-4" y1="-4" x2="-2" y2="-4" width="0.127" layer="21"/> +<text x="-5" y="5" size="1.27" layer="25">>NAME</text> +<text x="-5" y="-6" size="1.27" layer="27">>VALUE</text> +<rectangle x1="-3.81" y1="-3.81" x2="3.81" y2="3.81" layer="39"/> +</package> +<package name="744029100-IND"> +<smd name="1" x="0" y="1.1" dx="3.2" dy="1" layer="1"/> +<smd name="2" x="0" y="-1.1" dx="3.2" dy="1" layer="1"/> +<wire x1="-2" y1="2" x2="-2" y2="-2" width="0.127" layer="21"/> +<wire x1="-2" y1="-2" x2="2" y2="-2" width="0.127" layer="21"/> +<wire x1="2" y1="-2" x2="2" y2="2" width="0.127" layer="21"/> +<wire x1="2" y1="2" x2="-2" y2="2" width="0.127" layer="21"/> +<text x="-3" y="2.3" size="1.27" layer="25">>NAME</text> +<text x="-3" y="-3.6" size="1.27" layer="27">>VALUE</text> +</package> +<package name="7447709470-IND"> +<smd name="1" x="0" y="4.95" dx="5.4" dy="2.9" layer="1"/> +<smd name="2" x="0" y="-4.95" dx="5.4" dy="2.9" layer="1"/> +<wire x1="-3" y1="6" x2="-6" y2="6" width="0.127" layer="21"/> +<wire x1="-6" y1="6" x2="-6" y2="-6" width="0.127" layer="21"/> +<wire x1="-6" y1="-6" x2="-3" y2="-6" width="0.127" layer="21"/> +<wire x1="3" y1="-6" x2="6" y2="-6" width="0.127" layer="21"/> +<wire x1="6" y1="-6" x2="6" y2="6" width="0.127" layer="21"/> +<wire x1="6" y1="6" x2="3" y2="6" width="0.127" layer="21"/> +<text x="-7" y="8" size="1.27" layer="25">>NAME</text> +<text x="-7" y="-9" size="1.27" layer="27">>VALUE</text> +</package> +<package name="7447789002-IND"> +<smd name="1" x="0" y="3" dx="1.7" dy="2" layer="1"/> +<smd name="2" x="0" y="-3" dx="1.7" dy="2" layer="1"/> +<wire x1="2" y1="-4" x2="4" y2="-4" width="0.127" layer="21"/> +<wire x1="4" y1="-4" x2="4" y2="4" width="0.127" layer="21"/> +<wire x1="4" y1="4" x2="2" y2="4" width="0.127" layer="21"/> +<wire x1="-2" y1="4" x2="-4" y2="4" width="0.127" layer="21"/> +<wire x1="-4" y1="4" x2="-4" y2="-4" width="0.127" layer="21"/> +<wire x1="-4" y1="-4" x2="-2" y2="-4" width="0.127" layer="21"/> +<text x="-5" y="5" size="1.27" layer="25">>NAME</text> +<text x="-5" y="-6" size="1.27" layer="27">>VALUE</text> +<rectangle x1="-3.81" y1="-3.81" x2="3.81" y2="3.81" layer="39"/> +</package> +<package name="NRS5020"> +<smd name="P$1" x="-1.8" y="0" dx="1.5" dy="4" layer="1"/> +<smd name="P$2" x="1.8" y="0" dx="1.5" dy="4" layer="1"/> +<wire x1="-2.5" y1="2.5" x2="2.5" y2="2.5" width="0.127" layer="51"/> +<wire x1="2.5" y1="2.5" x2="2.5" y2="-2.5" width="0.127" layer="51"/> +<wire x1="2.5" y1="-2.5" x2="-2.5" y2="-2.5" width="0.127" layer="51"/> +<wire x1="-2.5" y1="-2.5" x2="-2.5" y2="2.5" width="0.127" layer="51"/> +</package> +</packages> +<symbols> +<symbol name="TS2"> +<wire x1="0" y1="1.905" x2="0" y2="2.54" width="0.254" layer="94"/> +<wire x1="-4.445" y1="1.905" x2="-3.175" y2="1.905" width="0.254" layer="94"/> +<wire x1="-4.445" y1="-1.905" x2="-3.175" y2="-1.905" width="0.254" layer="94"/> +<wire x1="-4.445" y1="1.905" x2="-4.445" y2="0" width="0.254" layer="94"/> +<wire x1="-4.445" y1="0" x2="-4.445" y2="-1.905" width="0.254" layer="94"/> +<wire x1="-2.54" y1="0" x2="-1.905" y2="0" width="0.1524" layer="94"/> +<wire x1="-1.27" y1="0" x2="-0.635" y2="0" width="0.1524" layer="94"/> +<wire x1="-4.445" y1="0" x2="-3.175" y2="0" width="0.1524" layer="94"/> +<wire x1="2.54" y1="2.54" x2="0" y2="2.54" width="0.1524" layer="94"/> +<wire x1="2.54" y1="-2.54" x2="0" y2="-2.54" width="0.1524" layer="94"/> +<wire x1="0" y1="-2.54" x2="-1.27" y2="1.905" width="0.254" layer="94"/> +<circle x="0" y="-2.54" radius="0.127" width="0.4064" layer="94"/> +<circle x="0" y="2.54" radius="0.127" width="0.4064" layer="94"/> +<text x="-6.35" y="-2.54" size="1.778" layer="95" rot="R90">>NAME</text> +<text x="-3.81" y="3.175" size="1.778" layer="96" rot="R90">>VALUE</text> +<pin name="P" x="0" y="-5.08" visible="pad" length="short" direction="pas" swaplevel="2" rot="R90"/> +<pin name="S" x="0" y="5.08" visible="pad" length="short" direction="pas" swaplevel="1" rot="R270"/> +<pin name="S1" x="2.54" y="5.08" visible="pad" length="short" direction="pas" swaplevel="1" rot="R270"/> +<pin name="P1" x="2.54" y="-5.08" visible="pad" length="short" direction="pas" swaplevel="2" rot="R90"/> +</symbol> +<symbol name="RESISTOR"> +<wire x1="-2.54" y1="0" x2="-2.159" y2="1.016" width="0.1524" layer="94"/> +<wire x1="-2.159" y1="1.016" x2="-1.524" y2="-1.016" width="0.1524" layer="94"/> +<wire x1="-1.524" y1="-1.016" x2="-0.889" y2="1.016" width="0.1524" layer="94"/> +<wire x1="-0.889" y1="1.016" x2="-0.254" y2="-1.016" width="0.1524" layer="94"/> +<wire x1="-0.254" y1="-1.016" x2="0.381" y2="1.016" width="0.1524" layer="94"/> +<wire x1="0.381" y1="1.016" x2="1.016" y2="-1.016" width="0.1524" layer="94"/> +<wire x1="1.016" y1="-1.016" x2="1.651" y2="1.016" width="0.1524" layer="94"/> +<wire x1="1.651" y1="1.016" x2="2.286" y2="-1.016" width="0.1524" layer="94"/> +<wire x1="2.286" y1="-1.016" x2="2.54" y2="0" width="0.1524" layer="94"/> +<text x="-3.81" y="1.4986" size="1.778" layer="95">>NAME</text> +<text x="-3.81" y="-3.302" size="1.778" layer="96">>VALUE</text> +<pin name="2" x="5.08" y="0" visible="off" length="short" direction="pas" swaplevel="1" rot="R180"/> +<pin name="1" x="-5.08" y="0" visible="off" length="short" direction="pas" swaplevel="1"/> +<text x="-3.81" y="-6.858" size="1.27" layer="97">>PRECISION</text> +<text x="-3.81" y="-5.08" size="1.27" layer="97">>PACKAGE</text> +</symbol> +<symbol name="RESONATOR"> +<wire x1="1.016" y1="0" x2="2.54" y2="0" width="0.1524" layer="94"/> +<wire x1="-2.54" y1="0" x2="-1.016" y2="0" width="0.1524" layer="94"/> +<wire x1="-0.381" y1="1.524" x2="-0.381" y2="-1.524" width="0.254" layer="94"/> +<wire x1="-0.381" y1="-1.524" x2="0.381" y2="-1.524" width="0.254" layer="94"/> +<wire x1="0.381" y1="-1.524" x2="0.381" y2="1.524" width="0.254" layer="94"/> +<wire x1="0.381" y1="1.524" x2="-0.381" y2="1.524" width="0.254" layer="94"/> +<wire x1="1.016" y1="1.778" x2="1.016" y2="-1.778" width="0.254" layer="94"/> +<wire x1="-1.016" y1="1.778" x2="-1.016" y2="-1.778" width="0.254" layer="94"/> +<text x="2.54" y="1.016" size="1.778" layer="95">>NAME</text> +<text x="2.54" y="-2.54" size="1.778" layer="96">>VALUE</text> +<pin name="2" x="2.54" y="0" visible="off" length="point" direction="pas" swaplevel="1" rot="R180"/> +<pin name="1" x="-2.54" y="0" visible="off" length="point" direction="pas" swaplevel="1"/> +</symbol> +<symbol name="CAP"> +<wire x1="0" y1="2.54" x2="0" y2="2.032" width="0.1524" layer="94"/> +<wire x1="0" y1="0" x2="0" y2="0.508" width="0.1524" layer="94"/> +<text x="1.524" y="2.921" size="1.778" layer="95">>NAME</text> +<text x="1.524" y="-2.159" size="1.778" layer="96">>VALUE</text> +<rectangle x1="-2.032" y1="0.508" x2="2.032" y2="1.016" layer="94"/> +<rectangle x1="-2.032" y1="1.524" x2="2.032" y2="2.032" layer="94"/> +<pin name="1" x="0" y="5.08" visible="off" length="short" direction="pas" swaplevel="1" rot="R270"/> +<pin name="2" x="0" y="-2.54" visible="off" length="short" direction="pas" swaplevel="1" rot="R90"/> +<text x="1.524" y="-4.064" size="1.27" layer="97">>PACKAGE</text> +<text x="1.524" y="-5.842" size="1.27" layer="97">>VOLTAGE</text> +<text x="1.524" y="-7.62" size="1.27" layer="97">>TYPE</text> +</symbol> +<symbol name="INDUCTOR"> +<wire x1="0" y1="5.08" x2="1.27" y2="3.81" width="0.254" layer="94" curve="-90" cap="flat"/> +<wire x1="0" y1="2.54" x2="1.27" y2="3.81" width="0.254" layer="94" curve="90" cap="flat"/> +<wire x1="0" y1="2.54" x2="1.27" y2="1.27" width="0.254" layer="94" curve="-90" cap="flat"/> +<wire x1="0" y1="0" x2="1.27" y2="1.27" width="0.254" layer="94" curve="90" cap="flat"/> +<wire x1="0" y1="0" x2="1.27" y2="-1.27" width="0.254" layer="94" curve="-90" cap="flat"/> +<wire x1="0" y1="-2.54" x2="1.27" y2="-1.27" width="0.254" layer="94" curve="90" cap="flat"/> +<wire x1="0" y1="-2.54" x2="1.27" y2="-3.81" width="0.254" layer="94" curve="-90" cap="flat"/> +<wire x1="0" y1="-5.08" x2="1.27" y2="-3.81" width="0.254" layer="94" curve="90" cap="flat"/> +<text x="-1.27" y="-5.08" size="1.778" layer="95" rot="R90">>NAME</text> +<text x="3.81" y="-5.08" size="1.778" layer="96" rot="R90">>VALUE</text> +<pin name="2" x="0" y="-7.62" visible="off" length="short" direction="pas" swaplevel="1" rot="R90"/> +<pin name="1" x="0" y="7.62" visible="off" length="short" direction="pas" swaplevel="1" rot="R270"/> +<text x="6.35" y="-5.08" size="1.27" layer="97" rot="R90">>PACKAGE</text> +</symbol> +</symbols> +<devicesets> +<deviceset name="2-8X4-5_SWITCH" prefix="S"> +<gates> +<gate name="G$1" symbol="TS2" x="0" y="0"/> +</gates> +<devices> +<device name="" package="TACT-SWITCH-KMR6"> +<connects> +<connect gate="G$1" pin="P" pad="P$1"/> +<connect gate="G$1" pin="P1" pad="P$2"/> +<connect gate="G$1" pin="S" pad="P$3"/> +<connect gate="G$1" pin="S1" pad="P$4"/> +</connects> +<technologies> +<technology name=""/> +</technologies> +</device> +<device name="SIDE" package="TACT-SWITCH-SIDE"> +<connects> +<connect gate="G$1" pin="P" pad="P$1"/> +<connect gate="G$1" pin="P1" pad="P$2"/> +<connect gate="G$1" pin="S" pad="P$3"/> +<connect gate="G$1" pin="S1" pad="P$4"/> +</connects> +<technologies> +<technology name=""/> +</technologies> +</device> +</devices> +</deviceset> +<deviceset name="RESISTOR" prefix="R" uservalue="yes"> +<description><b>Resistor</b> +Basic schematic elements and footprints for 0603, 1206, and PTH resistors.</description> +<gates> +<gate name="G$1" symbol="RESISTOR" x="0" y="0"/> +</gates> +<devices> +<device name="1206" package="1206"> +<connects> +<connect gate="G$1" pin="1" pad="1"/> +<connect gate="G$1" pin="2" pad="2"/> +</connects> +<technologies> +<technology name=""> +<attribute name="PACKAGE" value="1206" constant="no"/> +<attribute name="PRECISION" value="" constant="no"/> +</technology> +</technologies> +</device> +<device name="2010" package="R2010"> +<connects> +<connect gate="G$1" pin="1" pad="1"/> +<connect gate="G$1" pin="2" pad="2"/> +</connects> +<technologies> +<technology name=""> +<attribute name="PACKAGE" value="2010"/> +<attribute name="PRECISION" value="" constant="no"/> +</technology> +</technologies> +</device> +<device name="0805-RES" package="0805"> +<connects> +<connect gate="G$1" pin="1" pad="1"/> +<connect gate="G$1" pin="2" pad="2"/> +</connects> +<technologies> +<technology name=""> +<attribute name="PACKAGE" value="0805"/> +<attribute name="PRECISION" value="" constant="no"/> +</technology> +</technologies> +</device> +<device name="0603-RES" package="0603-RES"> +<connects> +<connect gate="G$1" pin="1" pad="1"/> +<connect gate="G$1" pin="2" pad="2"/> +</connects> +<technologies> +<technology name=""> +<attribute name="PACKAGE" value="0603"/> +<attribute name="PRECISION" value="" constant="no"/> +</technology> +</technologies> +</device> +<device name="2512" package="R2512"> +<connects> +<connect gate="G$1" pin="1" pad="1"/> +<connect gate="G$1" pin="2" pad="2"/> +</connects> +<technologies> +<technology name=""> +<attribute name="PACKAGE" value="2512"/> +<attribute name="PRECISION" value="" constant="no"/> +</technology> +</technologies> +</device> +<device name="TO220ACS" package="TO220ACS"> +<connects> +<connect gate="G$1" pin="1" pad="A"/> +<connect gate="G$1" pin="2" pad="C"/> +</connects> +<technologies> +<technology name=""/> +</technologies> +</device> +<device name="0402" package="0402"> +<connects> +<connect gate="G$1" pin="1" pad="1"/> +<connect gate="G$1" pin="2" pad="2"/> +</connects> +<technologies> +<technology name=""/> +</technologies> +</device> +</devices> +</deviceset> +<deviceset name="KHZ-CRYSTAL" prefix="Y"> +<gates> +<gate name="G$1" symbol="RESONATOR" x="0" y="0"/> +</gates> +<devices> +<device name="" package="2-SMD-3.2X1.5MM"> +<connects> +<connect gate="G$1" pin="1" pad="P$1"/> +<connect gate="G$1" pin="2" pad="P$2"/> +</connects> +<technologies> +<technology name=""/> +</technologies> +</device> +</devices> +</deviceset> +<deviceset name="CAP" prefix="C" uservalue="yes"> +<description><b>Capacitor</b> +Standard 0603 ceramic capacitor, and 0.1" leaded capacitor.</description> +<gates> +<gate name="G$1" symbol="CAP" x="0" y="0"/> +</gates> +<devices> +<device name="0805" package="0805"> +<connects> +<connect gate="G$1" pin="1" pad="1"/> +<connect gate="G$1" pin="2" pad="2"/> +</connects> +<technologies> +<technology name=""> +<attribute name="PACKAGE" value="0805"/> +<attribute name="TYPE" value="" constant="no"/> +<attribute name="VOLTAGE" value="" constant="no"/> +</technology> +</technologies> +</device> +<device name="0603-CAP" package="0603-CAP"> +<connects> +<connect gate="G$1" pin="1" pad="1"/> +<connect gate="G$1" pin="2" pad="2"/> +</connects> +<technologies> +<technology name=""> +<attribute name="PACKAGE" value="0603"/> +<attribute name="TYPE" value="" constant="no"/> +<attribute name="VOLTAGE" value="" constant="no"/> +</technology> +</technologies> +</device> +<device name="1210" package="1210"> +<connects> +<connect gate="G$1" pin="1" pad="1"/> +<connect gate="G$1" pin="2" pad="2"/> +</connects> +<technologies> +<technology name=""> +<attribute name="PACKAGE" value="1210" constant="no"/> +<attribute name="TYPE" value="" constant="no"/> +<attribute name="VOLTAGE" value="" constant="no"/> +</technology> +</technologies> +</device> +<device name="1206" package="1206"> +<connects> +<connect gate="G$1" pin="1" pad="1"/> +<connect gate="G$1" pin="2" pad="2"/> +</connects> +<technologies> +<technology name=""> +<attribute name="PACKAGE" value="1206" constant="no"/> +<attribute name="TYPE" value="" constant="no"/> +<attribute name="VOLTAGE" value="" constant="no"/> +</technology> +</technologies> +</device> +<device name="2220" package="2220-C"> +<connects> +<connect gate="G$1" pin="1" pad="P$1"/> +<connect gate="G$1" pin="2" pad="P$2"/> +</connects> +<technologies> +<technology name=""/> +</technologies> +</device> +<device name="0402" package="0402"> +<connects> +<connect gate="G$1" pin="1" pad="1"/> +<connect gate="G$1" pin="2" pad="2"/> +</connects> +<technologies> +<technology name=""/> +</technologies> +</device> +</devices> +</deviceset> +<deviceset name="INDUCTOR" prefix="L" uservalue="yes"> +<gates> +<gate name="G$1" symbol="INDUCTOR" x="0" y="0"/> +</gates> +<devices> +<device name="-744777920" package="744777920-INDUCTOR"> +<connects> +<connect gate="G$1" pin="1" pad="P$1"/> +<connect gate="G$1" pin="2" pad="P$2"/> +</connects> +<technologies> +<technology name=""/> +</technologies> +</device> +<device name="-0805" package="0805"> +<connects> +<connect gate="G$1" pin="1" pad="1"/> +<connect gate="G$1" pin="2" pad="2"/> +</connects> +<technologies> +<technology name=""> +<attribute name="PACKAGE" value="0805"/> +</technology> +</technologies> +</device> +<device name="-SPM6530" package="SPM6530-IND"> +<connects> +<connect gate="G$1" pin="1" pad="1"/> +<connect gate="G$1" pin="2" pad="2"/> +</connects> +<technologies> +<technology name=""/> +</technologies> +</device> +<device name="-IHLP-5050FD-01" package="IHLP-5050FD-01-IND"> +<connects> +<connect gate="G$1" pin="1" pad="1"/> +<connect gate="G$1" pin="2" pad="2"/> +</connects> +<technologies> +<technology name=""/> +</technologies> +</device> +<device name="-7443340330" package="7443340330-IND"> +<connects> +<connect gate="G$1" pin="1" pad="P$1"/> +<connect gate="G$1" pin="2" pad="P$2"/> +</connects> +<technologies> +<technology name=""> +<attribute name="PACKAGE" value="7443340330"/> +</technology> +</technologies> +</device> +<device name="-0402" package="0402-RES"> +<connects> +<connect gate="G$1" pin="1" pad="1"/> +<connect gate="G$1" pin="2" pad="2"/> +</connects> +<technologies> +<technology name=""> +<attribute name="PACKAGE" value="0402"/> +</technology> +</technologies> +</device> +<device name="-744778002" package="8X8-IND"> +<connects> +<connect gate="G$1" pin="1" pad="1"/> +<connect gate="G$1" pin="2" pad="2"/> +</connects> +<technologies> +<technology name=""/> +</technologies> +</device> +<device name="-744029100" package="744029100-IND"> +<connects> +<connect gate="G$1" pin="1" pad="1"/> +<connect gate="G$1" pin="2" pad="2"/> +</connects> +<technologies> +<technology name=""/> +</technologies> +</device> +<device name="-7447709470" package="7447709470-IND"> +<connects> +<connect gate="G$1" pin="1" pad="1"/> +<connect gate="G$1" pin="2" pad="2"/> +</connects> +<technologies> +<technology name=""/> +</technologies> +</device> +<device name="-7447789002" package="7447789002-IND"> +<connects> +<connect gate="G$1" pin="1" pad="1"/> +<connect gate="G$1" pin="2" pad="2"/> +</connects> +<technologies> +<technology name=""/> +</technologies> +</device> +<device name="" package="NRS5020"> +<connects> +<connect gate="G$1" pin="1" pad="P$1"/> +<connect gate="G$1" pin="2" pad="P$2"/> +</connects> +<technologies> +<technology name=""/> +</technologies> +</device> +<device name="-0603" package="0603-CAP"> +<connects> +<connect gate="G$1" pin="1" pad="2"/> +<connect gate="G$1" pin="2" pad="1"/> +</connects> +<technologies> +<technology name=""/> +</technologies> +</device> +</devices> +</deviceset> +</devicesets> +</library> +<library name="supply1"> +<description><b>Supply Symbols</b><p> + GND, VCC, 0V, +5V, -5V, etc.<p> + Please keep in mind, that these devices are necessary for the + automatic wiring of the supply signals.<p> + The pin name defined in the symbol is identical to the net which is to be wired automatically.<p> + In this library the device names are the same as the pin names of the symbols, therefore the correct signal names appear next to the supply symbols in the schematic.<p> + <author>Created by librarian@cadsoft.de</author></description> +<packages> +</packages> +<symbols> +<symbol name="+3V3" urn="urn:adsk.eagle:symbol:26950/1"> +<wire x1="1.27" y1="-1.905" x2="0" y2="0" width="0.254" layer="94"/> +<wire x1="0" y1="0" x2="-1.27" y2="-1.905" width="0.254" layer="94"/> +<text x="-2.54" y="-5.08" size="1.778" layer="96" rot="R90">>VALUE</text> +<pin name="+3V3" x="0" y="-2.54" visible="off" length="short" direction="sup" rot="R90"/> +</symbol> +<symbol name="+5V" urn="urn:adsk.eagle:symbol:26929/1"> +<wire x1="1.27" y1="-1.905" x2="0" y2="0" width="0.254" layer="94"/> +<wire x1="0" y1="0" x2="-1.27" y2="-1.905" width="0.254" layer="94"/> +<text x="-2.54" y="-5.08" size="1.778" layer="96" rot="R90">>VALUE</text> +<pin name="+5V" x="0" y="-2.54" visible="off" length="short" direction="sup" rot="R90"/> +</symbol> +<symbol name="GND" urn="urn:adsk.eagle:symbol:26925/1"> +<wire x1="-1.905" y1="0" x2="1.905" y2="0" width="0.254" layer="94"/> +<text x="-2.54" y="-2.54" size="1.778" layer="96">>VALUE</text> +<pin name="GND" x="0" y="2.54" visible="off" length="short" direction="sup" rot="R270"/> +</symbol> +</symbols> +<devicesets> +<deviceset name="+3V3" urn="urn:adsk.eagle:component:26981/1" prefix="+3V3"> +<description><b>SUPPLY SYMBOL</b></description> +<gates> +<gate name="G$1" symbol="+3V3" x="0" y="0"/> +</gates> +<devices> +<device name=""> +<technologies> +<technology name=""/> +</technologies> +</device> +</devices> +</deviceset> +<deviceset name="+5V" urn="urn:adsk.eagle:component:26963/1" prefix="P+"> +<description><b>SUPPLY SYMBOL</b></description> +<gates> +<gate name="1" symbol="+5V" x="0" y="0"/> +</gates> +<devices> +<device name=""> +<technologies> +<technology name=""/> +</technologies> +</device> +</devices> +</deviceset> +<deviceset name="GND" urn="urn:adsk.eagle:component:26954/1" prefix="GND"> +<description><b>SUPPLY SYMBOL</b></description> +<gates> +<gate name="1" symbol="GND" x="0" y="0"/> +</gates> +<devices> +<device name=""> +<technologies> +<technology name=""/> +</technologies> +</device> +</devices> +</deviceset> +</devicesets> +</library> +<library name="power"> +<packages> +<package name="SOT23-5"> +<description><b>Small Outline Transistor</b>, 5 lead</description> +<wire x1="-1.544" y1="0.713" x2="1.544" y2="0.713" width="0.1524" layer="51"/> +<wire x1="1.544" y1="0.713" x2="1.544" y2="-0.712" width="0.1524" layer="51"/> +<wire x1="1.544" y1="-0.712" x2="-1.544" y2="-0.712" width="0.1524" layer="51"/> +<wire x1="-1.544" y1="-0.712" x2="-1.544" y2="0.713" width="0.1524" layer="51"/> +<smd name="5" x="-0.95" y="1.306" dx="0.5334" dy="1.1938" layer="1"/> +<smd name="4" x="0.95" y="1.306" dx="0.5334" dy="1.1938" layer="1"/> +<smd name="1" x="-0.95" y="-1.306" dx="0.5334" dy="1.1938" layer="1"/> +<smd name="2" x="0" y="-1.306" dx="0.5334" dy="1.1938" layer="1"/> +<smd name="3" x="0.95" y="-1.306" dx="0.5334" dy="1.1938" layer="1"/> +<text x="-1.778" y="-1.778" size="1.27" layer="25" ratio="10" rot="R90">>NAME</text> +<text x="3.048" y="-1.778" size="1.27" layer="27" ratio="10" rot="R90">>VALUE</text> +<rectangle x1="-1.1875" y1="0.7126" x2="-0.7125" y2="1.5439" layer="51"/> +<rectangle x1="0.7125" y1="0.7126" x2="1.1875" y2="1.5439" layer="51"/> +<rectangle x1="-1.1875" y1="-1.5437" x2="-0.7125" y2="-0.7124" layer="51"/> +<rectangle x1="-0.2375" y1="-1.5437" x2="0.2375" y2="-0.7124" layer="51"/> +<rectangle x1="0.7125" y1="-1.5437" x2="1.1875" y2="-0.7124" layer="51"/> +<wire x1="-1.5" y1="-1.9" x2="-1.5" y2="-1.2" width="0.127" layer="21"/> +</package> +</packages> +<symbols> +<symbol name="VREG-AP2112"> +<pin name="VIN" x="-12.7" y="2.54" length="middle"/> +<pin name="EN" x="-12.7" y="-2.54" length="middle"/> +<pin name="GND" x="0" y="-10.16" length="middle" rot="R90"/> +<pin name="VOUT" x="12.7" y="2.54" length="middle" rot="R180"/> +<wire x1="-7.62" y1="5.08" x2="-7.62" y2="-5.08" width="0.254" layer="94"/> +<wire x1="-7.62" y1="-5.08" x2="7.62" y2="-5.08" width="0.254" layer="94"/> +<wire x1="7.62" y1="-5.08" x2="7.62" y2="5.08" width="0.254" layer="94"/> +<wire x1="7.62" y1="5.08" x2="-7.62" y2="5.08" width="0.254" layer="94"/> +<text x="-2.54" y="7.62" size="1.27" layer="95">>NAME</text> +<text x="2.54" y="-7.62" size="1.27" layer="96">>VALUE</text> +</symbol> +</symbols> +<devicesets> +<deviceset name="VREG-AP2112" prefix="U"> +<gates> +<gate name="G$1" symbol="VREG-AP2112" x="0" y="0"/> +</gates> +<devices> +<device name="" package="SOT23-5"> +<connects> +<connect gate="G$1" pin="EN" pad="3"/> +<connect gate="G$1" pin="GND" pad="2"/> +<connect gate="G$1" pin="VIN" pad="1"/> +<connect gate="G$1" pin="VOUT" pad="5"/> +</connects> +<technologies> +<technology name=""/> +</technologies> +</device> +</devices> +</deviceset> +</devicesets> +</library> +<library name="connector"> +<packages> +<package name="DX4R005HJ5_100"> +<wire x1="3.25" y1="-2.6" x2="-3.25" y2="-2.6" width="0.127" layer="21"/> +<wire x1="-3.25" y1="2.6" x2="-3.25" y2="0" width="0.127" layer="51"/> +<wire x1="3.25" y1="2.6" x2="3.25" y2="0" width="0.127" layer="51"/> +<wire x1="-1.75" y1="2.6" x2="1.75" y2="2.6" width="0.127" layer="51"/> +<wire x1="-3.25" y1="-2.2" x2="-3.25" y2="-2.6" width="0.127" layer="51"/> +<wire x1="3.25" y1="-2.6" x2="3.25" y2="-2.2" width="0.127" layer="51"/> +<smd name="GND@3" x="-2.175" y="-1.1" dx="2.15" dy="1.9" layer="1"/> +<smd name="GND@4" x="2.175" y="-1.1" dx="2.15" dy="1.9" layer="1"/> +<smd name="GND@1" x="-2.5" y="1.95" dx="1.2" dy="1.3" layer="1"/> +<smd name="GND@2" x="2.5" y="1.95" dx="1.2" dy="1.3" layer="1"/> +<smd name="D+" x="0" y="1.6" dx="0.35" dy="1.35" layer="1"/> +<smd name="D-" x="-0.65" y="1.6" dx="0.35" dy="1.35" layer="1"/> +<smd name="VBUS" x="-1.3" y="1.6" dx="0.35" dy="1.35" layer="1"/> +<smd name="ID" x="0.65" y="1.6" dx="0.35" dy="1.35" layer="1"/> +<smd name="GND" x="1.3" y="1.6" dx="0.35" dy="1.35" layer="1"/> +<text x="4.1275" y="-1.5875" size="0.6096" layer="27" font="vector" rot="R90">>Value</text> +<text x="-3.4925" y="-1.27" size="0.6096" layer="25" font="vector" rot="R90">>Name</text> +</package> +<package name="DX4R005HJ5"> +<wire x1="3.25" y1="-2.6" x2="-3.25" y2="-2.6" width="0.127" layer="51"/> +<wire x1="-3.25" y1="2.6" x2="-3.25" y2="0" width="0.127" layer="21"/> +<wire x1="3.25" y1="2.6" x2="3.25" y2="0" width="0.127" layer="21"/> +<wire x1="-1.75" y1="2.6" x2="1.75" y2="2.6" width="0.127" layer="51"/> +<wire x1="-3.25" y1="-2.2" x2="-3.25" y2="-2.6" width="0.127" layer="51"/> +<wire x1="3.25" y1="-2.6" x2="3.25" y2="-2.2" width="0.127" layer="51"/> +<smd name="GND@3" x="-2.475" y="-1.1" dx="2.75" dy="1.9" layer="1"/> +<smd name="GND@4" x="2.475" y="-1.1" dx="2.75" dy="1.9" layer="1"/> +<smd name="GND@1" x="-2.5" y="1.95" dx="1.2" dy="1.3" layer="1"/> +<smd name="GND@2" x="2.5" y="1.95" dx="1.2" dy="1.3" layer="1"/> +<smd name="D+" x="0" y="1.9" dx="0.4" dy="1.95" layer="1"/> +<smd name="D-" x="-0.65" y="1.9" dx="0.4" dy="1.95" layer="1"/> +<smd name="VBUS" x="-1.3" y="1.9" dx="0.4" dy="1.95" layer="1"/> +<smd name="ID" x="0.65" y="1.9" dx="0.4" dy="1.95" layer="1"/> +<smd name="GND" x="1.3" y="1.9" dx="0.4" dy="1.95" layer="1"/> +<text x="-3.4925" y="-1.27" size="0.6096" layer="25" font="vector" rot="R90">>Name</text> +<text x="4.1275" y="-1.5875" size="0.6096" layer="25" font="vector" rot="R90">>Value</text> +</package> +<package name="DX4R005HJ5_64"> +<wire x1="3.25" y1="-2.6" x2="-3.25" y2="-2.6" width="0.127" layer="21"/> +<wire x1="-3.25" y1="2.6" x2="-3.25" y2="0" width="0.127" layer="51"/> +<wire x1="3.25" y1="2.6" x2="3.25" y2="0" width="0.127" layer="51"/> +<wire x1="-1.75" y1="2.6" x2="1.75" y2="2.6" width="0.127" layer="51"/> +<wire x1="-3.25" y1="-2.2" x2="-3.25" y2="-2.6" width="0.127" layer="51"/> +<wire x1="3.25" y1="-2.6" x2="3.25" y2="-2.2" width="0.127" layer="51"/> +<smd name="GND@3" x="-2.175" y="-1.1" dx="2.15" dy="1.9" layer="1"/> +<smd name="GND@4" x="2.175" y="-1.1" dx="2.15" dy="1.9" layer="1"/> +<smd name="GND@1" x="-2.5" y="1.95" dx="1.2" dy="1.3" layer="1"/> +<smd name="GND@2" x="2.5" y="1.95" dx="1.2" dy="1.3" layer="1"/> +<smd name="D+" x="0" y="1.6" dx="0.254" dy="1.35" layer="1"/> +<smd name="D-" x="-0.65" y="1.6" dx="0.254" dy="1.35" layer="1"/> +<smd name="VBUS" x="-1.3" y="1.6" dx="0.254" dy="1.35" layer="1"/> +<smd name="ID" x="0.65" y="1.6" dx="0.254" dy="1.35" layer="1"/> +<smd name="GND" x="1.3" y="1.6" dx="0.254" dy="1.35" layer="1"/> +<text x="-3.4925" y="-1.27" size="0.6096" layer="25" font="vector" rot="R90">>Name</text> +<text x="4.1275" y="-1.5875" size="0.6096" layer="27" font="vector" rot="R90">>Value</text> +</package> +<package name="USB_MICRO_609-4613-1-ND"> +<smd name="HD0" x="-3.8" y="0" dx="1.9" dy="1.8" layer="1"/> +<smd name="HD4" x="-3.1" y="2.55" dx="2.1" dy="1.6" layer="1"/> +<smd name="HD5" x="3.1" y="2.55" dx="2.1" dy="1.6" layer="1"/> +<smd name="D+" x="0" y="2.675" dx="0.4" dy="1.35" layer="1"/> +<smd name="D-" x="-0.65" y="2.675" dx="0.4" dy="1.35" layer="1"/> +<smd name="VBUS" x="-1.3" y="2.675" dx="0.4" dy="1.35" layer="1"/> +<smd name="ID" x="0.65" y="2.675" dx="0.4" dy="1.35" layer="1"/> +<smd name="GND" x="1.3" y="2.675" dx="0.4" dy="1.35" layer="1"/> +<text x="4.9275" y="1.2125" size="0.6096" layer="27" font="vector" rot="R90">>Value</text> +<text x="-4.3925" y="1.13" size="0.6096" layer="25" font="vector" rot="R90">>Name</text> +<smd name="HD1" x="-1.05" y="0" dx="1.9" dy="1.8" layer="1"/> +<smd name="HD2" x="1.05" y="0" dx="1.9" dy="1.8" layer="1"/> +<smd name="HD3" x="3.8" y="0" dx="1.9" dy="1.8" layer="1"/> +<wire x1="-4.7" y1="-1.45" x2="4.7" y2="-1.45" width="0.127" layer="51"/> +<text x="0" y="-1.3" size="0.8128" layer="51" font="vector" align="bottom-center">\\ PCB Edge /</text> +<wire x1="-3.9" y1="3" x2="-3.9" y2="-2.5" width="0.127" layer="51"/> +<wire x1="-3.9" y1="-2.5" x2="3.9" y2="-2.5" width="0.127" layer="51"/> +<wire x1="3.9" y1="-2.5" x2="3.9" y2="3" width="0.127" layer="51"/> +<wire x1="3.9" y1="3" x2="-3.9" y2="3" width="0.127" layer="51"/> +<wire x1="-3.9" y1="1.1" x2="-3.9" y2="1.5" width="0.127" layer="21"/> +<wire x1="3.9" y1="1.1" x2="3.9" y2="1.5" width="0.127" layer="21"/> +<wire x1="1.8" y1="3" x2="1.7" y2="3" width="0.127" layer="21"/> +<wire x1="-1.7" y1="3" x2="-1.8" y2="3" width="0.127" layer="21"/> +<wire x1="4.4" y1="3" x2="4.7" y2="3" width="0.127" layer="21"/> +<wire x1="-4.4" y1="3" x2="-4.7" y2="3" width="0.127" layer="21"/> +<wire x1="-3.9" y1="3.6" x2="-3.9" y2="3.8" width="0.127" layer="21"/> +<wire x1="3.9" y1="3.6" x2="3.9" y2="3.8" width="0.127" layer="21"/> +</package> +</packages> +<symbols> +<symbol name="USB-1"> +<wire x1="6.35" y1="-2.54" x2="6.35" y2="2.54" width="0.254" layer="94"/> +<wire x1="6.35" y1="2.54" x2="-3.81" y2="2.54" width="0.254" layer="94"/> +<wire x1="-3.81" y1="2.54" x2="-3.81" y2="-2.54" width="0.254" layer="94"/> +<text x="-2.54" y="-1.27" size="2.54" layer="94">USB</text> +<text x="-4.445" y="-1.905" size="1.27" layer="95" font="vector" rot="R90">>Name</text> +<text x="8.255" y="-1.905" size="1.27" layer="96" font="vector" rot="R90">>Value</text> +<pin name="D+" x="5.08" y="5.08" visible="pad" length="short" rot="R270"/> +<pin name="D-" x="2.54" y="5.08" visible="pad" length="short" rot="R270"/> +<pin name="VBUS" x="0" y="5.08" visible="pad" length="short" rot="R270"/> +<pin name="GND" x="-2.54" y="5.08" visible="pad" length="short" rot="R270"/> +</symbol> +</symbols> +<devicesets> +<deviceset name="USB" prefix="X"> +<description>SMD micro USB connector as found in the fablab inventory. +Three footprint variants included: +<ol> +<li>609-4613-1-ND used by Jake +<li> original, as described by manufacturer's datasheet +<li> for milling with the 1/100" bit +<li> for milling with the 1/64" bit +</ol> +<p>Made by Zaerc.</description> +<gates> +<gate name="G$1" symbol="USB-1" x="0" y="0"/> +</gates> +<devices> +<device name="_1/100" package="DX4R005HJ5_100"> +<connects> +<connect gate="G$1" pin="D+" pad="D+"/> +<connect gate="G$1" pin="D-" pad="D-"/> +<connect gate="G$1" pin="GND" pad="GND"/> +<connect gate="G$1" pin="VBUS" pad="VBUS"/> +</connects> +<technologies> +<technology name=""/> +</technologies> +</device> +<device name="_ORIG" package="DX4R005HJ5"> +<connects> +<connect gate="G$1" pin="D+" pad="D+"/> +<connect gate="G$1" pin="D-" pad="D-"/> +<connect gate="G$1" pin="GND" pad="GND"/> +<connect gate="G$1" pin="VBUS" pad="VBUS"/> +</connects> +<technologies> +<technology name=""/> +</technologies> +</device> +<device name="_1/64" package="DX4R005HJ5_64"> +<connects> +<connect gate="G$1" pin="D+" pad="D+"/> +<connect gate="G$1" pin="D-" pad="D-"/> +<connect gate="G$1" pin="GND" pad="GND"/> +<connect gate="G$1" pin="VBUS" pad="VBUS"/> +</connects> +<technologies> +<technology name=""/> +</technologies> +</device> +<device name="" package="USB_MICRO_609-4613-1-ND"> +<connects> +<connect gate="G$1" pin="D+" pad="D+"/> +<connect gate="G$1" pin="D-" pad="D-"/> +<connect gate="G$1" pin="GND" pad="GND"/> +<connect gate="G$1" pin="VBUS" pad="VBUS"/> +</connects> +<technologies> +<technology name=""/> +</technologies> +</device> +</devices> +</deviceset> +</devicesets> +</library> +</libraries> +<attributes> +</attributes> +<variantdefs> +</variantdefs> +<classes> +<class number="0" name="default" width="0" drill="0"> +</class> +</classes> +<parts> +<part name="U1" library="microcontrollers" deviceset="ATSAMD51J" device="QFN64"/> +<part name="J1" library="SparkFun-Connectors" deviceset="CORTEX_JTAG_DEBUG" device="_SMD" value="JTAG"/> +<part name="S1" library="passives" deviceset="2-8X4-5_SWITCH" device=""/> +<part name="Y1" library="passives" deviceset="KHZ-CRYSTAL" device=""/> +<part name="C1" library="passives" deviceset="CAP" device="0805" value="10uF"/> +<part name="L1" library="passives" deviceset="INDUCTOR" device="-0805" value="10uH"/> +<part name="+3V1" library="supply1" deviceset="+3V3" device=""/> +<part name="P+1" library="supply1" deviceset="+5V" device=""/> +<part name="GND1" library="supply1" deviceset="GND" device=""/> +<part name="C2" library="passives" deviceset="CAP" device="0805" value="12pF"/> +<part name="C3" library="passives" deviceset="CAP" device="0805" value="12pF"/> +<part name="GND2" library="supply1" deviceset="GND" device=""/> +<part name="GND3" library="supply1" deviceset="GND" device=""/> +<part name="U2" library="power" deviceset="VREG-AP2112" device=""/> +<part name="C4" library="passives" deviceset="CAP" device="0805" value="1uF"/> +<part name="C5" library="passives" deviceset="CAP" device="0805" value="10uF"/> +<part name="GND4" library="supply1" deviceset="GND" device=""/> +<part name="C6" library="passives" deviceset="CAP" device="0805" value="0.1uF"/> +<part name="+3V2" library="supply1" deviceset="+3V3" device=""/> +<part name="GND5" library="supply1" deviceset="GND" device=""/> +<part name="GND6" library="supply1" deviceset="GND" device=""/> +<part name="R2" library="passives" deviceset="RESISTOR" device="0805-RES" value="10k"/> +<part name="+3V3" library="supply1" deviceset="+3V3" device=""/> +<part name="R3" library="passives" deviceset="RESISTOR" device="0805-RES" value="10k"/> +<part name="+3V4" library="supply1" deviceset="+3V3" device=""/> +<part name="GND7" library="supply1" deviceset="GND" device=""/> +<part name="+3V5" library="supply1" deviceset="+3V3" device=""/> +<part name="C7" library="passives" deviceset="CAP" device="0805" value="1uF"/> +<part name="X1" library="connector" deviceset="USB" device=""/> +<part name="P+2" library="supply1" deviceset="+5V" device=""/> +<part name="GND8" library="supply1" deviceset="GND" device=""/> +</parts> +<sheets> +<sheet> +<plain> +</plain> +<instances> +<instance part="U1" gate="G$1" x="38.1" y="144.78" smashed="yes"> +<attribute name="NAME" x="33.02" y="152.4" size="1.778" layer="95"/> +<attribute name="VALUE" x="33.02" y="2.54" size="1.778" layer="96"/> +</instance> +<instance part="J1" gate="J1" x="-53.34" y="30.48" smashed="yes"> +<attribute name="NAME" x="-66.04" y="38.354" size="1.778" layer="95" font="vector"/> +<attribute name="VALUE" x="-66.04" y="20.574" size="1.778" layer="96" font="vector"/> +</instance> +<instance part="S1" gate="G$1" x="-20.32" y="17.78" smashed="yes"> +<attribute name="NAME" x="-26.67" y="15.24" size="1.778" layer="95" rot="R90"/> +<attribute name="VALUE" x="-38.1" y="7.62" size="1.778" layer="96"/> +</instance> +<instance part="Y1" gate="G$1" x="96.52" y="142.24" smashed="yes" rot="R270"> +<attribute name="NAME" x="97.536" y="139.7" size="1.778" layer="95" rot="R270"/> +<attribute name="VALUE" x="93.98" y="139.7" size="1.778" layer="96" rot="R270"/> +</instance> +<instance part="C1" gate="G$1" x="-78.74" y="127" smashed="yes"> +<attribute name="NAME" x="-77.216" y="129.921" size="1.778" layer="95"/> +<attribute name="VALUE" x="-77.216" y="124.841" size="1.778" layer="96"/> +<attribute name="PACKAGE" x="-77.216" y="122.936" size="1.27" layer="97"/> +<attribute name="VOLTAGE" x="-77.216" y="121.158" size="1.27" layer="97"/> +<attribute name="TYPE" x="-77.216" y="119.38" size="1.27" layer="97"/> +</instance> +<instance part="L1" gate="G$1" x="-10.16" y="114.3" smashed="yes" rot="R270"> +<attribute name="NAME" x="-15.24" y="115.57" size="1.778" layer="95"/> +<attribute name="VALUE" x="-15.24" y="110.49" size="1.778" layer="96"/> +<attribute name="PACKAGE" x="-15.24" y="107.95" size="1.27" layer="97"/> +</instance> +<instance part="+3V1" gate="G$1" x="-78.74" y="43.18" smashed="yes"> +<attribute name="VALUE" x="-81.28" y="38.1" size="1.778" layer="96" rot="R90"/> +</instance> +<instance part="P+1" gate="1" x="-78.74" y="152.4" smashed="yes"> +<attribute name="VALUE" x="-81.28" y="147.32" size="1.778" layer="96" rot="R90"/> +</instance> +<instance part="GND1" gate="1" x="-78.74" y="15.24" smashed="yes"> +<attribute name="VALUE" x="-81.28" y="12.7" size="1.778" layer="96"/> +</instance> +<instance part="C2" gate="G$1" x="109.22" y="144.78" smashed="yes" rot="R90"> +<attribute name="NAME" x="106.299" y="146.304" size="1.778" layer="95" rot="R90"/> +<attribute name="VALUE" x="111.379" y="146.304" size="1.778" layer="96" rot="R90"/> +<attribute name="PACKAGE" x="113.284" y="146.304" size="1.27" layer="97" rot="R90"/> +<attribute name="VOLTAGE" x="115.062" y="146.304" size="1.27" layer="97" rot="R90"/> +<attribute name="TYPE" x="116.84" y="146.304" size="1.27" layer="97" rot="R90"/> +</instance> +<instance part="C3" gate="G$1" x="109.22" y="134.62" smashed="yes" rot="R90"> +<attribute name="NAME" x="106.299" y="136.144" size="1.778" layer="95" rot="R90"/> +<attribute name="VALUE" x="111.379" y="136.144" size="1.778" layer="96" rot="R90"/> +<attribute name="PACKAGE" x="113.284" y="136.144" size="1.27" layer="97" rot="R90"/> +<attribute name="VOLTAGE" x="115.062" y="136.144" size="1.27" layer="97" rot="R90"/> +<attribute name="TYPE" x="116.84" y="136.144" size="1.27" layer="97" rot="R90"/> +</instance> +<instance part="GND2" gate="1" x="121.92" y="144.78" smashed="yes" rot="R90"> +<attribute name="VALUE" x="124.46" y="142.24" size="1.778" layer="96" rot="R90"/> +</instance> +<instance part="GND3" gate="1" x="121.92" y="134.62" smashed="yes" rot="R90"> +<attribute name="VALUE" x="124.46" y="132.08" size="1.778" layer="96" rot="R90"/> +</instance> +<instance part="U2" gate="G$1" x="-60.96" y="139.7" smashed="yes"> +<attribute name="NAME" x="-63.5" y="147.32" size="1.27" layer="95"/> +<attribute name="VALUE" x="-58.42" y="132.08" size="1.27" layer="96"/> +</instance> +<instance part="C4" gate="G$1" x="-7.62" y="93.98" smashed="yes"> +<attribute name="NAME" x="-6.096" y="96.901" size="1.778" layer="95"/> +<attribute name="VALUE" x="-6.096" y="91.821" size="1.778" layer="96"/> +<attribute name="PACKAGE" x="-6.096" y="89.916" size="1.27" layer="97"/> +<attribute name="VOLTAGE" x="-6.096" y="88.138" size="1.27" layer="97"/> +<attribute name="TYPE" x="-6.096" y="86.36" size="1.27" layer="97"/> +</instance> +<instance part="C5" gate="G$1" x="-20.32" y="93.98" smashed="yes"> +<attribute name="NAME" x="-18.796" y="96.901" size="1.778" layer="95"/> +<attribute name="VALUE" x="-18.796" y="91.821" size="1.778" layer="96"/> +<attribute name="PACKAGE" x="-18.796" y="89.916" size="1.27" layer="97"/> +<attribute name="VOLTAGE" x="-18.796" y="88.138" size="1.27" layer="97"/> +<attribute name="TYPE" x="-18.796" y="86.36" size="1.27" layer="97"/> +</instance> +<instance part="GND4" gate="1" x="-20.32" y="83.82" smashed="yes"> +<attribute name="VALUE" x="-22.86" y="81.28" size="1.778" layer="96"/> +</instance> +<instance part="C6" gate="G$1" x="-20.32" y="139.7" smashed="yes"> +<attribute name="NAME" x="-18.796" y="142.621" size="1.778" layer="95"/> +<attribute name="VALUE" x="-18.796" y="137.541" size="1.778" layer="96"/> +<attribute name="PACKAGE" x="-18.796" y="135.636" size="1.27" layer="97"/> +<attribute name="VOLTAGE" x="-18.796" y="133.858" size="1.27" layer="97"/> +<attribute name="TYPE" x="-18.796" y="132.08" size="1.27" layer="97"/> +</instance> +<instance part="+3V2" gate="G$1" x="-20.32" y="152.4" smashed="yes"> +<attribute name="VALUE" x="-22.86" y="147.32" size="1.778" layer="96" rot="R90"/> +</instance> +<instance part="GND5" gate="1" x="-20.32" y="129.54" smashed="yes"> +<attribute name="VALUE" x="-22.86" y="127" size="1.778" layer="96"/> +</instance> +<instance part="GND6" gate="1" x="-5.08" y="5.08" smashed="yes"> +<attribute name="VALUE" x="-7.62" y="2.54" size="1.778" layer="96"/> +</instance> +<instance part="R2" gate="G$1" x="-5.08" y="43.18" smashed="yes" rot="R270"> +<attribute name="NAME" x="-3.5814" y="46.99" size="1.778" layer="95" rot="R270"/> +<attribute name="VALUE" x="-8.382" y="46.99" size="1.778" layer="96" rot="R270"/> +<attribute name="PRECISION" x="-11.938" y="46.99" size="1.27" layer="97" rot="R270"/> +<attribute name="PACKAGE" x="-10.16" y="46.99" size="1.27" layer="97" rot="R270"/> +</instance> +<instance part="+3V3" gate="G$1" x="-5.08" y="58.42" smashed="yes"> +<attribute name="VALUE" x="-7.62" y="53.34" size="1.778" layer="96" rot="R90"/> +</instance> +<instance part="R3" gate="G$1" x="-20.32" y="43.18" smashed="yes" rot="R270"> +<attribute name="NAME" x="-18.8214" y="46.99" size="1.778" layer="95" rot="R270"/> +<attribute name="VALUE" x="-23.622" y="46.99" size="1.778" layer="96" rot="R270"/> +<attribute name="PRECISION" x="-27.178" y="46.99" size="1.27" layer="97" rot="R270"/> +<attribute name="PACKAGE" x="-25.4" y="46.99" size="1.27" layer="97" rot="R270"/> +</instance> +<instance part="+3V4" gate="G$1" x="-20.32" y="58.42" smashed="yes"> +<attribute name="VALUE" x="-22.86" y="53.34" size="1.778" layer="96" rot="R90"/> +</instance> +<instance part="GND7" gate="1" x="-60.96" y="116.84" smashed="yes"> +<attribute name="VALUE" x="-63.5" y="114.3" size="1.778" layer="96"/> +</instance> +<instance part="+3V5" gate="G$1" x="-43.18" y="152.4" smashed="yes"> +<attribute name="VALUE" x="-45.72" y="147.32" size="1.778" layer="96" rot="R90"/> +</instance> +<instance part="C7" gate="G$1" x="-43.18" y="127" smashed="yes"> +<attribute name="NAME" x="-41.656" y="129.921" size="1.778" layer="95"/> +<attribute name="VALUE" x="-41.656" y="124.841" size="1.778" layer="96"/> +<attribute name="PACKAGE" x="-41.656" y="122.936" size="1.27" layer="97"/> +<attribute name="VOLTAGE" x="-41.656" y="121.158" size="1.27" layer="97"/> +<attribute name="TYPE" x="-41.656" y="119.38" size="1.27" layer="97"/> +</instance> +<instance part="X1" gate="G$1" x="-76.2" y="60.96" smashed="yes" rot="R270"> +<attribute name="NAME" x="-78.105" y="65.405" size="1.27" layer="95" font="vector"/> +<attribute name="VALUE" x="-78.105" y="52.705" size="1.27" layer="96" font="vector"/> +</instance> +<instance part="P+2" gate="1" x="-48.26" y="68.58" smashed="yes"> +<attribute name="VALUE" x="-48.26" y="71.12" size="1.778" layer="96" rot="R90"/> +</instance> +<instance part="GND8" gate="1" x="-55.88" y="68.58" smashed="yes" rot="R180"> +<attribute name="VALUE" x="-53.34" y="71.12" size="1.778" layer="96" rot="R180"/> +</instance> +</instances> +<busses> +</busses> +<nets> +<net name="GND" class="0"> +<segment> +<pinref part="GND1" gate="1" pin="GND"/> +<wire x1="-78.74" y1="17.78" x2="-78.74" y2="25.4" width="0.1524" layer="91"/> +<wire x1="-78.74" y1="25.4" x2="-78.74" y2="30.48" width="0.1524" layer="91"/> +<wire x1="-78.74" y1="30.48" x2="-78.74" y2="33.02" width="0.1524" layer="91"/> +<pinref part="J1" gate="J1" pin="GND@3"/> +<wire x1="-68.58" y1="33.02" x2="-78.74" y2="33.02" width="0.1524" layer="91"/> +<pinref part="J1" gate="J1" pin="GND@5"/> +<wire x1="-68.58" y1="30.48" x2="-78.74" y2="30.48" width="0.1524" layer="91"/> +<junction x="-78.74" y="30.48"/> +<pinref part="J1" gate="J1" pin="GNDDTCT"/> +<wire x1="-68.58" y1="25.4" x2="-78.74" y2="25.4" width="0.1524" layer="91"/> +<junction x="-78.74" y="25.4"/> +</segment> +<segment> +<pinref part="C2" gate="G$1" pin="2"/> +<pinref part="GND2" gate="1" pin="GND"/> +<wire x1="111.76" y1="144.78" x2="119.38" y2="144.78" width="0.1524" layer="91"/> +</segment> +<segment> +<pinref part="GND3" gate="1" pin="GND"/> +<pinref part="C3" gate="G$1" pin="2"/> +<wire x1="119.38" y1="134.62" x2="111.76" y2="134.62" width="0.1524" layer="91"/> +</segment> +<segment> +<pinref part="C5" gate="G$1" pin="2"/> +<pinref part="C4" gate="G$1" pin="2"/> +<wire x1="-20.32" y1="91.44" x2="-7.62" y2="91.44" width="0.1524" layer="91"/> +<pinref part="GND4" gate="1" pin="GND"/> +<wire x1="-20.32" y1="91.44" x2="-20.32" y2="86.36" width="0.1524" layer="91"/> +<junction x="-20.32" y="91.44"/> +</segment> +<segment> +<pinref part="GND5" gate="1" pin="GND"/> +<pinref part="C6" gate="G$1" pin="2"/> +<wire x1="-20.32" y1="132.08" x2="-20.32" y2="137.16" width="0.1524" layer="91"/> +</segment> +<segment> +<pinref part="U1" gate="G$1" pin="GND"/> +<wire x1="2.54" y1="12.7" x2="-5.08" y2="12.7" width="0.1524" layer="91"/> +<pinref part="GND6" gate="1" pin="GND"/> +<wire x1="-5.08" y1="12.7" x2="-5.08" y2="7.62" width="0.1524" layer="91"/> +<pinref part="S1" gate="G$1" pin="P"/> +<pinref part="S1" gate="G$1" pin="P1"/> +<wire x1="-20.32" y1="12.7" x2="-17.78" y2="12.7" width="0.1524" layer="91"/> +<wire x1="-17.78" y1="12.7" x2="-5.08" y2="12.7" width="0.1524" layer="91"/> +<junction x="-17.78" y="12.7"/> +<junction x="-5.08" y="12.7"/> +</segment> +<segment> +<pinref part="U2" gate="G$1" pin="GND"/> +<wire x1="-60.96" y1="129.54" x2="-60.96" y2="121.92" width="0.1524" layer="91"/> +<pinref part="GND7" gate="1" pin="GND"/> +<pinref part="C1" gate="G$1" pin="2"/> +<wire x1="-60.96" y1="121.92" x2="-60.96" y2="119.38" width="0.1524" layer="91"/> +<wire x1="-78.74" y1="124.46" x2="-78.74" y2="121.92" width="0.1524" layer="91"/> +<wire x1="-78.74" y1="121.92" x2="-60.96" y2="121.92" width="0.1524" layer="91"/> +<junction x="-60.96" y="121.92"/> +<pinref part="C7" gate="G$1" pin="2"/> +<wire x1="-43.18" y1="124.46" x2="-43.18" y2="121.92" width="0.1524" layer="91"/> +<wire x1="-43.18" y1="121.92" x2="-60.96" y2="121.92" width="0.1524" layer="91"/> +</segment> +<segment> +<pinref part="X1" gate="G$1" pin="GND"/> +<wire x1="-71.12" y1="63.5" x2="-55.88" y2="63.5" width="0.1524" layer="91"/> +<pinref part="GND8" gate="1" pin="GND"/> +<wire x1="-55.88" y1="63.5" x2="-55.88" y2="66.04" width="0.1524" layer="91"/> +</segment> +</net> +<net name="+3V3" class="0"> +<segment> +<pinref part="+3V1" gate="G$1" pin="+3V3"/> +<wire x1="-78.74" y1="40.64" x2="-78.74" y2="35.56" width="0.1524" layer="91"/> +<pinref part="J1" gate="J1" pin="VCC"/> +<wire x1="-78.74" y1="35.56" x2="-68.58" y2="35.56" width="0.1524" layer="91"/> +</segment> +<segment> +<pinref part="+3V2" gate="G$1" pin="+3V3"/> +<pinref part="C6" gate="G$1" pin="1"/> +<wire x1="-20.32" y1="149.86" x2="-20.32" y2="144.78" width="0.1524" layer="91"/> +<pinref part="U1" gate="G$1" pin="VDDANA"/> +<wire x1="2.54" y1="129.54" x2="-2.54" y2="129.54" width="0.1524" layer="91"/> +<wire x1="-2.54" y1="129.54" x2="-2.54" y2="144.78" width="0.1524" layer="91"/> +<pinref part="U1" gate="G$1" pin="VDDIO"/> +<wire x1="-2.54" y1="144.78" x2="2.54" y2="144.78" width="0.1524" layer="91"/> +<wire x1="-20.32" y1="144.78" x2="-2.54" y2="144.78" width="0.1524" layer="91"/> +<junction x="-20.32" y="144.78"/> +<junction x="-2.54" y="144.78"/> +</segment> +<segment> +<pinref part="R2" gate="G$1" pin="1"/> +<pinref part="+3V3" gate="G$1" pin="+3V3"/> +<wire x1="-5.08" y1="48.26" x2="-5.08" y2="55.88" width="0.1524" layer="91"/> +</segment> +<segment> +<pinref part="+3V4" gate="G$1" pin="+3V3"/> +<pinref part="R3" gate="G$1" pin="1"/> +<wire x1="-20.32" y1="55.88" x2="-20.32" y2="48.26" width="0.1524" layer="91"/> +</segment> +<segment> +<pinref part="U2" gate="G$1" pin="VOUT"/> +<wire x1="-48.26" y1="142.24" x2="-43.18" y2="142.24" width="0.1524" layer="91"/> +<pinref part="+3V5" gate="G$1" pin="+3V3"/> +<wire x1="-43.18" y1="142.24" x2="-43.18" y2="149.86" width="0.1524" layer="91"/> +<pinref part="C7" gate="G$1" pin="1"/> +<wire x1="-43.18" y1="142.24" x2="-43.18" y2="132.08" width="0.1524" layer="91"/> +<junction x="-43.18" y="142.24"/> +</segment> +</net> +<net name="N$1" class="0"> +<segment> +<pinref part="U1" gate="G$1" pin="PA00/XIN32/SER1-0/TC2-0"/> +<pinref part="Y1" gate="G$1" pin="1"/> +<wire x1="81.28" y1="144.78" x2="96.52" y2="144.78" width="0.1524" layer="91"/> +<pinref part="C2" gate="G$1" pin="1"/> +<wire x1="96.52" y1="144.78" x2="104.14" y2="144.78" width="0.1524" layer="91"/> +<junction x="96.52" y="144.78"/> +</segment> +</net> +<net name="N$2" class="0"> +<segment> +<pinref part="C3" gate="G$1" pin="1"/> +<wire x1="104.14" y1="134.62" x2="96.52" y2="134.62" width="0.1524" layer="91"/> +<pinref part="Y1" gate="G$1" pin="2"/> +<wire x1="96.52" y1="134.62" x2="96.52" y2="139.7" width="0.1524" layer="91"/> +<wire x1="96.52" y1="139.7" x2="88.9" y2="139.7" width="0.1524" layer="91"/> +<junction x="96.52" y="139.7"/> +<wire x1="88.9" y1="139.7" x2="88.9" y2="142.24" width="0.1524" layer="91"/> +<pinref part="U1" gate="G$1" pin="PA01/XOUT32/SER1-1/TC2-1"/> +<wire x1="88.9" y1="142.24" x2="81.28" y2="142.24" width="0.1524" layer="91"/> +</segment> +</net> +<net name="N$3" class="0"> +<segment> +<pinref part="L1" gate="G$1" pin="1"/> +<pinref part="U1" gate="G$1" pin="VSW"/> +<wire x1="-2.54" y1="114.3" x2="2.54" y2="114.3" width="0.1524" layer="91"/> +</segment> +</net> +<net name="N$4" class="0"> +<segment> +<pinref part="L1" gate="G$1" pin="2"/> +<wire x1="-17.78" y1="114.3" x2="-20.32" y2="114.3" width="0.1524" layer="91"/> +<pinref part="C5" gate="G$1" pin="1"/> +<wire x1="-20.32" y1="114.3" x2="-20.32" y2="99.06" width="0.1524" layer="91"/> +<pinref part="C4" gate="G$1" pin="1"/> +<wire x1="-20.32" y1="99.06" x2="-7.62" y2="99.06" width="0.1524" layer="91"/> +<junction x="-20.32" y="99.06"/> +<pinref part="U1" gate="G$1" pin="VDDCORE"/> +<wire x1="-7.62" y1="99.06" x2="2.54" y2="99.06" width="0.1524" layer="91"/> +<junction x="-7.62" y="99.06"/> +</segment> +</net> +<net name="N$6" class="0"> +<segment> +<pinref part="J1" gate="J1" pin="!RESET"/> +<pinref part="U1" gate="G$1" pin="RESETN"/> +<wire x1="-38.1" y1="25.4" x2="-20.32" y2="25.4" width="0.1524" layer="91"/> +<pinref part="S1" gate="G$1" pin="S"/> +<wire x1="-20.32" y1="25.4" x2="-5.08" y2="25.4" width="0.1524" layer="91"/> +<wire x1="-5.08" y1="25.4" x2="2.54" y2="25.4" width="0.1524" layer="91"/> +<wire x1="-20.32" y1="22.86" x2="-20.32" y2="25.4" width="0.1524" layer="91"/> +<junction x="-20.32" y="25.4"/> +<pinref part="S1" gate="G$1" pin="S1"/> +<wire x1="-17.78" y1="22.86" x2="-20.32" y2="22.86" width="0.1524" layer="91"/> +<junction x="-20.32" y="22.86"/> +<pinref part="R2" gate="G$1" pin="2"/> +<wire x1="-5.08" y1="25.4" x2="-5.08" y2="38.1" width="0.1524" layer="91"/> +<junction x="-5.08" y="25.4"/> +</segment> +</net> +<net name="SWDCLK" class="0"> +<segment> +<pinref part="J1" gate="J1" pin="SWDCLK/TCK"/> +<wire x1="-38.1" y1="33.02" x2="-20.32" y2="33.02" width="0.1524" layer="91"/> +<label x="-35.56" y="33.02" size="1.778" layer="95"/> +<pinref part="R3" gate="G$1" pin="2"/> +<wire x1="-20.32" y1="33.02" x2="-20.32" y2="38.1" width="0.1524" layer="91"/> +</segment> +<segment> +<pinref part="U1" gate="G$1" pin="PA30/SER7-2/SER1-2/TC6-0/SWCLK"/> +<wire x1="81.28" y1="76.2" x2="96.52" y2="76.2" width="0.1524" layer="91"/> +<label x="83.82" y="76.2" size="1.778" layer="95"/> +</segment> +</net> +<net name="SWDIO" class="0"> +<segment> +<pinref part="J1" gate="J1" pin="SWDIO/TMS"/> +<wire x1="-38.1" y1="35.56" x2="-22.86" y2="35.56" width="0.1524" layer="91"/> +<label x="-35.56" y="35.56" size="1.778" layer="95"/> +</segment> +<segment> +<pinref part="U1" gate="G$1" pin="PA31/SER7-3/SER1-3/TC6-1/SWDIO"/> +<wire x1="81.28" y1="73.66" x2="96.52" y2="73.66" width="0.1524" layer="91"/> +<label x="83.82" y="73.66" size="1.778" layer="95"/> +</segment> +</net> +<net name="USBDP" class="0"> +<segment> +<pinref part="U1" gate="G$1" pin="PA25/SER3-3/SER5-3/TC5-1/PDEC0-1/USBDP"/> +<wire x1="81.28" y1="81.28" x2="96.52" y2="81.28" width="0.1524" layer="91"/> +<label x="83.82" y="81.28" size="1.778" layer="95"/> +</segment> +<segment> +<pinref part="X1" gate="G$1" pin="D+"/> +<wire x1="-71.12" y1="55.88" x2="-58.42" y2="55.88" width="0.1524" layer="91"/> +<label x="-68.58" y="55.88" size="1.778" layer="95"/> +</segment> +</net> +<net name="USBDM" class="0"> +<segment> +<pinref part="U1" gate="G$1" pin="PA24/SER3-2/SER5-2/TC5-0/PDEC0-0/USBDM"/> +<wire x1="81.28" y1="83.82" x2="96.52" y2="83.82" width="0.1524" layer="91"/> +<label x="83.82" y="83.82" size="1.778" layer="95"/> +</segment> +<segment> +<pinref part="X1" gate="G$1" pin="D-"/> +<wire x1="-71.12" y1="58.42" x2="-58.42" y2="58.42" width="0.1524" layer="91"/> +<label x="-68.58" y="58.42" size="1.778" layer="95"/> +</segment> +</net> +<net name="+5V" class="0"> +<segment> +<pinref part="P+1" gate="1" pin="+5V"/> +<pinref part="C1" gate="G$1" pin="1"/> +<wire x1="-78.74" y1="149.86" x2="-78.74" y2="142.24" width="0.1524" layer="91"/> +<pinref part="U2" gate="G$1" pin="VIN"/> +<wire x1="-78.74" y1="142.24" x2="-78.74" y2="132.08" width="0.1524" layer="91"/> +<wire x1="-73.66" y1="142.24" x2="-76.2" y2="142.24" width="0.1524" layer="91"/> +<junction x="-78.74" y="142.24"/> +<pinref part="U2" gate="G$1" pin="EN"/> +<wire x1="-76.2" y1="142.24" x2="-78.74" y2="142.24" width="0.1524" layer="91"/> +<wire x1="-73.66" y1="137.16" x2="-76.2" y2="137.16" width="0.1524" layer="91"/> +<wire x1="-76.2" y1="137.16" x2="-76.2" y2="142.24" width="0.1524" layer="91"/> +<junction x="-76.2" y="142.24"/> +</segment> +<segment> +<pinref part="X1" gate="G$1" pin="VBUS"/> +<wire x1="-71.12" y1="60.96" x2="-48.26" y2="60.96" width="0.1524" layer="91"/> +<pinref part="P+2" gate="1" pin="+5V"/> +<wire x1="-48.26" y1="60.96" x2="-48.26" y2="66.04" width="0.1524" layer="91"/> +</segment> +</net> +</nets> +</sheet> +</sheets> +</schematic> +</drawing> +<compatibility> +<note version="8.3" severity="warning"> +Since Version 8.3, EAGLE supports URNs for individual library +assets (packages, symbols, and devices). The URNs of those assets +will not be understood (or retained) with this version. +</note> +</compatibility> +</eagle> diff --git a/samd21-example/samd21-barebones/samd21-barebones.sch b/samd21-example/samd21-barebones/samd21-barebones.sch new file mode 100644 index 0000000000000000000000000000000000000000..0d8521a1523b4dfd08c703947ec26b7855076d65 --- /dev/null +++ b/samd21-example/samd21-barebones/samd21-barebones.sch @@ -0,0 +1,1593 @@ +<?xml version="1.0" encoding="utf-8"?> +<!DOCTYPE eagle SYSTEM "eagle.dtd"> +<eagle version="9.6.0"> +<drawing> +<settings> +<setting alwaysvectorfont="no"/> +<setting verticaltext="up"/> +</settings> +<grid distance="0.1" unitdist="inch" unit="inch" style="lines" multiple="1" display="yes" altdistance="0.01" altunitdist="inch" altunit="inch"/> +<layers> +<layer number="1" name="Top" color="4" fill="1" visible="yes" active="no"/> +<layer number="2" name="Route2" color="16" fill="1" visible="yes" active="no"/> +<layer number="3" name="Route3" color="17" fill="1" visible="yes" active="no"/> +<layer number="4" name="Route4" color="18" fill="1" visible="yes" active="no"/> +<layer number="5" name="Route5" color="19" fill="1" visible="yes" active="no"/> +<layer number="6" name="Route6" color="25" fill="1" visible="yes" active="no"/> +<layer number="7" name="Route7" color="26" fill="1" visible="yes" active="no"/> +<layer number="8" name="Route8" color="27" fill="1" visible="yes" active="no"/> +<layer number="9" name="Route9" color="28" fill="1" visible="yes" active="no"/> +<layer number="10" name="Route10" color="29" fill="1" visible="yes" active="no"/> +<layer number="11" name="Route11" color="30" fill="1" visible="yes" active="no"/> +<layer number="12" name="Route12" color="20" fill="1" visible="yes" active="no"/> +<layer number="13" name="Route13" color="21" fill="1" visible="yes" active="no"/> +<layer number="14" name="Route14" color="22" fill="1" visible="yes" active="no"/> +<layer number="15" name="Route15" color="23" fill="1" visible="yes" active="no"/> +<layer number="16" name="Bottom" color="1" fill="1" visible="yes" active="no"/> +<layer number="17" name="Pads" color="2" fill="1" visible="yes" active="no"/> +<layer number="18" name="Vias" color="2" fill="1" visible="yes" active="no"/> +<layer number="19" name="Unrouted" color="6" fill="1" visible="yes" active="no"/> +<layer number="20" name="Dimension" color="24" fill="1" visible="yes" active="no"/> +<layer number="21" name="tPlace" color="7" fill="1" visible="yes" active="no"/> +<layer number="22" name="bPlace" color="7" fill="1" visible="yes" active="no"/> +<layer number="23" name="tOrigins" color="15" fill="1" visible="yes" active="no"/> +<layer number="24" name="bOrigins" color="15" fill="1" visible="yes" active="no"/> +<layer number="25" name="tNames" color="7" fill="1" visible="yes" active="no"/> +<layer number="26" name="bNames" color="7" fill="1" visible="yes" active="no"/> +<layer number="27" name="tValues" color="7" fill="1" visible="yes" active="no"/> +<layer number="28" name="bValues" color="7" fill="1" visible="yes" active="no"/> +<layer number="29" name="tStop" color="7" fill="3" visible="no" active="no"/> +<layer number="30" name="bStop" color="7" fill="6" visible="no" active="no"/> +<layer number="31" name="tCream" color="7" fill="4" visible="no" active="no"/> +<layer number="32" name="bCream" color="7" fill="5" visible="no" active="no"/> +<layer number="33" name="tFinish" color="6" fill="3" visible="no" active="no"/> +<layer number="34" name="bFinish" color="6" fill="6" visible="no" active="no"/> +<layer number="35" name="tGlue" color="7" fill="4" visible="no" active="no"/> +<layer number="36" name="bGlue" color="7" fill="5" visible="no" active="no"/> +<layer number="37" name="tTest" color="7" fill="1" visible="yes" active="no"/> +<layer number="38" name="bTest" color="7" fill="1" visible="yes" active="no"/> +<layer number="39" name="tKeepout" color="4" fill="11" visible="no" active="no"/> +<layer number="40" name="bKeepout" color="1" fill="11" visible="no" active="no"/> +<layer number="41" name="tRestrict" color="4" fill="10" visible="no" active="no"/> +<layer number="42" name="bRestrict" color="1" fill="10" visible="no" active="no"/> +<layer number="43" name="vRestrict" color="2" fill="10" visible="no" active="no"/> +<layer number="44" name="Drills" color="7" fill="1" visible="no" active="no"/> +<layer number="45" name="Holes" color="7" fill="1" visible="no" active="no"/> +<layer number="46" name="Milling" color="3" fill="1" visible="yes" active="no"/> +<layer number="47" name="Measures" color="7" fill="1" visible="yes" active="no"/> +<layer number="48" name="Document" color="7" fill="1" visible="yes" active="no"/> +<layer number="49" name="Reference" color="7" fill="1" visible="yes" active="no"/> +<layer number="50" name="dxf" color="7" fill="1" visible="yes" active="no"/> +<layer number="51" name="tDocu" color="7" fill="1" visible="yes" active="no"/> +<layer number="52" name="bDocu" color="7" fill="1" visible="yes" active="no"/> +<layer number="53" name="tGND_GNDA" color="7" fill="9" visible="yes" active="no"/> +<layer number="54" name="bGND_GNDA" color="1" fill="9" visible="yes" active="no"/> +<layer number="56" name="wert" color="7" fill="1" visible="yes" active="no"/> +<layer number="57" name="tCAD" color="7" fill="1" visible="yes" active="no"/> +<layer number="59" name="tCarbon" color="7" fill="1" visible="yes" active="no"/> +<layer number="60" name="bCarbon" color="7" fill="1" visible="yes" active="no"/> +<layer number="88" name="SimResults" color="9" fill="1" visible="yes" active="yes"/> +<layer number="89" name="SimProbes" color="9" fill="1" visible="yes" active="yes"/> +<layer number="90" name="Modules" color="5" fill="1" visible="yes" active="yes"/> +<layer number="91" name="Nets" color="2" fill="1" visible="yes" active="yes"/> +<layer number="92" name="Busses" color="1" fill="1" visible="yes" active="yes"/> +<layer number="93" name="Pins" color="2" fill="1" visible="no" active="yes"/> +<layer number="94" name="Symbols" color="4" fill="1" visible="yes" active="yes"/> +<layer number="95" name="Names" color="7" fill="1" visible="yes" active="yes"/> +<layer number="96" name="Values" color="7" fill="1" visible="yes" active="yes"/> +<layer number="97" name="Info" color="7" fill="1" visible="yes" active="yes"/> +<layer number="98" name="Guide" color="6" fill="1" visible="yes" active="yes"/> +<layer number="99" name="SpiceOrder" color="7" fill="1" visible="yes" active="yes"/> +<layer number="100" name="Muster" color="7" fill="1" visible="no" active="no"/> +<layer number="101" name="Patch_Top" color="12" fill="4" visible="no" active="yes"/> +<layer number="102" name="Vscore" color="7" fill="1" visible="no" active="yes"/> +<layer number="103" name="tMap" color="7" fill="1" visible="no" active="yes"/> +<layer number="104" name="Name" color="7" fill="1" visible="no" active="yes"/> +<layer number="105" name="tPlate" color="7" fill="1" visible="no" active="yes"/> +<layer number="106" name="bPlate" color="7" fill="1" visible="no" active="yes"/> +<layer number="107" name="Crop" color="7" fill="1" visible="no" active="yes"/> +<layer number="108" name="tplace-old" color="10" fill="1" visible="no" active="yes"/> +<layer number="109" name="ref-old" color="11" fill="1" visible="no" active="yes"/> +<layer number="110" name="fp0" color="7" fill="1" visible="no" active="yes"/> +<layer number="111" name="LPC17xx" color="7" fill="1" visible="no" active="yes"/> +<layer number="112" name="tSilk" color="7" fill="1" visible="no" active="yes"/> +<layer number="113" name="IDFDebug" color="7" fill="1" visible="no" active="yes"/> +<layer number="114" name="Badge_Outline" color="7" fill="1" visible="no" active="yes"/> +<layer number="115" name="ReferenceISLANDS" color="7" fill="1" visible="no" active="yes"/> +<layer number="116" name="Patch_BOT" color="9" fill="4" visible="no" active="yes"/> +<layer number="117" name="BACKMAAT1" color="7" fill="1" visible="yes" active="yes"/> +<layer number="118" name="Rect_Pads" color="7" fill="1" visible="no" active="yes"/> +<layer number="119" name="KAP_TEKEN" color="7" fill="1" visible="yes" active="yes"/> +<layer number="120" name="KAP_MAAT1" color="7" fill="1" visible="yes" active="yes"/> +<layer number="121" name="_tsilk" color="7" fill="1" visible="no" active="yes"/> +<layer number="122" name="_bsilk" color="7" fill="1" visible="no" active="yes"/> +<layer number="123" name="tTestmark" color="7" fill="1" visible="no" active="yes"/> +<layer number="124" name="bTestmark" color="7" fill="1" visible="no" active="yes"/> +<layer number="125" name="_tNames" color="7" fill="1" visible="no" active="yes"/> +<layer number="126" name="_bNames" color="7" fill="1" visible="no" active="yes"/> +<layer number="127" name="_tValues" color="7" fill="1" visible="no" active="yes"/> +<layer number="128" name="_bValues" color="7" fill="1" visible="no" active="yes"/> +<layer number="129" name="Mask" color="7" fill="1" visible="no" active="yes"/> +<layer number="130" name="SMDSTROOK" color="7" fill="1" visible="yes" active="yes"/> +<layer number="131" name="tAdjust" color="7" fill="1" visible="no" active="yes"/> +<layer number="132" name="bAdjust" color="7" fill="1" visible="no" active="yes"/> +<layer number="133" name="bottom_silk" color="7" fill="1" visible="yes" active="yes"/> +<layer number="144" name="Drill_legend" color="7" fill="1" visible="no" active="yes"/> +<layer number="150" name="Notes" color="7" fill="1" visible="no" active="yes"/> +<layer number="151" name="HeatSink" color="7" fill="1" visible="no" active="yes"/> +<layer number="152" name="_bDocu" color="7" fill="1" visible="no" active="yes"/> +<layer number="153" name="FabDoc1" color="7" fill="1" visible="no" active="yes"/> +<layer number="154" name="FabDoc2" color="7" fill="1" visible="no" active="yes"/> +<layer number="155" name="FabDoc3" color="7" fill="1" visible="no" active="yes"/> +<layer number="199" name="Contour" color="7" fill="1" visible="no" active="yes"/> +<layer number="200" name="200bmp" color="1" fill="10" visible="no" active="yes"/> +<layer number="201" name="201bmp" color="2" fill="10" visible="no" active="yes"/> +<layer number="202" name="202bmp" color="3" fill="10" visible="no" active="yes"/> +<layer number="203" name="203bmp" color="4" fill="10" visible="no" active="yes"/> +<layer number="204" name="204bmp" color="5" fill="10" visible="no" active="yes"/> +<layer number="205" name="205bmp" color="6" fill="10" visible="no" active="yes"/> +<layer number="206" name="206bmp" color="7" fill="10" visible="no" active="yes"/> +<layer number="207" name="207bmp" color="8" fill="10" visible="no" active="yes"/> +<layer number="208" name="208bmp" color="9" fill="10" visible="no" active="yes"/> +<layer number="209" name="209bmp" color="7" fill="1" visible="no" active="yes"/> +<layer number="210" name="210bmp" color="7" fill="1" visible="no" active="yes"/> +<layer number="211" name="211bmp" color="7" fill="1" visible="no" active="yes"/> +<layer number="212" name="212bmp" color="7" fill="1" visible="no" active="yes"/> +<layer number="213" name="213bmp" color="7" fill="1" visible="no" active="yes"/> +<layer number="214" name="214bmp" color="7" fill="1" visible="no" active="yes"/> +<layer number="215" name="215bmp" color="7" fill="1" visible="no" active="yes"/> +<layer number="216" name="216bmp" color="7" fill="1" visible="no" active="yes"/> +<layer number="217" name="217bmp" color="18" fill="1" visible="no" active="no"/> +<layer number="218" name="218bmp" color="19" fill="1" visible="no" active="no"/> +<layer number="219" name="219bmp" color="20" fill="1" visible="no" active="no"/> +<layer number="220" name="220bmp" color="21" fill="1" visible="no" active="no"/> +<layer number="221" name="221bmp" color="22" fill="1" visible="no" active="no"/> +<layer number="222" name="222bmp" color="23" fill="1" visible="no" active="no"/> +<layer number="223" name="223bmp" color="24" fill="1" visible="no" active="no"/> +<layer number="224" name="224bmp" color="25" fill="1" visible="no" active="no"/> +<layer number="225" name="225bmp" color="7" fill="1" visible="no" active="yes"/> +<layer number="226" name="226bmp" color="7" fill="1" visible="no" active="yes"/> +<layer number="227" name="227bmp" color="7" fill="1" visible="no" active="yes"/> +<layer number="228" name="228bmp" color="7" fill="1" visible="no" active="yes"/> +<layer number="229" name="229bmp" color="7" fill="1" visible="no" active="yes"/> +<layer number="230" name="230bmp" color="7" fill="1" visible="no" active="yes"/> +<layer number="231" name="231bmp" color="7" fill="1" visible="no" active="yes"/> +<layer number="232" name="Eagle3D_PG2" color="7" fill="1" visible="no" active="yes"/> +<layer number="233" name="Eagle3D_PG3" color="7" fill="1" visible="no" active="yes"/> +<layer number="248" name="Housing" color="7" fill="1" visible="no" active="yes"/> +<layer number="249" name="Edge" color="7" fill="1" visible="no" active="yes"/> +<layer number="250" name="Descript" color="3" fill="1" visible="no" active="no"/> +<layer number="251" name="SMDround" color="12" fill="11" visible="no" active="no"/> +<layer number="254" name="cooling" color="7" fill="1" visible="no" active="yes"/> +<layer number="255" name="routoute" color="7" fill="1" visible="no" active="yes"/> +</layers> +<schematic xreflabel="%F%N/%S.%C%R" xrefpart="/%S.%C%R"> +<libraries> +<library name="SparkFun-Connectors"> +<description><h3>SparkFun Connectors</h3> +This library contains electrically-functional connectors. +<br> +<br> +We've spent an enormous amount of time creating and checking these footprints and parts, but it is <b> the end user's responsibility</b> to ensure correctness and suitablity for a given componet or application. +<br> +<br>If you enjoy using this library, please buy one of our products at <a href=" www.sparkfun.com">SparkFun.com</a>. +<br> +<br> +<b>Licensing:</b> Creative Commons ShareAlike 4.0 International - https://creativecommons.org/licenses/by-sa/4.0/ +<br> +<br> +You are welcome to use this library for commercial purposes. For attribution, we ask that when you begin to sell your device using our footprint, you email us with a link to the product being sold. We want bragging rights that we helped (in a very small part) to create your 8th world wonder. We would like the opportunity to feature your device on our homepage.</description> +<packages> +<package name="2X5-PTH-1.27MM-NO_SILK"> +<description><h3>Plated Through Hole - 2x5 ARM Cortex Debug Connector (10-pin)</h3> +<p>tDoc (51) layer border represents maximum dimensions of plastic housing.</p> +<p>Specifications: +<ul><li>Pin count:10</li> +<li>Pin pitch:1.27mm</li> +</ul></p> +<p><a href=”http://portal.fciconnect.com/Comergent//fci/drawing/20021111.pdf”>Datasheet referenced for footprint</a></p> +<p>Example device(s): +<ul><li>CONN_05x2</li> +</ul></p></description> +<pad name="8" x="1.27" y="0.762" drill="0.508" diameter="1"/> +<pad name="6" x="0" y="0.762" drill="0.508" diameter="1"/> +<pad name="4" x="-1.27" y="0.762" drill="0.508" diameter="1"/> +<pad name="2" x="-2.54" y="0.762" drill="0.508" diameter="1"/> +<pad name="10" x="2.54" y="0.762" drill="0.508" diameter="1"/> +<pad name="7" x="1.27" y="-0.762" drill="0.508" diameter="1"/> +<pad name="5" x="0" y="-0.762" drill="0.508" diameter="1"/> +<pad name="3" x="-1.27" y="-0.762" drill="0.508" diameter="1"/> +<pad name="1" x="-2.54" y="-0.762" drill="0.508" diameter="1"/> +<pad name="9" x="2.54" y="-0.762" drill="0.508" diameter="1"/> +<wire x1="-3.403" y1="-1.021" x2="-3.403" y2="-0.259" width="0.254" layer="21"/> +<wire x1="3.175" y1="1.715" x2="-3.175" y2="1.715" width="0.127" layer="51"/> +<wire x1="-3.175" y1="1.715" x2="-3.175" y2="-1.715" width="0.127" layer="51"/> +<wire x1="-3.175" y1="-1.715" x2="3.175" y2="-1.715" width="0.127" layer="51"/> +<wire x1="3.175" y1="-1.715" x2="3.175" y2="1.715" width="0.127" layer="51"/> +<text x="-1.5748" y="1.9304" size="0.6096" layer="25" font="vector" ratio="20">>NAME</text> +<text x="-1.8288" y="-2.4638" size="0.6096" layer="27" font="vector" ratio="20">>VALUE</text> +<wire x1="-0.635" y1="-1.905" x2="0.635" y2="-1.905" width="0.254" layer="21"/> +<wire x1="5.2" y1="1.6" x2="-5.2" y2="1.6" width="0.127" layer="51"/> +<wire x1="-5.2" y1="1.6" x2="-5.2" y2="-1.6" width="0.127" layer="51"/> +<wire x1="-5.2" y1="-1.6" x2="5.2" y2="-1.6" width="0.127" layer="51"/> +<wire x1="5.2" y1="-1.6" x2="5.2" y2="1.6" width="0.127" layer="51"/> +</package> +<package name="2X5-PTH-1.27MM"> +<description><h3>Plated Through Hole - 2x5 ARM Cortex Debug Connector (10-pin)</h3> +<p>tDoc (51) layer border represents maximum dimensions of plastic housing.</p> +<p>Specifications: +<ul><li>Pin count:10</li> +<li>Pin pitch:1.27mm</li> +</ul></p> +<p><a href=”http://portal.fciconnect.com/Comergent//fci/drawing/20021111.pdf”>Datasheet referenced for footprint</a></p> +<p>Example device(s): +<ul><li>CONN_05x2</li> +</ul></p></description> +<pad name="8" x="1.27" y="0.635" drill="0.508" diameter="1"/> +<pad name="6" x="0" y="0.635" drill="0.508" diameter="1"/> +<pad name="4" x="-1.27" y="0.635" drill="0.508" diameter="1"/> +<pad name="2" x="-2.54" y="0.635" drill="0.508" diameter="1"/> +<pad name="10" x="2.54" y="0.635" drill="0.508" diameter="1"/> +<pad name="7" x="1.27" y="-0.635" drill="0.508" diameter="1"/> +<pad name="5" x="0" y="-0.635" drill="0.508" diameter="1"/> +<pad name="3" x="-1.27" y="-0.635" drill="0.508" diameter="1"/> +<pad name="1" x="-2.54" y="-0.635" drill="0.508" diameter="1"/> +<pad name="9" x="2.54" y="-0.635" drill="0.508" diameter="1"/> +<wire x1="-3.403" y1="-1.021" x2="-3.403" y2="-0.259" width="0.254" layer="21"/> +<wire x1="3.175" y1="1.715" x2="-3.175" y2="1.715" width="0.127" layer="21"/> +<wire x1="-3.175" y1="1.715" x2="-3.175" y2="-1.715" width="0.127" layer="21"/> +<wire x1="-3.175" y1="-1.715" x2="3.175" y2="-1.715" width="0.127" layer="21"/> +<wire x1="3.175" y1="-1.715" x2="3.175" y2="1.715" width="0.127" layer="21"/> +<text x="-1.5748" y="1.9304" size="0.6096" layer="25" font="vector" ratio="20">>NAME</text> +<text x="-1.8288" y="-2.4638" size="0.6096" layer="27" font="vector" ratio="20">>VALUE</text> +</package> +<package name="2X5-SMD-1.27MM"> +<description>Shrouded SMD connector for JTAG and SWD applications.</description> +<smd name="6" x="0" y="-1.95" dx="0.76" dy="2.4" layer="1" rot="R180"/> +<smd name="8" x="-1.27" y="-1.95" dx="0.76" dy="2.4" layer="1" rot="R180"/> +<smd name="10" x="-2.54" y="-1.95" dx="0.76" dy="2.4" layer="1" rot="R180"/> +<smd name="4" x="1.27" y="-1.95" dx="0.76" dy="2.4" layer="1" rot="R180"/> +<smd name="2" x="2.54" y="-1.95" dx="0.76" dy="2.4" layer="1" rot="R180"/> +<smd name="1" x="2.54" y="1.95" dx="0.76" dy="2.4" layer="1" rot="R180"/> +<smd name="3" x="1.27" y="1.95" dx="0.76" dy="2.4" layer="1" rot="R180"/> +<smd name="5" x="0" y="1.95" dx="0.76" dy="2.4" layer="1" rot="R180"/> +<smd name="7" x="-1.27" y="1.95" dx="0.76" dy="2.4" layer="1" rot="R180"/> +<smd name="9" x="-2.54" y="1.95" dx="0.76" dy="2.4" layer="1" rot="R180"/> +<rectangle x1="-1.0575" y1="-1.9625" x2="1.0575" y2="-1.5525" layer="51" rot="R270"/> +<wire x1="5.55" y1="-1.7" x2="-5.55" y2="-1.7" width="0.1524" layer="51"/> +<wire x1="-5.55" y1="-1.7" x2="-5.55" y2="1.7" width="0.1524" layer="51"/> +<wire x1="-5.55" y1="1.7" x2="5.55" y2="1.7" width="0.1524" layer="51"/> +<wire x1="5.55" y1="1.7" x2="5.55" y2="-1.7" width="0.1524" layer="51"/> +<rectangle x1="-2.3275" y1="-1.9625" x2="-0.2125" y2="-1.5525" layer="51" rot="R270"/> +<rectangle x1="-3.5975" y1="-1.9625" x2="-1.4825" y2="-1.5525" layer="51" rot="R270"/> +<rectangle x1="0.2125" y1="-1.9625" x2="2.3275" y2="-1.5525" layer="51" rot="R270"/> +<rectangle x1="1.4825" y1="-1.9625" x2="3.5975" y2="-1.5525" layer="51" rot="R270"/> +<rectangle x1="1.4825" y1="1.5525" x2="3.5975" y2="1.9625" layer="51" rot="R90"/> +<rectangle x1="0.2125" y1="1.5525" x2="2.3275" y2="1.9625" layer="51" rot="R90"/> +<rectangle x1="-1.0575" y1="1.5525" x2="1.0575" y2="1.9625" layer="51" rot="R90"/> +<rectangle x1="-2.3275" y1="1.5525" x2="-0.2125" y2="1.9625" layer="51" rot="R90"/> +<rectangle x1="-3.5975" y1="1.5525" x2="-1.4825" y2="1.9625" layer="51" rot="R90"/> +<wire x1="-3.2" y1="2.5" x2="-6.3" y2="2.5" width="0.2032" layer="51"/> +<wire x1="-6.3" y1="2.5" x2="-6.3" y2="-2.5" width="0.2032" layer="51"/> +<wire x1="-6.3" y1="-2.5" x2="-3.2" y2="-2.5" width="0.2032" layer="51"/> +<wire x1="3.2" y1="-2.5" x2="6.3" y2="-2.5" width="0.2032" layer="51"/> +<wire x1="6.3" y1="-2.5" x2="6.3" y2="2.5" width="0.2032" layer="51"/> +<wire x1="6.3" y1="2.5" x2="3.2" y2="2.5" width="0.2032" layer="51"/> +<wire x1="0.6" y1="2.9" x2="0.6" y2="3.4" width="0.2032" layer="21"/> +<wire x1="0.6" y1="3.4" x2="-0.6" y2="3.4" width="0.2032" layer="21"/> +<wire x1="-0.6" y1="3.4" x2="-0.6" y2="2.9" width="0.2032" layer="21"/> +<circle x="3.6" y="3.1" radius="0.1" width="0.2032" layer="21"/> +<wire x1="-3.175" y1="1.905" x2="-3.175" y2="-1.905" width="0.127" layer="51"/> +<wire x1="3.175" y1="1.905" x2="3.175" y2="-1.905" width="0.127" layer="51"/> +</package> +</packages> +<symbols> +<symbol name="CORTEX_DEBUG"> +<description><h3>Cortex Debug Connector</h3> +<p><a href="http://infocenter.arm.com/help/topic/com.arm.doc.faqs/attached/13634/cortex_debug_connectors.pdf">Datasheet</a></p></description> +<pin name="VCC" x="-15.24" y="5.08" length="short"/> +<pin name="GND@3" x="-15.24" y="2.54" length="short"/> +<pin name="GND@5" x="-15.24" y="0" length="short"/> +<pin name="KEY" x="-15.24" y="-2.54" length="short"/> +<pin name="GNDDTCT" x="-15.24" y="-5.08" length="short"/> +<pin name="!RESET" x="15.24" y="-5.08" length="short" rot="R180"/> +<pin name="NC/TDI" x="15.24" y="-2.54" length="short" rot="R180"/> +<pin name="SWO/TDO" x="15.24" y="0" length="short" rot="R180"/> +<pin name="SWDCLK/TCK" x="15.24" y="2.54" length="short" rot="R180"/> +<pin name="SWDIO/TMS" x="15.24" y="5.08" length="short" rot="R180"/> +<wire x1="-12.7" y1="-7.62" x2="-12.7" y2="7.62" width="0.254" layer="94"/> +<wire x1="-12.7" y1="7.62" x2="12.7" y2="7.62" width="0.254" layer="94"/> +<wire x1="12.7" y1="7.62" x2="12.7" y2="-7.62" width="0.254" layer="94"/> +<wire x1="12.7" y1="-7.62" x2="-12.7" y2="-7.62" width="0.254" layer="94"/> +<text x="-12.7" y="7.874" size="1.778" layer="95" font="vector">>Name</text> +<text x="-12.7" y="-9.906" size="1.778" layer="96" font="vector">>Value</text> +</symbol> +</symbols> +<devicesets> +<deviceset name="CORTEX_JTAG_DEBUG" prefix="J"> +<description><h3>Cortex Debug Connector - 10 pin</h3> +<p>Supports JTAG debug, Serial Wire debug, and Serial Wire Viewer. +PTH and SMD connector options available.</p> +<p> <ul><a href=”http://infocenter.arm.com/help/topic/com.arm.doc.faqs/attached/13634/cortex_debug_connectors.pdf”>General Connector Information</a> +<p><b> Products:</b> +<ul><li><a href=”http://www.digikey.com/product-detail/en/cnc-tech/3220-10-0100-00/1175-1627-ND/3883661”>PTH Connector</a> -via Digi-Key</li> +<li><a href=”https://www.sparkfun.com/products/13229”>SparkFun PSoc</a></li> +<li><a href=”https://www.sparkfun.com/products/13810”>SparkFun T</a></li> +</ul></p></description> +<gates> +<gate name="J1" symbol="CORTEX_DEBUG" x="0" y="0"/> +</gates> +<devices> +<device name="_PTH_NS" package="2X5-PTH-1.27MM-NO_SILK"> +<connects> +<connect gate="J1" pin="!RESET" pad="10"/> +<connect gate="J1" pin="GND@3" pad="3"/> +<connect gate="J1" pin="GND@5" pad="5"/> +<connect gate="J1" pin="GNDDTCT" pad="9"/> +<connect gate="J1" pin="KEY" pad="7"/> +<connect gate="J1" pin="NC/TDI" pad="8"/> +<connect gate="J1" pin="SWDCLK/TCK" pad="4"/> +<connect gate="J1" pin="SWDIO/TMS" pad="2"/> +<connect gate="J1" pin="SWO/TDO" pad="6"/> +<connect gate="J1" pin="VCC" pad="1"/> +</connects> +<technologies> +<technology name=""/> +</technologies> +</device> +<device name="_PTH" package="2X5-PTH-1.27MM"> +<connects> +<connect gate="J1" pin="!RESET" pad="10"/> +<connect gate="J1" pin="GND@3" pad="3"/> +<connect gate="J1" pin="GND@5" pad="5"/> +<connect gate="J1" pin="GNDDTCT" pad="9"/> +<connect gate="J1" pin="KEY" pad="7"/> +<connect gate="J1" pin="NC/TDI" pad="8"/> +<connect gate="J1" pin="SWDCLK/TCK" pad="4"/> +<connect gate="J1" pin="SWDIO/TMS" pad="2"/> +<connect gate="J1" pin="SWO/TDO" pad="6"/> +<connect gate="J1" pin="VCC" pad="1"/> +</connects> +<technologies> +<technology name=""/> +</technologies> +</device> +<device name="_SMD" package="2X5-SMD-1.27MM"> +<connects> +<connect gate="J1" pin="!RESET" pad="10"/> +<connect gate="J1" pin="GND@3" pad="3"/> +<connect gate="J1" pin="GND@5" pad="5"/> +<connect gate="J1" pin="GNDDTCT" pad="9"/> +<connect gate="J1" pin="KEY" pad="7"/> +<connect gate="J1" pin="NC/TDI" pad="8"/> +<connect gate="J1" pin="SWDCLK/TCK" pad="4"/> +<connect gate="J1" pin="SWDIO/TMS" pad="2"/> +<connect gate="J1" pin="SWO/TDO" pad="6"/> +<connect gate="J1" pin="VCC" pad="1"/> +</connects> +<technologies> +<technology name=""> +<attribute name="PROD_ID" value="CONN-14503" constant="no"/> +<attribute name="VALUE" value="JTAG" constant="no"/> +</technology> +</technologies> +</device> +</devices> +</deviceset> +</devicesets> +</library> +<library name="passives"> +<packages> +<package name="TACT-SWITCH-KMR6"> +<smd name="P$1" x="-2.05" y="0.8" dx="0.9" dy="1" layer="1" rot="R180"/> +<smd name="P$2" x="2.05" y="0.8" dx="0.9" dy="1" layer="1" rot="R180"/> +<smd name="P$3" x="-2.05" y="-0.8" dx="0.9" dy="1" layer="1" rot="R180"/> +<smd name="P$4" x="2.05" y="-0.8" dx="0.9" dy="1" layer="1" rot="R180"/> +<wire x1="-1.4" y1="0.8" x2="0" y2="0.8" width="0.127" layer="51"/> +<wire x1="0" y1="0.8" x2="1.4" y2="0.8" width="0.127" layer="51"/> +<wire x1="-1.4" y1="-0.8" x2="0" y2="-0.8" width="0.127" layer="51"/> +<wire x1="0" y1="-0.8" x2="1.4" y2="-0.8" width="0.127" layer="51"/> +<wire x1="0" y1="0.8" x2="0" y2="0.6" width="0.127" layer="51"/> +<wire x1="0" y1="0.6" x2="0.4" y2="-0.4" width="0.127" layer="51"/> +<wire x1="0" y1="-0.8" x2="0" y2="-0.5" width="0.127" layer="51"/> +<wire x1="-2.1" y1="0.2" x2="-2.1" y2="-0.2" width="0.127" layer="51"/> +<wire x1="2.1" y1="-0.2" x2="2.1" y2="0.2" width="0.127" layer="51"/> +<wire x1="2.1" y1="1.4" x2="2.1" y2="1.5" width="0.127" layer="51"/> +<wire x1="2.1" y1="1.5" x2="1" y2="1.5" width="0.127" layer="51"/> +<wire x1="1.032" y1="1.5" x2="-2.1" y2="1.5" width="0.127" layer="51"/> +<wire x1="-2.1" y1="1.5" x2="-2.1" y2="1.4" width="0.127" layer="51"/> +<wire x1="-2.1" y1="-1.4" x2="-2.1" y2="-1.5" width="0.127" layer="51"/> +<wire x1="-2.1" y1="-1.5" x2="2.1" y2="-1.5" width="0.127" layer="51"/> +<wire x1="2.1" y1="-1.5" x2="2.1" y2="-1.4" width="0.127" layer="51"/> +</package> +<package name="TACT-SWITCH-SIDE"> +<smd name="P$1" x="-1.8" y="0.725" dx="1.4" dy="1.05" layer="1" rot="R180"/> +<smd name="P$2" x="1.8" y="0.725" dx="1.4" dy="1.05" layer="1" rot="R180"/> +<smd name="P$3" x="-1.8" y="-0.725" dx="1.4" dy="1.05" layer="1" rot="R180"/> +<smd name="P$4" x="1.8" y="-0.725" dx="1.4" dy="1.05" layer="1" rot="R180"/> +<wire x1="-0.9" y1="0.8" x2="0" y2="0.8" width="0.127" layer="51"/> +<wire x1="0" y1="0.8" x2="0.9" y2="0.8" width="0.127" layer="51"/> +<wire x1="-0.9" y1="-0.8" x2="0" y2="-0.8" width="0.127" layer="51"/> +<wire x1="0" y1="-0.8" x2="0.9" y2="-0.8" width="0.127" layer="51"/> +<wire x1="0" y1="0.8" x2="0" y2="0.6" width="0.127" layer="51"/> +<wire x1="0" y1="0.6" x2="0.4" y2="-0.4" width="0.127" layer="51"/> +<wire x1="0" y1="-0.8" x2="0" y2="-0.5" width="0.127" layer="51"/> +<wire x1="-1.75" y1="-1.45" x2="1.75" y2="-1.45" width="0.127" layer="21"/> +<wire x1="-1.75" y1="1.6" x2="-1" y2="1.6" width="0.127" layer="21"/> +<wire x1="-1" y1="1.6" x2="0" y2="1.6" width="0.127" layer="21"/> +<wire x1="0" y1="1.6" x2="1" y2="1.6" width="0.127" layer="21"/> +<wire x1="1" y1="1.6" x2="1.75" y2="1.6" width="0.127" layer="21"/> +<wire x1="-1" y1="1.6" x2="-1" y2="2.3" width="0.127" layer="21"/> +<wire x1="-1" y1="2.3" x2="1" y2="2.3" width="0.127" layer="21"/> +<wire x1="1" y1="2.3" x2="1" y2="1.6" width="0.127" layer="21"/> +</package> +<package name="1206"> +<wire x1="-0.965" y1="0.787" x2="0.965" y2="0.787" width="0.1016" layer="51"/> +<wire x1="-0.965" y1="-0.787" x2="0.965" y2="-0.787" width="0.1016" layer="51"/> +<smd name="1" x="-1.4" y="0" dx="1.6" dy="1.8" layer="1"/> +<smd name="2" x="1.4" y="0" dx="1.6" dy="1.8" layer="1"/> +<text x="-1.27" y="1.143" size="1.016" layer="25">>NAME</text> +<text x="-1.397" y="-2.794" size="1.016" layer="27">>VALUE</text> +<rectangle x1="-1.7018" y1="-0.8509" x2="-0.9517" y2="0.8491" layer="51"/> +<rectangle x1="0.9517" y1="-0.8491" x2="1.7018" y2="0.8509" layer="51"/> +<rectangle x1="-0.1999" y1="-0.4001" x2="0.1999" y2="0.4001" layer="35"/> +</package> +<package name="R2010"> +<description><b>RESISTOR</b><p> +chip</description> +<wire x1="-1.662" y1="1.245" x2="1.662" y2="1.245" width="0.1524" layer="51"/> +<wire x1="-1.637" y1="-1.245" x2="1.687" y2="-1.245" width="0.1524" layer="51"/> +<wire x1="-3.473" y1="1.483" x2="3.473" y2="1.483" width="0.0508" layer="39"/> +<wire x1="3.473" y1="1.483" x2="3.473" y2="-1.483" width="0.0508" layer="39"/> +<wire x1="3.473" y1="-1.483" x2="-3.473" y2="-1.483" width="0.0508" layer="39"/> +<wire x1="-3.473" y1="-1.483" x2="-3.473" y2="1.483" width="0.0508" layer="39"/> +<wire x1="-1.027" y1="1.245" x2="1.027" y2="1.245" width="0.1524" layer="21"/> +<wire x1="-1.002" y1="-1.245" x2="1.016" y2="-1.245" width="0.1524" layer="21"/> +<smd name="1" x="-2.2" y="0" dx="1.8" dy="2.7" layer="1"/> +<smd name="2" x="2.2" y="0" dx="1.8" dy="2.7" layer="1"/> +<text x="-2.54" y="1.5875" size="1.016" layer="25">>NAME</text> +<text x="-2.54" y="-3.302" size="1.016" layer="27">>VALUE</text> +<rectangle x1="-2.4892" y1="-1.3208" x2="-1.6393" y2="1.3292" layer="51"/> +<rectangle x1="1.651" y1="-1.3208" x2="2.5009" y2="1.3292" layer="51"/> +</package> +<package name="0805"> +<smd name="1" x="-1" y="0" dx="0.8" dy="1.3" layer="1"/> +<smd name="2" x="1" y="0" dx="0.8" dy="1.3" layer="1"/> +<text x="-0.762" y="0.8255" size="1.016" layer="25">>NAME</text> +<text x="-1.016" y="-2.032" size="1.016" layer="27">>VALUE</text> +<rectangle x1="-1" y1="-0.6" x2="1" y2="0.6" layer="51"/> +</package> +<package name="0603-RES"> +<wire x1="-0.356" y1="0.432" x2="0.356" y2="0.432" width="0.1016" layer="51"/> +<wire x1="-0.356" y1="-0.419" x2="0.356" y2="-0.419" width="0.1016" layer="51"/> +<smd name="1" x="-0.85" y="0" dx="1.1" dy="1" layer="1"/> +<smd name="2" x="0.85" y="0" dx="1.1" dy="1" layer="1"/> +<text x="-0.889" y="1.397" size="1.016" layer="25">>NAME</text> +<text x="-1.016" y="-2.413" size="1.016" layer="27" ratio="10">>VALUE</text> +<rectangle x1="-0.8382" y1="-0.4699" x2="-0.3381" y2="0.4801" layer="51"/> +<rectangle x1="0.3302" y1="-0.4699" x2="0.8303" y2="0.4801" layer="51"/> +<rectangle x1="-0.1999" y1="-0.3" x2="0.1999" y2="0.3" layer="35"/> +<rectangle x1="-0.2286" y1="-0.381" x2="0.2286" y2="0.381" layer="21"/> +</package> +<package name="R2512"> +<wire x1="-2.362" y1="1.473" x2="2.387" y2="1.473" width="0.1524" layer="51"/> +<wire x1="-2.362" y1="-1.473" x2="2.387" y2="-1.473" width="0.1524" layer="51"/> +<smd name="1" x="-2.8" y="0" dx="1.8" dy="3.2" layer="1"/> +<smd name="2" x="2.8" y="0" dx="1.8" dy="3.2" layer="1"/> +<text x="-2.54" y="1.905" size="1.016" layer="25">>NAME</text> +<text x="-2.54" y="-3.175" size="1.016" layer="27">>VALUE</text> +<rectangle x1="-3.2004" y1="-1.5494" x2="-2.3505" y2="1.5507" layer="51"/> +<rectangle x1="2.3622" y1="-1.5494" x2="3.2121" y2="1.5507" layer="51"/> +</package> +<package name="TO220ACS"> +<description><B>DIODE</B><p> +2-lead molded, vertical</description> +<wire x1="5.08" y1="-1.143" x2="4.953" y2="-4.064" width="0.1524" layer="21"/> +<wire x1="4.699" y1="-4.318" x2="4.953" y2="-4.064" width="0.1524" layer="21"/> +<wire x1="4.699" y1="-4.318" x2="-4.699" y2="-4.318" width="0.1524" layer="21"/> +<wire x1="-4.953" y1="-4.064" x2="-4.699" y2="-4.318" width="0.1524" layer="21"/> +<wire x1="-4.953" y1="-4.064" x2="-5.08" y2="-1.143" width="0.1524" layer="21"/> +<circle x="-4.4958" y="-3.7084" radius="0.254" width="0" layer="21"/> +<pad name="C" x="-2.54" y="-2.54" drill="1.016" shape="long" rot="R90"/> +<pad name="A" x="2.54" y="-2.54" drill="1.016" shape="long" rot="R90"/> +<text x="-5.08" y="-6.0452" size="1.016" layer="25" ratio="10">>NAME</text> +<text x="-5.08" y="-7.62" size="1.016" layer="27" ratio="10">>VALUE</text> +<rectangle x1="-5.334" y1="-0.762" x2="5.334" y2="0" layer="21"/> +<rectangle x1="-5.334" y1="-1.27" x2="-3.429" y2="-0.762" layer="21"/> +<rectangle x1="-3.429" y1="-1.27" x2="-1.651" y2="-0.762" layer="51"/> +<rectangle x1="3.429" y1="-1.27" x2="5.334" y2="-0.762" layer="21"/> +<rectangle x1="1.651" y1="-1.27" x2="3.429" y2="-0.762" layer="51"/> +<rectangle x1="-1.651" y1="-1.27" x2="1.651" y2="-0.762" layer="21"/> +</package> +<package name="0402"> +<description><b>CAPACITOR</b><p> +chip</description> +<wire x1="-0.245" y1="0.224" x2="0.245" y2="0.224" width="0.1524" layer="51"/> +<wire x1="0.245" y1="-0.224" x2="-0.245" y2="-0.224" width="0.1524" layer="51"/> +<smd name="1" x="-0.525" y="0" dx="0.575" dy="0.7" layer="1"/> +<smd name="2" x="0.525" y="0" dx="0.575" dy="0.7" layer="1"/> +<text x="-0.889" y="0.6985" size="1.016" layer="25">>NAME</text> +<text x="-1.0795" y="-1.778" size="1.016" layer="27">>VALUE</text> +<rectangle x1="-0.554" y1="-0.3048" x2="-0.254" y2="0.2951" layer="51"/> +<rectangle x1="0.2588" y1="-0.3048" x2="0.5588" y2="0.2951" layer="51"/> +</package> +<package name="0603-CAP"> +<wire x1="-0.356" y1="0.332" x2="0.356" y2="0.332" width="0.1016" layer="51"/> +<wire x1="-0.356" y1="-0.319" x2="0.356" y2="-0.319" width="0.1016" layer="51"/> +<smd name="1" x="-0.8" y="0" dx="0.8" dy="0.95" layer="1"/> +<smd name="2" x="0.8" y="0" dx="0.8" dy="0.95" layer="1"/> +<text x="-0.889" y="1.397" size="1.016" layer="25">>NAME</text> +<text x="-1.016" y="-2.413" size="1.016" layer="27">>VALUE</text> +<rectangle x1="-0.8382" y1="-0.4" x2="-0.3381" y2="0.4" layer="51"/> +<rectangle x1="0.3302" y1="-0.4" x2="0.8303" y2="0.4" layer="51"/> +</package> +<package name="1210"> +<wire x1="-1.6" y1="1.3" x2="1.6" y2="1.3" width="0.127" layer="51"/> +<wire x1="1.6" y1="1.3" x2="1.6" y2="-1.3" width="0.127" layer="51"/> +<wire x1="1.6" y1="-1.3" x2="-1.6" y2="-1.3" width="0.127" layer="51"/> +<wire x1="-1.6" y1="-1.3" x2="-1.6" y2="1.3" width="0.127" layer="51"/> +<wire x1="-1.6" y1="1.3" x2="1.6" y2="1.3" width="0.2032" layer="51"/> +<wire x1="-1.6" y1="-1.3" x2="1.6" y2="-1.3" width="0.2032" layer="51"/> +<smd name="1" x="-1.6" y="0" dx="1.2" dy="2.5" layer="1"/> +<smd name="2" x="1.6" y="0" dx="1.2" dy="2.5" layer="1"/> +<text x="-2.07" y="1.77" size="1.016" layer="25">>NAME</text> +<text x="-2.17" y="-3.24" size="1.016" layer="27">>VALUE</text> +</package> +<package name="2220-C"> +<smd name="P$1" x="-2.6" y="0" dx="1.2" dy="5" layer="1"/> +<smd name="P$2" x="2.6" y="0" dx="1.2" dy="5" layer="1"/> +<text x="-1.5" y="3" size="0.6096" layer="125">>NAME</text> +<text x="-1.5" y="-3.5" size="0.6096" layer="127">>VALUE</text> +</package> +</packages> +<symbols> +<symbol name="TS2"> +<wire x1="0" y1="1.905" x2="0" y2="2.54" width="0.254" layer="94"/> +<wire x1="-4.445" y1="1.905" x2="-3.175" y2="1.905" width="0.254" layer="94"/> +<wire x1="-4.445" y1="-1.905" x2="-3.175" y2="-1.905" width="0.254" layer="94"/> +<wire x1="-4.445" y1="1.905" x2="-4.445" y2="0" width="0.254" layer="94"/> +<wire x1="-4.445" y1="0" x2="-4.445" y2="-1.905" width="0.254" layer="94"/> +<wire x1="-2.54" y1="0" x2="-1.905" y2="0" width="0.1524" layer="94"/> +<wire x1="-1.27" y1="0" x2="-0.635" y2="0" width="0.1524" layer="94"/> +<wire x1="-4.445" y1="0" x2="-3.175" y2="0" width="0.1524" layer="94"/> +<wire x1="2.54" y1="2.54" x2="0" y2="2.54" width="0.1524" layer="94"/> +<wire x1="2.54" y1="-2.54" x2="0" y2="-2.54" width="0.1524" layer="94"/> +<wire x1="0" y1="-2.54" x2="-1.27" y2="1.905" width="0.254" layer="94"/> +<circle x="0" y="-2.54" radius="0.127" width="0.4064" layer="94"/> +<circle x="0" y="2.54" radius="0.127" width="0.4064" layer="94"/> +<text x="-6.35" y="-2.54" size="1.778" layer="95" rot="R90">>NAME</text> +<text x="-3.81" y="3.175" size="1.778" layer="96" rot="R90">>VALUE</text> +<pin name="P" x="0" y="-5.08" visible="pad" length="short" direction="pas" swaplevel="2" rot="R90"/> +<pin name="S" x="0" y="5.08" visible="pad" length="short" direction="pas" swaplevel="1" rot="R270"/> +<pin name="S1" x="2.54" y="5.08" visible="pad" length="short" direction="pas" swaplevel="1" rot="R270"/> +<pin name="P1" x="2.54" y="-5.08" visible="pad" length="short" direction="pas" swaplevel="2" rot="R90"/> +</symbol> +<symbol name="RESISTOR"> +<wire x1="-2.54" y1="0" x2="-2.159" y2="1.016" width="0.1524" layer="94"/> +<wire x1="-2.159" y1="1.016" x2="-1.524" y2="-1.016" width="0.1524" layer="94"/> +<wire x1="-1.524" y1="-1.016" x2="-0.889" y2="1.016" width="0.1524" layer="94"/> +<wire x1="-0.889" y1="1.016" x2="-0.254" y2="-1.016" width="0.1524" layer="94"/> +<wire x1="-0.254" y1="-1.016" x2="0.381" y2="1.016" width="0.1524" layer="94"/> +<wire x1="0.381" y1="1.016" x2="1.016" y2="-1.016" width="0.1524" layer="94"/> +<wire x1="1.016" y1="-1.016" x2="1.651" y2="1.016" width="0.1524" layer="94"/> +<wire x1="1.651" y1="1.016" x2="2.286" y2="-1.016" width="0.1524" layer="94"/> +<wire x1="2.286" y1="-1.016" x2="2.54" y2="0" width="0.1524" layer="94"/> +<text x="-3.81" y="1.4986" size="1.778" layer="95">>NAME</text> +<text x="-3.81" y="-3.302" size="1.778" layer="96">>VALUE</text> +<pin name="2" x="5.08" y="0" visible="off" length="short" direction="pas" swaplevel="1" rot="R180"/> +<pin name="1" x="-5.08" y="0" visible="off" length="short" direction="pas" swaplevel="1"/> +<text x="-3.81" y="-6.858" size="1.27" layer="97">>PRECISION</text> +<text x="-3.81" y="-5.08" size="1.27" layer="97">>PACKAGE</text> +</symbol> +<symbol name="CAP"> +<wire x1="0" y1="2.54" x2="0" y2="2.032" width="0.1524" layer="94"/> +<wire x1="0" y1="0" x2="0" y2="0.508" width="0.1524" layer="94"/> +<text x="1.524" y="2.921" size="1.778" layer="95">>NAME</text> +<text x="1.524" y="-2.159" size="1.778" layer="96">>VALUE</text> +<rectangle x1="-2.032" y1="0.508" x2="2.032" y2="1.016" layer="94"/> +<rectangle x1="-2.032" y1="1.524" x2="2.032" y2="2.032" layer="94"/> +<pin name="1" x="0" y="5.08" visible="off" length="short" direction="pas" swaplevel="1" rot="R270"/> +<pin name="2" x="0" y="-2.54" visible="off" length="short" direction="pas" swaplevel="1" rot="R90"/> +<text x="1.524" y="-4.064" size="1.27" layer="97">>PACKAGE</text> +<text x="1.524" y="-5.842" size="1.27" layer="97">>VOLTAGE</text> +<text x="1.524" y="-7.62" size="1.27" layer="97">>TYPE</text> +</symbol> +</symbols> +<devicesets> +<deviceset name="2-8X4-5_SWITCH" prefix="S"> +<gates> +<gate name="G$1" symbol="TS2" x="0" y="0"/> +</gates> +<devices> +<device name="" package="TACT-SWITCH-KMR6"> +<connects> +<connect gate="G$1" pin="P" pad="P$1"/> +<connect gate="G$1" pin="P1" pad="P$2"/> +<connect gate="G$1" pin="S" pad="P$3"/> +<connect gate="G$1" pin="S1" pad="P$4"/> +</connects> +<technologies> +<technology name=""/> +</technologies> +</device> +<device name="SIDE" package="TACT-SWITCH-SIDE"> +<connects> +<connect gate="G$1" pin="P" pad="P$1"/> +<connect gate="G$1" pin="P1" pad="P$2"/> +<connect gate="G$1" pin="S" pad="P$3"/> +<connect gate="G$1" pin="S1" pad="P$4"/> +</connects> +<technologies> +<technology name=""/> +</technologies> +</device> +</devices> +</deviceset> +<deviceset name="RESISTOR" prefix="R" uservalue="yes"> +<description><b>Resistor</b> +Basic schematic elements and footprints for 0603, 1206, and PTH resistors.</description> +<gates> +<gate name="G$1" symbol="RESISTOR" x="0" y="0"/> +</gates> +<devices> +<device name="1206" package="1206"> +<connects> +<connect gate="G$1" pin="1" pad="1"/> +<connect gate="G$1" pin="2" pad="2"/> +</connects> +<technologies> +<technology name=""> +<attribute name="PACKAGE" value="1206" constant="no"/> +<attribute name="PRECISION" value="" constant="no"/> +</technology> +</technologies> +</device> +<device name="2010" package="R2010"> +<connects> +<connect gate="G$1" pin="1" pad="1"/> +<connect gate="G$1" pin="2" pad="2"/> +</connects> +<technologies> +<technology name=""> +<attribute name="PACKAGE" value="2010"/> +<attribute name="PRECISION" value="" constant="no"/> +</technology> +</technologies> +</device> +<device name="0805-RES" package="0805"> +<connects> +<connect gate="G$1" pin="1" pad="1"/> +<connect gate="G$1" pin="2" pad="2"/> +</connects> +<technologies> +<technology name=""> +<attribute name="PACKAGE" value="0805"/> +<attribute name="PRECISION" value="" constant="no"/> +</technology> +</technologies> +</device> +<device name="0603-RES" package="0603-RES"> +<connects> +<connect gate="G$1" pin="1" pad="1"/> +<connect gate="G$1" pin="2" pad="2"/> +</connects> +<technologies> +<technology name=""> +<attribute name="PACKAGE" value="0603"/> +<attribute name="PRECISION" value="" constant="no"/> +</technology> +</technologies> +</device> +<device name="2512" package="R2512"> +<connects> +<connect gate="G$1" pin="1" pad="1"/> +<connect gate="G$1" pin="2" pad="2"/> +</connects> +<technologies> +<technology name=""> +<attribute name="PACKAGE" value="2512"/> +<attribute name="PRECISION" value="" constant="no"/> +</technology> +</technologies> +</device> +<device name="TO220ACS" package="TO220ACS"> +<connects> +<connect gate="G$1" pin="1" pad="A"/> +<connect gate="G$1" pin="2" pad="C"/> +</connects> +<technologies> +<technology name=""/> +</technologies> +</device> +<device name="0402" package="0402"> +<connects> +<connect gate="G$1" pin="1" pad="1"/> +<connect gate="G$1" pin="2" pad="2"/> +</connects> +<technologies> +<technology name=""/> +</technologies> +</device> +</devices> +</deviceset> +<deviceset name="CAP" prefix="C" uservalue="yes"> +<description><b>Capacitor</b> +Standard 0603 ceramic capacitor, and 0.1" leaded capacitor.</description> +<gates> +<gate name="G$1" symbol="CAP" x="0" y="0"/> +</gates> +<devices> +<device name="0805" package="0805"> +<connects> +<connect gate="G$1" pin="1" pad="1"/> +<connect gate="G$1" pin="2" pad="2"/> +</connects> +<technologies> +<technology name=""> +<attribute name="PACKAGE" value="0805"/> +<attribute name="TYPE" value="" constant="no"/> +<attribute name="VOLTAGE" value="" constant="no"/> +</technology> +</technologies> +</device> +<device name="0603-CAP" package="0603-CAP"> +<connects> +<connect gate="G$1" pin="1" pad="1"/> +<connect gate="G$1" pin="2" pad="2"/> +</connects> +<technologies> +<technology name=""> +<attribute name="PACKAGE" value="0603"/> +<attribute name="TYPE" value="" constant="no"/> +<attribute name="VOLTAGE" value="" constant="no"/> +</technology> +</technologies> +</device> +<device name="1210" package="1210"> +<connects> +<connect gate="G$1" pin="1" pad="1"/> +<connect gate="G$1" pin="2" pad="2"/> +</connects> +<technologies> +<technology name=""> +<attribute name="PACKAGE" value="1210" constant="no"/> +<attribute name="TYPE" value="" constant="no"/> +<attribute name="VOLTAGE" value="" constant="no"/> +</technology> +</technologies> +</device> +<device name="1206" package="1206"> +<connects> +<connect gate="G$1" pin="1" pad="1"/> +<connect gate="G$1" pin="2" pad="2"/> +</connects> +<technologies> +<technology name=""> +<attribute name="PACKAGE" value="1206" constant="no"/> +<attribute name="TYPE" value="" constant="no"/> +<attribute name="VOLTAGE" value="" constant="no"/> +</technology> +</technologies> +</device> +<device name="2220" package="2220-C"> +<connects> +<connect gate="G$1" pin="1" pad="P$1"/> +<connect gate="G$1" pin="2" pad="P$2"/> +</connects> +<technologies> +<technology name=""/> +</technologies> +</device> +<device name="0402" package="0402"> +<connects> +<connect gate="G$1" pin="1" pad="1"/> +<connect gate="G$1" pin="2" pad="2"/> +</connects> +<technologies> +<technology name=""/> +</technologies> +</device> +</devices> +</deviceset> +</devicesets> +</library> +<library name="supply1"> +<description><b>Supply Symbols</b><p> + GND, VCC, 0V, +5V, -5V, etc.<p> + Please keep in mind, that these devices are necessary for the + automatic wiring of the supply signals.<p> + The pin name defined in the symbol is identical to the net which is to be wired automatically.<p> + In this library the device names are the same as the pin names of the symbols, therefore the correct signal names appear next to the supply symbols in the schematic.<p> + <author>Created by librarian@cadsoft.de</author></description> +<packages> +</packages> +<symbols> +<symbol name="+3V3" urn="urn:adsk.eagle:symbol:26950/1"> +<wire x1="1.27" y1="-1.905" x2="0" y2="0" width="0.254" layer="94"/> +<wire x1="0" y1="0" x2="-1.27" y2="-1.905" width="0.254" layer="94"/> +<text x="-2.54" y="-5.08" size="1.778" layer="96" rot="R90">>VALUE</text> +<pin name="+3V3" x="0" y="-2.54" visible="off" length="short" direction="sup" rot="R90"/> +</symbol> +<symbol name="+5V" urn="urn:adsk.eagle:symbol:26929/1"> +<wire x1="1.27" y1="-1.905" x2="0" y2="0" width="0.254" layer="94"/> +<wire x1="0" y1="0" x2="-1.27" y2="-1.905" width="0.254" layer="94"/> +<text x="-2.54" y="-5.08" size="1.778" layer="96" rot="R90">>VALUE</text> +<pin name="+5V" x="0" y="-2.54" visible="off" length="short" direction="sup" rot="R90"/> +</symbol> +<symbol name="GND" urn="urn:adsk.eagle:symbol:26925/1"> +<wire x1="-1.905" y1="0" x2="1.905" y2="0" width="0.254" layer="94"/> +<text x="-2.54" y="-2.54" size="1.778" layer="96">>VALUE</text> +<pin name="GND" x="0" y="2.54" visible="off" length="short" direction="sup" rot="R270"/> +</symbol> +</symbols> +<devicesets> +<deviceset name="+3V3" urn="urn:adsk.eagle:component:26981/1" prefix="+3V3"> +<description><b>SUPPLY SYMBOL</b></description> +<gates> +<gate name="G$1" symbol="+3V3" x="0" y="0"/> +</gates> +<devices> +<device name=""> +<technologies> +<technology name=""/> +</technologies> +</device> +</devices> +</deviceset> +<deviceset name="+5V" urn="urn:adsk.eagle:component:26963/1" prefix="P+"> +<description><b>SUPPLY SYMBOL</b></description> +<gates> +<gate name="1" symbol="+5V" x="0" y="0"/> +</gates> +<devices> +<device name=""> +<technologies> +<technology name=""/> +</technologies> +</device> +</devices> +</deviceset> +<deviceset name="GND" urn="urn:adsk.eagle:component:26954/1" prefix="GND"> +<description><b>SUPPLY SYMBOL</b></description> +<gates> +<gate name="1" symbol="GND" x="0" y="0"/> +</gates> +<devices> +<device name=""> +<technologies> +<technology name=""/> +</technologies> +</device> +</devices> +</deviceset> +</devicesets> +</library> +<library name="power"> +<packages> +<package name="SOT23-5"> +<description><b>Small Outline Transistor</b>, 5 lead</description> +<wire x1="-1.544" y1="0.713" x2="1.544" y2="0.713" width="0.1524" layer="51"/> +<wire x1="1.544" y1="0.713" x2="1.544" y2="-0.712" width="0.1524" layer="51"/> +<wire x1="1.544" y1="-0.712" x2="-1.544" y2="-0.712" width="0.1524" layer="51"/> +<wire x1="-1.544" y1="-0.712" x2="-1.544" y2="0.713" width="0.1524" layer="51"/> +<smd name="5" x="-0.95" y="1.306" dx="0.5334" dy="1.1938" layer="1"/> +<smd name="4" x="0.95" y="1.306" dx="0.5334" dy="1.1938" layer="1"/> +<smd name="1" x="-0.95" y="-1.306" dx="0.5334" dy="1.1938" layer="1"/> +<smd name="2" x="0" y="-1.306" dx="0.5334" dy="1.1938" layer="1"/> +<smd name="3" x="0.95" y="-1.306" dx="0.5334" dy="1.1938" layer="1"/> +<text x="-1.778" y="-1.778" size="1.27" layer="25" ratio="10" rot="R90">>NAME</text> +<text x="3.048" y="-1.778" size="1.27" layer="27" ratio="10" rot="R90">>VALUE</text> +<rectangle x1="-1.1875" y1="0.7126" x2="-0.7125" y2="1.5439" layer="51"/> +<rectangle x1="0.7125" y1="0.7126" x2="1.1875" y2="1.5439" layer="51"/> +<rectangle x1="-1.1875" y1="-1.5437" x2="-0.7125" y2="-0.7124" layer="51"/> +<rectangle x1="-0.2375" y1="-1.5437" x2="0.2375" y2="-0.7124" layer="51"/> +<rectangle x1="0.7125" y1="-1.5437" x2="1.1875" y2="-0.7124" layer="51"/> +<wire x1="-1.5" y1="-1.9" x2="-1.5" y2="-1.2" width="0.127" layer="21"/> +</package> +</packages> +<symbols> +<symbol name="VREG-AP2112"> +<pin name="VIN" x="-12.7" y="2.54" length="middle"/> +<pin name="EN" x="-12.7" y="-2.54" length="middle"/> +<pin name="GND" x="0" y="-10.16" length="middle" rot="R90"/> +<pin name="VOUT" x="12.7" y="2.54" length="middle" rot="R180"/> +<wire x1="-7.62" y1="5.08" x2="-7.62" y2="-5.08" width="0.254" layer="94"/> +<wire x1="-7.62" y1="-5.08" x2="7.62" y2="-5.08" width="0.254" layer="94"/> +<wire x1="7.62" y1="-5.08" x2="7.62" y2="5.08" width="0.254" layer="94"/> +<wire x1="7.62" y1="5.08" x2="-7.62" y2="5.08" width="0.254" layer="94"/> +<text x="-2.54" y="7.62" size="1.27" layer="95">>NAME</text> +<text x="2.54" y="-7.62" size="1.27" layer="96">>VALUE</text> +</symbol> +</symbols> +<devicesets> +<deviceset name="VREG-AP2112" prefix="U"> +<gates> +<gate name="G$1" symbol="VREG-AP2112" x="0" y="0"/> +</gates> +<devices> +<device name="" package="SOT23-5"> +<connects> +<connect gate="G$1" pin="EN" pad="3"/> +<connect gate="G$1" pin="GND" pad="2"/> +<connect gate="G$1" pin="VIN" pad="1"/> +<connect gate="G$1" pin="VOUT" pad="5"/> +</connects> +<technologies> +<technology name=""/> +</technologies> +</device> +</devices> +</deviceset> +</devicesets> +</library> +<library name="connector"> +<packages> +<package name="DX4R005HJ5_100"> +<wire x1="3.25" y1="-2.6" x2="-3.25" y2="-2.6" width="0.127" layer="21"/> +<wire x1="-3.25" y1="2.6" x2="-3.25" y2="0" width="0.127" layer="51"/> +<wire x1="3.25" y1="2.6" x2="3.25" y2="0" width="0.127" layer="51"/> +<wire x1="-1.75" y1="2.6" x2="1.75" y2="2.6" width="0.127" layer="51"/> +<wire x1="-3.25" y1="-2.2" x2="-3.25" y2="-2.6" width="0.127" layer="51"/> +<wire x1="3.25" y1="-2.6" x2="3.25" y2="-2.2" width="0.127" layer="51"/> +<smd name="GND@3" x="-2.175" y="-1.1" dx="2.15" dy="1.9" layer="1"/> +<smd name="GND@4" x="2.175" y="-1.1" dx="2.15" dy="1.9" layer="1"/> +<smd name="GND@1" x="-2.5" y="1.95" dx="1.2" dy="1.3" layer="1"/> +<smd name="GND@2" x="2.5" y="1.95" dx="1.2" dy="1.3" layer="1"/> +<smd name="D+" x="0" y="1.6" dx="0.35" dy="1.35" layer="1"/> +<smd name="D-" x="-0.65" y="1.6" dx="0.35" dy="1.35" layer="1"/> +<smd name="VBUS" x="-1.3" y="1.6" dx="0.35" dy="1.35" layer="1"/> +<smd name="ID" x="0.65" y="1.6" dx="0.35" dy="1.35" layer="1"/> +<smd name="GND" x="1.3" y="1.6" dx="0.35" dy="1.35" layer="1"/> +<text x="4.1275" y="-1.5875" size="0.6096" layer="27" font="vector" rot="R90">>Value</text> +<text x="-3.4925" y="-1.27" size="0.6096" layer="25" font="vector" rot="R90">>Name</text> +</package> +<package name="DX4R005HJ5"> +<wire x1="3.25" y1="-2.6" x2="-3.25" y2="-2.6" width="0.127" layer="51"/> +<wire x1="-3.25" y1="2.6" x2="-3.25" y2="0" width="0.127" layer="21"/> +<wire x1="3.25" y1="2.6" x2="3.25" y2="0" width="0.127" layer="21"/> +<wire x1="-1.75" y1="2.6" x2="1.75" y2="2.6" width="0.127" layer="51"/> +<wire x1="-3.25" y1="-2.2" x2="-3.25" y2="-2.6" width="0.127" layer="51"/> +<wire x1="3.25" y1="-2.6" x2="3.25" y2="-2.2" width="0.127" layer="51"/> +<smd name="GND@3" x="-2.475" y="-1.1" dx="2.75" dy="1.9" layer="1"/> +<smd name="GND@4" x="2.475" y="-1.1" dx="2.75" dy="1.9" layer="1"/> +<smd name="GND@1" x="-2.5" y="1.95" dx="1.2" dy="1.3" layer="1"/> +<smd name="GND@2" x="2.5" y="1.95" dx="1.2" dy="1.3" layer="1"/> +<smd name="D+" x="0" y="1.9" dx="0.4" dy="1.95" layer="1"/> +<smd name="D-" x="-0.65" y="1.9" dx="0.4" dy="1.95" layer="1"/> +<smd name="VBUS" x="-1.3" y="1.9" dx="0.4" dy="1.95" layer="1"/> +<smd name="ID" x="0.65" y="1.9" dx="0.4" dy="1.95" layer="1"/> +<smd name="GND" x="1.3" y="1.9" dx="0.4" dy="1.95" layer="1"/> +<text x="-3.4925" y="-1.27" size="0.6096" layer="25" font="vector" rot="R90">>Name</text> +<text x="4.1275" y="-1.5875" size="0.6096" layer="25" font="vector" rot="R90">>Value</text> +</package> +<package name="DX4R005HJ5_64"> +<wire x1="3.25" y1="-2.6" x2="-3.25" y2="-2.6" width="0.127" layer="21"/> +<wire x1="-3.25" y1="2.6" x2="-3.25" y2="0" width="0.127" layer="51"/> +<wire x1="3.25" y1="2.6" x2="3.25" y2="0" width="0.127" layer="51"/> +<wire x1="-1.75" y1="2.6" x2="1.75" y2="2.6" width="0.127" layer="51"/> +<wire x1="-3.25" y1="-2.2" x2="-3.25" y2="-2.6" width="0.127" layer="51"/> +<wire x1="3.25" y1="-2.6" x2="3.25" y2="-2.2" width="0.127" layer="51"/> +<smd name="GND@3" x="-2.175" y="-1.1" dx="2.15" dy="1.9" layer="1"/> +<smd name="GND@4" x="2.175" y="-1.1" dx="2.15" dy="1.9" layer="1"/> +<smd name="GND@1" x="-2.5" y="1.95" dx="1.2" dy="1.3" layer="1"/> +<smd name="GND@2" x="2.5" y="1.95" dx="1.2" dy="1.3" layer="1"/> +<smd name="D+" x="0" y="1.6" dx="0.254" dy="1.35" layer="1"/> +<smd name="D-" x="-0.65" y="1.6" dx="0.254" dy="1.35" layer="1"/> +<smd name="VBUS" x="-1.3" y="1.6" dx="0.254" dy="1.35" layer="1"/> +<smd name="ID" x="0.65" y="1.6" dx="0.254" dy="1.35" layer="1"/> +<smd name="GND" x="1.3" y="1.6" dx="0.254" dy="1.35" layer="1"/> +<text x="-3.4925" y="-1.27" size="0.6096" layer="25" font="vector" rot="R90">>Name</text> +<text x="4.1275" y="-1.5875" size="0.6096" layer="27" font="vector" rot="R90">>Value</text> +</package> +<package name="USB_MICRO_609-4613-1-ND"> +<smd name="HD0" x="-3.8" y="0" dx="1.9" dy="1.8" layer="1"/> +<smd name="HD4" x="-3.1" y="2.55" dx="2.1" dy="1.6" layer="1"/> +<smd name="HD5" x="3.1" y="2.55" dx="2.1" dy="1.6" layer="1"/> +<smd name="D+" x="0" y="2.675" dx="0.4" dy="1.35" layer="1"/> +<smd name="D-" x="-0.65" y="2.675" dx="0.4" dy="1.35" layer="1"/> +<smd name="VBUS" x="-1.3" y="2.675" dx="0.4" dy="1.35" layer="1"/> +<smd name="ID" x="0.65" y="2.675" dx="0.4" dy="1.35" layer="1"/> +<smd name="GND" x="1.3" y="2.675" dx="0.4" dy="1.35" layer="1"/> +<text x="4.9275" y="1.2125" size="0.6096" layer="27" font="vector" rot="R90">>Value</text> +<text x="-4.3925" y="1.13" size="0.6096" layer="25" font="vector" rot="R90">>Name</text> +<smd name="HD1" x="-1.05" y="0" dx="1.9" dy="1.8" layer="1"/> +<smd name="HD2" x="1.05" y="0" dx="1.9" dy="1.8" layer="1"/> +<smd name="HD3" x="3.8" y="0" dx="1.9" dy="1.8" layer="1"/> +<wire x1="-4.7" y1="-1.45" x2="4.7" y2="-1.45" width="0.127" layer="51"/> +<text x="0" y="-1.3" size="0.8128" layer="51" font="vector" align="bottom-center">\\ PCB Edge /</text> +<wire x1="-3.9" y1="3" x2="-3.9" y2="-2.5" width="0.127" layer="51"/> +<wire x1="-3.9" y1="-2.5" x2="3.9" y2="-2.5" width="0.127" layer="51"/> +<wire x1="3.9" y1="-2.5" x2="3.9" y2="3" width="0.127" layer="51"/> +<wire x1="3.9" y1="3" x2="-3.9" y2="3" width="0.127" layer="51"/> +<wire x1="-3.9" y1="1.1" x2="-3.9" y2="1.5" width="0.127" layer="21"/> +<wire x1="3.9" y1="1.1" x2="3.9" y2="1.5" width="0.127" layer="21"/> +<wire x1="1.8" y1="3" x2="1.7" y2="3" width="0.127" layer="21"/> +<wire x1="-1.7" y1="3" x2="-1.8" y2="3" width="0.127" layer="21"/> +<wire x1="4.4" y1="3" x2="4.7" y2="3" width="0.127" layer="21"/> +<wire x1="-4.4" y1="3" x2="-4.7" y2="3" width="0.127" layer="21"/> +<wire x1="-3.9" y1="3.6" x2="-3.9" y2="3.8" width="0.127" layer="21"/> +<wire x1="3.9" y1="3.6" x2="3.9" y2="3.8" width="0.127" layer="21"/> +</package> +</packages> +<symbols> +<symbol name="USB-1"> +<wire x1="6.35" y1="-2.54" x2="6.35" y2="2.54" width="0.254" layer="94"/> +<wire x1="6.35" y1="2.54" x2="-3.81" y2="2.54" width="0.254" layer="94"/> +<wire x1="-3.81" y1="2.54" x2="-3.81" y2="-2.54" width="0.254" layer="94"/> +<text x="-2.54" y="-1.27" size="2.54" layer="94">USB</text> +<text x="-4.445" y="-1.905" size="1.27" layer="95" font="vector" rot="R90">>Name</text> +<text x="8.255" y="-1.905" size="1.27" layer="96" font="vector" rot="R90">>Value</text> +<pin name="D+" x="5.08" y="5.08" visible="pad" length="short" rot="R270"/> +<pin name="D-" x="2.54" y="5.08" visible="pad" length="short" rot="R270"/> +<pin name="VBUS" x="0" y="5.08" visible="pad" length="short" rot="R270"/> +<pin name="GND" x="-2.54" y="5.08" visible="pad" length="short" rot="R270"/> +</symbol> +</symbols> +<devicesets> +<deviceset name="USB" prefix="X"> +<description>SMD micro USB connector as found in the fablab inventory. +Three footprint variants included: +<ol> +<li>609-4613-1-ND used by Jake +<li> original, as described by manufacturer's datasheet +<li> for milling with the 1/100" bit +<li> for milling with the 1/64" bit +</ol> +<p>Made by Zaerc.</description> +<gates> +<gate name="G$1" symbol="USB-1" x="0" y="0"/> +</gates> +<devices> +<device name="_1/100" package="DX4R005HJ5_100"> +<connects> +<connect gate="G$1" pin="D+" pad="D+"/> +<connect gate="G$1" pin="D-" pad="D-"/> +<connect gate="G$1" pin="GND" pad="GND"/> +<connect gate="G$1" pin="VBUS" pad="VBUS"/> +</connects> +<technologies> +<technology name=""/> +</technologies> +</device> +<device name="_ORIG" package="DX4R005HJ5"> +<connects> +<connect gate="G$1" pin="D+" pad="D+"/> +<connect gate="G$1" pin="D-" pad="D-"/> +<connect gate="G$1" pin="GND" pad="GND"/> +<connect gate="G$1" pin="VBUS" pad="VBUS"/> +</connects> +<technologies> +<technology name=""/> +</technologies> +</device> +<device name="_1/64" package="DX4R005HJ5_64"> +<connects> +<connect gate="G$1" pin="D+" pad="D+"/> +<connect gate="G$1" pin="D-" pad="D-"/> +<connect gate="G$1" pin="GND" pad="GND"/> +<connect gate="G$1" pin="VBUS" pad="VBUS"/> +</connects> +<technologies> +<technology name=""/> +</technologies> +</device> +<device name="" package="USB_MICRO_609-4613-1-ND"> +<connects> +<connect gate="G$1" pin="D+" pad="D+"/> +<connect gate="G$1" pin="D-" pad="D-"/> +<connect gate="G$1" pin="GND" pad="GND"/> +<connect gate="G$1" pin="VBUS" pad="VBUS"/> +</connects> +<technologies> +<technology name=""/> +</technologies> +</device> +</devices> +</deviceset> +</devicesets> +</library> +<library name="microcontrollers"> +<packages> +<package name="QFP80P900X900X120-32N"> +<wire x1="-3.55" y1="-3.55" x2="-3.55" y2="3.55" width="0.127" layer="51"/> +<wire x1="-3.55" y1="3.55" x2="3.55" y2="3.55" width="0.127" layer="51"/> +<wire x1="3.55" y1="3.55" x2="3.55" y2="-3.55" width="0.127" layer="51"/> +<wire x1="3.55" y1="-3.55" x2="-3.55" y2="-3.55" width="0.127" layer="51"/> +<wire x1="-3.25" y1="3.55" x2="-3.55" y2="3.55" width="0.127" layer="21"/> +<wire x1="-3.55" y1="3.55" x2="-3.55" y2="3.25" width="0.127" layer="21"/> +<wire x1="3.25" y1="3.55" x2="3.55" y2="3.55" width="0.127" layer="21"/> +<wire x1="3.55" y1="3.55" x2="3.55" y2="3.25" width="0.127" layer="21"/> +<wire x1="-3.55" y1="-3.25" x2="-3.55" y2="-3.55" width="0.127" layer="21"/> +<wire x1="-3.55" y1="-3.55" x2="-3.25" y2="-3.55" width="0.127" layer="21"/> +<wire x1="3.25" y1="-3.55" x2="3.55" y2="-3.55" width="0.127" layer="21"/> +<wire x1="3.55" y1="-3.55" x2="3.55" y2="-3.25" width="0.127" layer="21"/> +<text x="-3.202909375" y="5.80526875" size="0.8135375" layer="25">>NAME</text> +<text x="-3.40625" y="-6.211390625" size="0.81429375" layer="27">>VALUE</text> +<circle x="-5.8" y="2.8" radius="0.1" width="0.2" layer="21"/> +<circle x="-5.8" y="2.8" radius="0.1" width="0.2" layer="51"/> +<smd name="1" x="-4.18" y="2.8" dx="1.6" dy="0.55" layer="1" roundness="25"/> +<smd name="2" x="-4.18" y="2" dx="1.6" dy="0.55" layer="1" roundness="25"/> +<smd name="3" x="-4.18" y="1.2" dx="1.6" dy="0.55" layer="1" roundness="25"/> +<smd name="4" x="-4.18" y="0.4" dx="1.6" dy="0.55" layer="1" roundness="25"/> +<smd name="5" x="-4.18" y="-0.4" dx="1.6" dy="0.55" layer="1" roundness="25"/> +<smd name="6" x="-4.18" y="-1.2" dx="1.6" dy="0.55" layer="1" roundness="25"/> +<smd name="7" x="-4.18" y="-2" dx="1.6" dy="0.55" layer="1" roundness="25"/> +<smd name="8" x="-4.18" y="-2.8" dx="1.6" dy="0.55" layer="1" roundness="25"/> +<smd name="9" x="-2.8" y="-4.18" dx="1.6" dy="0.55" layer="1" roundness="25" rot="R90"/> +<smd name="10" x="-2" y="-4.18" dx="1.6" dy="0.55" layer="1" roundness="25" rot="R90"/> +<smd name="11" x="-1.2" y="-4.18" dx="1.6" dy="0.55" layer="1" roundness="25" rot="R90"/> +<smd name="12" x="-0.4" y="-4.18" dx="1.6" dy="0.55" layer="1" roundness="25" rot="R90"/> +<smd name="13" x="0.4" y="-4.18" dx="1.6" dy="0.55" layer="1" roundness="25" rot="R90"/> +<smd name="14" x="1.2" y="-4.18" dx="1.6" dy="0.55" layer="1" roundness="25" rot="R90"/> +<smd name="15" x="2" y="-4.18" dx="1.6" dy="0.55" layer="1" roundness="25" rot="R90"/> +<smd name="16" x="2.8" y="-4.18" dx="1.6" dy="0.55" layer="1" roundness="25" rot="R90"/> +<smd name="17" x="4.18" y="-2.8" dx="1.6" dy="0.55" layer="1" roundness="25" rot="R180"/> +<smd name="18" x="4.18" y="-2" dx="1.6" dy="0.55" layer="1" roundness="25" rot="R180"/> +<smd name="19" x="4.18" y="-1.2" dx="1.6" dy="0.55" layer="1" roundness="25" rot="R180"/> +<smd name="20" x="4.18" y="-0.4" dx="1.6" dy="0.55" layer="1" roundness="25" rot="R180"/> +<smd name="21" x="4.18" y="0.4" dx="1.6" dy="0.55" layer="1" roundness="25" rot="R180"/> +<smd name="22" x="4.18" y="1.2" dx="1.6" dy="0.55" layer="1" roundness="25" rot="R180"/> +<smd name="23" x="4.18" y="2" dx="1.6" dy="0.55" layer="1" roundness="25" rot="R180"/> +<smd name="24" x="4.18" y="2.8" dx="1.6" dy="0.55" layer="1" roundness="25" rot="R180"/> +<smd name="25" x="2.8" y="4.18" dx="1.6" dy="0.55" layer="1" roundness="25" rot="R270"/> +<smd name="26" x="2" y="4.18" dx="1.6" dy="0.55" layer="1" roundness="25" rot="R270"/> +<smd name="27" x="1.2" y="4.18" dx="1.6" dy="0.55" layer="1" roundness="25" rot="R270"/> +<smd name="28" x="0.4" y="4.18" dx="1.6" dy="0.55" layer="1" roundness="25" rot="R270"/> +<smd name="29" x="-0.4" y="4.18" dx="1.6" dy="0.55" layer="1" roundness="25" rot="R270"/> +<smd name="30" x="-1.2" y="4.18" dx="1.6" dy="0.55" layer="1" roundness="25" rot="R270"/> +<smd name="31" x="-2" y="4.18" dx="1.6" dy="0.55" layer="1" roundness="25" rot="R270"/> +<smd name="32" x="-2.8" y="4.18" dx="1.6" dy="0.55" layer="1" roundness="25" rot="R270"/> +</package> +</packages> +<symbols> +<symbol name="ATSAMD21E18A-AF"> +<wire x1="22.86" y1="-33.02" x2="-20.32" y2="-33.02" width="0.254" layer="94"/> +<wire x1="-20.32" y1="-33.02" x2="-20.32" y2="35.56" width="0.254" layer="94"/> +<wire x1="-20.32" y1="35.56" x2="22.86" y2="35.56" width="0.254" layer="94"/> +<wire x1="22.86" y1="35.56" x2="22.86" y2="-33.02" width="0.254" layer="94"/> +<text x="-20.3338" y="35.5978" size="1.780409375" layer="95">>NAME</text> +<text x="-20.338" y="-35.614" size="1.78115" layer="96">>VALUE</text> +<pin name="PA00" x="27.94" y="33.02" length="middle" rot="R180"/> +<pin name="PA01" x="27.94" y="30.48" length="middle" rot="R180"/> +<pin name="PA02" x="27.94" y="27.94" length="middle" rot="R180"/> +<pin name="PA03" x="27.94" y="25.4" length="middle" rot="R180"/> +<pin name="PA04" x="27.94" y="22.86" length="middle" rot="R180"/> +<pin name="PA05" x="27.94" y="20.32" length="middle" rot="R180"/> +<pin name="PA06" x="27.94" y="17.78" length="middle" rot="R180"/> +<pin name="PA07" x="27.94" y="15.24" length="middle" rot="R180"/> +<pin name="VDDANA" x="-25.4" y="25.4" length="middle" direction="pwr"/> +<pin name="GND" x="-25.4" y="-30.48" length="middle" direction="pwr"/> +<pin name="PA08" x="27.94" y="12.7" length="middle" rot="R180"/> +<pin name="PA09" x="27.94" y="10.16" length="middle" rot="R180"/> +<pin name="PA10" x="27.94" y="7.62" length="middle" rot="R180"/> +<pin name="PA11" x="27.94" y="5.08" length="middle" rot="R180"/> +<pin name="PA14" x="27.94" y="2.54" length="middle" rot="R180"/> +<pin name="PA15" x="27.94" y="0" length="middle" rot="R180"/> +<pin name="PA16" x="27.94" y="-2.54" length="middle" rot="R180"/> +<pin name="PA17" x="27.94" y="-5.08" length="middle" rot="R180"/> +<pin name="PA18" x="27.94" y="-7.62" length="middle" rot="R180"/> +<pin name="PA19" x="27.94" y="-10.16" length="middle" rot="R180"/> +<pin name="PA22" x="27.94" y="-12.7" length="middle" rot="R180"/> +<pin name="PA23" x="27.94" y="-15.24" length="middle" rot="R180"/> +<pin name="PA24" x="27.94" y="-17.78" length="middle" rot="R180"/> +<pin name="PA25" x="27.94" y="-20.32" length="middle" rot="R180"/> +<pin name="PA27" x="27.94" y="-22.86" length="middle" rot="R180"/> +<pin name="!RESET" x="-25.4" y="-17.78" length="middle" direction="in"/> +<pin name="PA28" x="27.94" y="-25.4" length="middle" rot="R180"/> +<pin name="VDDCORE" x="-25.4" y="17.78" length="middle" direction="pwr"/> +<pin name="VDDIN" x="-25.4" y="33.02" length="middle" direction="pwr"/> +<pin name="PA30" x="27.94" y="-27.94" length="middle" rot="R180"/> +<pin name="PA31" x="27.94" y="-30.48" length="middle" rot="R180"/> +</symbol> +</symbols> +<devicesets> +<deviceset name="ATSAMD21E18A-AF" prefix="U"> +<description>The SAM D21 is a series of low-power microcontrollers using the 32-bit ARM® + Cortex® +-M0+ processor, +and ranging from 32- to 64-pins with up to 256KB Flash and 32KB of SRAM. The SAM D21 operate at a +maximum frequency of 48MHz and reach 2.46 CoreMark® +/MHz. <a href="https://pricing.snapeda.com/parts/ATSAMD21E18A-AF/Microchip/view-part?ref=eda">Check prices</a></description> +<gates> +<gate name="G$1" symbol="ATSAMD21E18A-AF" x="0" y="0"/> +</gates> +<devices> +<device name="" package="QFP80P900X900X120-32N"> +<connects> +<connect gate="G$1" pin="!RESET" pad="26"/> +<connect gate="G$1" pin="GND" pad="10 28"/> +<connect gate="G$1" pin="PA00" pad="1"/> +<connect gate="G$1" pin="PA01" pad="2"/> +<connect gate="G$1" pin="PA02" pad="3"/> +<connect gate="G$1" pin="PA03" pad="4"/> +<connect gate="G$1" pin="PA04" pad="5"/> +<connect gate="G$1" pin="PA05" pad="6"/> +<connect gate="G$1" pin="PA06" pad="7"/> +<connect gate="G$1" pin="PA07" pad="8"/> +<connect gate="G$1" pin="PA08" pad="11"/> +<connect gate="G$1" pin="PA09" pad="12"/> +<connect gate="G$1" pin="PA10" pad="13"/> +<connect gate="G$1" pin="PA11" pad="14"/> +<connect gate="G$1" pin="PA14" pad="15"/> +<connect gate="G$1" pin="PA15" pad="16"/> +<connect gate="G$1" pin="PA16" pad="17"/> +<connect gate="G$1" pin="PA17" pad="18"/> +<connect gate="G$1" pin="PA18" pad="19"/> +<connect gate="G$1" pin="PA19" pad="20"/> +<connect gate="G$1" pin="PA22" pad="21"/> +<connect gate="G$1" pin="PA23" pad="22"/> +<connect gate="G$1" pin="PA24" pad="23"/> +<connect gate="G$1" pin="PA25" pad="24"/> +<connect gate="G$1" pin="PA27" pad="25"/> +<connect gate="G$1" pin="PA28" pad="27"/> +<connect gate="G$1" pin="PA30" pad="31"/> +<connect gate="G$1" pin="PA31" pad="32"/> +<connect gate="G$1" pin="VDDANA" pad="9"/> +<connect gate="G$1" pin="VDDCORE" pad="29"/> +<connect gate="G$1" pin="VDDIN" pad="30"/> +</connects> +<technologies> +<technology name=""> +<attribute name="AVAILABILITY" value="Warning"/> +<attribute name="DESCRIPTION" value=" ARM® Cortex®-M0+ Automotive, AEC-Q100, SAM D21E, Functional Safety (FuSa) Microcontroller IC 32-Bit 48MHz 256KB (256K x 8) FLASH 32-TQFP (7x7) "/> +<attribute name="MF" value="Microchip"/> +<attribute name="MP" value="ATSAMD21E18A-AF"/> +<attribute name="PACKAGE" value="TQFP-32 Microchip"/> +<attribute name="PRICE" value="None"/> +<attribute name="PURCHASE-URL" value="https://pricing.snapeda.com/search/part/ATSAMD21E18A-AF/?ref=eda"/> +</technology> +</technologies> +</device> +</devices> +</deviceset> +</devicesets> +</library> +</libraries> +<attributes> +</attributes> +<variantdefs> +</variantdefs> +<classes> +<class number="0" name="default" width="0" drill="0"> +</class> +</classes> +<parts> +<part name="J1" library="SparkFun-Connectors" deviceset="CORTEX_JTAG_DEBUG" device="_SMD" value="JTAG"/> +<part name="S1" library="passives" deviceset="2-8X4-5_SWITCH" device=""/> +<part name="C1" library="passives" deviceset="CAP" device="1206" value="10uF"/> +<part name="+3V1" library="supply1" deviceset="+3V3" device=""/> +<part name="P+1" library="supply1" deviceset="+5V" device=""/> +<part name="GND1" library="supply1" deviceset="GND" device=""/> +<part name="U2" library="power" deviceset="VREG-AP2112" device=""/> +<part name="C4" library="passives" deviceset="CAP" device="1206" value="1uF"/> +<part name="GND6" library="supply1" deviceset="GND" device=""/> +<part name="R2" library="passives" deviceset="RESISTOR" device="1206" value="10k"/> +<part name="+3V3" library="supply1" deviceset="+3V3" device=""/> +<part name="R3" library="passives" deviceset="RESISTOR" device="1206" value="10k"/> +<part name="+3V4" library="supply1" deviceset="+3V3" device=""/> +<part name="GND7" library="supply1" deviceset="GND" device=""/> +<part name="+3V5" library="supply1" deviceset="+3V3" device=""/> +<part name="C7" library="passives" deviceset="CAP" device="1206" value="1uF"/> +<part name="X1" library="connector" deviceset="USB" device=""/> +<part name="P+2" library="supply1" deviceset="+5V" device=""/> +<part name="GND8" library="supply1" deviceset="GND" device=""/> +<part name="U1" library="microcontrollers" deviceset="ATSAMD21E18A-AF" device=""/> +<part name="+3V6" library="supply1" deviceset="+3V3" device=""/> +<part name="GND2" library="supply1" deviceset="GND" device=""/> +<part name="C2" library="passives" deviceset="CAP" device="1206" value="1uF"/> +<part name="GND3" library="supply1" deviceset="GND" device=""/> +</parts> +<sheets> +<sheet> +<plain> +</plain> +<instances> +<instance part="J1" gate="J1" x="30.48" y="30.48" smashed="yes"> +<attribute name="NAME" x="17.78" y="38.354" size="1.778" layer="95" font="vector"/> +<attribute name="VALUE" x="17.78" y="20.574" size="1.778" layer="96" font="vector"/> +</instance> +<instance part="S1" gate="G$1" x="63.5" y="17.78" smashed="yes"> +<attribute name="NAME" x="57.15" y="15.24" size="1.778" layer="95" rot="R90"/> +<attribute name="VALUE" x="45.72" y="7.62" size="1.778" layer="96"/> +</instance> +<instance part="C1" gate="G$1" x="5.08" y="91.44" smashed="yes"> +<attribute name="NAME" x="6.604" y="94.361" size="1.778" layer="95"/> +<attribute name="VALUE" x="6.604" y="89.281" size="1.778" layer="96"/> +<attribute name="PACKAGE" x="6.604" y="87.376" size="1.27" layer="97"/> +<attribute name="VOLTAGE" x="6.604" y="85.598" size="1.27" layer="97"/> +<attribute name="TYPE" x="6.604" y="83.82" size="1.27" layer="97"/> +</instance> +<instance part="+3V1" gate="G$1" x="5.08" y="43.18" smashed="yes"> +<attribute name="VALUE" x="2.54" y="38.1" size="1.778" layer="96" rot="R90"/> +</instance> +<instance part="P+1" gate="1" x="5.08" y="116.84" smashed="yes"> +<attribute name="VALUE" x="2.54" y="111.76" size="1.778" layer="96" rot="R90"/> +</instance> +<instance part="GND1" gate="1" x="5.08" y="15.24" smashed="yes"> +<attribute name="VALUE" x="2.54" y="12.7" size="1.778" layer="96"/> +</instance> +<instance part="U2" gate="G$1" x="22.86" y="104.14" smashed="yes"> +<attribute name="NAME" x="20.32" y="111.76" size="1.27" layer="95"/> +<attribute name="VALUE" x="25.4" y="96.52" size="1.27" layer="96"/> +</instance> +<instance part="C4" gate="G$1" x="76.2" y="60.96" smashed="yes" rot="R90"> +<attribute name="NAME" x="73.279" y="62.484" size="1.778" layer="95" rot="R90"/> +<attribute name="VALUE" x="78.359" y="62.484" size="1.778" layer="96" rot="R90"/> +<attribute name="PACKAGE" x="80.264" y="62.484" size="1.27" layer="97" rot="R90"/> +<attribute name="VOLTAGE" x="82.042" y="62.484" size="1.27" layer="97" rot="R90"/> +<attribute name="TYPE" x="83.82" y="62.484" size="1.27" layer="97" rot="R90"/> +</instance> +<instance part="GND6" gate="1" x="78.74" y="5.08" smashed="yes"> +<attribute name="VALUE" x="76.2" y="2.54" size="1.778" layer="96"/> +</instance> +<instance part="R2" gate="G$1" x="78.74" y="40.64" smashed="yes" rot="R270"> +<attribute name="NAME" x="80.2386" y="44.45" size="1.778" layer="95" rot="R270"/> +<attribute name="VALUE" x="75.438" y="44.45" size="1.778" layer="96" rot="R270"/> +<attribute name="PRECISION" x="71.882" y="44.45" size="1.27" layer="97" rot="R270"/> +<attribute name="PACKAGE" x="73.66" y="44.45" size="1.27" layer="97" rot="R270"/> +</instance> +<instance part="+3V3" gate="G$1" x="78.74" y="53.34" smashed="yes"> +<attribute name="VALUE" x="76.2" y="48.26" size="1.778" layer="96" rot="R90"/> +</instance> +<instance part="R3" gate="G$1" x="63.5" y="40.64" smashed="yes" rot="R270"> +<attribute name="NAME" x="64.9986" y="44.45" size="1.778" layer="95" rot="R270"/> +<attribute name="VALUE" x="60.198" y="44.45" size="1.778" layer="96" rot="R270"/> +<attribute name="PRECISION" x="56.642" y="44.45" size="1.27" layer="97" rot="R270"/> +<attribute name="PACKAGE" x="58.42" y="44.45" size="1.27" layer="97" rot="R270"/> +</instance> +<instance part="+3V4" gate="G$1" x="63.5" y="53.34" smashed="yes"> +<attribute name="VALUE" x="60.96" y="48.26" size="1.778" layer="96" rot="R90"/> +</instance> +<instance part="GND7" gate="1" x="22.86" y="81.28" smashed="yes"> +<attribute name="VALUE" x="20.32" y="78.74" size="1.778" layer="96"/> +</instance> +<instance part="+3V5" gate="G$1" x="40.64" y="116.84" smashed="yes"> +<attribute name="VALUE" x="38.1" y="111.76" size="1.778" layer="96" rot="R90"/> +</instance> +<instance part="C7" gate="G$1" x="40.64" y="91.44" smashed="yes"> +<attribute name="NAME" x="42.164" y="94.361" size="1.778" layer="95"/> +<attribute name="VALUE" x="42.164" y="89.281" size="1.778" layer="96"/> +<attribute name="PACKAGE" x="42.164" y="87.376" size="1.27" layer="97"/> +<attribute name="VOLTAGE" x="42.164" y="85.598" size="1.27" layer="97"/> +<attribute name="TYPE" x="42.164" y="83.82" size="1.27" layer="97"/> +</instance> +<instance part="X1" gate="G$1" x="7.62" y="60.96" smashed="yes" rot="R270"> +<attribute name="NAME" x="5.715" y="65.405" size="1.27" layer="95" font="vector"/> +<attribute name="VALUE" x="5.715" y="52.705" size="1.27" layer="96" font="vector"/> +</instance> +<instance part="P+2" gate="1" x="35.56" y="68.58" smashed="yes"> +<attribute name="VALUE" x="35.56" y="71.12" size="1.778" layer="96" rot="R90"/> +</instance> +<instance part="GND8" gate="1" x="27.94" y="68.58" smashed="yes" rot="R180"> +<attribute name="VALUE" x="30.48" y="71.12" size="1.778" layer="96" rot="R180"/> +</instance> +<instance part="U1" gate="G$1" x="111.76" y="43.18" smashed="yes"> +<attribute name="NAME" x="91.4262" y="78.7778" size="1.780409375" layer="95"/> +<attribute name="VALUE" x="91.422" y="7.566" size="1.78115" layer="96"/> +</instance> +<instance part="+3V6" gate="G$1" x="78.74" y="83.82" smashed="yes"> +<attribute name="VALUE" x="76.2" y="78.74" size="1.778" layer="96" rot="R90"/> +</instance> +<instance part="GND2" gate="1" x="55.88" y="60.96" smashed="yes" rot="R270"> +<attribute name="VALUE" x="53.34" y="63.5" size="1.778" layer="96" rot="R270"/> +</instance> +<instance part="C2" gate="G$1" x="76.2" y="68.58" smashed="yes" rot="R90"> +<attribute name="NAME" x="73.279" y="70.104" size="1.778" layer="95" rot="R90"/> +<attribute name="VALUE" x="78.359" y="70.104" size="1.778" layer="96" rot="R90"/> +<attribute name="PACKAGE" x="80.264" y="70.104" size="1.27" layer="97" rot="R90"/> +<attribute name="VOLTAGE" x="82.042" y="70.104" size="1.27" layer="97" rot="R90"/> +<attribute name="TYPE" x="83.82" y="70.104" size="1.27" layer="97" rot="R90"/> +</instance> +<instance part="GND3" gate="1" x="55.88" y="68.58" smashed="yes" rot="R270"> +<attribute name="VALUE" x="53.34" y="71.12" size="1.778" layer="96" rot="R270"/> +</instance> +</instances> +<busses> +</busses> +<nets> +<net name="GND" class="0"> +<segment> +<pinref part="GND1" gate="1" pin="GND"/> +<wire x1="5.08" y1="17.78" x2="5.08" y2="25.4" width="0.1524" layer="91"/> +<wire x1="5.08" y1="25.4" x2="5.08" y2="30.48" width="0.1524" layer="91"/> +<wire x1="5.08" y1="30.48" x2="5.08" y2="33.02" width="0.1524" layer="91"/> +<pinref part="J1" gate="J1" pin="GND@3"/> +<wire x1="15.24" y1="33.02" x2="5.08" y2="33.02" width="0.1524" layer="91"/> +<pinref part="J1" gate="J1" pin="GND@5"/> +<wire x1="15.24" y1="30.48" x2="5.08" y2="30.48" width="0.1524" layer="91"/> +<junction x="5.08" y="30.48"/> +<pinref part="J1" gate="J1" pin="GNDDTCT"/> +<wire x1="15.24" y1="25.4" x2="5.08" y2="25.4" width="0.1524" layer="91"/> +<junction x="5.08" y="25.4"/> +</segment> +<segment> +<wire x1="86.36" y1="12.7" x2="78.74" y2="12.7" width="0.1524" layer="91"/> +<pinref part="GND6" gate="1" pin="GND"/> +<wire x1="78.74" y1="12.7" x2="78.74" y2="7.62" width="0.1524" layer="91"/> +<pinref part="S1" gate="G$1" pin="P"/> +<pinref part="S1" gate="G$1" pin="P1"/> +<wire x1="63.5" y1="12.7" x2="66.04" y2="12.7" width="0.1524" layer="91"/> +<wire x1="66.04" y1="12.7" x2="78.74" y2="12.7" width="0.1524" layer="91"/> +<junction x="66.04" y="12.7"/> +<junction x="78.74" y="12.7"/> +<pinref part="U1" gate="G$1" pin="GND"/> +</segment> +<segment> +<pinref part="U2" gate="G$1" pin="GND"/> +<wire x1="22.86" y1="93.98" x2="22.86" y2="86.36" width="0.1524" layer="91"/> +<pinref part="GND7" gate="1" pin="GND"/> +<pinref part="C1" gate="G$1" pin="2"/> +<wire x1="22.86" y1="86.36" x2="22.86" y2="83.82" width="0.1524" layer="91"/> +<wire x1="5.08" y1="88.9" x2="5.08" y2="86.36" width="0.1524" layer="91"/> +<wire x1="5.08" y1="86.36" x2="22.86" y2="86.36" width="0.1524" layer="91"/> +<junction x="22.86" y="86.36"/> +<pinref part="C7" gate="G$1" pin="2"/> +<wire x1="40.64" y1="88.9" x2="40.64" y2="86.36" width="0.1524" layer="91"/> +<wire x1="40.64" y1="86.36" x2="22.86" y2="86.36" width="0.1524" layer="91"/> +</segment> +<segment> +<pinref part="X1" gate="G$1" pin="GND"/> +<wire x1="12.7" y1="63.5" x2="27.94" y2="63.5" width="0.1524" layer="91"/> +<pinref part="GND8" gate="1" pin="GND"/> +<wire x1="27.94" y1="63.5" x2="27.94" y2="66.04" width="0.1524" layer="91"/> +</segment> +<segment> +<pinref part="GND2" gate="1" pin="GND"/> +<pinref part="C4" gate="G$1" pin="1"/> +<wire x1="58.42" y1="60.96" x2="71.12" y2="60.96" width="0.1524" layer="91"/> +</segment> +<segment> +<pinref part="GND3" gate="1" pin="GND"/> +<pinref part="C2" gate="G$1" pin="1"/> +<wire x1="58.42" y1="68.58" x2="71.12" y2="68.58" width="0.1524" layer="91"/> +</segment> +</net> +<net name="+3V3" class="0"> +<segment> +<pinref part="+3V1" gate="G$1" pin="+3V3"/> +<wire x1="5.08" y1="40.64" x2="5.08" y2="35.56" width="0.1524" layer="91"/> +<pinref part="J1" gate="J1" pin="VCC"/> +<wire x1="5.08" y1="35.56" x2="15.24" y2="35.56" width="0.1524" layer="91"/> +</segment> +<segment> +<pinref part="R2" gate="G$1" pin="1"/> +<pinref part="+3V3" gate="G$1" pin="+3V3"/> +<wire x1="78.74" y1="45.72" x2="78.74" y2="50.8" width="0.1524" layer="91"/> +</segment> +<segment> +<pinref part="+3V4" gate="G$1" pin="+3V3"/> +<pinref part="R3" gate="G$1" pin="1"/> +<wire x1="63.5" y1="50.8" x2="63.5" y2="45.72" width="0.1524" layer="91"/> +</segment> +<segment> +<pinref part="U2" gate="G$1" pin="VOUT"/> +<wire x1="35.56" y1="106.68" x2="40.64" y2="106.68" width="0.1524" layer="91"/> +<pinref part="+3V5" gate="G$1" pin="+3V3"/> +<wire x1="40.64" y1="106.68" x2="40.64" y2="114.3" width="0.1524" layer="91"/> +<pinref part="C7" gate="G$1" pin="1"/> +<wire x1="40.64" y1="106.68" x2="40.64" y2="96.52" width="0.1524" layer="91"/> +<junction x="40.64" y="106.68"/> +</segment> +<segment> +<pinref part="+3V6" gate="G$1" pin="+3V3"/> +<pinref part="C2" gate="G$1" pin="2"/> +<wire x1="78.74" y1="81.28" x2="78.74" y2="76.2" width="0.1524" layer="91"/> +<pinref part="U1" gate="G$1" pin="VDDANA"/> +<wire x1="78.74" y1="76.2" x2="78.74" y2="68.58" width="0.1524" layer="91"/> +<wire x1="78.74" y1="68.58" x2="86.36" y2="68.58" width="0.1524" layer="91"/> +<junction x="78.74" y="68.58"/> +<pinref part="U1" gate="G$1" pin="VDDIN"/> +<wire x1="86.36" y1="76.2" x2="78.74" y2="76.2" width="0.1524" layer="91"/> +<junction x="78.74" y="76.2"/> +</segment> +</net> +<net name="N$6" class="0"> +<segment> +<pinref part="J1" gate="J1" pin="!RESET"/> +<wire x1="45.72" y1="25.4" x2="63.5" y2="25.4" width="0.1524" layer="91"/> +<pinref part="S1" gate="G$1" pin="S"/> +<wire x1="63.5" y1="25.4" x2="78.74" y2="25.4" width="0.1524" layer="91"/> +<wire x1="78.74" y1="25.4" x2="86.36" y2="25.4" width="0.1524" layer="91"/> +<wire x1="63.5" y1="22.86" x2="63.5" y2="25.4" width="0.1524" layer="91"/> +<junction x="63.5" y="25.4"/> +<pinref part="S1" gate="G$1" pin="S1"/> +<wire x1="66.04" y1="22.86" x2="63.5" y2="22.86" width="0.1524" layer="91"/> +<junction x="63.5" y="22.86"/> +<pinref part="R2" gate="G$1" pin="2"/> +<wire x1="78.74" y1="25.4" x2="78.74" y2="35.56" width="0.1524" layer="91"/> +<junction x="78.74" y="25.4"/> +<pinref part="U1" gate="G$1" pin="!RESET"/> +</segment> +</net> +<net name="SWDCLK" class="0"> +<segment> +<pinref part="J1" gate="J1" pin="SWDCLK/TCK"/> +<wire x1="45.72" y1="33.02" x2="63.5" y2="33.02" width="0.1524" layer="91"/> +<label x="48.26" y="33.02" size="1.778" layer="95"/> +<pinref part="R3" gate="G$1" pin="2"/> +<wire x1="63.5" y1="33.02" x2="63.5" y2="35.56" width="0.1524" layer="91"/> +</segment> +<segment> +<pinref part="U1" gate="G$1" pin="PA30"/> +<wire x1="139.7" y1="15.24" x2="154.94" y2="15.24" width="0.1524" layer="91"/> +<label x="142.24" y="15.24" size="1.778" layer="95"/> +</segment> +</net> +<net name="SWDIO" class="0"> +<segment> +<pinref part="J1" gate="J1" pin="SWDIO/TMS"/> +<wire x1="45.72" y1="35.56" x2="60.96" y2="35.56" width="0.1524" layer="91"/> +<label x="48.26" y="35.56" size="1.778" layer="95"/> +</segment> +<segment> +<pinref part="U1" gate="G$1" pin="PA31"/> +<wire x1="139.7" y1="12.7" x2="154.94" y2="12.7" width="0.1524" layer="91"/> +<label x="142.24" y="12.7" size="1.778" layer="95"/> +</segment> +</net> +<net name="USBDP" class="0"> +<segment> +<pinref part="X1" gate="G$1" pin="D+"/> +<wire x1="12.7" y1="55.88" x2="25.4" y2="55.88" width="0.1524" layer="91"/> +<label x="15.24" y="55.88" size="1.778" layer="95"/> +</segment> +<segment> +<pinref part="U1" gate="G$1" pin="PA25"/> +<wire x1="139.7" y1="22.86" x2="154.94" y2="22.86" width="0.1524" layer="91"/> +<label x="142.24" y="22.86" size="1.778" layer="95"/> +</segment> +</net> +<net name="USBDM" class="0"> +<segment> +<pinref part="X1" gate="G$1" pin="D-"/> +<wire x1="12.7" y1="58.42" x2="25.4" y2="58.42" width="0.1524" layer="91"/> +<label x="15.24" y="58.42" size="1.778" layer="95"/> +</segment> +<segment> +<pinref part="U1" gate="G$1" pin="PA24"/> +<wire x1="139.7" y1="25.4" x2="154.94" y2="25.4" width="0.1524" layer="91"/> +<label x="142.24" y="25.4" size="1.778" layer="95"/> +</segment> +</net> +<net name="+5V" class="0"> +<segment> +<pinref part="P+1" gate="1" pin="+5V"/> +<pinref part="C1" gate="G$1" pin="1"/> +<wire x1="5.08" y1="114.3" x2="5.08" y2="106.68" width="0.1524" layer="91"/> +<pinref part="U2" gate="G$1" pin="VIN"/> +<wire x1="5.08" y1="106.68" x2="5.08" y2="96.52" width="0.1524" layer="91"/> +<wire x1="10.16" y1="106.68" x2="7.62" y2="106.68" width="0.1524" layer="91"/> +<junction x="5.08" y="106.68"/> +<pinref part="U2" gate="G$1" pin="EN"/> +<wire x1="7.62" y1="106.68" x2="5.08" y2="106.68" width="0.1524" layer="91"/> +<wire x1="10.16" y1="101.6" x2="7.62" y2="101.6" width="0.1524" layer="91"/> +<wire x1="7.62" y1="101.6" x2="7.62" y2="106.68" width="0.1524" layer="91"/> +<junction x="7.62" y="106.68"/> +</segment> +<segment> +<pinref part="X1" gate="G$1" pin="VBUS"/> +<wire x1="12.7" y1="60.96" x2="35.56" y2="60.96" width="0.1524" layer="91"/> +<pinref part="P+2" gate="1" pin="+5V"/> +<wire x1="35.56" y1="60.96" x2="35.56" y2="66.04" width="0.1524" layer="91"/> +</segment> +</net> +<net name="N$1" class="0"> +<segment> +<pinref part="C4" gate="G$1" pin="2"/> +<pinref part="U1" gate="G$1" pin="VDDCORE"/> +<wire x1="78.74" y1="60.96" x2="86.36" y2="60.96" width="0.1524" layer="91"/> +</segment> +</net> +</nets> +</sheet> +</sheets> +</schematic> +</drawing> +<compatibility> +<note version="8.3" severity="warning"> +Since Version 8.3, EAGLE supports URNs for individual library +assets (packages, symbols, and devices). The URNs of those assets +will not be understood (or retained) with this version. +</note> +</compatibility> +</eagle> diff --git a/samd21-example/schematic.png b/samd21-example/schematic.png new file mode 100644 index 0000000000000000000000000000000000000000..c6a4e6832d6a3bdaba6f552f65ceb510254173cb Binary files /dev/null and b/samd21-example/schematic.png differ diff --git a/samd51-example/samd51-barebones/eagle.epf b/samd51-example/samd51-barebones/eagle.epf new file mode 100644 index 0000000000000000000000000000000000000000..42908d6a521e7187f6ec05d2ef19cb1bc10b0674 --- /dev/null +++ b/samd51-example/samd51-barebones/eagle.epf @@ -0,0 +1,32 @@ +[Eagle] +Version="09 06 00" +Platform="Windows" +Globals="Globals" +Desktop="Desktop" + +[Globals] +AutoSaveProject=1 +UsedLibrary="C:/Dropbox/CBA/circuits/eagle/parts/comm.lbr" +UsedLibrary="C:/Dropbox/CBA/circuits/eagle/parts/connector.lbr" +UsedLibrary="C:/Dropbox/CBA/circuits/eagle/parts/dfet.lbr" +UsedLibrary="C:/Dropbox/CBA/circuits/eagle/parts/fablab.lbr" +UsedLibrary="C:/Dropbox/CBA/circuits/eagle/parts/lights.lbr" +UsedLibrary="C:/Dropbox/CBA/circuits/eagle/parts/microcontrollers.lbr" +UsedLibrary="C:/Dropbox/CBA/circuits/eagle/parts/motors.lbr" +UsedLibrary="C:/Dropbox/CBA/circuits/eagle/parts/passives.lbr" +UsedLibrary="C:/Dropbox/CBA/circuits/eagle/parts/power.lbr" +UsedLibrary="C:/Dropbox/CBA/circuits/eagle/parts/raspberrypi_bastelstube_v13.lbr" +UsedLibrary="C:/Dropbox/CBA/circuits/eagle/parts/sensor.lbr" +UsedLibrary="C:/Dropbox/CBA/circuits/eagle/parts/supply1.lbr" +UsedLibrary="C:/Dropbox/CBA/circuits/eagle/parts/tag-connect-2030.lbr" +UsedLibrary="C:/Dropbox/CBA/circuits/eagle/parts/tag-connect-2050.lbr" +UsedLibrary="C:/Dropbox/CBA/circuits/eagle/parts/usbraw.lbr" +UsedLibrary="C:/Dropbox/CBA/circuits/eagle/parts/SparkFun-Eagle-Libraries/SparkFun-Connectors.lbr" + +[Win_1] +Type="Control Panel" +Number=0 + +[Desktop] +Screen="1920 1080" +Window="Win_1" diff --git a/samd51-example/samd51-barebones/samd51-barebones.sch b/samd51-example/samd51-barebones/samd51-barebones.sch new file mode 100644 index 0000000000000000000000000000000000000000..ab227249feceb46a479e41a6767789498330599e --- /dev/null +++ b/samd51-example/samd51-barebones/samd51-barebones.sch @@ -0,0 +1,2091 @@ +<?xml version="1.0" encoding="utf-8"?> +<!DOCTYPE eagle SYSTEM "eagle.dtd"> +<eagle version="9.6.0"> +<drawing> +<settings> +<setting alwaysvectorfont="no"/> +<setting verticaltext="up"/> +</settings> +<grid distance="0.1" unitdist="inch" unit="inch" style="lines" multiple="1" display="no" altdistance="0.01" altunitdist="inch" altunit="inch"/> +<layers> +<layer number="1" name="Top" color="4" fill="1" visible="no" active="no"/> +<layer number="2" name="Route2" color="1" fill="3" visible="no" active="no"/> +<layer number="3" name="Route3" color="4" fill="3" visible="no" active="no"/> +<layer number="4" name="Route4" color="1" fill="4" visible="no" active="no"/> +<layer number="5" name="Route5" color="4" fill="4" visible="no" active="no"/> +<layer number="6" name="Route6" color="1" fill="8" visible="no" active="no"/> +<layer number="7" name="Route7" color="4" fill="8" visible="no" active="no"/> +<layer number="8" name="Route8" color="1" fill="2" visible="no" active="no"/> +<layer number="9" name="Route9" color="4" fill="2" visible="no" active="no"/> +<layer number="10" name="Route10" color="1" fill="7" visible="no" active="no"/> +<layer number="11" name="Route11" color="4" fill="7" visible="no" active="no"/> +<layer number="12" name="Route12" color="1" fill="5" visible="no" active="no"/> +<layer number="13" name="Route13" color="4" fill="5" visible="no" active="no"/> +<layer number="14" name="Route14" color="1" fill="6" visible="no" active="no"/> +<layer number="15" name="Route15" color="4" fill="6" visible="no" active="no"/> +<layer number="16" name="Bottom" color="1" fill="1" visible="no" active="no"/> +<layer number="17" name="Pads" color="2" fill="1" visible="no" active="no"/> +<layer number="18" name="Vias" color="2" fill="1" visible="no" active="no"/> +<layer number="19" name="Unrouted" color="6" fill="1" visible="no" active="no"/> +<layer number="20" name="Dimension" color="24" fill="1" visible="no" active="no"/> +<layer number="21" name="tPlace" color="7" fill="1" visible="no" active="no"/> +<layer number="22" name="bPlace" color="7" fill="1" visible="no" active="no"/> +<layer number="23" name="tOrigins" color="15" fill="1" visible="no" active="no"/> +<layer number="24" name="bOrigins" color="15" fill="1" visible="no" active="no"/> +<layer number="25" name="tNames" color="7" fill="1" visible="no" active="no"/> +<layer number="26" name="bNames" color="7" fill="1" visible="no" active="no"/> +<layer number="27" name="tValues" color="7" fill="1" visible="no" active="no"/> +<layer number="28" name="bValues" color="7" fill="1" visible="no" active="no"/> +<layer number="29" name="tStop" color="7" fill="3" visible="no" active="no"/> +<layer number="30" name="bStop" color="7" fill="6" visible="no" active="no"/> +<layer number="31" name="tCream" color="7" fill="4" visible="no" active="no"/> +<layer number="32" name="bCream" color="7" fill="5" visible="no" active="no"/> +<layer number="33" name="tFinish" color="6" fill="3" visible="no" active="no"/> +<layer number="34" name="bFinish" color="6" fill="6" visible="no" active="no"/> +<layer number="35" name="tGlue" color="7" fill="4" visible="no" active="no"/> +<layer number="36" name="bGlue" color="7" fill="5" visible="no" active="no"/> +<layer number="37" name="tTest" color="7" fill="1" visible="no" active="no"/> +<layer number="38" name="bTest" color="7" fill="1" visible="no" active="no"/> +<layer number="39" name="tKeepout" color="4" fill="11" visible="no" active="no"/> +<layer number="40" name="bKeepout" color="1" fill="11" visible="no" active="no"/> +<layer number="41" name="tRestrict" color="4" fill="10" visible="no" active="no"/> +<layer number="42" name="bRestrict" color="1" fill="10" visible="no" active="no"/> +<layer number="43" name="vRestrict" color="2" fill="10" visible="no" active="no"/> +<layer number="44" name="Drills" color="7" fill="1" visible="no" active="no"/> +<layer number="45" name="Holes" color="7" fill="1" visible="no" active="no"/> +<layer number="46" name="Milling" color="3" fill="1" visible="no" active="no"/> +<layer number="47" name="Measures" color="7" fill="1" visible="no" active="no"/> +<layer number="48" name="Document" color="7" fill="1" visible="no" active="no"/> +<layer number="49" name="Reference" color="7" fill="1" visible="no" active="no"/> +<layer number="50" name="dxf" color="7" fill="1" visible="no" active="no"/> +<layer number="51" name="tDocu" color="7" fill="1" visible="no" active="no"/> +<layer number="52" name="bDocu" color="7" fill="1" visible="no" active="no"/> +<layer number="53" name="tGND_GNDA" color="7" fill="9" visible="no" active="no"/> +<layer number="54" name="bGND_GNDA" color="1" fill="9" visible="no" active="no"/> +<layer number="56" name="wert" color="7" fill="1" visible="no" active="no"/> +<layer number="57" name="tCAD" color="7" fill="1" visible="no" active="no"/> +<layer number="59" name="tCarbon" color="7" fill="1" visible="no" active="no"/> +<layer number="60" name="bCarbon" color="7" fill="1" visible="no" active="no"/> +<layer number="88" name="SimResults" color="9" fill="1" visible="yes" active="yes"/> +<layer number="89" name="SimProbes" color="9" fill="1" visible="yes" active="yes"/> +<layer number="90" name="Modules" color="5" fill="1" visible="yes" active="yes"/> +<layer number="91" name="Nets" color="2" fill="1" visible="yes" active="yes"/> +<layer number="92" name="Busses" color="1" fill="1" visible="yes" active="yes"/> +<layer number="93" name="Pins" color="2" fill="1" visible="no" active="yes"/> +<layer number="94" name="Symbols" color="4" fill="1" visible="yes" active="yes"/> +<layer number="95" name="Names" color="7" fill="1" visible="yes" active="yes"/> +<layer number="96" name="Values" color="7" fill="1" visible="yes" active="yes"/> +<layer number="97" name="Info" color="7" fill="1" visible="yes" active="yes"/> +<layer number="98" name="Guide" color="6" fill="1" visible="yes" active="yes"/> +<layer number="99" name="SpiceOrder" color="7" fill="1" visible="yes" active="yes"/> +<layer number="100" name="Muster" color="7" fill="1" visible="no" active="no"/> +<layer number="101" name="Patch_Top" color="12" fill="4" visible="no" active="yes"/> +<layer number="102" name="Vscore" color="7" fill="1" visible="no" active="yes"/> +<layer number="103" name="tMap" color="7" fill="1" visible="no" active="yes"/> +<layer number="104" name="Name" color="7" fill="1" visible="no" active="yes"/> +<layer number="105" name="tPlate" color="7" fill="1" visible="no" active="yes"/> +<layer number="106" name="bPlate" color="7" fill="1" visible="no" active="yes"/> +<layer number="107" name="Crop" color="7" fill="1" visible="no" active="yes"/> +<layer number="108" name="tplace-old" color="10" fill="1" visible="no" active="yes"/> +<layer number="109" name="ref-old" color="11" fill="1" visible="no" active="yes"/> +<layer number="110" name="fp0" color="7" fill="1" visible="no" active="yes"/> +<layer number="111" name="LPC17xx" color="7" fill="1" visible="no" active="yes"/> +<layer number="112" name="tSilk" color="7" fill="1" visible="no" active="yes"/> +<layer number="113" name="IDFDebug" color="7" fill="1" visible="no" active="yes"/> +<layer number="114" name="Badge_Outline" color="7" fill="1" visible="no" active="yes"/> +<layer number="115" name="ReferenceISLANDS" color="7" fill="1" visible="no" active="yes"/> +<layer number="116" name="Patch_BOT" color="9" fill="4" visible="no" active="yes"/> +<layer number="117" name="BACKMAAT1" color="7" fill="1" visible="yes" active="yes"/> +<layer number="118" name="Rect_Pads" color="7" fill="1" visible="no" active="yes"/> +<layer number="119" name="KAP_TEKEN" color="7" fill="1" visible="yes" active="yes"/> +<layer number="120" name="KAP_MAAT1" color="7" fill="1" visible="yes" active="yes"/> +<layer number="121" name="_tsilk" color="7" fill="1" visible="no" active="yes"/> +<layer number="122" name="_bsilk" color="7" fill="1" visible="no" active="yes"/> +<layer number="123" name="tTestmark" color="7" fill="1" visible="no" active="yes"/> +<layer number="124" name="bTestmark" color="7" fill="1" visible="no" active="yes"/> +<layer number="125" name="_tNames" color="7" fill="1" visible="no" active="yes"/> +<layer number="126" name="_bNames" color="7" fill="1" visible="no" active="yes"/> +<layer number="127" name="_tValues" color="7" fill="1" visible="no" active="yes"/> +<layer number="128" name="_bValues" color="7" fill="1" visible="no" active="yes"/> +<layer number="129" name="Mask" color="7" fill="1" visible="no" active="yes"/> +<layer number="130" name="SMDSTROOK" color="7" fill="1" visible="yes" active="yes"/> +<layer number="131" name="tAdjust" color="7" fill="1" visible="no" active="yes"/> +<layer number="132" name="bAdjust" color="7" fill="1" visible="no" active="yes"/> +<layer number="133" name="bottom_silk" color="7" fill="1" visible="yes" active="yes"/> +<layer number="144" name="Drill_legend" color="7" fill="1" visible="no" active="yes"/> +<layer number="150" name="Notes" color="7" fill="1" visible="no" active="yes"/> +<layer number="151" name="HeatSink" color="7" fill="1" visible="no" active="yes"/> +<layer number="152" name="_bDocu" color="7" fill="1" visible="no" active="yes"/> +<layer number="153" name="FabDoc1" color="7" fill="1" visible="no" active="yes"/> +<layer number="154" name="FabDoc2" color="7" fill="1" visible="no" active="yes"/> +<layer number="155" name="FabDoc3" color="7" fill="1" visible="no" active="yes"/> +<layer number="199" name="Contour" color="7" fill="1" visible="no" active="yes"/> +<layer number="200" name="200bmp" color="1" fill="10" visible="no" active="yes"/> +<layer number="201" name="201bmp" color="2" fill="10" visible="no" active="yes"/> +<layer number="202" name="202bmp" color="3" fill="10" visible="no" active="yes"/> +<layer number="203" name="203bmp" color="4" fill="10" visible="no" active="yes"/> +<layer number="204" name="204bmp" color="5" fill="10" visible="no" active="yes"/> +<layer number="205" name="205bmp" color="6" fill="10" visible="no" active="yes"/> +<layer number="206" name="206bmp" color="7" fill="10" visible="no" active="yes"/> +<layer number="207" name="207bmp" color="8" fill="10" visible="no" active="yes"/> +<layer number="208" name="208bmp" color="9" fill="10" visible="no" active="yes"/> +<layer number="209" name="209bmp" color="7" fill="1" visible="no" active="yes"/> +<layer number="210" name="210bmp" color="7" fill="1" visible="no" active="yes"/> +<layer number="211" name="211bmp" color="7" fill="1" visible="no" active="yes"/> +<layer number="212" name="212bmp" color="7" fill="1" visible="no" active="yes"/> +<layer number="213" name="213bmp" color="7" fill="1" visible="no" active="yes"/> +<layer number="214" name="214bmp" color="7" fill="1" visible="no" active="yes"/> +<layer number="215" name="215bmp" color="7" fill="1" visible="no" active="yes"/> +<layer number="216" name="216bmp" color="7" fill="1" visible="no" active="yes"/> +<layer number="217" name="217bmp" color="18" fill="1" visible="no" active="no"/> +<layer number="218" name="218bmp" color="19" fill="1" visible="no" active="no"/> +<layer number="219" name="219bmp" color="20" fill="1" visible="no" active="no"/> +<layer number="220" name="220bmp" color="21" fill="1" visible="no" active="no"/> +<layer number="221" name="221bmp" color="22" fill="1" visible="no" active="no"/> +<layer number="222" name="222bmp" color="23" fill="1" visible="no" active="no"/> +<layer number="223" name="223bmp" color="24" fill="1" visible="no" active="no"/> +<layer number="224" name="224bmp" color="25" fill="1" visible="no" active="no"/> +<layer number="225" name="225bmp" color="7" fill="1" visible="no" active="yes"/> +<layer number="226" name="226bmp" color="7" fill="1" visible="no" active="yes"/> +<layer number="227" name="227bmp" color="7" fill="1" visible="no" active="yes"/> +<layer number="228" name="228bmp" color="7" fill="1" visible="no" active="yes"/> +<layer number="229" name="229bmp" color="7" fill="1" visible="no" active="yes"/> +<layer number="230" name="230bmp" color="7" fill="1" visible="no" active="yes"/> +<layer number="231" name="231bmp" color="7" fill="1" visible="no" active="yes"/> +<layer number="232" name="Eagle3D_PG2" color="7" fill="1" visible="no" active="yes"/> +<layer number="233" name="Eagle3D_PG3" color="7" fill="1" visible="no" active="yes"/> +<layer number="248" name="Housing" color="7" fill="1" visible="no" active="yes"/> +<layer number="249" name="Edge" color="7" fill="1" visible="no" active="yes"/> +<layer number="250" name="Descript" color="3" fill="1" visible="no" active="no"/> +<layer number="251" name="SMDround" color="12" fill="11" visible="no" active="no"/> +<layer number="254" name="cooling" color="7" fill="1" visible="no" active="yes"/> +<layer number="255" name="routoute" color="7" fill="1" visible="no" active="yes"/> +</layers> +<schematic xreflabel="%F%N/%S.%C%R" xrefpart="/%S.%C%R"> +<libraries> +<library name="microcontrollers"> +<packages> +<package name="QFN-64-9X9MM-SMALLPAD"> +<description><h3>64-pin QFN 9x9mm, 0.5mm pitch</h3> +<p>Package used by ATmega128RFA1</p> +<p><a href="http://www.atmel.com/Images/Atmel-8266-MCU_Wireless-ATmega128RFA1_Datasheet.pdf">Example Datasheet</a></p></description> +<wire x1="-4.492" y1="-4.5" x2="4.508" y2="-4.5" width="0.09" layer="51"/> +<wire x1="4.508" y1="-4.5" x2="4.508" y2="4.5" width="0.09" layer="51"/> +<wire x1="4.508" y1="4.5" x2="-4.492" y2="4.5" width="0.09" layer="51"/> +<wire x1="-4.492" y1="4.5" x2="-4.492" y2="-4.5" width="0.09" layer="51"/> +<wire x1="-4.6" y1="4.6" x2="-4.6" y2="4.1" width="0.2032" layer="21"/> +<wire x1="-4.6" y1="4.6" x2="-4.1" y2="4.6" width="0.2032" layer="21"/> +<wire x1="4.6" y1="4.6" x2="4.1" y2="4.6" width="0.2032" layer="21"/> +<wire x1="4.6" y1="4.6" x2="4.6" y2="4.1" width="0.2032" layer="21"/> +<circle x="-4.842" y="4.85" radius="0.2" width="0" layer="21"/> +<circle x="-3.442" y="3.45" radius="0.2" width="0.09" layer="51"/> +<smd name="26" x="0.75" y="-4.5" dx="0.275" dy="0.7" layer="1" rot="R180"/> +<smd name="25" x="0.25" y="-4.5" dx="0.275" dy="0.7" layer="1" rot="R180"/> +<smd name="24" x="-0.25" y="-4.5" dx="0.275" dy="0.7" layer="1" rot="R180"/> +<smd name="27" x="1.25" y="-4.5" dx="0.275" dy="0.7" layer="1" rot="R180"/> +<smd name="28" x="1.75" y="-4.5" dx="0.275" dy="0.7" layer="1" rot="R180"/> +<smd name="23" x="-0.75" y="-4.5" dx="0.275" dy="0.7" layer="1" rot="R180"/> +<smd name="22" x="-1.25" y="-4.5" dx="0.275" dy="0.7" layer="1" rot="R180"/> +<smd name="21" x="-1.75" y="-4.5" dx="0.275" dy="0.7" layer="1" rot="R180"/> +<smd name="6" x="-4.5" y="1.25" dx="0.275" dy="0.7" layer="1" rot="R270"/> +<smd name="5" x="-4.5" y="1.75" dx="0.275" dy="0.7" layer="1" rot="R270"/> +<smd name="4" x="-4.5" y="2.25" dx="0.275" dy="0.7" layer="1" rot="R270"/> +<smd name="7" x="-4.5" y="0.75" dx="0.275" dy="0.7" layer="1" rot="R270"/> +<smd name="8" x="-4.5" y="0.25" dx="0.275" dy="0.7" layer="1" rot="R270"/> +<smd name="3" x="-4.5" y="2.75" dx="0.275" dy="0.7" layer="1" rot="R270"/> +<smd name="2" x="-4.5" y="3.25" dx="0.275" dy="0.7" layer="1" rot="R270"/> +<smd name="9" x="-4.5" y="-0.25" dx="0.275" dy="0.7" layer="1" rot="R270"/> +<smd name="10" x="-4.5" y="-0.75" dx="0.275" dy="0.7" layer="1" rot="R270"/> +<smd name="1" x="-4.5" y="3.75" dx="0.275" dy="0.7" layer="1" rot="R270"/> +<smd name="16" x="-4.5" y="-3.75" dx="0.275" dy="0.7" layer="1" rot="R90"/> +<smd name="15" x="-4.5" y="-3.25" dx="0.275" dy="0.7" layer="1" rot="R90"/> +<smd name="14" x="-4.5" y="-2.75" dx="0.275" dy="0.7" layer="1" rot="R270"/> +<smd name="17" x="-3.75" y="-4.5" dx="0.275" dy="0.7" layer="1" rot="R180"/> +<smd name="18" x="-3.25" y="-4.5" dx="0.275" dy="0.7" layer="1" rot="R180"/> +<smd name="13" x="-4.5" y="-2.25" dx="0.275" dy="0.7" layer="1" rot="R270"/> +<smd name="12" x="-4.5" y="-1.75" dx="0.275" dy="0.7" layer="1" rot="R270"/> +<smd name="19" x="-2.75" y="-4.5" dx="0.275" dy="0.7" layer="1" rot="R180"/> +<smd name="20" x="-2.25" y="-4.5" dx="0.275" dy="0.7" layer="1" rot="R180"/> +<smd name="11" x="-4.5" y="-1.25" dx="0.275" dy="0.7" layer="1" rot="R270"/> +<smd name="29" x="2.25" y="-4.5" dx="0.275" dy="0.7" layer="1"/> +<smd name="30" x="2.75" y="-4.5" dx="0.275" dy="0.7" layer="1"/> +<smd name="31" x="3.25" y="-4.5" dx="0.275" dy="0.7" layer="1"/> +<smd name="32" x="3.75" y="-4.5" dx="0.275" dy="0.7" layer="1"/> +<smd name="33" x="4.5" y="-3.75" dx="0.275" dy="0.7" layer="1" rot="R90"/> +<smd name="34" x="4.5" y="-3.25" dx="0.275" dy="0.7" layer="1" rot="R90"/> +<smd name="35" x="4.5" y="-2.75" dx="0.275" dy="0.7" layer="1" rot="R90"/> +<smd name="36" x="4.5" y="-2.25" dx="0.275" dy="0.7" layer="1" rot="R90"/> +<smd name="37" x="4.5" y="-1.75" dx="0.275" dy="0.7" layer="1" rot="R90"/> +<smd name="38" x="4.5" y="-1.25" dx="0.275" dy="0.7" layer="1" rot="R90"/> +<smd name="39" x="4.5" y="-0.75" dx="0.275" dy="0.7" layer="1" rot="R90"/> +<smd name="40" x="4.5" y="-0.25" dx="0.275" dy="0.7" layer="1" rot="R90"/> +<smd name="41" x="4.5" y="0.25" dx="0.275" dy="0.7" layer="1" rot="R90"/> +<smd name="42" x="4.5" y="0.75" dx="0.275" dy="0.7" layer="1" rot="R90"/> +<smd name="43" x="4.5" y="1.25" dx="0.275" dy="0.7" layer="1" rot="R90"/> +<smd name="44" x="4.5" y="1.75" dx="0.275" dy="0.7" layer="1" rot="R90"/> +<smd name="45" x="4.5" y="2.25" dx="0.275" dy="0.7" layer="1" rot="R90"/> +<smd name="46" x="4.5" y="2.75" dx="0.275" dy="0.7" layer="1" rot="R90"/> +<smd name="47" x="4.5" y="3.25" dx="0.275" dy="0.7" layer="1" rot="R90"/> +<smd name="48" x="4.5" y="3.75" dx="0.275" dy="0.7" layer="1" rot="R90"/> +<smd name="49" x="3.75" y="4.5" dx="0.275" dy="0.7" layer="1"/> +<smd name="50" x="3.25" y="4.5" dx="0.275" dy="0.7" layer="1"/> +<smd name="51" x="2.75" y="4.5" dx="0.275" dy="0.7" layer="1"/> +<smd name="52" x="2.25" y="4.5" dx="0.275" dy="0.7" layer="1"/> +<smd name="53" x="1.75" y="4.5" dx="0.275" dy="0.7" layer="1"/> +<smd name="54" x="1.25" y="4.5" dx="0.275" dy="0.7" layer="1"/> +<smd name="55" x="0.75" y="4.5" dx="0.275" dy="0.7" layer="1"/> +<smd name="56" x="0.25" y="4.5" dx="0.275" dy="0.7" layer="1"/> +<smd name="57" x="-0.25" y="4.5" dx="0.275" dy="0.7" layer="1"/> +<smd name="58" x="-0.75" y="4.5" dx="0.275" dy="0.7" layer="1"/> +<smd name="59" x="-1.25" y="4.5" dx="0.275" dy="0.7" layer="1"/> +<smd name="60" x="-1.75" y="4.5" dx="0.275" dy="0.7" layer="1"/> +<smd name="61" x="-2.25" y="4.5" dx="0.275" dy="0.7" layer="1"/> +<smd name="62" x="-2.75" y="4.5" dx="0.275" dy="0.7" layer="1"/> +<smd name="63" x="-3.25" y="4.5" dx="0.275" dy="0.7" layer="1"/> +<smd name="64" x="-3.75" y="4.5" dx="0.275" dy="0.7" layer="1"/> +<text x="0" y="1.27" size="0.6096" layer="25" font="vector" ratio="20" align="bottom-center">>NAME</text> +<text x="0" y="-1.27" size="0.6096" layer="27" font="vector" ratio="20" align="top-center">>VALUE</text> +<wire x1="4.6" y1="-4.6" x2="4.1" y2="-4.6" width="0.2032" layer="21"/> +<wire x1="4.6" y1="-4.6" x2="4.6" y2="-4.1" width="0.2032" layer="21"/> +<wire x1="-4.6" y1="-4.6" x2="-4.6" y2="-4.1" width="0.2032" layer="21"/> +<wire x1="-4.6" y1="-4.6" x2="-4.1" y2="-4.6" width="0.2032" layer="21"/> +<smd name="P$1" x="0" y="0" dx="4.8" dy="4.8" layer="1" cream="no"/> +<polygon width="0.127" layer="31"> +<vertex x="1.03" y="1.03"/> +<vertex x="1.03" y="2.17"/> +<vertex x="2.17" y="2.17"/> +<vertex x="2.17" y="1.03"/> +</polygon> +<polygon width="0.127" layer="31"> +<vertex x="-2.17" y="1.03"/> +<vertex x="-2.17" y="2.17"/> +<vertex x="-1.03" y="2.17"/> +<vertex x="-1.03" y="1.03"/> +</polygon> +<polygon width="0.127" layer="31"> +<vertex x="-2.17" y="-2.17"/> +<vertex x="-2.17" y="-1.03"/> +<vertex x="-1.03" y="-1.03"/> +<vertex x="-1.03" y="-2.17"/> +</polygon> +<polygon width="0.127" layer="31"> +<vertex x="1.03" y="-2.17"/> +<vertex x="1.03" y="-1.03"/> +<vertex x="2.17" y="-1.03"/> +<vertex x="2.17" y="-2.17"/> +</polygon> +<polygon width="0.127" layer="31"> +<vertex x="-0.57" y="-0.57"/> +<vertex x="-0.57" y="0.57"/> +<vertex x="0.57" y="0.57"/> +<vertex x="0.57" y="-0.57"/> +</polygon> +</package> +</packages> +<symbols> +<symbol name="ATSAMD51J"> +<pin name="GND" x="-35.56" y="-132.08" length="middle"/> +<pin name="VDDCORE" x="-35.56" y="-45.72" length="middle"/> +<pin name="VDDANA" x="-35.56" y="-15.24" length="middle"/> +<pin name="VDDIO" x="-35.56" y="0" length="middle"/> +<pin name="PA00/XIN32/SER1-0/TC2-0" x="43.18" y="0" length="middle" rot="R180"/> +<pin name="PA01/XOUT32/SER1-1/TC2-1" x="43.18" y="-2.54" length="middle" rot="R180"/> +<pin name="PA02/ADC0-1/DAC-0" x="43.18" y="-5.08" length="middle" rot="R180"/> +<pin name="PA03/ANAREF-VREFA/ADC0-1" x="43.18" y="-7.62" length="middle" rot="R180"/> +<pin name="PA04/ANAREF-VREFB/ADC0-4/SER0-0/TC0-0" x="43.18" y="-10.16" length="middle" rot="R180"/> +<pin name="PA05/ADC0-5/DAC-1/SER0-1/TC0-1" x="43.18" y="-12.7" length="middle" rot="R180"/> +<pin name="PA06/ANAREF-VREFC/ADC0-6/SER0-2/TC1-0" x="43.18" y="-15.24" length="middle" rot="R180"/> +<pin name="PA07/ADC0-7/SER0-3/TC1-1" x="43.18" y="-17.78" length="middle" rot="R180"/> +<pin name="PA08/ADC0-8/ADC1-2/SER0-0/SER2-1/TC0-0/TCC0-0" x="43.18" y="-20.32" length="middle" rot="R180"/> +<pin name="PA09/ADC0-9/ADC1-3/SER0-1/SER2-0/TC0-1/TCC0-1" x="43.18" y="-22.86" length="middle" rot="R180"/> +<pin name="PA10/ADC0-10/SER0-2/SER2-2/TC1-0/TCC0-2" x="43.18" y="-25.4" length="middle" rot="R180"/> +<pin name="PA11/ADC0-11/SER0-3/SER2-3/TC1-1/TCC0-3" x="43.18" y="-27.94" length="middle" rot="R180"/> +<pin name="PA12/SER2-0/SER4-1/TC2-0/TCC0-6" x="43.18" y="-30.48" length="middle" rot="R180"/> +<pin name="PA13/SER2-1/SER4-0/TC2-1/TCC0-7" x="43.18" y="-33.02" length="middle" rot="R180"/> +<pin name="PA14/XIN0/SER2-2/SER4-2/TC3-0" x="43.18" y="-35.56" length="middle" rot="R180"/> +<pin name="PA15/XOUT0/SER2-3/SER4-3/TC3-1" x="43.18" y="-38.1" length="middle" rot="R180"/> +<pin name="PA16/SER1-0/SER3-1/TC2-0/TCC0-4" x="43.18" y="-40.64" length="middle" rot="R180"/> +<pin name="PA17/SER1-1/SER3-0/TC2-1/TCC0-5" x="43.18" y="-43.18" length="middle" rot="R180"/> +<pin name="PA18/SER1-2/SER3-2/TC3-0" x="43.18" y="-45.72" length="middle" rot="R180"/> +<pin name="PA19/SER1-3/SER3-3/TC3-1" x="43.18" y="-48.26" length="middle" rot="R180"/> +<pin name="PA20/SER5-2/SER3-2/TC7-0" x="43.18" y="-50.8" length="middle" rot="R180"/> +<pin name="PA21/SER5-3/SER3-3/TC7-1" x="43.18" y="-53.34" length="middle" rot="R180"/> +<pin name="PA22/SER3-0/SER5-1/TC4-0" x="43.18" y="-55.88" length="middle" rot="R180"/> +<pin name="PA23/SER3-1/SER5-0/TC4-1" x="43.18" y="-58.42" length="middle" rot="R180"/> +<pin name="PA24/SER3-2/SER5-2/TC5-0/PDEC0-0/USBDM" x="43.18" y="-60.96" length="middle" rot="R180"/> +<pin name="PA25/SER3-3/SER5-3/TC5-1/PDEC0-1/USBDP" x="43.18" y="-63.5" length="middle" rot="R180"/> +<pin name="PA27/GCLK-1" x="43.18" y="-66.04" length="middle" rot="R180"/> +<pin name="PA30/SER7-2/SER1-2/TC6-0/SWCLK" x="43.18" y="-68.58" length="middle" rot="R180"/> +<pin name="PA31/SER7-3/SER1-3/TC6-1/SWDIO" x="43.18" y="-71.12" length="middle" rot="R180"/> +<pin name="PB00/ADC0-12/SER5-2/TC7-0" x="43.18" y="-78.74" length="middle" rot="R180"/> +<pin name="PB01/ADC0-13/SER5-3/TC7-1" x="43.18" y="-81.28" length="middle" rot="R180"/> +<pin name="PB03/ADC0/SER5-1/TC6" x="43.18" y="-86.36" length="middle" rot="R180"/> +<pin name="PB04/ADC1-6" x="43.18" y="-88.9" length="middle" rot="R180"/> +<pin name="PB05/ADC1-7" x="43.18" y="-91.44" length="middle" rot="R180"/> +<pin name="PB06/ADC1-8" x="43.18" y="-93.98" length="middle" rot="R180"/> +<pin name="PB07/ADC1-9" x="43.18" y="-96.52" length="middle" rot="R180"/> +<pin name="PB08/ADC0-2/ADC1-9/SER4-0/TC4-0" x="43.18" y="-99.06" length="middle" rot="R180"/> +<pin name="PB09/ADC0-3/ADC1-1/SER4-1/TC4-1" x="43.18" y="-101.6" length="middle" rot="R180"/> +<pin name="PB10/SER4-2/TC5-0/TCC0-4" x="43.18" y="-104.14" length="middle" rot="R180"/> +<pin name="PB11/SER4-3/TC5-1/TCC0-5" x="43.18" y="-106.68" length="middle" rot="R180"/> +<pin name="PB12/SER4-0/TC4-0" x="43.18" y="-109.22" length="middle" rot="R180"/> +<pin name="PB13/SER4-1/TC4-1" x="43.18" y="-111.76" length="middle" rot="R180"/> +<pin name="PB14/SER4-2/TC5-0" x="43.18" y="-114.3" length="middle" rot="R180"/> +<pin name="PB15/SER4-3/TC5-1" x="43.18" y="-116.84" length="middle" rot="R180"/> +<pin name="PB16/SER5-0/TC6-0" x="43.18" y="-119.38" length="middle" rot="R180"/> +<pin name="PB17/SER5-1/TC6-1" x="43.18" y="-121.92" length="middle" rot="R180"/> +<pin name="PB22/XIN1/SER1-2/SER5-2/PDEC0-2/TC7-0" x="43.18" y="-124.46" length="middle" rot="R180"/> +<pin name="PB23/XOUT1/SER1-3/SER5-3/TC7-1" x="43.18" y="-127" length="middle" rot="R180"/> +<pin name="PB30/SER7-0/SER5-1/TC0-0/SWO" x="43.18" y="-129.54" length="middle" rot="R180"/> +<pin name="RESETN" x="-35.56" y="-119.38" length="middle"/> +<pin name="PB31/SER7-1/SER5-0/TC0-1" x="43.18" y="-132.08" length="middle" rot="R180"/> +<pin name="PB02/ADC0-14/SER5-0/TC6-0" x="43.18" y="-83.82" length="middle" rot="R180"/> +<wire x1="-30.48" y1="5.08" x2="38.1" y2="5.08" width="0.254" layer="94"/> +<wire x1="38.1" y1="5.08" x2="38.1" y2="-137.16" width="0.254" layer="94"/> +<wire x1="38.1" y1="-137.16" x2="-30.48" y2="-137.16" width="0.254" layer="94"/> +<wire x1="-30.48" y1="-137.16" x2="-30.48" y2="5.08" width="0.254" layer="94"/> +<text x="-5.08" y="7.62" size="1.778" layer="95">>NAME</text> +<text x="-5.08" y="-142.24" size="1.778" layer="96">>VALUE</text> +<pin name="VSW" x="-35.56" y="-30.48" length="middle"/> +</symbol> +</symbols> +<devicesets> +<deviceset name="ATSAMD51J" prefix="U"> +<gates> +<gate name="G$1" symbol="ATSAMD51J" x="0" y="0"/> +</gates> +<devices> +<device name="QFN64" package="QFN-64-9X9MM-SMALLPAD"> +<connects> +<connect gate="G$1" pin="GND" pad="7 22 33 47 54 P$1"/> +<connect gate="G$1" pin="PA00/XIN32/SER1-0/TC2-0" pad="1"/> +<connect gate="G$1" pin="PA01/XOUT32/SER1-1/TC2-1" pad="2"/> +<connect gate="G$1" pin="PA02/ADC0-1/DAC-0" pad="3"/> +<connect gate="G$1" pin="PA03/ANAREF-VREFA/ADC0-1" pad="4"/> +<connect gate="G$1" pin="PA04/ANAREF-VREFB/ADC0-4/SER0-0/TC0-0" pad="13"/> +<connect gate="G$1" pin="PA05/ADC0-5/DAC-1/SER0-1/TC0-1" pad="14"/> +<connect gate="G$1" pin="PA06/ANAREF-VREFC/ADC0-6/SER0-2/TC1-0" pad="15"/> +<connect gate="G$1" pin="PA07/ADC0-7/SER0-3/TC1-1" pad="16"/> +<connect gate="G$1" pin="PA08/ADC0-8/ADC1-2/SER0-0/SER2-1/TC0-0/TCC0-0" pad="17"/> +<connect gate="G$1" pin="PA09/ADC0-9/ADC1-3/SER0-1/SER2-0/TC0-1/TCC0-1" pad="18"/> +<connect gate="G$1" pin="PA10/ADC0-10/SER0-2/SER2-2/TC1-0/TCC0-2" pad="19"/> +<connect gate="G$1" pin="PA11/ADC0-11/SER0-3/SER2-3/TC1-1/TCC0-3" pad="20"/> +<connect gate="G$1" pin="PA12/SER2-0/SER4-1/TC2-0/TCC0-6" pad="29"/> +<connect gate="G$1" pin="PA13/SER2-1/SER4-0/TC2-1/TCC0-7" pad="30"/> +<connect gate="G$1" pin="PA14/XIN0/SER2-2/SER4-2/TC3-0" pad="31"/> +<connect gate="G$1" pin="PA15/XOUT0/SER2-3/SER4-3/TC3-1" pad="32"/> +<connect gate="G$1" pin="PA16/SER1-0/SER3-1/TC2-0/TCC0-4" pad="35"/> +<connect gate="G$1" pin="PA17/SER1-1/SER3-0/TC2-1/TCC0-5" pad="36"/> +<connect gate="G$1" pin="PA18/SER1-2/SER3-2/TC3-0" pad="37"/> +<connect gate="G$1" pin="PA19/SER1-3/SER3-3/TC3-1" pad="38"/> +<connect gate="G$1" pin="PA20/SER5-2/SER3-2/TC7-0" pad="41"/> +<connect gate="G$1" pin="PA21/SER5-3/SER3-3/TC7-1" pad="42"/> +<connect gate="G$1" pin="PA22/SER3-0/SER5-1/TC4-0" pad="43"/> +<connect gate="G$1" pin="PA23/SER3-1/SER5-0/TC4-1" pad="44"/> +<connect gate="G$1" pin="PA24/SER3-2/SER5-2/TC5-0/PDEC0-0/USBDM" pad="45"/> +<connect gate="G$1" pin="PA25/SER3-3/SER5-3/TC5-1/PDEC0-1/USBDP" pad="46"/> +<connect gate="G$1" pin="PA27/GCLK-1" pad="51"/> +<connect gate="G$1" pin="PA30/SER7-2/SER1-2/TC6-0/SWCLK" pad="57"/> +<connect gate="G$1" pin="PA31/SER7-3/SER1-3/TC6-1/SWDIO" pad="58"/> +<connect gate="G$1" pin="PB00/ADC0-12/SER5-2/TC7-0" pad="61"/> +<connect gate="G$1" pin="PB01/ADC0-13/SER5-3/TC7-1" pad="62"/> +<connect gate="G$1" pin="PB02/ADC0-14/SER5-0/TC6-0" pad="63"/> +<connect gate="G$1" pin="PB03/ADC0/SER5-1/TC6" pad="64"/> +<connect gate="G$1" pin="PB04/ADC1-6" pad="5"/> +<connect gate="G$1" pin="PB05/ADC1-7" pad="6"/> +<connect gate="G$1" pin="PB06/ADC1-8" pad="9"/> +<connect gate="G$1" pin="PB07/ADC1-9" pad="10"/> +<connect gate="G$1" pin="PB08/ADC0-2/ADC1-9/SER4-0/TC4-0" pad="11"/> +<connect gate="G$1" pin="PB09/ADC0-3/ADC1-1/SER4-1/TC4-1" pad="12"/> +<connect gate="G$1" pin="PB10/SER4-2/TC5-0/TCC0-4" pad="23"/> +<connect gate="G$1" pin="PB11/SER4-3/TC5-1/TCC0-5" pad="24"/> +<connect gate="G$1" pin="PB12/SER4-0/TC4-0" pad="25"/> +<connect gate="G$1" pin="PB13/SER4-1/TC4-1" pad="26"/> +<connect gate="G$1" pin="PB14/SER4-2/TC5-0" pad="27"/> +<connect gate="G$1" pin="PB15/SER4-3/TC5-1" pad="28"/> +<connect gate="G$1" pin="PB16/SER5-0/TC6-0" pad="39"/> +<connect gate="G$1" pin="PB17/SER5-1/TC6-1" pad="40"/> +<connect gate="G$1" pin="PB22/XIN1/SER1-2/SER5-2/PDEC0-2/TC7-0" pad="49"/> +<connect gate="G$1" pin="PB23/XOUT1/SER1-3/SER5-3/TC7-1" pad="50"/> +<connect gate="G$1" pin="PB30/SER7-0/SER5-1/TC0-0/SWO" pad="59"/> +<connect gate="G$1" pin="PB31/SER7-1/SER5-0/TC0-1" pad="60"/> +<connect gate="G$1" pin="RESETN" pad="52"/> +<connect gate="G$1" pin="VDDANA" pad="8"/> +<connect gate="G$1" pin="VDDCORE" pad="53"/> +<connect gate="G$1" pin="VDDIO" pad="21 34 48 56"/> +<connect gate="G$1" pin="VSW" pad="55"/> +</connects> +<technologies> +<technology name=""/> +</technologies> +</device> +</devices> +</deviceset> +</devicesets> +</library> +<library name="SparkFun-Connectors"> +<description><h3>SparkFun Connectors</h3> +This library contains electrically-functional connectors. +<br> +<br> +We've spent an enormous amount of time creating and checking these footprints and parts, but it is <b> the end user's responsibility</b> to ensure correctness and suitablity for a given componet or application. +<br> +<br>If you enjoy using this library, please buy one of our products at <a href=" www.sparkfun.com">SparkFun.com</a>. +<br> +<br> +<b>Licensing:</b> Creative Commons ShareAlike 4.0 International - https://creativecommons.org/licenses/by-sa/4.0/ +<br> +<br> +You are welcome to use this library for commercial purposes. For attribution, we ask that when you begin to sell your device using our footprint, you email us with a link to the product being sold. We want bragging rights that we helped (in a very small part) to create your 8th world wonder. We would like the opportunity to feature your device on our homepage.</description> +<packages> +<package name="2X5-PTH-1.27MM-NO_SILK"> +<description><h3>Plated Through Hole - 2x5 ARM Cortex Debug Connector (10-pin)</h3> +<p>tDoc (51) layer border represents maximum dimensions of plastic housing.</p> +<p>Specifications: +<ul><li>Pin count:10</li> +<li>Pin pitch:1.27mm</li> +</ul></p> +<p><a href=”http://portal.fciconnect.com/Comergent//fci/drawing/20021111.pdf”>Datasheet referenced for footprint</a></p> +<p>Example device(s): +<ul><li>CONN_05x2</li> +</ul></p></description> +<pad name="8" x="1.27" y="0.762" drill="0.508" diameter="1"/> +<pad name="6" x="0" y="0.762" drill="0.508" diameter="1"/> +<pad name="4" x="-1.27" y="0.762" drill="0.508" diameter="1"/> +<pad name="2" x="-2.54" y="0.762" drill="0.508" diameter="1"/> +<pad name="10" x="2.54" y="0.762" drill="0.508" diameter="1"/> +<pad name="7" x="1.27" y="-0.762" drill="0.508" diameter="1"/> +<pad name="5" x="0" y="-0.762" drill="0.508" diameter="1"/> +<pad name="3" x="-1.27" y="-0.762" drill="0.508" diameter="1"/> +<pad name="1" x="-2.54" y="-0.762" drill="0.508" diameter="1"/> +<pad name="9" x="2.54" y="-0.762" drill="0.508" diameter="1"/> +<wire x1="-3.403" y1="-1.021" x2="-3.403" y2="-0.259" width="0.254" layer="21"/> +<wire x1="3.175" y1="1.715" x2="-3.175" y2="1.715" width="0.127" layer="51"/> +<wire x1="-3.175" y1="1.715" x2="-3.175" y2="-1.715" width="0.127" layer="51"/> +<wire x1="-3.175" y1="-1.715" x2="3.175" y2="-1.715" width="0.127" layer="51"/> +<wire x1="3.175" y1="-1.715" x2="3.175" y2="1.715" width="0.127" layer="51"/> +<text x="-1.5748" y="1.9304" size="0.6096" layer="25" font="vector" ratio="20">>NAME</text> +<text x="-1.8288" y="-2.4638" size="0.6096" layer="27" font="vector" ratio="20">>VALUE</text> +<wire x1="-0.635" y1="-1.905" x2="0.635" y2="-1.905" width="0.254" layer="21"/> +<wire x1="5.2" y1="1.6" x2="-5.2" y2="1.6" width="0.127" layer="51"/> +<wire x1="-5.2" y1="1.6" x2="-5.2" y2="-1.6" width="0.127" layer="51"/> +<wire x1="-5.2" y1="-1.6" x2="5.2" y2="-1.6" width="0.127" layer="51"/> +<wire x1="5.2" y1="-1.6" x2="5.2" y2="1.6" width="0.127" layer="51"/> +</package> +<package name="2X5-PTH-1.27MM"> +<description><h3>Plated Through Hole - 2x5 ARM Cortex Debug Connector (10-pin)</h3> +<p>tDoc (51) layer border represents maximum dimensions of plastic housing.</p> +<p>Specifications: +<ul><li>Pin count:10</li> +<li>Pin pitch:1.27mm</li> +</ul></p> +<p><a href=”http://portal.fciconnect.com/Comergent//fci/drawing/20021111.pdf”>Datasheet referenced for footprint</a></p> +<p>Example device(s): +<ul><li>CONN_05x2</li> +</ul></p></description> +<pad name="8" x="1.27" y="0.635" drill="0.508" diameter="1"/> +<pad name="6" x="0" y="0.635" drill="0.508" diameter="1"/> +<pad name="4" x="-1.27" y="0.635" drill="0.508" diameter="1"/> +<pad name="2" x="-2.54" y="0.635" drill="0.508" diameter="1"/> +<pad name="10" x="2.54" y="0.635" drill="0.508" diameter="1"/> +<pad name="7" x="1.27" y="-0.635" drill="0.508" diameter="1"/> +<pad name="5" x="0" y="-0.635" drill="0.508" diameter="1"/> +<pad name="3" x="-1.27" y="-0.635" drill="0.508" diameter="1"/> +<pad name="1" x="-2.54" y="-0.635" drill="0.508" diameter="1"/> +<pad name="9" x="2.54" y="-0.635" drill="0.508" diameter="1"/> +<wire x1="-3.403" y1="-1.021" x2="-3.403" y2="-0.259" width="0.254" layer="21"/> +<wire x1="3.175" y1="1.715" x2="-3.175" y2="1.715" width="0.127" layer="21"/> +<wire x1="-3.175" y1="1.715" x2="-3.175" y2="-1.715" width="0.127" layer="21"/> +<wire x1="-3.175" y1="-1.715" x2="3.175" y2="-1.715" width="0.127" layer="21"/> +<wire x1="3.175" y1="-1.715" x2="3.175" y2="1.715" width="0.127" layer="21"/> +<text x="-1.5748" y="1.9304" size="0.6096" layer="25" font="vector" ratio="20">>NAME</text> +<text x="-1.8288" y="-2.4638" size="0.6096" layer="27" font="vector" ratio="20">>VALUE</text> +</package> +<package name="2X5-SMD-1.27MM"> +<description>Shrouded SMD connector for JTAG and SWD applications.</description> +<smd name="6" x="0" y="-1.95" dx="0.76" dy="2.4" layer="1" rot="R180"/> +<smd name="8" x="-1.27" y="-1.95" dx="0.76" dy="2.4" layer="1" rot="R180"/> +<smd name="10" x="-2.54" y="-1.95" dx="0.76" dy="2.4" layer="1" rot="R180"/> +<smd name="4" x="1.27" y="-1.95" dx="0.76" dy="2.4" layer="1" rot="R180"/> +<smd name="2" x="2.54" y="-1.95" dx="0.76" dy="2.4" layer="1" rot="R180"/> +<smd name="1" x="2.54" y="1.95" dx="0.76" dy="2.4" layer="1" rot="R180"/> +<smd name="3" x="1.27" y="1.95" dx="0.76" dy="2.4" layer="1" rot="R180"/> +<smd name="5" x="0" y="1.95" dx="0.76" dy="2.4" layer="1" rot="R180"/> +<smd name="7" x="-1.27" y="1.95" dx="0.76" dy="2.4" layer="1" rot="R180"/> +<smd name="9" x="-2.54" y="1.95" dx="0.76" dy="2.4" layer="1" rot="R180"/> +<rectangle x1="-1.0575" y1="-1.9625" x2="1.0575" y2="-1.5525" layer="51" rot="R270"/> +<wire x1="5.55" y1="-1.7" x2="-5.55" y2="-1.7" width="0.1524" layer="51"/> +<wire x1="-5.55" y1="-1.7" x2="-5.55" y2="1.7" width="0.1524" layer="51"/> +<wire x1="-5.55" y1="1.7" x2="5.55" y2="1.7" width="0.1524" layer="51"/> +<wire x1="5.55" y1="1.7" x2="5.55" y2="-1.7" width="0.1524" layer="51"/> +<rectangle x1="-2.3275" y1="-1.9625" x2="-0.2125" y2="-1.5525" layer="51" rot="R270"/> +<rectangle x1="-3.5975" y1="-1.9625" x2="-1.4825" y2="-1.5525" layer="51" rot="R270"/> +<rectangle x1="0.2125" y1="-1.9625" x2="2.3275" y2="-1.5525" layer="51" rot="R270"/> +<rectangle x1="1.4825" y1="-1.9625" x2="3.5975" y2="-1.5525" layer="51" rot="R270"/> +<rectangle x1="1.4825" y1="1.5525" x2="3.5975" y2="1.9625" layer="51" rot="R90"/> +<rectangle x1="0.2125" y1="1.5525" x2="2.3275" y2="1.9625" layer="51" rot="R90"/> +<rectangle x1="-1.0575" y1="1.5525" x2="1.0575" y2="1.9625" layer="51" rot="R90"/> +<rectangle x1="-2.3275" y1="1.5525" x2="-0.2125" y2="1.9625" layer="51" rot="R90"/> +<rectangle x1="-3.5975" y1="1.5525" x2="-1.4825" y2="1.9625" layer="51" rot="R90"/> +<wire x1="-3.2" y1="2.5" x2="-6.3" y2="2.5" width="0.2032" layer="51"/> +<wire x1="-6.3" y1="2.5" x2="-6.3" y2="-2.5" width="0.2032" layer="51"/> +<wire x1="-6.3" y1="-2.5" x2="-3.2" y2="-2.5" width="0.2032" layer="51"/> +<wire x1="3.2" y1="-2.5" x2="6.3" y2="-2.5" width="0.2032" layer="51"/> +<wire x1="6.3" y1="-2.5" x2="6.3" y2="2.5" width="0.2032" layer="51"/> +<wire x1="6.3" y1="2.5" x2="3.2" y2="2.5" width="0.2032" layer="51"/> +<wire x1="0.6" y1="2.9" x2="0.6" y2="3.4" width="0.2032" layer="21"/> +<wire x1="0.6" y1="3.4" x2="-0.6" y2="3.4" width="0.2032" layer="21"/> +<wire x1="-0.6" y1="3.4" x2="-0.6" y2="2.9" width="0.2032" layer="21"/> +<circle x="3.6" y="3.1" radius="0.1" width="0.2032" layer="21"/> +<wire x1="-3.175" y1="1.905" x2="-3.175" y2="-1.905" width="0.127" layer="51"/> +<wire x1="3.175" y1="1.905" x2="3.175" y2="-1.905" width="0.127" layer="51"/> +</package> +</packages> +<symbols> +<symbol name="CORTEX_DEBUG"> +<description><h3>Cortex Debug Connector</h3> +<p><a href="http://infocenter.arm.com/help/topic/com.arm.doc.faqs/attached/13634/cortex_debug_connectors.pdf">Datasheet</a></p></description> +<pin name="VCC" x="-15.24" y="5.08" length="short"/> +<pin name="GND@3" x="-15.24" y="2.54" length="short"/> +<pin name="GND@5" x="-15.24" y="0" length="short"/> +<pin name="KEY" x="-15.24" y="-2.54" length="short"/> +<pin name="GNDDTCT" x="-15.24" y="-5.08" length="short"/> +<pin name="!RESET" x="15.24" y="-5.08" length="short" rot="R180"/> +<pin name="NC/TDI" x="15.24" y="-2.54" length="short" rot="R180"/> +<pin name="SWO/TDO" x="15.24" y="0" length="short" rot="R180"/> +<pin name="SWDCLK/TCK" x="15.24" y="2.54" length="short" rot="R180"/> +<pin name="SWDIO/TMS" x="15.24" y="5.08" length="short" rot="R180"/> +<wire x1="-12.7" y1="-7.62" x2="-12.7" y2="7.62" width="0.254" layer="94"/> +<wire x1="-12.7" y1="7.62" x2="12.7" y2="7.62" width="0.254" layer="94"/> +<wire x1="12.7" y1="7.62" x2="12.7" y2="-7.62" width="0.254" layer="94"/> +<wire x1="12.7" y1="-7.62" x2="-12.7" y2="-7.62" width="0.254" layer="94"/> +<text x="-12.7" y="7.874" size="1.778" layer="95" font="vector">>Name</text> +<text x="-12.7" y="-9.906" size="1.778" layer="96" font="vector">>Value</text> +</symbol> +</symbols> +<devicesets> +<deviceset name="CORTEX_JTAG_DEBUG" prefix="J"> +<description><h3>Cortex Debug Connector - 10 pin</h3> +<p>Supports JTAG debug, Serial Wire debug, and Serial Wire Viewer. +PTH and SMD connector options available.</p> +<p> <ul><a href=”http://infocenter.arm.com/help/topic/com.arm.doc.faqs/attached/13634/cortex_debug_connectors.pdf”>General Connector Information</a> +<p><b> Products:</b> +<ul><li><a href=”http://www.digikey.com/product-detail/en/cnc-tech/3220-10-0100-00/1175-1627-ND/3883661”>PTH Connector</a> -via Digi-Key</li> +<li><a href=”https://www.sparkfun.com/products/13229”>SparkFun PSoc</a></li> +<li><a href=”https://www.sparkfun.com/products/13810”>SparkFun T</a></li> +</ul></p></description> +<gates> +<gate name="J1" symbol="CORTEX_DEBUG" x="0" y="0"/> +</gates> +<devices> +<device name="_PTH_NS" package="2X5-PTH-1.27MM-NO_SILK"> +<connects> +<connect gate="J1" pin="!RESET" pad="10"/> +<connect gate="J1" pin="GND@3" pad="3"/> +<connect gate="J1" pin="GND@5" pad="5"/> +<connect gate="J1" pin="GNDDTCT" pad="9"/> +<connect gate="J1" pin="KEY" pad="7"/> +<connect gate="J1" pin="NC/TDI" pad="8"/> +<connect gate="J1" pin="SWDCLK/TCK" pad="4"/> +<connect gate="J1" pin="SWDIO/TMS" pad="2"/> +<connect gate="J1" pin="SWO/TDO" pad="6"/> +<connect gate="J1" pin="VCC" pad="1"/> +</connects> +<technologies> +<technology name=""/> +</technologies> +</device> +<device name="_PTH" package="2X5-PTH-1.27MM"> +<connects> +<connect gate="J1" pin="!RESET" pad="10"/> +<connect gate="J1" pin="GND@3" pad="3"/> +<connect gate="J1" pin="GND@5" pad="5"/> +<connect gate="J1" pin="GNDDTCT" pad="9"/> +<connect gate="J1" pin="KEY" pad="7"/> +<connect gate="J1" pin="NC/TDI" pad="8"/> +<connect gate="J1" pin="SWDCLK/TCK" pad="4"/> +<connect gate="J1" pin="SWDIO/TMS" pad="2"/> +<connect gate="J1" pin="SWO/TDO" pad="6"/> +<connect gate="J1" pin="VCC" pad="1"/> +</connects> +<technologies> +<technology name=""/> +</technologies> +</device> +<device name="_SMD" package="2X5-SMD-1.27MM"> +<connects> +<connect gate="J1" pin="!RESET" pad="10"/> +<connect gate="J1" pin="GND@3" pad="3"/> +<connect gate="J1" pin="GND@5" pad="5"/> +<connect gate="J1" pin="GNDDTCT" pad="9"/> +<connect gate="J1" pin="KEY" pad="7"/> +<connect gate="J1" pin="NC/TDI" pad="8"/> +<connect gate="J1" pin="SWDCLK/TCK" pad="4"/> +<connect gate="J1" pin="SWDIO/TMS" pad="2"/> +<connect gate="J1" pin="SWO/TDO" pad="6"/> +<connect gate="J1" pin="VCC" pad="1"/> +</connects> +<technologies> +<technology name=""> +<attribute name="PROD_ID" value="CONN-14503" constant="no"/> +<attribute name="VALUE" value="JTAG" constant="no"/> +</technology> +</technologies> +</device> +</devices> +</deviceset> +</devicesets> +</library> +<library name="passives"> +<packages> +<package name="TACT-SWITCH-KMR6"> +<smd name="P$1" x="-2.05" y="0.8" dx="0.9" dy="1" layer="1" rot="R180"/> +<smd name="P$2" x="2.05" y="0.8" dx="0.9" dy="1" layer="1" rot="R180"/> +<smd name="P$3" x="-2.05" y="-0.8" dx="0.9" dy="1" layer="1" rot="R180"/> +<smd name="P$4" x="2.05" y="-0.8" dx="0.9" dy="1" layer="1" rot="R180"/> +<wire x1="-1.4" y1="0.8" x2="0" y2="0.8" width="0.127" layer="51"/> +<wire x1="0" y1="0.8" x2="1.4" y2="0.8" width="0.127" layer="51"/> +<wire x1="-1.4" y1="-0.8" x2="0" y2="-0.8" width="0.127" layer="51"/> +<wire x1="0" y1="-0.8" x2="1.4" y2="-0.8" width="0.127" layer="51"/> +<wire x1="0" y1="0.8" x2="0" y2="0.6" width="0.127" layer="51"/> +<wire x1="0" y1="0.6" x2="0.4" y2="-0.4" width="0.127" layer="51"/> +<wire x1="0" y1="-0.8" x2="0" y2="-0.5" width="0.127" layer="51"/> +<wire x1="-2.1" y1="0.2" x2="-2.1" y2="-0.2" width="0.127" layer="51"/> +<wire x1="2.1" y1="-0.2" x2="2.1" y2="0.2" width="0.127" layer="51"/> +<wire x1="2.1" y1="1.4" x2="2.1" y2="1.5" width="0.127" layer="51"/> +<wire x1="2.1" y1="1.5" x2="1" y2="1.5" width="0.127" layer="51"/> +<wire x1="1.032" y1="1.5" x2="-2.1" y2="1.5" width="0.127" layer="51"/> +<wire x1="-2.1" y1="1.5" x2="-2.1" y2="1.4" width="0.127" layer="51"/> +<wire x1="-2.1" y1="-1.4" x2="-2.1" y2="-1.5" width="0.127" layer="51"/> +<wire x1="-2.1" y1="-1.5" x2="2.1" y2="-1.5" width="0.127" layer="51"/> +<wire x1="2.1" y1="-1.5" x2="2.1" y2="-1.4" width="0.127" layer="51"/> +</package> +<package name="TACT-SWITCH-SIDE"> +<smd name="P$1" x="-1.8" y="0.725" dx="1.4" dy="1.05" layer="1" rot="R180"/> +<smd name="P$2" x="1.8" y="0.725" dx="1.4" dy="1.05" layer="1" rot="R180"/> +<smd name="P$3" x="-1.8" y="-0.725" dx="1.4" dy="1.05" layer="1" rot="R180"/> +<smd name="P$4" x="1.8" y="-0.725" dx="1.4" dy="1.05" layer="1" rot="R180"/> +<wire x1="-0.9" y1="0.8" x2="0" y2="0.8" width="0.127" layer="51"/> +<wire x1="0" y1="0.8" x2="0.9" y2="0.8" width="0.127" layer="51"/> +<wire x1="-0.9" y1="-0.8" x2="0" y2="-0.8" width="0.127" layer="51"/> +<wire x1="0" y1="-0.8" x2="0.9" y2="-0.8" width="0.127" layer="51"/> +<wire x1="0" y1="0.8" x2="0" y2="0.6" width="0.127" layer="51"/> +<wire x1="0" y1="0.6" x2="0.4" y2="-0.4" width="0.127" layer="51"/> +<wire x1="0" y1="-0.8" x2="0" y2="-0.5" width="0.127" layer="51"/> +<wire x1="-1.75" y1="-1.45" x2="1.75" y2="-1.45" width="0.127" layer="21"/> +<wire x1="-1.75" y1="1.6" x2="-1" y2="1.6" width="0.127" layer="21"/> +<wire x1="-1" y1="1.6" x2="0" y2="1.6" width="0.127" layer="21"/> +<wire x1="0" y1="1.6" x2="1" y2="1.6" width="0.127" layer="21"/> +<wire x1="1" y1="1.6" x2="1.75" y2="1.6" width="0.127" layer="21"/> +<wire x1="-1" y1="1.6" x2="-1" y2="2.3" width="0.127" layer="21"/> +<wire x1="-1" y1="2.3" x2="1" y2="2.3" width="0.127" layer="21"/> +<wire x1="1" y1="2.3" x2="1" y2="1.6" width="0.127" layer="21"/> +</package> +<package name="1206"> +<wire x1="-0.965" y1="0.787" x2="0.965" y2="0.787" width="0.1016" layer="51"/> +<wire x1="-0.965" y1="-0.787" x2="0.965" y2="-0.787" width="0.1016" layer="51"/> +<smd name="1" x="-1.4" y="0" dx="1.6" dy="1.8" layer="1"/> +<smd name="2" x="1.4" y="0" dx="1.6" dy="1.8" layer="1"/> +<text x="-1.27" y="1.143" size="1.016" layer="25">>NAME</text> +<text x="-1.397" y="-2.794" size="1.016" layer="27">>VALUE</text> +<rectangle x1="-1.7018" y1="-0.8509" x2="-0.9517" y2="0.8491" layer="51"/> +<rectangle x1="0.9517" y1="-0.8491" x2="1.7018" y2="0.8509" layer="51"/> +<rectangle x1="-0.1999" y1="-0.4001" x2="0.1999" y2="0.4001" layer="35"/> +</package> +<package name="R2010"> +<description><b>RESISTOR</b><p> +chip</description> +<wire x1="-1.662" y1="1.245" x2="1.662" y2="1.245" width="0.1524" layer="51"/> +<wire x1="-1.637" y1="-1.245" x2="1.687" y2="-1.245" width="0.1524" layer="51"/> +<wire x1="-3.473" y1="1.483" x2="3.473" y2="1.483" width="0.0508" layer="39"/> +<wire x1="3.473" y1="1.483" x2="3.473" y2="-1.483" width="0.0508" layer="39"/> +<wire x1="3.473" y1="-1.483" x2="-3.473" y2="-1.483" width="0.0508" layer="39"/> +<wire x1="-3.473" y1="-1.483" x2="-3.473" y2="1.483" width="0.0508" layer="39"/> +<wire x1="-1.027" y1="1.245" x2="1.027" y2="1.245" width="0.1524" layer="21"/> +<wire x1="-1.002" y1="-1.245" x2="1.016" y2="-1.245" width="0.1524" layer="21"/> +<smd name="1" x="-2.2" y="0" dx="1.8" dy="2.7" layer="1"/> +<smd name="2" x="2.2" y="0" dx="1.8" dy="2.7" layer="1"/> +<text x="-2.54" y="1.5875" size="1.016" layer="25">>NAME</text> +<text x="-2.54" y="-3.302" size="1.016" layer="27">>VALUE</text> +<rectangle x1="-2.4892" y1="-1.3208" x2="-1.6393" y2="1.3292" layer="51"/> +<rectangle x1="1.651" y1="-1.3208" x2="2.5009" y2="1.3292" layer="51"/> +</package> +<package name="0805"> +<smd name="1" x="-1" y="0" dx="0.8" dy="1.3" layer="1"/> +<smd name="2" x="1" y="0" dx="0.8" dy="1.3" layer="1"/> +<text x="-0.762" y="0.8255" size="1.016" layer="25">>NAME</text> +<text x="-1.016" y="-2.032" size="1.016" layer="27">>VALUE</text> +<rectangle x1="-1" y1="-0.6" x2="1" y2="0.6" layer="51"/> +</package> +<package name="0603-RES"> +<wire x1="-0.356" y1="0.432" x2="0.356" y2="0.432" width="0.1016" layer="51"/> +<wire x1="-0.356" y1="-0.419" x2="0.356" y2="-0.419" width="0.1016" layer="51"/> +<smd name="1" x="-0.85" y="0" dx="1.1" dy="1" layer="1"/> +<smd name="2" x="0.85" y="0" dx="1.1" dy="1" layer="1"/> +<text x="-0.889" y="1.397" size="1.016" layer="25">>NAME</text> +<text x="-1.016" y="-2.413" size="1.016" layer="27" ratio="10">>VALUE</text> +<rectangle x1="-0.8382" y1="-0.4699" x2="-0.3381" y2="0.4801" layer="51"/> +<rectangle x1="0.3302" y1="-0.4699" x2="0.8303" y2="0.4801" layer="51"/> +<rectangle x1="-0.1999" y1="-0.3" x2="0.1999" y2="0.3" layer="35"/> +<rectangle x1="-0.2286" y1="-0.381" x2="0.2286" y2="0.381" layer="21"/> +</package> +<package name="R2512"> +<wire x1="-2.362" y1="1.473" x2="2.387" y2="1.473" width="0.1524" layer="51"/> +<wire x1="-2.362" y1="-1.473" x2="2.387" y2="-1.473" width="0.1524" layer="51"/> +<smd name="1" x="-2.8" y="0" dx="1.8" dy="3.2" layer="1"/> +<smd name="2" x="2.8" y="0" dx="1.8" dy="3.2" layer="1"/> +<text x="-2.54" y="1.905" size="1.016" layer="25">>NAME</text> +<text x="-2.54" y="-3.175" size="1.016" layer="27">>VALUE</text> +<rectangle x1="-3.2004" y1="-1.5494" x2="-2.3505" y2="1.5507" layer="51"/> +<rectangle x1="2.3622" y1="-1.5494" x2="3.2121" y2="1.5507" layer="51"/> +</package> +<package name="TO220ACS"> +<description><B>DIODE</B><p> +2-lead molded, vertical</description> +<wire x1="5.08" y1="-1.143" x2="4.953" y2="-4.064" width="0.1524" layer="21"/> +<wire x1="4.699" y1="-4.318" x2="4.953" y2="-4.064" width="0.1524" layer="21"/> +<wire x1="4.699" y1="-4.318" x2="-4.699" y2="-4.318" width="0.1524" layer="21"/> +<wire x1="-4.953" y1="-4.064" x2="-4.699" y2="-4.318" width="0.1524" layer="21"/> +<wire x1="-4.953" y1="-4.064" x2="-5.08" y2="-1.143" width="0.1524" layer="21"/> +<circle x="-4.4958" y="-3.7084" radius="0.254" width="0" layer="21"/> +<pad name="C" x="-2.54" y="-2.54" drill="1.016" shape="long" rot="R90"/> +<pad name="A" x="2.54" y="-2.54" drill="1.016" shape="long" rot="R90"/> +<text x="-5.08" y="-6.0452" size="1.016" layer="25" ratio="10">>NAME</text> +<text x="-5.08" y="-7.62" size="1.016" layer="27" ratio="10">>VALUE</text> +<rectangle x1="-5.334" y1="-0.762" x2="5.334" y2="0" layer="21"/> +<rectangle x1="-5.334" y1="-1.27" x2="-3.429" y2="-0.762" layer="21"/> +<rectangle x1="-3.429" y1="-1.27" x2="-1.651" y2="-0.762" layer="51"/> +<rectangle x1="3.429" y1="-1.27" x2="5.334" y2="-0.762" layer="21"/> +<rectangle x1="1.651" y1="-1.27" x2="3.429" y2="-0.762" layer="51"/> +<rectangle x1="-1.651" y1="-1.27" x2="1.651" y2="-0.762" layer="21"/> +</package> +<package name="0402"> +<description><b>CAPACITOR</b><p> +chip</description> +<wire x1="-0.245" y1="0.224" x2="0.245" y2="0.224" width="0.1524" layer="51"/> +<wire x1="0.245" y1="-0.224" x2="-0.245" y2="-0.224" width="0.1524" layer="51"/> +<smd name="1" x="-0.525" y="0" dx="0.575" dy="0.7" layer="1"/> +<smd name="2" x="0.525" y="0" dx="0.575" dy="0.7" layer="1"/> +<text x="-0.889" y="0.6985" size="1.016" layer="25">>NAME</text> +<text x="-1.0795" y="-1.778" size="1.016" layer="27">>VALUE</text> +<rectangle x1="-0.554" y1="-0.3048" x2="-0.254" y2="0.2951" layer="51"/> +<rectangle x1="0.2588" y1="-0.3048" x2="0.5588" y2="0.2951" layer="51"/> +</package> +<package name="2-SMD-3.2X1.5MM"> +<smd name="P$1" x="-1.25" y="0" dx="1.9" dy="1.1" layer="1" rot="R90"/> +<smd name="P$2" x="1.25" y="0" dx="1.9" dy="1.1" layer="1" rot="R90"/> +<wire x1="-0.6" y1="0.9" x2="0.6" y2="0.9" width="0.127" layer="51"/> +<wire x1="-0.6" y1="-0.9" x2="0.6" y2="-0.9" width="0.127" layer="51"/> +<text x="-2.54" y="1.27" size="1.27" layer="25">>NAME</text> +<text x="-2.54" y="-2.54" size="1.27" layer="27">>VALUE</text> +</package> +<package name="0603-CAP"> +<wire x1="-0.356" y1="0.332" x2="0.356" y2="0.332" width="0.1016" layer="51"/> +<wire x1="-0.356" y1="-0.319" x2="0.356" y2="-0.319" width="0.1016" layer="51"/> +<smd name="1" x="-0.8" y="0" dx="0.8" dy="0.95" layer="1"/> +<smd name="2" x="0.8" y="0" dx="0.8" dy="0.95" layer="1"/> +<text x="-0.889" y="1.397" size="1.016" layer="25">>NAME</text> +<text x="-1.016" y="-2.413" size="1.016" layer="27">>VALUE</text> +<rectangle x1="-0.8382" y1="-0.4" x2="-0.3381" y2="0.4" layer="51"/> +<rectangle x1="0.3302" y1="-0.4" x2="0.8303" y2="0.4" layer="51"/> +</package> +<package name="1210"> +<wire x1="-1.6" y1="1.3" x2="1.6" y2="1.3" width="0.127" layer="51"/> +<wire x1="1.6" y1="1.3" x2="1.6" y2="-1.3" width="0.127" layer="51"/> +<wire x1="1.6" y1="-1.3" x2="-1.6" y2="-1.3" width="0.127" layer="51"/> +<wire x1="-1.6" y1="-1.3" x2="-1.6" y2="1.3" width="0.127" layer="51"/> +<wire x1="-1.6" y1="1.3" x2="1.6" y2="1.3" width="0.2032" layer="51"/> +<wire x1="-1.6" y1="-1.3" x2="1.6" y2="-1.3" width="0.2032" layer="51"/> +<smd name="1" x="-1.6" y="0" dx="1.2" dy="2.5" layer="1"/> +<smd name="2" x="1.6" y="0" dx="1.2" dy="2.5" layer="1"/> +<text x="-2.07" y="1.77" size="1.016" layer="25">>NAME</text> +<text x="-2.17" y="-3.24" size="1.016" layer="27">>VALUE</text> +</package> +<package name="2220-C"> +<smd name="P$1" x="-2.6" y="0" dx="1.2" dy="5" layer="1"/> +<smd name="P$2" x="2.6" y="0" dx="1.2" dy="5" layer="1"/> +<text x="-1.5" y="3" size="0.6096" layer="125">>NAME</text> +<text x="-1.5" y="-3.5" size="0.6096" layer="127">>VALUE</text> +</package> +<package name="744777920-INDUCTOR"> +<smd name="P$1" x="0" y="3" dx="1.7" dy="2" layer="1"/> +<smd name="P$2" x="0" y="-3" dx="1.7" dy="2" layer="1"/> +<wire x1="-4" y1="0" x2="-4" y2="3" width="0.127" layer="21"/> +<wire x1="-4" y1="3" x2="-3" y2="4" width="0.127" layer="21" curve="-90"/> +<wire x1="-3" y1="4" x2="3" y2="4" width="0.127" layer="21"/> +<wire x1="3" y1="4" x2="4" y2="3" width="0.127" layer="21" curve="-90"/> +<wire x1="4" y1="3" x2="4" y2="-3" width="0.127" layer="21"/> +<wire x1="4" y1="-3" x2="3" y2="-4" width="0.127" layer="21" curve="-90"/> +<wire x1="3" y1="-4" x2="-3" y2="-4" width="0.127" layer="21"/> +<wire x1="-3" y1="-4" x2="-4" y2="-3" width="0.127" layer="21" curve="-90"/> +<wire x1="-4" y1="-3" x2="-4" y2="0" width="0.127" layer="21"/> +<rectangle x1="-4" y1="-4" x2="4" y2="4" layer="39"/> +<text x="5.08" y="2.54" size="1.016" layer="25">>NAME</text> +<text x="5.08" y="1.27" size="1.016" layer="27">>VALUE</text> +</package> +<package name="SPM6530-IND"> +<smd name="1" x="0" y="2.775" dx="3.4" dy="1.85" layer="1"/> +<smd name="2" x="0" y="-2.775" dx="3.4" dy="1.85" layer="1"/> +<wire x1="-3.25" y1="3.85" x2="-3.25" y2="-3.85" width="0.127" layer="21"/> +<wire x1="-3.25" y1="-3.85" x2="3.25" y2="-3.85" width="0.127" layer="21"/> +<wire x1="3.25" y1="-3.85" x2="3.25" y2="3.85" width="0.127" layer="21"/> +<wire x1="3.25" y1="3.85" x2="-3.25" y2="3.85" width="0.127" layer="21"/> +<text x="3.81" y="2.54" size="1.016" layer="25">>NAME</text> +<text x="3.81" y="-3.81" size="1.016" layer="27">>VALUE</text> +</package> +<package name="IHLP-5050FD-01-IND"> +<smd name="1" x="0" y="5.4102" dx="4.953" dy="2.9464" layer="1"/> +<smd name="2" x="0" y="-5.4102" dx="4.953" dy="2.9464" layer="1"/> +<wire x1="6.4516" y1="6.604" x2="6.4516" y2="-6.604" width="0.127" layer="21"/> +<wire x1="3.81" y1="-6.604" x2="6.4516" y2="-6.604" width="0.127" layer="21"/> +<wire x1="6.4516" y1="6.604" x2="3.81" y2="6.604" width="0.127" layer="21"/> +<wire x1="-3.81" y1="6.604" x2="-6.4516" y2="6.604" width="0.127" layer="21"/> +<wire x1="-6.4516" y1="6.604" x2="-6.4516" y2="-6.604" width="0.127" layer="21"/> +<wire x1="-6.4516" y1="-6.604" x2="-3.81" y2="-6.604" width="0.127" layer="21"/> +<text x="5.08" y="7.62" size="1.016" layer="25">>NAME</text> +<text x="5.08" y="-8.89" size="1.016" layer="27">>VALUE</text> +</package> +<package name="7443340330-IND"> +<smd name="P$1" x="0" y="3.35" dx="3" dy="2.3" layer="1"/> +<smd name="P$2" x="0" y="-3.35" dx="3" dy="2.3" layer="1"/> +<wire x1="-2" y1="4" x2="-4" y2="4" width="0.127" layer="21"/> +<wire x1="-4" y1="4" x2="-4" y2="-4" width="0.127" layer="21"/> +<wire x1="-4" y1="-4" x2="-2" y2="-4" width="0.127" layer="21"/> +<wire x1="2" y1="-4" x2="4" y2="-4" width="0.127" layer="21"/> +<wire x1="4" y1="-4" x2="4" y2="4" width="0.127" layer="21"/> +<wire x1="4" y1="4" x2="2" y2="4" width="0.127" layer="21"/> +<text x="3" y="5" size="1.016" layer="25">>NAME</text> +<text x="3" y="-6" size="1.016" layer="27">>VALUE</text> +<rectangle x1="-1.15" y1="2.95" x2="1.15" y2="4.45" layer="51"/> +<rectangle x1="-1.15" y1="-4.45" x2="1.15" y2="-2.95" layer="51"/> +</package> +<package name="0402-RES"> +<description><b>CAPACITOR</b><p> +chip</description> +<wire x1="-0.245" y1="0.224" x2="0.245" y2="0.224" width="0.1524" layer="51"/> +<wire x1="0.245" y1="-0.224" x2="-0.245" y2="-0.224" width="0.1524" layer="51"/> +<wire x1="-1.473" y1="0.483" x2="1.473" y2="0.483" width="0.0508" layer="39"/> +<wire x1="1.473" y1="0.483" x2="1.473" y2="-0.483" width="0.0508" layer="39"/> +<wire x1="1.473" y1="-0.483" x2="-1.473" y2="-0.483" width="0.0508" layer="39"/> +<wire x1="-1.473" y1="-0.483" x2="-1.473" y2="0.483" width="0.0508" layer="39"/> +<smd name="1" x="-0.65" y="0" dx="0.7" dy="0.9" layer="1"/> +<smd name="2" x="0.65" y="0" dx="0.7" dy="0.9" layer="1"/> +<text x="-0.889" y="0.6985" size="1.016" layer="25">>NAME</text> +<text x="-1.0795" y="-1.778" size="1.016" layer="27">>VALUE</text> +<rectangle x1="-0.554" y1="-0.3048" x2="-0.254" y2="0.2951" layer="51"/> +<rectangle x1="0.2588" y1="-0.3048" x2="0.5588" y2="0.2951" layer="51"/> +<rectangle x1="-0.1999" y1="-0.3" x2="0.1999" y2="0.3" layer="35"/> +<rectangle x1="-0.2032" y1="-0.3556" x2="0.2032" y2="0.3556" layer="21"/> +</package> +<package name="8X8-IND"> +<smd name="1" x="0" y="3.2" dx="2.2" dy="1.6" layer="1"/> +<smd name="2" x="0" y="-3.2" dx="2.2" dy="1.6" layer="1"/> +<wire x1="2" y1="-4" x2="4" y2="-4" width="0.127" layer="21"/> +<wire x1="4" y1="-4" x2="4" y2="4" width="0.127" layer="21"/> +<wire x1="4" y1="4" x2="2" y2="4" width="0.127" layer="21"/> +<wire x1="-2" y1="4" x2="-4" y2="4" width="0.127" layer="21"/> +<wire x1="-4" y1="4" x2="-4" y2="-4" width="0.127" layer="21"/> +<wire x1="-4" y1="-4" x2="-2" y2="-4" width="0.127" layer="21"/> +<text x="-5" y="5" size="1.27" layer="25">>NAME</text> +<text x="-5" y="-6" size="1.27" layer="27">>VALUE</text> +<rectangle x1="-3.81" y1="-3.81" x2="3.81" y2="3.81" layer="39"/> +</package> +<package name="744029100-IND"> +<smd name="1" x="0" y="1.1" dx="3.2" dy="1" layer="1"/> +<smd name="2" x="0" y="-1.1" dx="3.2" dy="1" layer="1"/> +<wire x1="-2" y1="2" x2="-2" y2="-2" width="0.127" layer="21"/> +<wire x1="-2" y1="-2" x2="2" y2="-2" width="0.127" layer="21"/> +<wire x1="2" y1="-2" x2="2" y2="2" width="0.127" layer="21"/> +<wire x1="2" y1="2" x2="-2" y2="2" width="0.127" layer="21"/> +<text x="-3" y="2.3" size="1.27" layer="25">>NAME</text> +<text x="-3" y="-3.6" size="1.27" layer="27">>VALUE</text> +</package> +<package name="7447709470-IND"> +<smd name="1" x="0" y="4.95" dx="5.4" dy="2.9" layer="1"/> +<smd name="2" x="0" y="-4.95" dx="5.4" dy="2.9" layer="1"/> +<wire x1="-3" y1="6" x2="-6" y2="6" width="0.127" layer="21"/> +<wire x1="-6" y1="6" x2="-6" y2="-6" width="0.127" layer="21"/> +<wire x1="-6" y1="-6" x2="-3" y2="-6" width="0.127" layer="21"/> +<wire x1="3" y1="-6" x2="6" y2="-6" width="0.127" layer="21"/> +<wire x1="6" y1="-6" x2="6" y2="6" width="0.127" layer="21"/> +<wire x1="6" y1="6" x2="3" y2="6" width="0.127" layer="21"/> +<text x="-7" y="8" size="1.27" layer="25">>NAME</text> +<text x="-7" y="-9" size="1.27" layer="27">>VALUE</text> +</package> +<package name="7447789002-IND"> +<smd name="1" x="0" y="3" dx="1.7" dy="2" layer="1"/> +<smd name="2" x="0" y="-3" dx="1.7" dy="2" layer="1"/> +<wire x1="2" y1="-4" x2="4" y2="-4" width="0.127" layer="21"/> +<wire x1="4" y1="-4" x2="4" y2="4" width="0.127" layer="21"/> +<wire x1="4" y1="4" x2="2" y2="4" width="0.127" layer="21"/> +<wire x1="-2" y1="4" x2="-4" y2="4" width="0.127" layer="21"/> +<wire x1="-4" y1="4" x2="-4" y2="-4" width="0.127" layer="21"/> +<wire x1="-4" y1="-4" x2="-2" y2="-4" width="0.127" layer="21"/> +<text x="-5" y="5" size="1.27" layer="25">>NAME</text> +<text x="-5" y="-6" size="1.27" layer="27">>VALUE</text> +<rectangle x1="-3.81" y1="-3.81" x2="3.81" y2="3.81" layer="39"/> +</package> +<package name="NRS5020"> +<smd name="P$1" x="-1.8" y="0" dx="1.5" dy="4" layer="1"/> +<smd name="P$2" x="1.8" y="0" dx="1.5" dy="4" layer="1"/> +<wire x1="-2.5" y1="2.5" x2="2.5" y2="2.5" width="0.127" layer="51"/> +<wire x1="2.5" y1="2.5" x2="2.5" y2="-2.5" width="0.127" layer="51"/> +<wire x1="2.5" y1="-2.5" x2="-2.5" y2="-2.5" width="0.127" layer="51"/> +<wire x1="-2.5" y1="-2.5" x2="-2.5" y2="2.5" width="0.127" layer="51"/> +</package> +</packages> +<symbols> +<symbol name="TS2"> +<wire x1="0" y1="1.905" x2="0" y2="2.54" width="0.254" layer="94"/> +<wire x1="-4.445" y1="1.905" x2="-3.175" y2="1.905" width="0.254" layer="94"/> +<wire x1="-4.445" y1="-1.905" x2="-3.175" y2="-1.905" width="0.254" layer="94"/> +<wire x1="-4.445" y1="1.905" x2="-4.445" y2="0" width="0.254" layer="94"/> +<wire x1="-4.445" y1="0" x2="-4.445" y2="-1.905" width="0.254" layer="94"/> +<wire x1="-2.54" y1="0" x2="-1.905" y2="0" width="0.1524" layer="94"/> +<wire x1="-1.27" y1="0" x2="-0.635" y2="0" width="0.1524" layer="94"/> +<wire x1="-4.445" y1="0" x2="-3.175" y2="0" width="0.1524" layer="94"/> +<wire x1="2.54" y1="2.54" x2="0" y2="2.54" width="0.1524" layer="94"/> +<wire x1="2.54" y1="-2.54" x2="0" y2="-2.54" width="0.1524" layer="94"/> +<wire x1="0" y1="-2.54" x2="-1.27" y2="1.905" width="0.254" layer="94"/> +<circle x="0" y="-2.54" radius="0.127" width="0.4064" layer="94"/> +<circle x="0" y="2.54" radius="0.127" width="0.4064" layer="94"/> +<text x="-6.35" y="-2.54" size="1.778" layer="95" rot="R90">>NAME</text> +<text x="-3.81" y="3.175" size="1.778" layer="96" rot="R90">>VALUE</text> +<pin name="P" x="0" y="-5.08" visible="pad" length="short" direction="pas" swaplevel="2" rot="R90"/> +<pin name="S" x="0" y="5.08" visible="pad" length="short" direction="pas" swaplevel="1" rot="R270"/> +<pin name="S1" x="2.54" y="5.08" visible="pad" length="short" direction="pas" swaplevel="1" rot="R270"/> +<pin name="P1" x="2.54" y="-5.08" visible="pad" length="short" direction="pas" swaplevel="2" rot="R90"/> +</symbol> +<symbol name="RESISTOR"> +<wire x1="-2.54" y1="0" x2="-2.159" y2="1.016" width="0.1524" layer="94"/> +<wire x1="-2.159" y1="1.016" x2="-1.524" y2="-1.016" width="0.1524" layer="94"/> +<wire x1="-1.524" y1="-1.016" x2="-0.889" y2="1.016" width="0.1524" layer="94"/> +<wire x1="-0.889" y1="1.016" x2="-0.254" y2="-1.016" width="0.1524" layer="94"/> +<wire x1="-0.254" y1="-1.016" x2="0.381" y2="1.016" width="0.1524" layer="94"/> +<wire x1="0.381" y1="1.016" x2="1.016" y2="-1.016" width="0.1524" layer="94"/> +<wire x1="1.016" y1="-1.016" x2="1.651" y2="1.016" width="0.1524" layer="94"/> +<wire x1="1.651" y1="1.016" x2="2.286" y2="-1.016" width="0.1524" layer="94"/> +<wire x1="2.286" y1="-1.016" x2="2.54" y2="0" width="0.1524" layer="94"/> +<text x="-3.81" y="1.4986" size="1.778" layer="95">>NAME</text> +<text x="-3.81" y="-3.302" size="1.778" layer="96">>VALUE</text> +<pin name="2" x="5.08" y="0" visible="off" length="short" direction="pas" swaplevel="1" rot="R180"/> +<pin name="1" x="-5.08" y="0" visible="off" length="short" direction="pas" swaplevel="1"/> +<text x="-3.81" y="-6.858" size="1.27" layer="97">>PRECISION</text> +<text x="-3.81" y="-5.08" size="1.27" layer="97">>PACKAGE</text> +</symbol> +<symbol name="RESONATOR"> +<wire x1="1.016" y1="0" x2="2.54" y2="0" width="0.1524" layer="94"/> +<wire x1="-2.54" y1="0" x2="-1.016" y2="0" width="0.1524" layer="94"/> +<wire x1="-0.381" y1="1.524" x2="-0.381" y2="-1.524" width="0.254" layer="94"/> +<wire x1="-0.381" y1="-1.524" x2="0.381" y2="-1.524" width="0.254" layer="94"/> +<wire x1="0.381" y1="-1.524" x2="0.381" y2="1.524" width="0.254" layer="94"/> +<wire x1="0.381" y1="1.524" x2="-0.381" y2="1.524" width="0.254" layer="94"/> +<wire x1="1.016" y1="1.778" x2="1.016" y2="-1.778" width="0.254" layer="94"/> +<wire x1="-1.016" y1="1.778" x2="-1.016" y2="-1.778" width="0.254" layer="94"/> +<text x="2.54" y="1.016" size="1.778" layer="95">>NAME</text> +<text x="2.54" y="-2.54" size="1.778" layer="96">>VALUE</text> +<pin name="2" x="2.54" y="0" visible="off" length="point" direction="pas" swaplevel="1" rot="R180"/> +<pin name="1" x="-2.54" y="0" visible="off" length="point" direction="pas" swaplevel="1"/> +</symbol> +<symbol name="CAP"> +<wire x1="0" y1="2.54" x2="0" y2="2.032" width="0.1524" layer="94"/> +<wire x1="0" y1="0" x2="0" y2="0.508" width="0.1524" layer="94"/> +<text x="1.524" y="2.921" size="1.778" layer="95">>NAME</text> +<text x="1.524" y="-2.159" size="1.778" layer="96">>VALUE</text> +<rectangle x1="-2.032" y1="0.508" x2="2.032" y2="1.016" layer="94"/> +<rectangle x1="-2.032" y1="1.524" x2="2.032" y2="2.032" layer="94"/> +<pin name="1" x="0" y="5.08" visible="off" length="short" direction="pas" swaplevel="1" rot="R270"/> +<pin name="2" x="0" y="-2.54" visible="off" length="short" direction="pas" swaplevel="1" rot="R90"/> +<text x="1.524" y="-4.064" size="1.27" layer="97">>PACKAGE</text> +<text x="1.524" y="-5.842" size="1.27" layer="97">>VOLTAGE</text> +<text x="1.524" y="-7.62" size="1.27" layer="97">>TYPE</text> +</symbol> +<symbol name="INDUCTOR"> +<wire x1="0" y1="5.08" x2="1.27" y2="3.81" width="0.254" layer="94" curve="-90" cap="flat"/> +<wire x1="0" y1="2.54" x2="1.27" y2="3.81" width="0.254" layer="94" curve="90" cap="flat"/> +<wire x1="0" y1="2.54" x2="1.27" y2="1.27" width="0.254" layer="94" curve="-90" cap="flat"/> +<wire x1="0" y1="0" x2="1.27" y2="1.27" width="0.254" layer="94" curve="90" cap="flat"/> +<wire x1="0" y1="0" x2="1.27" y2="-1.27" width="0.254" layer="94" curve="-90" cap="flat"/> +<wire x1="0" y1="-2.54" x2="1.27" y2="-1.27" width="0.254" layer="94" curve="90" cap="flat"/> +<wire x1="0" y1="-2.54" x2="1.27" y2="-3.81" width="0.254" layer="94" curve="-90" cap="flat"/> +<wire x1="0" y1="-5.08" x2="1.27" y2="-3.81" width="0.254" layer="94" curve="90" cap="flat"/> +<text x="-1.27" y="-5.08" size="1.778" layer="95" rot="R90">>NAME</text> +<text x="3.81" y="-5.08" size="1.778" layer="96" rot="R90">>VALUE</text> +<pin name="2" x="0" y="-7.62" visible="off" length="short" direction="pas" swaplevel="1" rot="R90"/> +<pin name="1" x="0" y="7.62" visible="off" length="short" direction="pas" swaplevel="1" rot="R270"/> +<text x="6.35" y="-5.08" size="1.27" layer="97" rot="R90">>PACKAGE</text> +</symbol> +</symbols> +<devicesets> +<deviceset name="2-8X4-5_SWITCH" prefix="S"> +<gates> +<gate name="G$1" symbol="TS2" x="0" y="0"/> +</gates> +<devices> +<device name="" package="TACT-SWITCH-KMR6"> +<connects> +<connect gate="G$1" pin="P" pad="P$1"/> +<connect gate="G$1" pin="P1" pad="P$2"/> +<connect gate="G$1" pin="S" pad="P$3"/> +<connect gate="G$1" pin="S1" pad="P$4"/> +</connects> +<technologies> +<technology name=""/> +</technologies> +</device> +<device name="SIDE" package="TACT-SWITCH-SIDE"> +<connects> +<connect gate="G$1" pin="P" pad="P$1"/> +<connect gate="G$1" pin="P1" pad="P$2"/> +<connect gate="G$1" pin="S" pad="P$3"/> +<connect gate="G$1" pin="S1" pad="P$4"/> +</connects> +<technologies> +<technology name=""/> +</technologies> +</device> +</devices> +</deviceset> +<deviceset name="RESISTOR" prefix="R" uservalue="yes"> +<description><b>Resistor</b> +Basic schematic elements and footprints for 0603, 1206, and PTH resistors.</description> +<gates> +<gate name="G$1" symbol="RESISTOR" x="0" y="0"/> +</gates> +<devices> +<device name="1206" package="1206"> +<connects> +<connect gate="G$1" pin="1" pad="1"/> +<connect gate="G$1" pin="2" pad="2"/> +</connects> +<technologies> +<technology name=""> +<attribute name="PACKAGE" value="1206" constant="no"/> +<attribute name="PRECISION" value="" constant="no"/> +</technology> +</technologies> +</device> +<device name="2010" package="R2010"> +<connects> +<connect gate="G$1" pin="1" pad="1"/> +<connect gate="G$1" pin="2" pad="2"/> +</connects> +<technologies> +<technology name=""> +<attribute name="PACKAGE" value="2010"/> +<attribute name="PRECISION" value="" constant="no"/> +</technology> +</technologies> +</device> +<device name="0805-RES" package="0805"> +<connects> +<connect gate="G$1" pin="1" pad="1"/> +<connect gate="G$1" pin="2" pad="2"/> +</connects> +<technologies> +<technology name=""> +<attribute name="PACKAGE" value="0805"/> +<attribute name="PRECISION" value="" constant="no"/> +</technology> +</technologies> +</device> +<device name="0603-RES" package="0603-RES"> +<connects> +<connect gate="G$1" pin="1" pad="1"/> +<connect gate="G$1" pin="2" pad="2"/> +</connects> +<technologies> +<technology name=""> +<attribute name="PACKAGE" value="0603"/> +<attribute name="PRECISION" value="" constant="no"/> +</technology> +</technologies> +</device> +<device name="2512" package="R2512"> +<connects> +<connect gate="G$1" pin="1" pad="1"/> +<connect gate="G$1" pin="2" pad="2"/> +</connects> +<technologies> +<technology name=""> +<attribute name="PACKAGE" value="2512"/> +<attribute name="PRECISION" value="" constant="no"/> +</technology> +</technologies> +</device> +<device name="TO220ACS" package="TO220ACS"> +<connects> +<connect gate="G$1" pin="1" pad="A"/> +<connect gate="G$1" pin="2" pad="C"/> +</connects> +<technologies> +<technology name=""/> +</technologies> +</device> +<device name="0402" package="0402"> +<connects> +<connect gate="G$1" pin="1" pad="1"/> +<connect gate="G$1" pin="2" pad="2"/> +</connects> +<technologies> +<technology name=""/> +</technologies> +</device> +</devices> +</deviceset> +<deviceset name="KHZ-CRYSTAL" prefix="Y"> +<gates> +<gate name="G$1" symbol="RESONATOR" x="0" y="0"/> +</gates> +<devices> +<device name="" package="2-SMD-3.2X1.5MM"> +<connects> +<connect gate="G$1" pin="1" pad="P$1"/> +<connect gate="G$1" pin="2" pad="P$2"/> +</connects> +<technologies> +<technology name=""/> +</technologies> +</device> +</devices> +</deviceset> +<deviceset name="CAP" prefix="C" uservalue="yes"> +<description><b>Capacitor</b> +Standard 0603 ceramic capacitor, and 0.1" leaded capacitor.</description> +<gates> +<gate name="G$1" symbol="CAP" x="0" y="0"/> +</gates> +<devices> +<device name="0805" package="0805"> +<connects> +<connect gate="G$1" pin="1" pad="1"/> +<connect gate="G$1" pin="2" pad="2"/> +</connects> +<technologies> +<technology name=""> +<attribute name="PACKAGE" value="0805"/> +<attribute name="TYPE" value="" constant="no"/> +<attribute name="VOLTAGE" value="" constant="no"/> +</technology> +</technologies> +</device> +<device name="0603-CAP" package="0603-CAP"> +<connects> +<connect gate="G$1" pin="1" pad="1"/> +<connect gate="G$1" pin="2" pad="2"/> +</connects> +<technologies> +<technology name=""> +<attribute name="PACKAGE" value="0603"/> +<attribute name="TYPE" value="" constant="no"/> +<attribute name="VOLTAGE" value="" constant="no"/> +</technology> +</technologies> +</device> +<device name="1210" package="1210"> +<connects> +<connect gate="G$1" pin="1" pad="1"/> +<connect gate="G$1" pin="2" pad="2"/> +</connects> +<technologies> +<technology name=""> +<attribute name="PACKAGE" value="1210" constant="no"/> +<attribute name="TYPE" value="" constant="no"/> +<attribute name="VOLTAGE" value="" constant="no"/> +</technology> +</technologies> +</device> +<device name="1206" package="1206"> +<connects> +<connect gate="G$1" pin="1" pad="1"/> +<connect gate="G$1" pin="2" pad="2"/> +</connects> +<technologies> +<technology name=""> +<attribute name="PACKAGE" value="1206" constant="no"/> +<attribute name="TYPE" value="" constant="no"/> +<attribute name="VOLTAGE" value="" constant="no"/> +</technology> +</technologies> +</device> +<device name="2220" package="2220-C"> +<connects> +<connect gate="G$1" pin="1" pad="P$1"/> +<connect gate="G$1" pin="2" pad="P$2"/> +</connects> +<technologies> +<technology name=""/> +</technologies> +</device> +<device name="0402" package="0402"> +<connects> +<connect gate="G$1" pin="1" pad="1"/> +<connect gate="G$1" pin="2" pad="2"/> +</connects> +<technologies> +<technology name=""/> +</technologies> +</device> +</devices> +</deviceset> +<deviceset name="INDUCTOR" prefix="L" uservalue="yes"> +<gates> +<gate name="G$1" symbol="INDUCTOR" x="0" y="0"/> +</gates> +<devices> +<device name="-744777920" package="744777920-INDUCTOR"> +<connects> +<connect gate="G$1" pin="1" pad="P$1"/> +<connect gate="G$1" pin="2" pad="P$2"/> +</connects> +<technologies> +<technology name=""/> +</technologies> +</device> +<device name="-0805" package="0805"> +<connects> +<connect gate="G$1" pin="1" pad="1"/> +<connect gate="G$1" pin="2" pad="2"/> +</connects> +<technologies> +<technology name=""> +<attribute name="PACKAGE" value="0805"/> +</technology> +</technologies> +</device> +<device name="-SPM6530" package="SPM6530-IND"> +<connects> +<connect gate="G$1" pin="1" pad="1"/> +<connect gate="G$1" pin="2" pad="2"/> +</connects> +<technologies> +<technology name=""/> +</technologies> +</device> +<device name="-IHLP-5050FD-01" package="IHLP-5050FD-01-IND"> +<connects> +<connect gate="G$1" pin="1" pad="1"/> +<connect gate="G$1" pin="2" pad="2"/> +</connects> +<technologies> +<technology name=""/> +</technologies> +</device> +<device name="-7443340330" package="7443340330-IND"> +<connects> +<connect gate="G$1" pin="1" pad="P$1"/> +<connect gate="G$1" pin="2" pad="P$2"/> +</connects> +<technologies> +<technology name=""> +<attribute name="PACKAGE" value="7443340330"/> +</technology> +</technologies> +</device> +<device name="-0402" package="0402-RES"> +<connects> +<connect gate="G$1" pin="1" pad="1"/> +<connect gate="G$1" pin="2" pad="2"/> +</connects> +<technologies> +<technology name=""> +<attribute name="PACKAGE" value="0402"/> +</technology> +</technologies> +</device> +<device name="-744778002" package="8X8-IND"> +<connects> +<connect gate="G$1" pin="1" pad="1"/> +<connect gate="G$1" pin="2" pad="2"/> +</connects> +<technologies> +<technology name=""/> +</technologies> +</device> +<device name="-744029100" package="744029100-IND"> +<connects> +<connect gate="G$1" pin="1" pad="1"/> +<connect gate="G$1" pin="2" pad="2"/> +</connects> +<technologies> +<technology name=""/> +</technologies> +</device> +<device name="-7447709470" package="7447709470-IND"> +<connects> +<connect gate="G$1" pin="1" pad="1"/> +<connect gate="G$1" pin="2" pad="2"/> +</connects> +<technologies> +<technology name=""/> +</technologies> +</device> +<device name="-7447789002" package="7447789002-IND"> +<connects> +<connect gate="G$1" pin="1" pad="1"/> +<connect gate="G$1" pin="2" pad="2"/> +</connects> +<technologies> +<technology name=""/> +</technologies> +</device> +<device name="" package="NRS5020"> +<connects> +<connect gate="G$1" pin="1" pad="P$1"/> +<connect gate="G$1" pin="2" pad="P$2"/> +</connects> +<technologies> +<technology name=""/> +</technologies> +</device> +<device name="-0603" package="0603-CAP"> +<connects> +<connect gate="G$1" pin="1" pad="2"/> +<connect gate="G$1" pin="2" pad="1"/> +</connects> +<technologies> +<technology name=""/> +</technologies> +</device> +</devices> +</deviceset> +</devicesets> +</library> +<library name="supply1"> +<description><b>Supply Symbols</b><p> + GND, VCC, 0V, +5V, -5V, etc.<p> + Please keep in mind, that these devices are necessary for the + automatic wiring of the supply signals.<p> + The pin name defined in the symbol is identical to the net which is to be wired automatically.<p> + In this library the device names are the same as the pin names of the symbols, therefore the correct signal names appear next to the supply symbols in the schematic.<p> + <author>Created by librarian@cadsoft.de</author></description> +<packages> +</packages> +<symbols> +<symbol name="+3V3" urn="urn:adsk.eagle:symbol:26950/1"> +<wire x1="1.27" y1="-1.905" x2="0" y2="0" width="0.254" layer="94"/> +<wire x1="0" y1="0" x2="-1.27" y2="-1.905" width="0.254" layer="94"/> +<text x="-2.54" y="-5.08" size="1.778" layer="96" rot="R90">>VALUE</text> +<pin name="+3V3" x="0" y="-2.54" visible="off" length="short" direction="sup" rot="R90"/> +</symbol> +<symbol name="+5V" urn="urn:adsk.eagle:symbol:26929/1"> +<wire x1="1.27" y1="-1.905" x2="0" y2="0" width="0.254" layer="94"/> +<wire x1="0" y1="0" x2="-1.27" y2="-1.905" width="0.254" layer="94"/> +<text x="-2.54" y="-5.08" size="1.778" layer="96" rot="R90">>VALUE</text> +<pin name="+5V" x="0" y="-2.54" visible="off" length="short" direction="sup" rot="R90"/> +</symbol> +<symbol name="GND" urn="urn:adsk.eagle:symbol:26925/1"> +<wire x1="-1.905" y1="0" x2="1.905" y2="0" width="0.254" layer="94"/> +<text x="-2.54" y="-2.54" size="1.778" layer="96">>VALUE</text> +<pin name="GND" x="0" y="2.54" visible="off" length="short" direction="sup" rot="R270"/> +</symbol> +</symbols> +<devicesets> +<deviceset name="+3V3" urn="urn:adsk.eagle:component:26981/1" prefix="+3V3"> +<description><b>SUPPLY SYMBOL</b></description> +<gates> +<gate name="G$1" symbol="+3V3" x="0" y="0"/> +</gates> +<devices> +<device name=""> +<technologies> +<technology name=""/> +</technologies> +</device> +</devices> +</deviceset> +<deviceset name="+5V" urn="urn:adsk.eagle:component:26963/1" prefix="P+"> +<description><b>SUPPLY SYMBOL</b></description> +<gates> +<gate name="1" symbol="+5V" x="0" y="0"/> +</gates> +<devices> +<device name=""> +<technologies> +<technology name=""/> +</technologies> +</device> +</devices> +</deviceset> +<deviceset name="GND" urn="urn:adsk.eagle:component:26954/1" prefix="GND"> +<description><b>SUPPLY SYMBOL</b></description> +<gates> +<gate name="1" symbol="GND" x="0" y="0"/> +</gates> +<devices> +<device name=""> +<technologies> +<technology name=""/> +</technologies> +</device> +</devices> +</deviceset> +</devicesets> +</library> +<library name="power"> +<packages> +<package name="SOT23-5"> +<description><b>Small Outline Transistor</b>, 5 lead</description> +<wire x1="-1.544" y1="0.713" x2="1.544" y2="0.713" width="0.1524" layer="51"/> +<wire x1="1.544" y1="0.713" x2="1.544" y2="-0.712" width="0.1524" layer="51"/> +<wire x1="1.544" y1="-0.712" x2="-1.544" y2="-0.712" width="0.1524" layer="51"/> +<wire x1="-1.544" y1="-0.712" x2="-1.544" y2="0.713" width="0.1524" layer="51"/> +<smd name="5" x="-0.95" y="1.306" dx="0.5334" dy="1.1938" layer="1"/> +<smd name="4" x="0.95" y="1.306" dx="0.5334" dy="1.1938" layer="1"/> +<smd name="1" x="-0.95" y="-1.306" dx="0.5334" dy="1.1938" layer="1"/> +<smd name="2" x="0" y="-1.306" dx="0.5334" dy="1.1938" layer="1"/> +<smd name="3" x="0.95" y="-1.306" dx="0.5334" dy="1.1938" layer="1"/> +<text x="-1.778" y="-1.778" size="1.27" layer="25" ratio="10" rot="R90">>NAME</text> +<text x="3.048" y="-1.778" size="1.27" layer="27" ratio="10" rot="R90">>VALUE</text> +<rectangle x1="-1.1875" y1="0.7126" x2="-0.7125" y2="1.5439" layer="51"/> +<rectangle x1="0.7125" y1="0.7126" x2="1.1875" y2="1.5439" layer="51"/> +<rectangle x1="-1.1875" y1="-1.5437" x2="-0.7125" y2="-0.7124" layer="51"/> +<rectangle x1="-0.2375" y1="-1.5437" x2="0.2375" y2="-0.7124" layer="51"/> +<rectangle x1="0.7125" y1="-1.5437" x2="1.1875" y2="-0.7124" layer="51"/> +<wire x1="-1.5" y1="-1.9" x2="-1.5" y2="-1.2" width="0.127" layer="21"/> +</package> +</packages> +<symbols> +<symbol name="VREG-AP2112"> +<pin name="VIN" x="-12.7" y="2.54" length="middle"/> +<pin name="EN" x="-12.7" y="-2.54" length="middle"/> +<pin name="GND" x="0" y="-10.16" length="middle" rot="R90"/> +<pin name="VOUT" x="12.7" y="2.54" length="middle" rot="R180"/> +<wire x1="-7.62" y1="5.08" x2="-7.62" y2="-5.08" width="0.254" layer="94"/> +<wire x1="-7.62" y1="-5.08" x2="7.62" y2="-5.08" width="0.254" layer="94"/> +<wire x1="7.62" y1="-5.08" x2="7.62" y2="5.08" width="0.254" layer="94"/> +<wire x1="7.62" y1="5.08" x2="-7.62" y2="5.08" width="0.254" layer="94"/> +<text x="-2.54" y="7.62" size="1.27" layer="95">>NAME</text> +<text x="2.54" y="-7.62" size="1.27" layer="96">>VALUE</text> +</symbol> +</symbols> +<devicesets> +<deviceset name="VREG-AP2112" prefix="U"> +<gates> +<gate name="G$1" symbol="VREG-AP2112" x="0" y="0"/> +</gates> +<devices> +<device name="" package="SOT23-5"> +<connects> +<connect gate="G$1" pin="EN" pad="3"/> +<connect gate="G$1" pin="GND" pad="2"/> +<connect gate="G$1" pin="VIN" pad="1"/> +<connect gate="G$1" pin="VOUT" pad="5"/> +</connects> +<technologies> +<technology name=""/> +</technologies> +</device> +</devices> +</deviceset> +</devicesets> +</library> +<library name="connector"> +<packages> +<package name="DX4R005HJ5_100"> +<wire x1="3.25" y1="-2.6" x2="-3.25" y2="-2.6" width="0.127" layer="21"/> +<wire x1="-3.25" y1="2.6" x2="-3.25" y2="0" width="0.127" layer="51"/> +<wire x1="3.25" y1="2.6" x2="3.25" y2="0" width="0.127" layer="51"/> +<wire x1="-1.75" y1="2.6" x2="1.75" y2="2.6" width="0.127" layer="51"/> +<wire x1="-3.25" y1="-2.2" x2="-3.25" y2="-2.6" width="0.127" layer="51"/> +<wire x1="3.25" y1="-2.6" x2="3.25" y2="-2.2" width="0.127" layer="51"/> +<smd name="GND@3" x="-2.175" y="-1.1" dx="2.15" dy="1.9" layer="1"/> +<smd name="GND@4" x="2.175" y="-1.1" dx="2.15" dy="1.9" layer="1"/> +<smd name="GND@1" x="-2.5" y="1.95" dx="1.2" dy="1.3" layer="1"/> +<smd name="GND@2" x="2.5" y="1.95" dx="1.2" dy="1.3" layer="1"/> +<smd name="D+" x="0" y="1.6" dx="0.35" dy="1.35" layer="1"/> +<smd name="D-" x="-0.65" y="1.6" dx="0.35" dy="1.35" layer="1"/> +<smd name="VBUS" x="-1.3" y="1.6" dx="0.35" dy="1.35" layer="1"/> +<smd name="ID" x="0.65" y="1.6" dx="0.35" dy="1.35" layer="1"/> +<smd name="GND" x="1.3" y="1.6" dx="0.35" dy="1.35" layer="1"/> +<text x="4.1275" y="-1.5875" size="0.6096" layer="27" font="vector" rot="R90">>Value</text> +<text x="-3.4925" y="-1.27" size="0.6096" layer="25" font="vector" rot="R90">>Name</text> +</package> +<package name="DX4R005HJ5"> +<wire x1="3.25" y1="-2.6" x2="-3.25" y2="-2.6" width="0.127" layer="51"/> +<wire x1="-3.25" y1="2.6" x2="-3.25" y2="0" width="0.127" layer="21"/> +<wire x1="3.25" y1="2.6" x2="3.25" y2="0" width="0.127" layer="21"/> +<wire x1="-1.75" y1="2.6" x2="1.75" y2="2.6" width="0.127" layer="51"/> +<wire x1="-3.25" y1="-2.2" x2="-3.25" y2="-2.6" width="0.127" layer="51"/> +<wire x1="3.25" y1="-2.6" x2="3.25" y2="-2.2" width="0.127" layer="51"/> +<smd name="GND@3" x="-2.475" y="-1.1" dx="2.75" dy="1.9" layer="1"/> +<smd name="GND@4" x="2.475" y="-1.1" dx="2.75" dy="1.9" layer="1"/> +<smd name="GND@1" x="-2.5" y="1.95" dx="1.2" dy="1.3" layer="1"/> +<smd name="GND@2" x="2.5" y="1.95" dx="1.2" dy="1.3" layer="1"/> +<smd name="D+" x="0" y="1.9" dx="0.4" dy="1.95" layer="1"/> +<smd name="D-" x="-0.65" y="1.9" dx="0.4" dy="1.95" layer="1"/> +<smd name="VBUS" x="-1.3" y="1.9" dx="0.4" dy="1.95" layer="1"/> +<smd name="ID" x="0.65" y="1.9" dx="0.4" dy="1.95" layer="1"/> +<smd name="GND" x="1.3" y="1.9" dx="0.4" dy="1.95" layer="1"/> +<text x="-3.4925" y="-1.27" size="0.6096" layer="25" font="vector" rot="R90">>Name</text> +<text x="4.1275" y="-1.5875" size="0.6096" layer="25" font="vector" rot="R90">>Value</text> +</package> +<package name="DX4R005HJ5_64"> +<wire x1="3.25" y1="-2.6" x2="-3.25" y2="-2.6" width="0.127" layer="21"/> +<wire x1="-3.25" y1="2.6" x2="-3.25" y2="0" width="0.127" layer="51"/> +<wire x1="3.25" y1="2.6" x2="3.25" y2="0" width="0.127" layer="51"/> +<wire x1="-1.75" y1="2.6" x2="1.75" y2="2.6" width="0.127" layer="51"/> +<wire x1="-3.25" y1="-2.2" x2="-3.25" y2="-2.6" width="0.127" layer="51"/> +<wire x1="3.25" y1="-2.6" x2="3.25" y2="-2.2" width="0.127" layer="51"/> +<smd name="GND@3" x="-2.175" y="-1.1" dx="2.15" dy="1.9" layer="1"/> +<smd name="GND@4" x="2.175" y="-1.1" dx="2.15" dy="1.9" layer="1"/> +<smd name="GND@1" x="-2.5" y="1.95" dx="1.2" dy="1.3" layer="1"/> +<smd name="GND@2" x="2.5" y="1.95" dx="1.2" dy="1.3" layer="1"/> +<smd name="D+" x="0" y="1.6" dx="0.254" dy="1.35" layer="1"/> +<smd name="D-" x="-0.65" y="1.6" dx="0.254" dy="1.35" layer="1"/> +<smd name="VBUS" x="-1.3" y="1.6" dx="0.254" dy="1.35" layer="1"/> +<smd name="ID" x="0.65" y="1.6" dx="0.254" dy="1.35" layer="1"/> +<smd name="GND" x="1.3" y="1.6" dx="0.254" dy="1.35" layer="1"/> +<text x="-3.4925" y="-1.27" size="0.6096" layer="25" font="vector" rot="R90">>Name</text> +<text x="4.1275" y="-1.5875" size="0.6096" layer="27" font="vector" rot="R90">>Value</text> +</package> +<package name="USB_MICRO_609-4613-1-ND"> +<smd name="HD0" x="-3.8" y="0" dx="1.9" dy="1.8" layer="1"/> +<smd name="HD4" x="-3.1" y="2.55" dx="2.1" dy="1.6" layer="1"/> +<smd name="HD5" x="3.1" y="2.55" dx="2.1" dy="1.6" layer="1"/> +<smd name="D+" x="0" y="2.675" dx="0.4" dy="1.35" layer="1"/> +<smd name="D-" x="-0.65" y="2.675" dx="0.4" dy="1.35" layer="1"/> +<smd name="VBUS" x="-1.3" y="2.675" dx="0.4" dy="1.35" layer="1"/> +<smd name="ID" x="0.65" y="2.675" dx="0.4" dy="1.35" layer="1"/> +<smd name="GND" x="1.3" y="2.675" dx="0.4" dy="1.35" layer="1"/> +<text x="4.9275" y="1.2125" size="0.6096" layer="27" font="vector" rot="R90">>Value</text> +<text x="-4.3925" y="1.13" size="0.6096" layer="25" font="vector" rot="R90">>Name</text> +<smd name="HD1" x="-1.05" y="0" dx="1.9" dy="1.8" layer="1"/> +<smd name="HD2" x="1.05" y="0" dx="1.9" dy="1.8" layer="1"/> +<smd name="HD3" x="3.8" y="0" dx="1.9" dy="1.8" layer="1"/> +<wire x1="-4.7" y1="-1.45" x2="4.7" y2="-1.45" width="0.127" layer="51"/> +<text x="0" y="-1.3" size="0.8128" layer="51" font="vector" align="bottom-center">\\ PCB Edge /</text> +<wire x1="-3.9" y1="3" x2="-3.9" y2="-2.5" width="0.127" layer="51"/> +<wire x1="-3.9" y1="-2.5" x2="3.9" y2="-2.5" width="0.127" layer="51"/> +<wire x1="3.9" y1="-2.5" x2="3.9" y2="3" width="0.127" layer="51"/> +<wire x1="3.9" y1="3" x2="-3.9" y2="3" width="0.127" layer="51"/> +<wire x1="-3.9" y1="1.1" x2="-3.9" y2="1.5" width="0.127" layer="21"/> +<wire x1="3.9" y1="1.1" x2="3.9" y2="1.5" width="0.127" layer="21"/> +<wire x1="1.8" y1="3" x2="1.7" y2="3" width="0.127" layer="21"/> +<wire x1="-1.7" y1="3" x2="-1.8" y2="3" width="0.127" layer="21"/> +<wire x1="4.4" y1="3" x2="4.7" y2="3" width="0.127" layer="21"/> +<wire x1="-4.4" y1="3" x2="-4.7" y2="3" width="0.127" layer="21"/> +<wire x1="-3.9" y1="3.6" x2="-3.9" y2="3.8" width="0.127" layer="21"/> +<wire x1="3.9" y1="3.6" x2="3.9" y2="3.8" width="0.127" layer="21"/> +</package> +</packages> +<symbols> +<symbol name="USB-1"> +<wire x1="6.35" y1="-2.54" x2="6.35" y2="2.54" width="0.254" layer="94"/> +<wire x1="6.35" y1="2.54" x2="-3.81" y2="2.54" width="0.254" layer="94"/> +<wire x1="-3.81" y1="2.54" x2="-3.81" y2="-2.54" width="0.254" layer="94"/> +<text x="-2.54" y="-1.27" size="2.54" layer="94">USB</text> +<text x="-4.445" y="-1.905" size="1.27" layer="95" font="vector" rot="R90">>Name</text> +<text x="8.255" y="-1.905" size="1.27" layer="96" font="vector" rot="R90">>Value</text> +<pin name="D+" x="5.08" y="5.08" visible="pad" length="short" rot="R270"/> +<pin name="D-" x="2.54" y="5.08" visible="pad" length="short" rot="R270"/> +<pin name="VBUS" x="0" y="5.08" visible="pad" length="short" rot="R270"/> +<pin name="GND" x="-2.54" y="5.08" visible="pad" length="short" rot="R270"/> +</symbol> +</symbols> +<devicesets> +<deviceset name="USB" prefix="X"> +<description>SMD micro USB connector as found in the fablab inventory. +Three footprint variants included: +<ol> +<li>609-4613-1-ND used by Jake +<li> original, as described by manufacturer's datasheet +<li> for milling with the 1/100" bit +<li> for milling with the 1/64" bit +</ol> +<p>Made by Zaerc.</description> +<gates> +<gate name="G$1" symbol="USB-1" x="0" y="0"/> +</gates> +<devices> +<device name="_1/100" package="DX4R005HJ5_100"> +<connects> +<connect gate="G$1" pin="D+" pad="D+"/> +<connect gate="G$1" pin="D-" pad="D-"/> +<connect gate="G$1" pin="GND" pad="GND"/> +<connect gate="G$1" pin="VBUS" pad="VBUS"/> +</connects> +<technologies> +<technology name=""/> +</technologies> +</device> +<device name="_ORIG" package="DX4R005HJ5"> +<connects> +<connect gate="G$1" pin="D+" pad="D+"/> +<connect gate="G$1" pin="D-" pad="D-"/> +<connect gate="G$1" pin="GND" pad="GND"/> +<connect gate="G$1" pin="VBUS" pad="VBUS"/> +</connects> +<technologies> +<technology name=""/> +</technologies> +</device> +<device name="_1/64" package="DX4R005HJ5_64"> +<connects> +<connect gate="G$1" pin="D+" pad="D+"/> +<connect gate="G$1" pin="D-" pad="D-"/> +<connect gate="G$1" pin="GND" pad="GND"/> +<connect gate="G$1" pin="VBUS" pad="VBUS"/> +</connects> +<technologies> +<technology name=""/> +</technologies> +</device> +<device name="" package="USB_MICRO_609-4613-1-ND"> +<connects> +<connect gate="G$1" pin="D+" pad="D+"/> +<connect gate="G$1" pin="D-" pad="D-"/> +<connect gate="G$1" pin="GND" pad="GND"/> +<connect gate="G$1" pin="VBUS" pad="VBUS"/> +</connects> +<technologies> +<technology name=""/> +</technologies> +</device> +</devices> +</deviceset> +</devicesets> +</library> +</libraries> +<attributes> +</attributes> +<variantdefs> +</variantdefs> +<classes> +<class number="0" name="default" width="0" drill="0"> +</class> +</classes> +<parts> +<part name="U1" library="microcontrollers" deviceset="ATSAMD51J" device="QFN64"/> +<part name="J1" library="SparkFun-Connectors" deviceset="CORTEX_JTAG_DEBUG" device="_SMD" value="JTAG"/> +<part name="S1" library="passives" deviceset="2-8X4-5_SWITCH" device=""/> +<part name="Y1" library="passives" deviceset="KHZ-CRYSTAL" device=""/> +<part name="C1" library="passives" deviceset="CAP" device="0805" value="10uF"/> +<part name="L1" library="passives" deviceset="INDUCTOR" device="-0805" value="10uH"/> +<part name="+3V1" library="supply1" deviceset="+3V3" device=""/> +<part name="P+1" library="supply1" deviceset="+5V" device=""/> +<part name="GND1" library="supply1" deviceset="GND" device=""/> +<part name="C2" library="passives" deviceset="CAP" device="0805" value="12pF"/> +<part name="C3" library="passives" deviceset="CAP" device="0805" value="12pF"/> +<part name="GND2" library="supply1" deviceset="GND" device=""/> +<part name="GND3" library="supply1" deviceset="GND" device=""/> +<part name="U2" library="power" deviceset="VREG-AP2112" device=""/> +<part name="C4" library="passives" deviceset="CAP" device="0805" value="1uF"/> +<part name="C5" library="passives" deviceset="CAP" device="0805" value="10uF"/> +<part name="GND4" library="supply1" deviceset="GND" device=""/> +<part name="C6" library="passives" deviceset="CAP" device="0805" value="0.1uF"/> +<part name="+3V2" library="supply1" deviceset="+3V3" device=""/> +<part name="GND5" library="supply1" deviceset="GND" device=""/> +<part name="GND6" library="supply1" deviceset="GND" device=""/> +<part name="R2" library="passives" deviceset="RESISTOR" device="0805-RES" value="10k"/> +<part name="+3V3" library="supply1" deviceset="+3V3" device=""/> +<part name="R3" library="passives" deviceset="RESISTOR" device="0805-RES" value="10k"/> +<part name="+3V4" library="supply1" deviceset="+3V3" device=""/> +<part name="GND7" library="supply1" deviceset="GND" device=""/> +<part name="+3V5" library="supply1" deviceset="+3V3" device=""/> +<part name="C7" library="passives" deviceset="CAP" device="0805" value="1uF"/> +<part name="X1" library="connector" deviceset="USB" device=""/> +<part name="P+2" library="supply1" deviceset="+5V" device=""/> +<part name="GND8" library="supply1" deviceset="GND" device=""/> +</parts> +<sheets> +<sheet> +<plain> +</plain> +<instances> +<instance part="U1" gate="G$1" x="38.1" y="144.78" smashed="yes"> +<attribute name="NAME" x="33.02" y="152.4" size="1.778" layer="95"/> +<attribute name="VALUE" x="33.02" y="2.54" size="1.778" layer="96"/> +</instance> +<instance part="J1" gate="J1" x="-53.34" y="30.48" smashed="yes"> +<attribute name="NAME" x="-66.04" y="38.354" size="1.778" layer="95" font="vector"/> +<attribute name="VALUE" x="-66.04" y="20.574" size="1.778" layer="96" font="vector"/> +</instance> +<instance part="S1" gate="G$1" x="-20.32" y="17.78" smashed="yes"> +<attribute name="NAME" x="-26.67" y="15.24" size="1.778" layer="95" rot="R90"/> +<attribute name="VALUE" x="-38.1" y="7.62" size="1.778" layer="96"/> +</instance> +<instance part="Y1" gate="G$1" x="96.52" y="142.24" smashed="yes" rot="R270"> +<attribute name="NAME" x="97.536" y="139.7" size="1.778" layer="95" rot="R270"/> +<attribute name="VALUE" x="93.98" y="139.7" size="1.778" layer="96" rot="R270"/> +</instance> +<instance part="C1" gate="G$1" x="-78.74" y="127" smashed="yes"> +<attribute name="NAME" x="-77.216" y="129.921" size="1.778" layer="95"/> +<attribute name="VALUE" x="-77.216" y="124.841" size="1.778" layer="96"/> +<attribute name="PACKAGE" x="-77.216" y="122.936" size="1.27" layer="97"/> +<attribute name="VOLTAGE" x="-77.216" y="121.158" size="1.27" layer="97"/> +<attribute name="TYPE" x="-77.216" y="119.38" size="1.27" layer="97"/> +</instance> +<instance part="L1" gate="G$1" x="-10.16" y="114.3" smashed="yes" rot="R270"> +<attribute name="NAME" x="-15.24" y="115.57" size="1.778" layer="95"/> +<attribute name="VALUE" x="-15.24" y="110.49" size="1.778" layer="96"/> +<attribute name="PACKAGE" x="-15.24" y="107.95" size="1.27" layer="97"/> +</instance> +<instance part="+3V1" gate="G$1" x="-78.74" y="43.18" smashed="yes"> +<attribute name="VALUE" x="-81.28" y="38.1" size="1.778" layer="96" rot="R90"/> +</instance> +<instance part="P+1" gate="1" x="-78.74" y="152.4" smashed="yes"> +<attribute name="VALUE" x="-81.28" y="147.32" size="1.778" layer="96" rot="R90"/> +</instance> +<instance part="GND1" gate="1" x="-78.74" y="15.24" smashed="yes"> +<attribute name="VALUE" x="-81.28" y="12.7" size="1.778" layer="96"/> +</instance> +<instance part="C2" gate="G$1" x="109.22" y="144.78" smashed="yes" rot="R90"> +<attribute name="NAME" x="106.299" y="146.304" size="1.778" layer="95" rot="R90"/> +<attribute name="VALUE" x="111.379" y="146.304" size="1.778" layer="96" rot="R90"/> +<attribute name="PACKAGE" x="113.284" y="146.304" size="1.27" layer="97" rot="R90"/> +<attribute name="VOLTAGE" x="115.062" y="146.304" size="1.27" layer="97" rot="R90"/> +<attribute name="TYPE" x="116.84" y="146.304" size="1.27" layer="97" rot="R90"/> +</instance> +<instance part="C3" gate="G$1" x="109.22" y="134.62" smashed="yes" rot="R90"> +<attribute name="NAME" x="106.299" y="136.144" size="1.778" layer="95" rot="R90"/> +<attribute name="VALUE" x="111.379" y="136.144" size="1.778" layer="96" rot="R90"/> +<attribute name="PACKAGE" x="113.284" y="136.144" size="1.27" layer="97" rot="R90"/> +<attribute name="VOLTAGE" x="115.062" y="136.144" size="1.27" layer="97" rot="R90"/> +<attribute name="TYPE" x="116.84" y="136.144" size="1.27" layer="97" rot="R90"/> +</instance> +<instance part="GND2" gate="1" x="121.92" y="144.78" smashed="yes" rot="R90"> +<attribute name="VALUE" x="124.46" y="142.24" size="1.778" layer="96" rot="R90"/> +</instance> +<instance part="GND3" gate="1" x="121.92" y="134.62" smashed="yes" rot="R90"> +<attribute name="VALUE" x="124.46" y="132.08" size="1.778" layer="96" rot="R90"/> +</instance> +<instance part="U2" gate="G$1" x="-60.96" y="139.7" smashed="yes"> +<attribute name="NAME" x="-63.5" y="147.32" size="1.27" layer="95"/> +<attribute name="VALUE" x="-58.42" y="132.08" size="1.27" layer="96"/> +</instance> +<instance part="C4" gate="G$1" x="-7.62" y="93.98" smashed="yes"> +<attribute name="NAME" x="-6.096" y="96.901" size="1.778" layer="95"/> +<attribute name="VALUE" x="-6.096" y="91.821" size="1.778" layer="96"/> +<attribute name="PACKAGE" x="-6.096" y="89.916" size="1.27" layer="97"/> +<attribute name="VOLTAGE" x="-6.096" y="88.138" size="1.27" layer="97"/> +<attribute name="TYPE" x="-6.096" y="86.36" size="1.27" layer="97"/> +</instance> +<instance part="C5" gate="G$1" x="-20.32" y="93.98" smashed="yes"> +<attribute name="NAME" x="-18.796" y="96.901" size="1.778" layer="95"/> +<attribute name="VALUE" x="-18.796" y="91.821" size="1.778" layer="96"/> +<attribute name="PACKAGE" x="-18.796" y="89.916" size="1.27" layer="97"/> +<attribute name="VOLTAGE" x="-18.796" y="88.138" size="1.27" layer="97"/> +<attribute name="TYPE" x="-18.796" y="86.36" size="1.27" layer="97"/> +</instance> +<instance part="GND4" gate="1" x="-20.32" y="83.82" smashed="yes"> +<attribute name="VALUE" x="-22.86" y="81.28" size="1.778" layer="96"/> +</instance> +<instance part="C6" gate="G$1" x="-20.32" y="139.7" smashed="yes"> +<attribute name="NAME" x="-18.796" y="142.621" size="1.778" layer="95"/> +<attribute name="VALUE" x="-18.796" y="137.541" size="1.778" layer="96"/> +<attribute name="PACKAGE" x="-18.796" y="135.636" size="1.27" layer="97"/> +<attribute name="VOLTAGE" x="-18.796" y="133.858" size="1.27" layer="97"/> +<attribute name="TYPE" x="-18.796" y="132.08" size="1.27" layer="97"/> +</instance> +<instance part="+3V2" gate="G$1" x="-20.32" y="152.4" smashed="yes"> +<attribute name="VALUE" x="-22.86" y="147.32" size="1.778" layer="96" rot="R90"/> +</instance> +<instance part="GND5" gate="1" x="-20.32" y="129.54" smashed="yes"> +<attribute name="VALUE" x="-22.86" y="127" size="1.778" layer="96"/> +</instance> +<instance part="GND6" gate="1" x="-5.08" y="5.08" smashed="yes"> +<attribute name="VALUE" x="-7.62" y="2.54" size="1.778" layer="96"/> +</instance> +<instance part="R2" gate="G$1" x="-5.08" y="43.18" smashed="yes" rot="R270"> +<attribute name="NAME" x="-3.5814" y="46.99" size="1.778" layer="95" rot="R270"/> +<attribute name="VALUE" x="-8.382" y="46.99" size="1.778" layer="96" rot="R270"/> +<attribute name="PRECISION" x="-11.938" y="46.99" size="1.27" layer="97" rot="R270"/> +<attribute name="PACKAGE" x="-10.16" y="46.99" size="1.27" layer="97" rot="R270"/> +</instance> +<instance part="+3V3" gate="G$1" x="-5.08" y="58.42" smashed="yes"> +<attribute name="VALUE" x="-7.62" y="53.34" size="1.778" layer="96" rot="R90"/> +</instance> +<instance part="R3" gate="G$1" x="-20.32" y="43.18" smashed="yes" rot="R270"> +<attribute name="NAME" x="-18.8214" y="46.99" size="1.778" layer="95" rot="R270"/> +<attribute name="VALUE" x="-23.622" y="46.99" size="1.778" layer="96" rot="R270"/> +<attribute name="PRECISION" x="-27.178" y="46.99" size="1.27" layer="97" rot="R270"/> +<attribute name="PACKAGE" x="-25.4" y="46.99" size="1.27" layer="97" rot="R270"/> +</instance> +<instance part="+3V4" gate="G$1" x="-20.32" y="58.42" smashed="yes"> +<attribute name="VALUE" x="-22.86" y="53.34" size="1.778" layer="96" rot="R90"/> +</instance> +<instance part="GND7" gate="1" x="-60.96" y="116.84" smashed="yes"> +<attribute name="VALUE" x="-63.5" y="114.3" size="1.778" layer="96"/> +</instance> +<instance part="+3V5" gate="G$1" x="-43.18" y="152.4" smashed="yes"> +<attribute name="VALUE" x="-45.72" y="147.32" size="1.778" layer="96" rot="R90"/> +</instance> +<instance part="C7" gate="G$1" x="-43.18" y="127" smashed="yes"> +<attribute name="NAME" x="-41.656" y="129.921" size="1.778" layer="95"/> +<attribute name="VALUE" x="-41.656" y="124.841" size="1.778" layer="96"/> +<attribute name="PACKAGE" x="-41.656" y="122.936" size="1.27" layer="97"/> +<attribute name="VOLTAGE" x="-41.656" y="121.158" size="1.27" layer="97"/> +<attribute name="TYPE" x="-41.656" y="119.38" size="1.27" layer="97"/> +</instance> +<instance part="X1" gate="G$1" x="-76.2" y="60.96" smashed="yes" rot="R270"> +<attribute name="NAME" x="-78.105" y="65.405" size="1.27" layer="95" font="vector"/> +<attribute name="VALUE" x="-78.105" y="52.705" size="1.27" layer="96" font="vector"/> +</instance> +<instance part="P+2" gate="1" x="-48.26" y="68.58" smashed="yes"> +<attribute name="VALUE" x="-48.26" y="71.12" size="1.778" layer="96" rot="R90"/> +</instance> +<instance part="GND8" gate="1" x="-55.88" y="68.58" smashed="yes" rot="R180"> +<attribute name="VALUE" x="-53.34" y="71.12" size="1.778" layer="96" rot="R180"/> +</instance> +</instances> +<busses> +</busses> +<nets> +<net name="GND" class="0"> +<segment> +<pinref part="GND1" gate="1" pin="GND"/> +<wire x1="-78.74" y1="17.78" x2="-78.74" y2="25.4" width="0.1524" layer="91"/> +<wire x1="-78.74" y1="25.4" x2="-78.74" y2="30.48" width="0.1524" layer="91"/> +<wire x1="-78.74" y1="30.48" x2="-78.74" y2="33.02" width="0.1524" layer="91"/> +<pinref part="J1" gate="J1" pin="GND@3"/> +<wire x1="-68.58" y1="33.02" x2="-78.74" y2="33.02" width="0.1524" layer="91"/> +<pinref part="J1" gate="J1" pin="GND@5"/> +<wire x1="-68.58" y1="30.48" x2="-78.74" y2="30.48" width="0.1524" layer="91"/> +<junction x="-78.74" y="30.48"/> +<pinref part="J1" gate="J1" pin="GNDDTCT"/> +<wire x1="-68.58" y1="25.4" x2="-78.74" y2="25.4" width="0.1524" layer="91"/> +<junction x="-78.74" y="25.4"/> +</segment> +<segment> +<pinref part="C2" gate="G$1" pin="2"/> +<pinref part="GND2" gate="1" pin="GND"/> +<wire x1="111.76" y1="144.78" x2="119.38" y2="144.78" width="0.1524" layer="91"/> +</segment> +<segment> +<pinref part="GND3" gate="1" pin="GND"/> +<pinref part="C3" gate="G$1" pin="2"/> +<wire x1="119.38" y1="134.62" x2="111.76" y2="134.62" width="0.1524" layer="91"/> +</segment> +<segment> +<pinref part="C5" gate="G$1" pin="2"/> +<pinref part="C4" gate="G$1" pin="2"/> +<wire x1="-20.32" y1="91.44" x2="-7.62" y2="91.44" width="0.1524" layer="91"/> +<pinref part="GND4" gate="1" pin="GND"/> +<wire x1="-20.32" y1="91.44" x2="-20.32" y2="86.36" width="0.1524" layer="91"/> +<junction x="-20.32" y="91.44"/> +</segment> +<segment> +<pinref part="GND5" gate="1" pin="GND"/> +<pinref part="C6" gate="G$1" pin="2"/> +<wire x1="-20.32" y1="132.08" x2="-20.32" y2="137.16" width="0.1524" layer="91"/> +</segment> +<segment> +<pinref part="U1" gate="G$1" pin="GND"/> +<wire x1="2.54" y1="12.7" x2="-5.08" y2="12.7" width="0.1524" layer="91"/> +<pinref part="GND6" gate="1" pin="GND"/> +<wire x1="-5.08" y1="12.7" x2="-5.08" y2="7.62" width="0.1524" layer="91"/> +<pinref part="S1" gate="G$1" pin="P"/> +<pinref part="S1" gate="G$1" pin="P1"/> +<wire x1="-20.32" y1="12.7" x2="-17.78" y2="12.7" width="0.1524" layer="91"/> +<wire x1="-17.78" y1="12.7" x2="-5.08" y2="12.7" width="0.1524" layer="91"/> +<junction x="-17.78" y="12.7"/> +<junction x="-5.08" y="12.7"/> +</segment> +<segment> +<pinref part="U2" gate="G$1" pin="GND"/> +<wire x1="-60.96" y1="129.54" x2="-60.96" y2="121.92" width="0.1524" layer="91"/> +<pinref part="GND7" gate="1" pin="GND"/> +<pinref part="C1" gate="G$1" pin="2"/> +<wire x1="-60.96" y1="121.92" x2="-60.96" y2="119.38" width="0.1524" layer="91"/> +<wire x1="-78.74" y1="124.46" x2="-78.74" y2="121.92" width="0.1524" layer="91"/> +<wire x1="-78.74" y1="121.92" x2="-60.96" y2="121.92" width="0.1524" layer="91"/> +<junction x="-60.96" y="121.92"/> +<pinref part="C7" gate="G$1" pin="2"/> +<wire x1="-43.18" y1="124.46" x2="-43.18" y2="121.92" width="0.1524" layer="91"/> +<wire x1="-43.18" y1="121.92" x2="-60.96" y2="121.92" width="0.1524" layer="91"/> +</segment> +<segment> +<pinref part="X1" gate="G$1" pin="GND"/> +<wire x1="-71.12" y1="63.5" x2="-55.88" y2="63.5" width="0.1524" layer="91"/> +<pinref part="GND8" gate="1" pin="GND"/> +<wire x1="-55.88" y1="63.5" x2="-55.88" y2="66.04" width="0.1524" layer="91"/> +</segment> +</net> +<net name="+3V3" class="0"> +<segment> +<pinref part="+3V1" gate="G$1" pin="+3V3"/> +<wire x1="-78.74" y1="40.64" x2="-78.74" y2="35.56" width="0.1524" layer="91"/> +<pinref part="J1" gate="J1" pin="VCC"/> +<wire x1="-78.74" y1="35.56" x2="-68.58" y2="35.56" width="0.1524" layer="91"/> +</segment> +<segment> +<pinref part="+3V2" gate="G$1" pin="+3V3"/> +<pinref part="C6" gate="G$1" pin="1"/> +<wire x1="-20.32" y1="149.86" x2="-20.32" y2="144.78" width="0.1524" layer="91"/> +<pinref part="U1" gate="G$1" pin="VDDANA"/> +<wire x1="2.54" y1="129.54" x2="-2.54" y2="129.54" width="0.1524" layer="91"/> +<wire x1="-2.54" y1="129.54" x2="-2.54" y2="144.78" width="0.1524" layer="91"/> +<pinref part="U1" gate="G$1" pin="VDDIO"/> +<wire x1="-2.54" y1="144.78" x2="2.54" y2="144.78" width="0.1524" layer="91"/> +<wire x1="-20.32" y1="144.78" x2="-2.54" y2="144.78" width="0.1524" layer="91"/> +<junction x="-20.32" y="144.78"/> +<junction x="-2.54" y="144.78"/> +</segment> +<segment> +<pinref part="R2" gate="G$1" pin="1"/> +<pinref part="+3V3" gate="G$1" pin="+3V3"/> +<wire x1="-5.08" y1="48.26" x2="-5.08" y2="55.88" width="0.1524" layer="91"/> +</segment> +<segment> +<pinref part="+3V4" gate="G$1" pin="+3V3"/> +<pinref part="R3" gate="G$1" pin="1"/> +<wire x1="-20.32" y1="55.88" x2="-20.32" y2="48.26" width="0.1524" layer="91"/> +</segment> +<segment> +<pinref part="U2" gate="G$1" pin="VOUT"/> +<wire x1="-48.26" y1="142.24" x2="-43.18" y2="142.24" width="0.1524" layer="91"/> +<pinref part="+3V5" gate="G$1" pin="+3V3"/> +<wire x1="-43.18" y1="142.24" x2="-43.18" y2="149.86" width="0.1524" layer="91"/> +<pinref part="C7" gate="G$1" pin="1"/> +<wire x1="-43.18" y1="142.24" x2="-43.18" y2="132.08" width="0.1524" layer="91"/> +<junction x="-43.18" y="142.24"/> +</segment> +</net> +<net name="N$1" class="0"> +<segment> +<pinref part="U1" gate="G$1" pin="PA00/XIN32/SER1-0/TC2-0"/> +<pinref part="Y1" gate="G$1" pin="1"/> +<wire x1="81.28" y1="144.78" x2="96.52" y2="144.78" width="0.1524" layer="91"/> +<pinref part="C2" gate="G$1" pin="1"/> +<wire x1="96.52" y1="144.78" x2="104.14" y2="144.78" width="0.1524" layer="91"/> +<junction x="96.52" y="144.78"/> +</segment> +</net> +<net name="N$2" class="0"> +<segment> +<pinref part="C3" gate="G$1" pin="1"/> +<wire x1="104.14" y1="134.62" x2="96.52" y2="134.62" width="0.1524" layer="91"/> +<pinref part="Y1" gate="G$1" pin="2"/> +<wire x1="96.52" y1="134.62" x2="96.52" y2="139.7" width="0.1524" layer="91"/> +<wire x1="96.52" y1="139.7" x2="88.9" y2="139.7" width="0.1524" layer="91"/> +<junction x="96.52" y="139.7"/> +<wire x1="88.9" y1="139.7" x2="88.9" y2="142.24" width="0.1524" layer="91"/> +<pinref part="U1" gate="G$1" pin="PA01/XOUT32/SER1-1/TC2-1"/> +<wire x1="88.9" y1="142.24" x2="81.28" y2="142.24" width="0.1524" layer="91"/> +</segment> +</net> +<net name="N$3" class="0"> +<segment> +<pinref part="L1" gate="G$1" pin="1"/> +<pinref part="U1" gate="G$1" pin="VSW"/> +<wire x1="-2.54" y1="114.3" x2="2.54" y2="114.3" width="0.1524" layer="91"/> +</segment> +</net> +<net name="N$4" class="0"> +<segment> +<pinref part="L1" gate="G$1" pin="2"/> +<wire x1="-17.78" y1="114.3" x2="-20.32" y2="114.3" width="0.1524" layer="91"/> +<pinref part="C5" gate="G$1" pin="1"/> +<wire x1="-20.32" y1="114.3" x2="-20.32" y2="99.06" width="0.1524" layer="91"/> +<pinref part="C4" gate="G$1" pin="1"/> +<wire x1="-20.32" y1="99.06" x2="-7.62" y2="99.06" width="0.1524" layer="91"/> +<junction x="-20.32" y="99.06"/> +<pinref part="U1" gate="G$1" pin="VDDCORE"/> +<wire x1="-7.62" y1="99.06" x2="2.54" y2="99.06" width="0.1524" layer="91"/> +<junction x="-7.62" y="99.06"/> +</segment> +</net> +<net name="N$6" class="0"> +<segment> +<pinref part="J1" gate="J1" pin="!RESET"/> +<pinref part="U1" gate="G$1" pin="RESETN"/> +<wire x1="-38.1" y1="25.4" x2="-20.32" y2="25.4" width="0.1524" layer="91"/> +<pinref part="S1" gate="G$1" pin="S"/> +<wire x1="-20.32" y1="25.4" x2="-5.08" y2="25.4" width="0.1524" layer="91"/> +<wire x1="-5.08" y1="25.4" x2="2.54" y2="25.4" width="0.1524" layer="91"/> +<wire x1="-20.32" y1="22.86" x2="-20.32" y2="25.4" width="0.1524" layer="91"/> +<junction x="-20.32" y="25.4"/> +<pinref part="S1" gate="G$1" pin="S1"/> +<wire x1="-17.78" y1="22.86" x2="-20.32" y2="22.86" width="0.1524" layer="91"/> +<junction x="-20.32" y="22.86"/> +<pinref part="R2" gate="G$1" pin="2"/> +<wire x1="-5.08" y1="25.4" x2="-5.08" y2="38.1" width="0.1524" layer="91"/> +<junction x="-5.08" y="25.4"/> +</segment> +</net> +<net name="SWDCLK" class="0"> +<segment> +<pinref part="J1" gate="J1" pin="SWDCLK/TCK"/> +<wire x1="-38.1" y1="33.02" x2="-20.32" y2="33.02" width="0.1524" layer="91"/> +<label x="-35.56" y="33.02" size="1.778" layer="95"/> +<pinref part="R3" gate="G$1" pin="2"/> +<wire x1="-20.32" y1="33.02" x2="-20.32" y2="38.1" width="0.1524" layer="91"/> +</segment> +<segment> +<pinref part="U1" gate="G$1" pin="PA30/SER7-2/SER1-2/TC6-0/SWCLK"/> +<wire x1="81.28" y1="76.2" x2="96.52" y2="76.2" width="0.1524" layer="91"/> +<label x="83.82" y="76.2" size="1.778" layer="95"/> +</segment> +</net> +<net name="SWDIO" class="0"> +<segment> +<pinref part="J1" gate="J1" pin="SWDIO/TMS"/> +<wire x1="-38.1" y1="35.56" x2="-22.86" y2="35.56" width="0.1524" layer="91"/> +<label x="-35.56" y="35.56" size="1.778" layer="95"/> +</segment> +<segment> +<pinref part="U1" gate="G$1" pin="PA31/SER7-3/SER1-3/TC6-1/SWDIO"/> +<wire x1="81.28" y1="73.66" x2="96.52" y2="73.66" width="0.1524" layer="91"/> +<label x="83.82" y="73.66" size="1.778" layer="95"/> +</segment> +</net> +<net name="USBDP" class="0"> +<segment> +<pinref part="U1" gate="G$1" pin="PA25/SER3-3/SER5-3/TC5-1/PDEC0-1/USBDP"/> +<wire x1="81.28" y1="81.28" x2="96.52" y2="81.28" width="0.1524" layer="91"/> +<label x="83.82" y="81.28" size="1.778" layer="95"/> +</segment> +<segment> +<pinref part="X1" gate="G$1" pin="D+"/> +<wire x1="-71.12" y1="55.88" x2="-58.42" y2="55.88" width="0.1524" layer="91"/> +<label x="-68.58" y="55.88" size="1.778" layer="95"/> +</segment> +</net> +<net name="USBDM" class="0"> +<segment> +<pinref part="U1" gate="G$1" pin="PA24/SER3-2/SER5-2/TC5-0/PDEC0-0/USBDM"/> +<wire x1="81.28" y1="83.82" x2="96.52" y2="83.82" width="0.1524" layer="91"/> +<label x="83.82" y="83.82" size="1.778" layer="95"/> +</segment> +<segment> +<pinref part="X1" gate="G$1" pin="D-"/> +<wire x1="-71.12" y1="58.42" x2="-58.42" y2="58.42" width="0.1524" layer="91"/> +<label x="-68.58" y="58.42" size="1.778" layer="95"/> +</segment> +</net> +<net name="+5V" class="0"> +<segment> +<pinref part="P+1" gate="1" pin="+5V"/> +<pinref part="C1" gate="G$1" pin="1"/> +<wire x1="-78.74" y1="149.86" x2="-78.74" y2="142.24" width="0.1524" layer="91"/> +<pinref part="U2" gate="G$1" pin="VIN"/> +<wire x1="-78.74" y1="142.24" x2="-78.74" y2="132.08" width="0.1524" layer="91"/> +<wire x1="-73.66" y1="142.24" x2="-76.2" y2="142.24" width="0.1524" layer="91"/> +<junction x="-78.74" y="142.24"/> +<pinref part="U2" gate="G$1" pin="EN"/> +<wire x1="-76.2" y1="142.24" x2="-78.74" y2="142.24" width="0.1524" layer="91"/> +<wire x1="-73.66" y1="137.16" x2="-76.2" y2="137.16" width="0.1524" layer="91"/> +<wire x1="-76.2" y1="137.16" x2="-76.2" y2="142.24" width="0.1524" layer="91"/> +<junction x="-76.2" y="142.24"/> +</segment> +<segment> +<pinref part="X1" gate="G$1" pin="VBUS"/> +<wire x1="-71.12" y1="60.96" x2="-48.26" y2="60.96" width="0.1524" layer="91"/> +<pinref part="P+2" gate="1" pin="+5V"/> +<wire x1="-48.26" y1="60.96" x2="-48.26" y2="66.04" width="0.1524" layer="91"/> +</segment> +</net> +</nets> +</sheet> +</sheets> +</schematic> +</drawing> +<compatibility> +<note version="8.3" severity="warning"> +Since Version 8.3, EAGLE supports URNs for individual library +assets (packages, symbols, and devices). The URNs of those assets +will not be understood (or retained) with this version. +</note> +</compatibility> +</eagle> diff --git a/samd51-example/schematic.png b/samd51-example/schematic.png new file mode 100644 index 0000000000000000000000000000000000000000..d2e04bd8547cd006c412ab18b8e5c1ef1803f92c Binary files /dev/null and b/samd51-example/schematic.png differ